<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>

<channel>
	<title>UnixWars</title>
	<atom:link href="http://unixwars.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://unixwars.com</link>
	<description>Taher Shihadeh's ragbag</description>
	<pubDate>Wed, 10 Dec 2008 11:11:23 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>MySQL wrapper for DBSlayer</title>
		<link>http://unixwars.com/2008/12/10/mysql-wrapper-for-dbslayer/</link>
		<comments>http://unixwars.com/2008/12/10/mysql-wrapper-for-dbslayer/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 11:11:23 +0000</pubDate>
		<dc:creator>Taher Shihadeh</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Projects]]></category>

		<category><![CDATA[Cherokee]]></category>

		<guid isPermaLink="false">http://unixwars.com/?p=205</guid>
		<description><![CDATA[
I have talked previously about Cherokee&#8217;s MySQL Database Bridge, so I won&#8217;t be repeating myself. Check the information about the Cherokee handler module and the recipe for MySQL balancing on our main site if you are interested.
Besides being the fastest implementation of its kind, it is really easy to use and offers a lot of [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Cherokee Web Server" href="http://www.cherokee-project.com/"><img class="alignright" src="http://unixwars.com/wp-content/2008/03/cherokee.gif" alt="Cherokee Webserver" width="129" height="50" title="MySQL wrapper for DBSlayer" /></a><br />
I have talked previously about <a href="http://www.cherokee-project.com/doc/other_goodies.html#dbslayer">Cherokee&#8217;s MySQL Database Bridge</a>, so I won&#8217;t be repeating myself. Check the information about the <a href="http://www.cherokee-project.com/doc/modules_handlers_dbslayer.html">Cherokee handler module</a> and the recipe for <a href="http://www.cherokee-project.com/doc/cookbook_dbslayer.html">MySQL balancing</a> on our <a href="http://www.cherokee-project.com/">main site</a> if you are interested.</p>
<p>Besides being the fastest implementation of its kind, it is really easy to use and offers a lot of scalability advantages.</p>
<p>For those of you using PHP we&#8217;ve finally pushed upstream a wrapper I wrote for this feature. It should facilitate the use of the MySQL Database Bridge: the PHP-MySQL API has been replicated and can be found under <a href="http://svn.cherokee-project.com/browser/cherokee/trunk/dbslayer">dbslayer/mysql_wrap.php</a> in Cherokee&#8217;s source tree. It should provide an easy to use method of benefiting from the advantages offered by Cherokee without having to modify your applications. This will definitely be in our next release, so give it a try and tell us about it! ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://unixwars.com/2008/12/10/mysql-wrapper-for-dbslayer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>override_function() in PHP</title>
		<link>http://unixwars.com/2008/11/29/override_function-in-php/</link>
		<comments>http://unixwars.com/2008/11/29/override_function-in-php/#comments</comments>
		<pubDate>Fri, 28 Nov 2008 22:00:05 +0000</pubDate>
		<dc:creator>Taher Shihadeh</dc:creator>
		
		<category><![CDATA[Misc]]></category>

		<category><![CDATA[Projects]]></category>

		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://unixwars.com/?p=197</guid>
		<description><![CDATA[I&#8217;ve been writing a wrapper for Cherokee&#8217;s MySQL load balancer to transparently replace PHP&#8217;s MySQL functions and provide connection pooling and database balancing at absolutely no cost. And I encountered a problem wanting to override those built-in functions.
It looks like the override_function() has a bug that prevents from using it to override two or more [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been writing a wrapper for Cherokee&#8217;s <a href="http://www.cherokee-project.com/doc/cookbook_dbslayer.html">MySQL load balancer</a> to transparently replace PHP&#8217;s MySQL functions and provide connection pooling and database balancing at absolutely no cost. And I encountered a problem wanting to override those built-in functions.</p>
<p>It looks like the <a href="http://es.php.net/override_function">override_function()</a> has a <a href="http://pecl.php.net/bugs/bug.php?id=10208">bug</a> that prevents from using it to override two or more functions, since it issues this error:</p>
<pre class="prettyprint">Fatal error: Cannot redeclare __overridden__()</pre>
<p>Judging by the C code for PHP&#8217;s override_function() function, instead of hardcoding the overriden function name it was planed to generate random names, but for reasons unknown to me this never happened.</p>
<p>Anyway, I can&#8217;t believe the fix for this is so simple and yet the solution didn&#8217;t appear in PHP&#8217;s excellent <a href="http://es.php.net/docs.php">online documentation</a>. It had me lost for a while, but it&#8217;s as simple as renaming the overriden function!! This is from the wrapper I mentioned, that will be distributed with <a href="http://cherokee-project.com">Cherokee</a> shortly:</p>
<pre class="prettyprint">foreach ($substs as $func => $ren_func) {
    override_function($func, $args[$func], "return $substs[$func];");
    rename_function("__overridden__", $ren_func);
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://unixwars.com/2008/11/29/override_function-in-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Some guys are simply brilliant</title>
		<link>http://unixwars.com/2008/11/28/some-guys-are-simply-brilliant/</link>
		<comments>http://unixwars.com/2008/11/28/some-guys-are-simply-brilliant/#comments</comments>
		<pubDate>Fri, 28 Nov 2008 15:16:33 +0000</pubDate>
		<dc:creator>Taher Shihadeh</dc:creator>
		
		<category><![CDATA[Humor]]></category>

		<category><![CDATA[Projects]]></category>

		<category><![CDATA[Cherokee]]></category>

		<guid isPermaLink="false">http://unixwars.com/?p=193</guid>
		<description><![CDATA[You know those times when you stumble upon a good idea and think it is plain genius?
Alvaro told me about it this morning and I just had to share it with everybody. This is what you will find if you visit http://apache-es.org, a community in Spanish built to talk about Apache and system administration.

The &#8220;aviso&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>You know those times when you stumble upon a good idea and think it is plain genius?</p>
<p><a href="http://alobbs.com">Alvaro</a> told me about it this morning and I just had to share it with everybody. This is what you will find if you visit <a href="http://apache-es.org">http://apache-es.org</a>, a community in Spanish built to talk about <a href="http://www.apache.org">Apache</a> and system administration.</p>
<p style="text-align: center;"><a href="http://unixwars.com/wp-content/2008/11/apache-es2.png"><img class="aligncenter size-full wp-image-195" title="apache-es" src="http://unixwars.com/wp-content/2008/11/apache-es2.png" alt="apache-es2 Some guys are simply brilliant" width="380" height="197" /></a></p>
<p>The &#8220;aviso&#8221; part is a warning:</p>
<blockquote><p><strong><em>Apache-es.org, the only Q&amp;A site about Apache that is running Cherokee!</em></strong></p></blockquote>
<p>As I said: plain genius!</p>
]]></content:encoded>
			<wfw:commentRss>http://unixwars.com/2008/11/28/some-guys-are-simply-brilliant/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cherokee on steroids: v0.11 now with reverse proxy</title>
		<link>http://unixwars.com/2008/11/27/cherokee-on-steroids-v011-now-with-reverse-proxy/</link>
		<comments>http://unixwars.com/2008/11/27/cherokee-on-steroids-v011-now-with-reverse-proxy/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 10:37:27 +0000</pubDate>
		<dc:creator>Taher Shihadeh</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Projects]]></category>

		<category><![CDATA[Python]]></category>

		<category><![CDATA[Cherokee]]></category>

		<category><![CDATA[high performance]]></category>

		<guid isPermaLink="false">http://unixwars.com/?p=189</guid>
		<description><![CDATA[Yesterday we reached yet another milestone in Cherokee&#8217;s development towards World Domination. After almost a month of hard work, our newest creation hit the streets. The official anouncement hasn&#8217;t even been made yet, but Cherokee 0.11.1 is out in the wild.
Besides our regular bug fixes and performance enhancements, it is shipped with some new features. [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday we reached yet another milestone in Cherokee&#8217;s development towards World Domination. After almost a month of hard work, our newest creation hit the streets. The official anouncement hasn&#8217;t even been made yet, but Cherokee 0.11.1 is out in the wild.</p>
<p>Besides our regular bug fixes and performance enhancements, it is shipped with some new features. SSI support was being requested every now and then, the SSL infrastructure has been reworked and the new <a href="http://en.wikipedia.org/wiki/Reverse_proxy">reverse proxy</a> is working flawlessly. The Windows build is not a reality yet, but great advances have been made towards that end. Cherokee is currently working under Windows, but the admin is not. And it has to be cross compiled, for now. Anyway, we&#8217;re one step closer to releasing a binary Windows build ;)</p>
<p style="text-align: center"><a title="Cherokee Web Server" href="http://www.cherokee-project.com/"><img src="http://unixwars.com/wp-content/2008/03/cherokee.gif" alt="Cherokee Webserver" title="Cherokee on steroids: v0.11 now with reverse proxy" /></a></p>
<p>We have a lot of fresh ideas, and as always feedback and feature requests are more than welcome at the <a href="http://cherokee-project.com/cgi-bin/mailman/listinfo/cherokee">mailing lists</a>. Here are links to <a title="Donwload Cherokee 0.11.1" href="http://www.cherokee-project.com/download/0.11/0.11.1/cherokee-0.11.1.tar.gz">download</a> and read the <a href="http://www.cherokee-project.com/doc/">online documentation</a> with tons of new information and recipes. Enjoy! ;)</p>
<p>UPDATE: Link to the <a href="http://lists.octality.com/pipermail/cherokee/2008-November/009398.html">official anouncement.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://unixwars.com/2008/11/27/cherokee-on-steroids-v011-now-with-reverse-proxy/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Gems of wisdom from a three year old</title>
		<link>http://unixwars.com/2008/11/26/gems-of-wisdom-from-a-three-year-old/</link>
		<comments>http://unixwars.com/2008/11/26/gems-of-wisdom-from-a-three-year-old/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 23:48:42 +0000</pubDate>
		<dc:creator>Taher Shihadeh</dc:creator>
		
		<category><![CDATA[Humor]]></category>

		<guid isPermaLink="false">http://unixwars.com/?p=185</guid>
		<description><![CDATA[This weekend I had a little accident with the mountain bike. A truck came out of nowhere in the middle of the mountain -like they always do-, I got surprised, fell and took the hit with my bare hands. I&#8217;ll be spending some days with raw-flesh-style palms.  What can I say? I&#8217;m a fashion victim. [...]]]></description>
			<content:encoded><![CDATA[<p>This weekend I had a little accident with the mountain bike. A truck came out of nowhere in the middle of the mountain -like they always do-, I got surprised, fell and took the hit with my bare hands. I&#8217;ll be spending some days with raw-flesh-style palms.  What can I say? I&#8217;m a fashion victim. Sort of.</p>
<p>Anyway, I was having my injuries treated at my sister&#8217;s when my nephew came by. He&#8217;s a three year old, so every answer I gave him about the accident raised another question.</p>
<p>This one was priceless:</p>
<blockquote><p><em>Uncle, do you want my training wheels?</em></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://unixwars.com/2008/11/26/gems-of-wisdom-from-a-three-year-old/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Python can do a lot of things</title>
		<link>http://unixwars.com/2008/11/20/python-can-do-a-lot-of-things/</link>
		<comments>http://unixwars.com/2008/11/20/python-can-do-a-lot-of-things/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 15:27:16 +0000</pubDate>
		<dc:creator>Taher Shihadeh</dc:creator>
		
		<category><![CDATA[Humor]]></category>

		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://unixwars.com/?p=183</guid>
		<description><![CDATA[But it is not omnipotent. Leave that to Q. I stumbled upon this funny answer from back in 2005 and I had to share it. That guy is a genius! ;-)
I&#8217;m curious how I can make Python print text in color.
That depends strictly on your printer.  With my hp LaserJet 1200, no way &#8212; [...]]]></description>
			<content:encoded><![CDATA[<p>But it is not omnipotent. Leave that to Q. I stumbled upon this <a href="http://bytes.com/forum/thread22349.html">funny answer from back in 2005</a> and I had to share it. That guy is a genius! ;-)</p>
<blockquote><p><strong><em>I&#8217;m curious how I can make Python print text in color.</em></strong></p>
<p><em>That depends strictly on your printer.  With my hp LaserJet 1200, no way &#8212; not even Python&#8217;s power can overcome the hardware&#8217;s limitations in this regard&#8230; it&#8217;s a black-and-white printer and that&#8217;s all there is to it!  If I did have a color printer, then I would have Python produce the appropriate postscript code, or &#8220;escape-sequences&#8221; in whatever printer-specific language a given printer requires to have it output color text (or, depending on my operating system, printer driver, filters, etc, I might have to send appropriate &#8220;escape-sequences&#8221; or whatever to the DRIVER in order to convince it to drive the printer appropriately).</em></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://unixwars.com/2008/11/20/python-can-do-a-lot-of-things/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The family keeps growing</title>
		<link>http://unixwars.com/2008/11/14/the-family-keeps-growing/</link>
		<comments>http://unixwars.com/2008/11/14/the-family-keeps-growing/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 09:21:10 +0000</pubDate>
		<dc:creator>Taher Shihadeh</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Misc]]></category>

		<category><![CDATA[Projects]]></category>

		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://unixwars.com/?p=176</guid>
		<description><![CDATA[I posted a note about this at Cherokee&#8217;s main site, but I totally forgot to tell you over here. My bad.
However, it&#8217;s never late to share good news. A couple of days ago Cherokee&#8217;s family incorporated a Polish Cherokee Community as new member!
And they took a huge leap forward by creating Cherokee Polska, which isn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>I posted a note about this at <a href="http://cherokee-project.com">Cherokee&#8217;s main site</a>, but I totally forgot to tell you over here. My bad.</p>
<p>However, it&#8217;s never late to share good news. A couple of days ago Cherokee&#8217;s family incorporated a <a href="http://lists.octality.com/pipermail/cherokee/2008-November/009303.html">Polish Cherokee Community</a> as new member!</p>
<p>And they took a huge leap forward by creating <a href="http://cherokee-project.pl">Cherokee Polska</a>, which isn&#8217;t just another site about Cherokee. So far they&#8217;ve translated everything, documentation included. And the effort has been worth it. They received thousands of unique visitors on their first day, and that is only the beginning.</p>
<p style="text-align: center;"><a href="http://unixwars.com/wp-content/2008/11/cherokee-polska-small.jpg"><img class="size-full wp-image-178 alignnone" title="cherokee-polska-small" src="http://unixwars.com/wp-content/2008/11/cherokee-polska-small.jpg" alt="cherokee-polska-small The family keeps growing" width="399" height="263" /></a></p>
<p style="text-align: left;">From here, I wish to extend my most sincere congratulations to these guys. Great work!</p>
<p style="text-align: left;">Since Cherokee has been steadily getting better and better, I expect more localization initiatives will keep popping up. We&#8217;ll see it in time. That&#8217;s a given.</p>
]]></content:encoded>
			<wfw:commentRss>http://unixwars.com/2008/11/14/the-family-keeps-growing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New day, new release: Cherokee 0.10</title>
		<link>http://unixwars.com/2008/10/29/new-day-new-release-cherokee-010/</link>
		<comments>http://unixwars.com/2008/10/29/new-day-new-release-cherokee-010/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 12:49:13 +0000</pubDate>
		<dc:creator>Taher Shihadeh</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Projects]]></category>

		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://unixwars.com/?p=171</guid>
		<description><![CDATA[We&#8217;ve been really busy lately. After my adventures in Venezuela at the Infociencias and the Open Source World Conference 2008 in Málaga -I know, I know&#8230; I still have to talk about that and post some photos, but the days are not long enough!-, we&#8217;ve finally made the time to polish some last details.
Today, Cherokee [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve been really busy lately. After my adventures in Venezuela at the <a href="http://www.infociencias.org/">Infociencias</a> and the <a href="http://www.opensourceworldconference.com/">Open Source World Conference 2008</a> in Málaga -I know, I know&#8230; I still have to talk about that and post some photos, but the days are not long enough!-, we&#8217;ve finally made the time to polish some last details.</p>
<p>Today, <a href="http://lists.octality.com/pipermail/cherokee/2008-October/009123.html">Cherokee 0.10 has been born!</a> Even if you&#8217;re not into this FOSS World thingie, you should know that this is the <a href="http://www.cherokee-project.com/benchmarks.html">fastest web server</a> out there!</p>
<div class="entry">
<div id="awppost_140" class="awppost">
<div id="awppost_1_140" class="awppage">
<p style="text-align: center;"><a title="Cherokee Web Server" href="http://www.cherokee-project.com/"><img title="New Cherokee release hits the streets!" src="http://unixwars.com/wp-content/2008/03/cherokee.gif" alt="Cherokee Webserver" /></a></p>
<p>As always, stability and performance have improved, some bugs have been fixed and new features are available. Lately our <a href="http://www.alobbs.com/1344/MySQL_asynchronous_balancing_with_HTTP_JSON.html">MySQL load balancer</a> module has been attracting a lot of attention. Download <a href="http://www.cherokee-project.com">Cherokee</a> and follow the <a href="http://www.cherokee-project.com/doc/cookbook_dbslayer.html">cookbook</a> to give it a try.</p>
<p>As always, here yo have the list of relevant links:</p>
<ul>
<li>Alvaro’s <a href="http://lists.octality.com/pipermail/cherokee/2008-October/009123.html">official release note</a>.</li>
<li>Our <a href="http://cherokee-project.com/cgi-bin/mailman/listinfo/cherokee">mailing lists</a>.</li>
<li><a title="Download Cherokee 0.10.0" href="http://www.cherokee-project.com/download/0.10/0.10.0/cherokee-0.10.0.tar.gz">Download link</a>.</li>
<li><a href="http://www.cherokee-project.com/">Cherokee-Project’s</a> website.</li>
</ul>
<p>Handle with care: This baby is a heavy hitter by its own merits! ;)</p></div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://unixwars.com/2008/10/29/new-day-new-release-cherokee-010/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Open Source Wold Conference</title>
		<link>http://unixwars.com/2008/10/21/open-source-wold-conference/</link>
		<comments>http://unixwars.com/2008/10/21/open-source-wold-conference/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 15:20:33 +0000</pubDate>
		<dc:creator>Taher Shihadeh</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Misc]]></category>

		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://unixwars.com/?p=169</guid>
		<description><![CDATA[Hi there. I haven&#8217;t yet had the time to blog about last week&#8217;s event at Venezuela where I spoke about Cherokee. Hopefully I&#8217;ll be posting some photos really soon. After I came back to Spain on Sunday, I wen&#8217;t straight to Malaga to the Open Source World Conference 2008. I&#8217;m meeting lots of really interesting [...]]]></description>
			<content:encoded><![CDATA[<p>Hi there. I haven&#8217;t yet had the time to blog about last week&#8217;s event at Venezuela where I spoke about Cherokee. Hopefully I&#8217;ll be posting some photos really soon. After I came back to Spain on Sunday, I wen&#8217;t straight to Malaga to the <a href="http://www.opensourceworldconference.com/">Open Source World Conference 2008</a>. I&#8217;m meeting lots of really interesting people and seeing some friends I haven&#8217;t been in contact with lately.</p>
<p>Any way, this was just a quick note. I&#8217;ll be making some time to write about these last days once I get home by the end of the week.</p>
<p>Stay tuned until then!</p>
]]></content:encoded>
			<wfw:commentRss>http://unixwars.com/2008/10/21/open-source-wold-conference/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Talking about Cherokee in Venezuela</title>
		<link>http://unixwars.com/2008/10/15/talking-about-cherokee-in-venezuela/</link>
		<comments>http://unixwars.com/2008/10/15/talking-about-cherokee-in-venezuela/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 02:16:23 +0000</pubDate>
		<dc:creator>Taher Shihadeh</dc:creator>
		
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://unixwars.com/?p=163</guid>
		<description><![CDATA[Hi there! Just a quick note to let you know I&#8217;m in Venezuela for the week. I&#8217;ll be attending the XXII Jornadas Infociencias in Barquisimeto where I&#8217;ll be talking about Cherokee. It&#8217;s my first time here, and I&#8217;m enjoying learning about Venezuela&#8217;s people and culture. Today I was told there&#8217;s this decree 3390 that makes [...]]]></description>
			<content:encoded><![CDATA[<p>Hi there! Just a quick note to let you know I&#8217;m in Venezuela for the week. I&#8217;ll be attending the <a href="http://www.infociencias.org">XXII Jornadas Infociencias</a> in <a href="http://maps.google.com/maps?q=Barquisimeto">Barquisimeto</a> where I&#8217;ll be talking about <a href="http://www.cherokee-project.com/">Cherokee</a>. It&#8217;s my first time here, and I&#8217;m enjoying learning about Venezuela&#8217;s people and culture. Today I was told there&#8217;s this <a href="http://www.gobiernoenlinea.gob.ve/directorioestado/decreto_3390.html">decree 3390</a> that makes mandatory the usage of Free Software for public institutions. Things sure look bright for FLOSS over here!</p>
<p>I&#8217;ve spent the whole day going around, seeing places and meeting people, and I&#8217;ve learnt some things:</p>
<ol>
<li>The sights are awesome.</li>
<li>Trying out the popular dishes is a must! <a href="http://en.wikipedia.org/wiki/Arepa">Arepa</a>, hm&#8230;. ;)</li>
<li>And everyone over here is really friendly.</li>
</ol>
<p>I&#8217;ll make my point with a photo that was taken when I visited a lab at the <em>Universidad Centroccidental &#8220;Lisandro Alvarado&#8221;</em> (UCLA-Venezuela). Someone mentioned that I was one of the guests at Infociencias and everybody wanted to be in the photo :)</p>
<p>
<a href="http://unixwars.com/wp-content/2008/10/ucla_20081.jpg"><img class="aligncenter size-full wp-image-164" title="ucla_2008" src="http://unixwars.com/wp-content/2008/10/ucla_20081.jpg" alt="ucla_20081 Talking about Cherokee in Venezuela" width="500" height="241" /></a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://unixwars.com/2008/10/15/talking-about-cherokee-in-venezuela/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
