<?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à</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>Blogging from the Big Data Computing Study Group 2008</title>
		<link>http://www.illigal.uiuc.edu/web/xllora/2008/03/26/172/</link>
		<comments>http://www.illigal.uiuc.edu/web/xllora/2008/03/26/172/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 04:05:25 +0000</pubDate>
		<dc:creator>Xavier Llorà</dc:creator>
		
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.illigal.uiuc.edu/web/xllora/2008/03/26/172/</guid>
		<description><![CDATA[I was lucky to attend the Big Data Computing Study Group 2008. The line of speaker is impressive. The event was held at Yahoo! Sunnyvale, and Thomas Kwan (UIUC alumni know at Yahoo!) helped organize it. I blogged about it on my DITA blog where you can find links to all the related posts.
Related PostsNo [...]

<script type="text/javascript">
SHARETHIS.addEntry({
	title: "Blogging from the Big Data Computing Study Group 2008",
	url: "http://www.illigal.uiuc.edu/web/xllora/2008/03/26/172/"
});
</script>
	]]></description>
			<content:encoded><![CDATA[<p>I was lucky to attend the <a href="http://www.cs.cmu.edu/%7Ebryant/bdcsg08.html">Big Data Computing Study Group 2008</a>. The line of speaker is impressive. The event was held at Yahoo! Sunnyvale, and Thomas Kwan (UIUC alumni know at Yahoo!) helped organize it. I blogged about it on my <a href="http://dita.ncsa.uiuc.edu/xllora/2008/03/26/summary-of-bdcsg2008-blogging/" title="BDCSG2008">DITA blog where you can find links to all the related posts</a>.</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=Blogging+from+the+Big+Data+Computing+Study+Group+2008&url=http%3A%2F%2Fwww.illigal.uiuc.edu%2Fweb%2Fxllora%2F2008%2F03%2F26%2F172%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.illigal.uiuc.edu/web/xllora/2008/03/26/172/feed/</wfw:commentRss>
		</item>
		<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>GECCO 2008 Deadline Extended to January 30th</title>
		<link>http://www.illigal.uiuc.edu/web/xllora/2008/01/09/gecco-2008-deadline-extended-to-january-30th/</link>
		<comments>http://www.illigal.uiuc.edu/web/xllora/2008/01/09/gecco-2008-deadline-extended-to-january-30th/#comments</comments>
		<pubDate>Wed, 09 Jan 2008 17:27:31 +0000</pubDate>
		<dc:creator>Xavier Llorà</dc:creator>
		
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.illigal.uiuc.edu/web/xllora/2008/01/09/gecco-2008-deadline-extended-to-january-30th/</guid>
		<description><![CDATA[I just got an email from the GECCO 2008 organizers extending the deadline till January 2008.
Related PostsGECCO 2008 DeadlineGECCO 2007 deadline extendedGECCO-2006 submissions deadline extended to February 1st

<script type="text/javascript">
SHARETHIS.addEntry({
	title: "GECCO 2008 Deadline Extended to January 30th",
	url: "http://www.illigal.uiuc.edu/web/xllora/2008/01/09/gecco-2008-deadline-extended-to-january-30th/"
});
</script>
	]]></description>
			<content:encoded><![CDATA[<p>I just got an email from the <a href="http://www.sigevo.org/gecco-2008/index.html" title="GECCO 2008">GECCO 2008</a> organizers extending the deadline till January 2008.</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/12/04/gecco-2008-deadline/" rel="bookmark" title="Permanent Link: GECCO 2008 Deadline" >GECCO 2008 Deadline</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/16/gecco-2007-deadline-extended/" rel="bookmark" title="Permanent Link: GECCO 2007 deadline extended" >GECCO 2007 deadline extended</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/01/18/gecco-2006-submissions-deadline-extended-to-february-1st/" rel="bookmark" title="Permanent Link: GECCO-2006 submissions deadline extended to February 1st" >GECCO-2006 submissions deadline extended to February 1st</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=GECCO+2008+Deadline+Extended+to+January+30th&url=http%3A%2F%2Fwww.illigal.uiuc.edu%2Fweb%2Fxllora%2F2008%2F01%2F09%2Fgecco-2008-deadline-extended-to-january-30th%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.illigal.uiuc.edu/web/xllora/2008/01/09/gecco-2008-deadline-extended-to-january-30th/feed/</wfw:commentRss>
		</item>
		<item>
		<title>GECCO 2008 Deadline</title>
		<link>http://www.illigal.uiuc.edu/web/xllora/2007/12/04/gecco-2008-deadline/</link>
		<comments>http://www.illigal.uiuc.edu/web/xllora/2007/12/04/gecco-2008-deadline/#comments</comments>
		<pubDate>Tue, 04 Dec 2007 15:15:54 +0000</pubDate>
		<dc:creator>Xavier Llorà</dc:creator>
		
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.illigal.uiuc.edu/web/xllora/2007/12/04/gecco-2008-deadline/</guid>
		<description><![CDATA[The deadline for the next Genetic and Evolutionary Computation Conference (GECCO 2008) is approaching. Januray 16, 2008 is the date. Get ready!
Related PostsGECCO 2008 Deadline Extended to January 30thGECCO 2007 DeadlineGECCO 2007 deadline extended

<script type="text/javascript">
SHARETHIS.addEntry({
	title: "GECCO 2008 Deadline",
	url: "http://www.illigal.uiuc.edu/web/xllora/2007/12/04/gecco-2008-deadline/"
});
</script>
	]]></description>
			<content:encoded><![CDATA[<p>The deadline for the next Genetic and Evolutionary Computation Conference (<a href="http://www.sigevo.org/gecco-2008/" title="GECCO 2008">GECCO 2008</a>) is approaching. Januray 16, 2008 is the date. Get ready!</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/09/gecco-2008-deadline-extended-to-january-30th/" rel="bookmark" title="Permanent Link: GECCO 2008 Deadline Extended to January 30th" >GECCO 2008 Deadline Extended to January 30th</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/12/29/gecco-2007-deadline/" rel="bookmark" title="Permanent Link: GECCO 2007 Deadline" >GECCO 2007 Deadline</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/16/gecco-2007-deadline-extended/" rel="bookmark" title="Permanent Link: GECCO 2007 deadline extended" >GECCO 2007 deadline extended</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=GECCO+2008+Deadline&url=http%3A%2F%2Fwww.illigal.uiuc.edu%2Fweb%2Fxllora%2F2007%2F12%2F04%2Fgecco-2008-deadline%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.illigal.uiuc.edu/web/xllora/2007/12/04/gecco-2008-deadline/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>TechnoCrunch 40 Conference 2007</title>
		<link>http://www.illigal.uiuc.edu/web/xllora/2007/09/19/technocrunch-40-conference-2007/</link>
		<comments>http://www.illigal.uiuc.edu/web/xllora/2007/09/19/technocrunch-40-conference-2007/#comments</comments>
		<pubDate>Wed, 19 Sep 2007 23:23:27 +0000</pubDate>
		<dc:creator>Xavier Llorà</dc:creator>
		
		<category><![CDATA[Scrapbook]]></category>

		<guid isPermaLink="false">http://www.illigal.uiuc.edu/web/xllora/2007/09/19/technocrunch-40-conference-2007/</guid>
		<description><![CDATA[TechCrunch40 Conference 2007 present 40 startups. If you want to procrastinate a bit, check the ideas they are proposing. Maybe they will get you inspired 
Related PostsGECCO 2007 deadline extendedCEC 2006  deadline is today!Finally I am back up

<script type="text/javascript">
SHARETHIS.addEntry({
	title: "TechnoCrunch 40 Conference 2007",
	url: "http://www.illigal.uiuc.edu/web/xllora/2007/09/19/technocrunch-40-conference-2007/"
});
</script>
	]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.techcrunch40.com/2007/index.php">TechCrunch40 Conference 2007</a> present 40 startups. If you want to procrastinate a bit, check the ideas they are proposing. Maybe they will get you inspired <img src='http://www.illigal.uiuc.edu/web/xllora/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></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/01/16/gecco-2007-deadline-extended/" rel="bookmark" title="Permanent Link: GECCO 2007 deadline extended" >GECCO 2007 deadline extended</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/01/31/cec-2006-deadline-is-today/" rel="bookmark" title="Permanent Link: CEC 2006  deadline is today!" >CEC 2006  deadline is today!</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/09/17/finally-i-am-back-up/" rel="bookmark" title="Permanent Link: Finally I am back up" >Finally I am back up</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=TechnoCrunch+40+Conference+2007&url=http%3A%2F%2Fwww.illigal.uiuc.edu%2Fweb%2Fxllora%2F2007%2F09%2F19%2Ftechnocrunch-40-conference-2007%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.illigal.uiuc.edu/web/xllora/2007/09/19/technocrunch-40-conference-2007/feed/</wfw:commentRss>
		</item>
		<item>
		<title>LCS researcher changes jobs</title>
		<link>http://www.illigal.uiuc.edu/web/xllora/2007/09/19/lcs-researcher-changes-jobs/</link>
		<comments>http://www.illigal.uiuc.edu/web/xllora/2007/09/19/lcs-researcher-changes-jobs/#comments</comments>
		<pubDate>Wed, 19 Sep 2007 14:37:49 +0000</pubDate>
		<dc:creator>Xavier Llorà</dc:creator>
		
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.illigal.uiuc.edu/web/xllora/2007/09/19/lcs-researcher-changes-jobs/</guid>
		<description><![CDATA[This is an excerpt from Alwyn Barry&#8217;s web page (Thanks Pier Luca for pointing it out)
 Most people who know me will be aware that I am changing job shortly. I will be leaving the University of Bath from 30th September 2007, and will no longer be an academic. I am moving to Street in [...]

<script type="text/javascript">
SHARETHIS.addEntry({
	title: "LCS researcher changes jobs",
	url: "http://www.illigal.uiuc.edu/web/xllora/2007/09/19/lcs-researcher-changes-jobs/"
});
</script>
	]]></description>
			<content:encoded><![CDATA[<p>This is an excerpt from <a href="http://www.cs.bath.ac.uk/%7Eamb/">Alwyn Barry</a>&#8217;s web page (Thanks <a href="http://webspace.elet.polimi.it/lanzi/">Pier Luca</a> for pointing it out)</p>
<blockquote><p> Most people who know me will be aware that I am changing job shortly. I will be leaving the University of Bath from 30th September 2007, and will no longer be an academic. I am moving to Street in Somerset to become the Pastor of Street Baptist Church. I am still happy to answer any questions relating to my previous research, so do feel free to contact me via my new email address, which is linked from this site.</p></blockquote>
<p>Alwyn, it has been a pleasure to be able to interact with you. I would like to wish you the best in your new endeavor, knowing that you will give your 100% as usual.</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=LCS+researcher+changes+jobs&url=http%3A%2F%2Fwww.illigal.uiuc.edu%2Fweb%2Fxllora%2F2007%2F09%2F19%2Flcs-researcher-changes-jobs%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.illigal.uiuc.edu/web/xllora/2007/09/19/lcs-researcher-changes-jobs/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Kumara Sastry Ph.D.</title>
		<link>http://www.illigal.uiuc.edu/web/xllora/2007/09/07/kumara-sastry-phd/</link>
		<comments>http://www.illigal.uiuc.edu/web/xllora/2007/09/07/kumara-sastry-phd/#comments</comments>
		<pubDate>Fri, 07 Sep 2007 19:33:13 +0000</pubDate>
		<dc:creator>Xavier Llorà</dc:creator>
		
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.illigal.uiuc.edu/web/xllora/2007/09/07/kumara-sastry-phd/</guid>
		<description><![CDATA[





Kumara&#8217;s PhD defense



Kumara has just defended his Ph.D. thesis &#8220;Genetic Algorithms and Genetic Programming for Multiscale Modeling: Applications in Materials Science and Chemistry and Advances in Scalability&#8221;. The gallery above shows snapshots of Kumara in action. If you have not taken a look at his excellent work, put it on your todo list, you will [...]

<script type="text/javascript">
SHARETHIS.addEntry({
	title: "Kumara Sastry Ph.D.",
	url: "http://www.illigal.uiuc.edu/web/xllora/2007/09/07/kumara-sastry-phd/"
});
</script>
	]]></description>
			<content:encoded><![CDATA[<table>
<tbody>
<tr>
<td align="center"><a href="http://picasaweb.google.com/xllora/KumaraSPhDDefense"><img src="http://lh6.google.com/xllora/RuF69sqHmFE/AAAAAAAABPw/J0AIB8JKHFQ/s160-c/KumaraSPhDDefense.jpg" height="160" width="160" /></a></td>
</tr>
<tr>
<td><a href="http://picasaweb.google.com/xllora/KumaraSPhDDefense">Kumara&#8217;s PhD defense</a></td>
</tr>
</tbody>
</table>
<p>Kumara has just defended his Ph.D. thesis <i>&#8220;Genetic Algorithms and Genetic Programming for Multiscale Modeling: Applications in Materials Science and Chemistry and Advances in Scalability&#8221;</i>. The gallery above shows snapshots of Kumara in action. If you have not taken a look at his excellent work, put it on your todo list, you will not regret it. Congratulations! </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/04/03/interesting-compilation-of-firefox-add-ons/" rel="bookmark" title="Permanent Link: Interesting compilation of Firefox add-ons" >Interesting compilation of Firefox add-ons</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=Kumara+Sastry+Ph.D.&url=http%3A%2F%2Fwww.illigal.uiuc.edu%2Fweb%2Fxllora%2F2007%2F09%2F07%2Fkumara-sastry-phd%2F">ShareThis</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.illigal.uiuc.edu/web/xllora/2007/09/07/kumara-sastry-phd/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
