<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/wordpress-mu-1.2.3-2.2.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>Xavier Llorà &#187; Software</title>
	<link>http://www.illigal.uiuc.edu/web/xllora</link>
	<description>A blog about IT-supported human and social innovation and creativity, genetics-based machine learning, genetic algorithms, metadata applications, and other amusing topics</description>
	<pubDate>Thu, 27 Mar 2008 04:06:24 +0000</pubDate>
	<generator>http://wordpress.org/?v=wordpress-mu-1.2.3-2.2.1</generator>
	<language>en</language>
			<item>
		<title>A simple and flexible GA loop in Python</title>
		<link>http://www.illigal.uiuc.edu/web/xllora/2008/01/16/a-simple-and-flexible-ga-loop-in-python/</link>
		<comments>http://www.illigal.uiuc.edu/web/xllora/2008/01/16/a-simple-and-flexible-ga-loop-in-python/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 15:34:18 +0000</pubDate>
		<dc:creator>Xavier Llorà</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.illigal.uiuc.edu/web/xllora/2008/01/16/a-simple-and-flexible-ga-loop-in-python/</guid>
		<description><![CDATA[Yes, yes, I know, Python. I just been playing around to see how much you can squeeze out of it and I am very surprise of how elegant it can be. Just and example. I am pretty sure you have written way to many customize GA loops that you need to tweak every now and [...]

<script type="text/javascript">
SHARETHIS.addEntry({
	title: "A simple and flexible GA loop in Python",
	url: "http://www.illigal.uiuc.edu/web/xllora/2008/01/16/a-simple-and-flexible-ga-loop-in-python/"
});
</script>
	]]></description>
			<content:encoded><![CDATA[<p>Yes, yes, I know, Python. I just been playing around to see how much you can squeeze out of it and I am very surprise of how elegant it can be. Just and example. I am pretty sure you have written way to many customize GA loops that you need to tweak every now and then, if so take a look at the Python version below.</p>
<pre>
def evolve(self):
    """Implements a simple evolution loop"""
    func_calls = []
    func_calls.append(self.evaluate)
    if ( self.env.selection!=None ) : func_calls.append(self.selection)
    if ( self.env.crossover!=None ) : func_calls.append(self.crossover)
    if ( self.env.mutation!=None ) : func_calls.append(self.mutate)
    if ( self.env.replacement!=None ) : func_calls.append(self.replace)
    [f() for f in func_calls for i in range(self.env.length/5)]
    self.evaluate()
    return (self.best_fitness,self.best_individual)</pre>
<p>Where the self.env object just contains references to the methods implementing each of the functionalities generically implemented in self.evaluate, etc.. Pretty sleek.</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.illigal.uiuc.edu/web/xllora/2008/01/10/some-notes-on-python-profiling/" rel="bookmark" title="Permanent Link: Some notes on Python profiling" >Some notes on Python profiling</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.illigal.uiuc.edu/web/xllora/2007/02/21/ge498-eci-lecture-5-the-schema-of-a-simple-web-application/" rel="bookmark" title="Permanent Link: GE498-ECI, Lecture 5: The schema of a simple web application" >GE498-ECI, Lecture 5: The schema of a simple web application</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.illigal.uiuc.edu/web/xllora/2007/01/17/ge498-eci-enterprise-collaboration-and-innovation-support-systems/" rel="bookmark" title="Permanent Link: GE498-ECI: Enterprise Collaboration and Innovation Support Systems" >GE498-ECI: Enterprise Collaboration and Innovation Support Systems</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div><p><a href="http://sharethis.com/item?publisher=06ff8708-9faa-424e-8f08-b1689272b447&title=A+simple+and+flexible+GA+loop+in+Python&url=http%3A%2F%2Fwww.illigal.uiuc.edu%2Fweb%2Fxllora%2F2008%2F01%2F16%2Fa-simple-and-flexible-ga-loop-in-python%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.illigal.uiuc.edu/web/xllora/2008/01/16/a-simple-and-flexible-ga-loop-in-python/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Some notes on Python profiling</title>
		<link>http://www.illigal.uiuc.edu/web/xllora/2008/01/10/some-notes-on-python-profiling/</link>
		<comments>http://www.illigal.uiuc.edu/web/xllora/2008/01/10/some-notes-on-python-profiling/#comments</comments>
		<pubDate>Thu, 10 Jan 2008 15:22:40 +0000</pubDate>
		<dc:creator>Xavier Llorà</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.illigal.uiuc.edu/web/xllora/2008/01/10/some-notes-on-python-profiling/</guid>
		<description><![CDATA[You may find some notes about Python profiling on my DITA blog.
Related PostsA simple and flexible GA loop in PythonSome Examples of PCA in RBen Shneiderman at UIUC

<script type="text/javascript">
SHARETHIS.addEntry({
	title: "Some notes on Python profiling",
	url: "http://www.illigal.uiuc.edu/web/xllora/2008/01/10/some-notes-on-python-profiling/"
});
</script>
	]]></description>
			<content:encoded><![CDATA[<p>You may find some notes about <a href="http://dita.ncsa.uiuc.edu/xllora/2008/01/10/profiling-python-code/">Python profiling on my DITA blog</a>.</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.illigal.uiuc.edu/web/xllora/2008/01/16/a-simple-and-flexible-ga-loop-in-python/" rel="bookmark" title="Permanent Link: A simple and flexible GA loop in Python" >A simple and flexible GA loop in Python</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.illigal.uiuc.edu/web/xllora/2007/04/24/some-examples-of-pca-in-r-2/" rel="bookmark" title="Permanent Link: Some Examples of PCA in R" >Some Examples of PCA in R</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.illigal.uiuc.edu/web/xllora/2007/04/18/ben-shneiderman-at-uiuc/" rel="bookmark" title="Permanent Link: Ben Shneiderman at UIUC" >Ben Shneiderman at UIUC</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div><p><a href="http://sharethis.com/item?publisher=06ff8708-9faa-424e-8f08-b1689272b447&title=Some+notes+on+Python+profiling&url=http%3A%2F%2Fwww.illigal.uiuc.edu%2Fweb%2Fxllora%2F2008%2F01%2F10%2Fsome-notes-on-python-profiling%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.illigal.uiuc.edu/web/xllora/2008/01/10/some-notes-on-python-profiling/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wordpress and your iPhone</title>
		<link>http://www.illigal.uiuc.edu/web/xllora/2007/10/11/wordpress-and-your-iphone/</link>
		<comments>http://www.illigal.uiuc.edu/web/xllora/2007/10/11/wordpress-and-your-iphone/#comments</comments>
		<pubDate>Fri, 12 Oct 2007 02:40:28 +0000</pubDate>
		<dc:creator>Xavier Llorà</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.illigal.uiuc.edu/web/xllora/2007/10/11/wordpress-and-your-iphone/</guid>
		<description><![CDATA[WordPress  iPhone / Mobile Admin adapts the WordPress admin UI to be more friendly to mobile devices, specifically phones.
Related PostsInstalling third-party apps to your iPhoneMore on Wordpress themesiPhone blast

<script type="text/javascript">
SHARETHIS.addEntry({
	title: "Wordpress and your iPhone",
	url: "http://www.illigal.uiuc.edu/web/xllora/2007/10/11/wordpress-and-your-iphone/"
});
</script>
	]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/extend/plugins/mobileadmin/">WordPress  iPhone / Mobile Admin</a> adapts the WordPress admin UI to be more friendly to mobile devices, specifically phones.</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.illigal.uiuc.edu/web/xllora/2007/09/05/installing-third-party-apps-to-your-iphone/" rel="bookmark" title="Permanent Link: Installing third-party apps to your iPhone" >Installing third-party apps to your iPhone</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.illigal.uiuc.edu/web/xllora/2007/04/09/more-on-wordpress-themes/" rel="bookmark" title="Permanent Link: More on Wordpress themes" >More on Wordpress themes</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.illigal.uiuc.edu/web/xllora/2007/01/10/iphone-blast/" rel="bookmark" title="Permanent Link: iPhone blast" >iPhone blast</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div><p><a href="http://sharethis.com/item?publisher=06ff8708-9faa-424e-8f08-b1689272b447&title=Wordpress+and+your+iPhone&url=http%3A%2F%2Fwww.illigal.uiuc.edu%2Fweb%2Fxllora%2F2007%2F10%2F11%2Fwordpress-and-your-iphone%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.illigal.uiuc.edu/web/xllora/2007/10/11/wordpress-and-your-iphone/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Reset the MBR using Linux</title>
		<link>http://www.illigal.uiuc.edu/web/xllora/2007/09/21/reset-the-mbr-using-linux/</link>
		<comments>http://www.illigal.uiuc.edu/web/xllora/2007/09/21/reset-the-mbr-using-linux/#comments</comments>
		<pubDate>Fri, 21 Sep 2007 14:55:45 +0000</pubDate>
		<dc:creator>Xavier Llorà</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.illigal.uiuc.edu/web/xllora/2007/09/21/reset-the-mbr-using-linux/</guid>
		<description><![CDATA[Here is a simple trick if you need to clean it. Recently I needed to clean some Rocks Clusters node&#8217;s HD to allow it to reinstall

dd if=/dev/zero of=/dev/HD count=1 bs=512

This avoid the computer to try to boot from the hard drive. However, if the node was already on the cluster, you need to run

# insert-ethers [...]

<script type="text/javascript">
SHARETHIS.addEntry({
	title: "Reset the MBR using Linux",
	url: "http://www.illigal.uiuc.edu/web/xllora/2007/09/21/reset-the-mbr-using-linux/"
});
</script>
	]]></description>
			<content:encoded><![CDATA[<p>Here is a simple trick if you need to clean it. Recently I needed to clean some <a href="http://www.rocksclusters.org/">Rocks Clusters</a> node&#8217;s HD to allow it to reinstall<br />
<code><br />
dd if=/dev/zero of=/dev/HD count=1 bs=512<br />
</code><br />
This avoid the computer to try to boot from the hard drive. However, if the node was already on the cluster, you need to run<br />
<code><br />
# insert-ethers --remove="compute-0-1"<br />
</code><br />
To remove it from the cluster, where &#8220;compute-0-1&#8243; is the name of the node in cluster. Then, you can start insert-ethers, and boot the node and it will start reinstalling itself.</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" >No related posts</span></li></ul></div><p><a href="http://sharethis.com/item?publisher=06ff8708-9faa-424e-8f08-b1689272b447&title=Reset+the+MBR+using+Linux&url=http%3A%2F%2Fwww.illigal.uiuc.edu%2Fweb%2Fxllora%2F2007%2F09%2F21%2Freset-the-mbr-using-linux%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.illigal.uiuc.edu/web/xllora/2007/09/21/reset-the-mbr-using-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sync your iCal and Google Calendar</title>
		<link>http://www.illigal.uiuc.edu/web/xllora/2007/08/22/sync-your-ical-and-google-calendar/</link>
		<comments>http://www.illigal.uiuc.edu/web/xllora/2007/08/22/sync-your-ical-and-google-calendar/#comments</comments>
		<pubDate>Thu, 23 Aug 2007 02:22:01 +0000</pubDate>
		<dc:creator>Xavier Llorà</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.illigal.uiuc.edu/web/xllora/2007/08/22/sync-your-ical-and-google-calendar/</guid>
		<description><![CDATA[Did you ever wanted to sync your iCal and your Google Calendar? I just ran into Spanning Sync. I have been testing and it is definitely worth it if you need such capabilities.

Synchronize Google Calendar and Apple iCal. Share calendars between multiple Macs. Share calendars with your coworkers, family, and friends. And while you&#8217;re at [...]

<script type="text/javascript">
SHARETHIS.addEntry({
	title: "Sync your iCal and Google Calendar",
	url: "http://www.illigal.uiuc.edu/web/xllora/2007/08/22/sync-your-ical-and-google-calendar/"
});
</script>
	]]></description>
			<content:encoded><![CDATA[<p>Did you ever wanted to sync your iCal and your Google Calendar? I just ran into <a href="http://spanningsync.com/">Spanning Sync</a>. I have been testing and it is definitely worth it if you need such capabilities.</p>
<blockquote><p>
Synchronize Google Calendar and Apple iCal. Share calendars between multiple Macs. Share calendars with your coworkers, family, and friends. And while you&#8217;re at it, connect Google Calendar to your iPod, mobile phone, and other devices.
</p></blockquote>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.illigal.uiuc.edu/web/xllora/2006/10/26/photo-shoot-at-the-point/" rel="bookmark" title="Permanent Link: Photo shoot at The Point" >Photo shoot at The Point</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.illigal.uiuc.edu/web/xllora/2007/07/18/google-notebook/" rel="bookmark" title="Permanent Link: Google Notebook" >Google Notebook</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.illigal.uiuc.edu/web/xllora/2007/08/11/moving-around-urbana/" rel="bookmark" title="Permanent Link: Moving around Urbana" >Moving around Urbana</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div><p><a href="http://sharethis.com/item?publisher=06ff8708-9faa-424e-8f08-b1689272b447&title=Sync+your+iCal+and+Google+Calendar&url=http%3A%2F%2Fwww.illigal.uiuc.edu%2Fweb%2Fxllora%2F2007%2F08%2F22%2Fsync-your-ical-and-google-calendar%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.illigal.uiuc.edu/web/xllora/2007/08/22/sync-your-ical-and-google-calendar/feed/</wfw:commentRss>
		</item>
		<item>
		<title>E2K blog has moved</title>
		<link>http://www.illigal.uiuc.edu/web/xllora/2007/08/02/e2k-blog-has-moved/</link>
		<comments>http://www.illigal.uiuc.edu/web/xllora/2007/08/02/e2k-blog-has-moved/#comments</comments>
		<pubDate>Thu, 02 Aug 2007 19:38:27 +0000</pubDate>
		<dc:creator>Xavier Llorà</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.illigal.uiuc.edu/web/xllora/2007/08/02/e2k-blog-has-moved/</guid>
		<description><![CDATA[The E2K blog has moved. You can reach it at
http://dita.ncsa.uiuc.edu/e2k/
Related PostsAdaptable Extraction of Key Elements from WeblogsPhD comicsPhoto shoot at The Point

<script type="text/javascript">
SHARETHIS.addEntry({
	title: "E2K blog has moved",
	url: "http://www.illigal.uiuc.edu/web/xllora/2007/08/02/e2k-blog-has-moved/"
});
</script>
	]]></description>
			<content:encoded><![CDATA[<p>The E2K blog has moved. You can reach it at</p>
<p><a href="http://dita.ncsa.uiuc.edu/e2k/">http://dita.ncsa.uiuc.edu/e2k/</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.illigal.uiuc.edu/web/xllora/2006/12/13/adaptable-extraction-of-key-elements-from-weblogs/" rel="bookmark" title="Permanent Link: Adaptable Extraction of Key Elements from Weblogs" >Adaptable Extraction of Key Elements from Weblogs</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.illigal.uiuc.edu/web/xllora/2006/08/02/phd-comics/" rel="bookmark" title="Permanent Link: PhD comics" >PhD comics</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.illigal.uiuc.edu/web/xllora/2006/10/26/photo-shoot-at-the-point/" rel="bookmark" title="Permanent Link: Photo shoot at The Point" >Photo shoot at The Point</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div><p><a href="http://sharethis.com/item?publisher=06ff8708-9faa-424e-8f08-b1689272b447&title=E2K+blog+has+moved&url=http%3A%2F%2Fwww.illigal.uiuc.edu%2Fweb%2Fxllora%2F2007%2F08%2F02%2Fe2k-blog-has-moved%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.illigal.uiuc.edu/web/xllora/2007/08/02/e2k-blog-has-moved/feed/</wfw:commentRss>
		</item>
		<item>
		<title>HTML to Wiki converter</title>
		<link>http://www.illigal.uiuc.edu/web/xllora/2007/06/03/html-to-wiki-converter/</link>
		<comments>http://www.illigal.uiuc.edu/web/xllora/2007/06/03/html-to-wiki-converter/#comments</comments>
		<pubDate>Sun, 03 Jun 2007 22:45:35 +0000</pubDate>
		<dc:creator>Xavier Llorà</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.illigal.uiuc.edu/web/xllora/2007/06/03/html-to-wiki-converter/</guid>
		<description><![CDATA[Seapine {Labs}::HTML to Wiki Converter is an online converter of HTML formated code into a Wiki (MediaWiki) sintax. Very convenient if you want to add already formated material.
Related PostsEl dia del senyorGE498-ECI: Enterprise Collaboration and Innovation Support SystemsTwo movies, Julio Medem, and Daniel Sánchez Arévalo

<script type="text/javascript">
SHARETHIS.addEntry({
	title: "HTML to Wiki converter",
	url: "http://www.illigal.uiuc.edu/web/xllora/2007/06/03/html-to-wiki-converter/"
});
</script>
	]]></description>
			<content:encoded><![CDATA[<p><a href="http://labs.seapine.com/htmltowiki.cgi">Seapine {Labs}::HTML to Wiki Converter</a> is an online converter of HTML formated code into a Wiki (MediaWiki) sintax. Very convenient if you want to add already formated material.</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.illigal.uiuc.edu/web/xllora/2006/08/04/el-dia-del-senyor/" rel="bookmark" title="Permanent Link: El dia del senyor" >El dia del senyor</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.illigal.uiuc.edu/web/xllora/2007/01/17/ge498-eci-enterprise-collaboration-and-innovation-support-systems/" rel="bookmark" title="Permanent Link: GE498-ECI: Enterprise Collaboration and Innovation Support Systems" >GE498-ECI: Enterprise Collaboration and Innovation Support Systems</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.illigal.uiuc.edu/web/xllora/2007/01/07/two-movies-julio-medem-and-daniel-sanchez-arevalo/" rel="bookmark" title="Permanent Link: Two movies, Julio Medem, and Daniel Sánchez Arévalo" >Two movies, Julio Medem, and Daniel Sánchez Arévalo</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div><p><a href="http://sharethis.com/item?publisher=06ff8708-9faa-424e-8f08-b1689272b447&title=HTML+to+Wiki+converter&url=http%3A%2F%2Fwww.illigal.uiuc.edu%2Fweb%2Fxllora%2F2007%2F06%2F03%2Fhtml-to-wiki-converter%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.illigal.uiuc.edu/web/xllora/2007/06/03/html-to-wiki-converter/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Zotero now talks to MS Word</title>
		<link>http://www.illigal.uiuc.edu/web/xllora/2007/04/28/zotero-now-talks-to-ms-word/</link>
		<comments>http://www.illigal.uiuc.edu/web/xllora/2007/04/28/zotero-now-talks-to-ms-word/#comments</comments>
		<pubDate>Sat, 28 Apr 2007 16:56:41 +0000</pubDate>
		<dc:creator>Xavier Llorà</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.illigal.uiuc.edu/web/xllora/2007/04/28/zotero-now-talks-to-ms-word/</guid>
		<description><![CDATA[Zotero has released a first integration plugin for MS Word. Pretty useful if you need to move your bibtex into a Word document.
Related PostsMetadata stores, RDF, Mulgara, MySQL, and OracleLive from The Engineer of the FutureMétaphysique des tubes

<script type="text/javascript">
SHARETHIS.addEntry({
	title: "Zotero now talks to MS Word",
	url: "http://www.illigal.uiuc.edu/web/xllora/2007/04/28/zotero-now-talks-to-ms-word/"
});
</script>
	]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.zotero.org">Zotero</a> has released a first <a href="http://www.zotero.org/documentation/microsoft_word_integration">integration plugin for MS Word</a>. Pretty useful if you need to move your bibtex into a Word document.</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.illigal.uiuc.edu/web/xllora/2006/09/19/metadata-stores-rdf-mulgara-mysql-and-oracle/" rel="bookmark" title="Permanent Link: Metadata stores, RDF, Mulgara, MySQL, and Oracle" >Metadata stores, RDF, Mulgara, MySQL, and Oracle</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.illigal.uiuc.edu/web/xllora/2007/09/05/live-from-the-engineer-of-the-future/" rel="bookmark" title="Permanent Link: Live from The Engineer of the Future" >Live from The Engineer of the Future</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.illigal.uiuc.edu/web/xllora/2006/02/02/metaphysique-des-tubes/" rel="bookmark" title="Permanent Link: Métaphysique des tubes" >Métaphysique des tubes</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div><p><a href="http://sharethis.com/item?publisher=06ff8708-9faa-424e-8f08-b1689272b447&title=Zotero+now+talks+to+MS+Word&url=http%3A%2F%2Fwww.illigal.uiuc.edu%2Fweb%2Fxllora%2F2007%2F04%2F28%2Fzotero-now-talks-to-ms-word%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.illigal.uiuc.edu/web/xllora/2007/04/28/zotero-now-talks-to-ms-word/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Some Examples of PCA in R</title>
		<link>http://www.illigal.uiuc.edu/web/xllora/2007/04/24/some-examples-of-pca-in-r-2/</link>
		<comments>http://www.illigal.uiuc.edu/web/xllora/2007/04/24/some-examples-of-pca-in-r-2/#comments</comments>
		<pubDate>Wed, 25 Apr 2007 04:04:34 +0000</pubDate>
		<dc:creator>Xavier Llorà</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.illigal.uiuc.edu/web/xllora/2007/04/24/some-examples-of-pca-in-r-2/</guid>
		<description><![CDATA[You may find some notes about how to do PCA in R in my DITA blog.
Related PostsMetadata stores and D2KFast fitness implementation of multiplexer problems for Pittsburgh LCSGALE is back!

<script type="text/javascript">
SHARETHIS.addEntry({
	title: "Some Examples of PCA in R",
	url: "http://www.illigal.uiuc.edu/web/xllora/2007/04/24/some-examples-of-pca-in-r-2/"
});
</script>
	]]></description>
			<content:encoded><![CDATA[<p>You may find some notes about how to do <a href="http://dita.ncsa.uiuc.edu/xllora/2007/04/24/principal-component-analysis-in-r/">PCA in R in my DITA blog</a>.</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.illigal.uiuc.edu/web/xllora/2006/04/21/metadata-stores-and-d2k/" rel="bookmark" title="Permanent Link: Metadata stores and D2K" >Metadata stores and D2K</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.illigal.uiuc.edu/web/xllora/2006/04/15/fast-fitness-implementation-of-multiplexer-problems-for-pittsburgh-lcs/" rel="bookmark" title="Permanent Link: Fast fitness implementation of multiplexer problems for Pittsburgh LCS" >Fast fitness implementation of multiplexer problems for Pittsburgh LCS</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.illigal.uiuc.edu/web/xllora/2006/05/10/gale-is-back/" rel="bookmark" title="Permanent Link: GALE is back!" >GALE is back!</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div><p><a href="http://sharethis.com/item?publisher=06ff8708-9faa-424e-8f08-b1689272b447&title=Some+Examples+of+PCA+in+R&url=http%3A%2F%2Fwww.illigal.uiuc.edu%2Fweb%2Fxllora%2F2007%2F04%2F24%2Fsome-examples-of-pca-in-r-2%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.illigal.uiuc.edu/web/xllora/2007/04/24/some-examples-of-pca-in-r-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Eclipse Metrics Plugins</title>
		<link>http://www.illigal.uiuc.edu/web/xllora/2007/04/19/eclipse-metrics-plugins/</link>
		<comments>http://www.illigal.uiuc.edu/web/xllora/2007/04/19/eclipse-metrics-plugins/#comments</comments>
		<pubDate>Fri, 20 Apr 2007 04:00:51 +0000</pubDate>
		<dc:creator>Xavier Llorà</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.illigal.uiuc.edu/web/xllora/2007/04/19/eclipse-metrics-plugins/</guid>
		<description><![CDATA[I have run into a couple of plugins for Eclipse to compute several measure about the code you have in your project. The one I currently use is Eclipse Metrics Plugin. 
This Eclipse plugin calculates various metrics for your code during build cycles and warns you, via the Problems view, of range violations for each [...]

<script type="text/javascript">
SHARETHIS.addEntry({
	title: "Eclipse Metrics Plugins",
	url: "http://www.illigal.uiuc.edu/web/xllora/2007/04/19/eclipse-metrics-plugins/"
});
</script>
	]]></description>
			<content:encoded><![CDATA[<p>I have run into a couple of plugins for <a href="http://www.eclipse.org/">Eclipse</a> to compute several measure about the code you have in your project. The one I currently use is <a href="http://eclipse-metrics.sourceforge.net/">Eclipse Metrics Plugin</a>. </p>
<blockquote><p>This Eclipse plugin calculates various metrics for your code during build cycles and warns you, via the Problems view, of range violations for each metric. This allows you to stay continuously aware of the health of your code base. You may also export the metrics to HTML for public display or to CSV format for further analysis.</p></blockquote>
<p>If you may also like to test <a href="http://metrics.sourceforge.net/">Metrics</a>, this one with some viz about the software. It is much more flexible and complete than the previous one.</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Posts</span><ul><li><span class="aizatto_related_posts_title" ><a href="http://www.illigal.uiuc.edu/web/xllora/2005/11/24/programming-ide/" rel="bookmark" title="Permanent Link: Programming IDEs" >Programming IDEs</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.illigal.uiuc.edu/web/xllora/2007/10/11/wordpress-and-your-iphone/" rel="bookmark" title="Permanent Link: Wordpress and your iPhone" >Wordpress and your iPhone</a></span><div class="aizatto_related_posts_excerpt"></div></li><li><span class="aizatto_related_posts_title" ><a href="http://www.illigal.uiuc.edu/web/xllora/2005/11/24/database-tools/" rel="bookmark" title="Permanent Link: Database  tools" >Database  tools</a></span><div class="aizatto_related_posts_excerpt"></div></li></ul></div><p><a href="http://sharethis.com/item?publisher=06ff8708-9faa-424e-8f08-b1689272b447&title=Eclipse+Metrics+Plugins&url=http%3A%2F%2Fwww.illigal.uiuc.edu%2Fweb%2Fxllora%2F2007%2F04%2F19%2Feclipse-metrics-plugins%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.illigal.uiuc.edu/web/xllora/2007/04/19/eclipse-metrics-plugins/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
