<?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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Fernando J. Pereda's blag</title>
	<atom:link href="http://fpereda.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://fpereda.wordpress.com</link>
	<description>Yet another blag full of rants</description>
	<lastBuildDate>Tue, 01 Mar 2011 16:04:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='fpereda.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Fernando J. Pereda's blag</title>
		<link>http://fpereda.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://fpereda.wordpress.com/osd.xml" title="Fernando J. Pereda&#039;s blag" />
	<atom:link rel='hub' href='http://fpereda.wordpress.com/?pushpress=hub'/>
		<item>
		<title>iostreams are VERY thread-unsafe on Mac OS X</title>
		<link>http://fpereda.wordpress.com/2010/05/25/iostreams-are-very-thread-unsafe-on-mac-os-x/</link>
		<comments>http://fpereda.wordpress.com/2010/05/25/iostreams-are-very-thread-unsafe-on-mac-os-x/#comments</comments>
		<pubDate>Tue, 25 May 2010 07:19:59 +0000</pubDate>
		<dc:creator>Fernando J. Pereda</dc:creator>
				<category><![CDATA[blag]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[threads]]></category>

		<guid isPermaLink="false">http://fpereda.wordpress.com/?p=120</guid>
		<description><![CDATA[This was both surprising and disgusting. Our in-house data acquisition software needs to convert lots of floats to ascii so that they can ve viewed in real time. This is very easy to do with a stringify-like function like the one found in paludis/paludis/util/stringify.hh. stringify looks trivial, there&#8217;s no shared state nor there is any [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpereda.wordpress.com&amp;blog=3759924&amp;post=120&amp;subd=fpereda&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This was both surprising and disgusting. Our in-house data acquisition software needs to convert lots of floats to ascii so that they can ve viewed in real time. This is very easy to do with a stringify-like function like the one found in <a href="http://git.pioto.org/gitweb/paludis.git?a=blob_plain;f=paludis/util/stringify.hh;hb=HEAD">paludis/paludis/util/stringify.hh</a>.</p>
<p>stringify looks trivial, there&#8217;s no shared state nor there is any static data, so I thought that I could call stringify from several threads at the same time. I don&#8217;t think there&#8217;s any guarantee about thread safety of ostringstream&#8217;s operator&lt;&lt; but it looked like a safe assumption. <del datetime="2010-05-27T08:27:51+00:00">Well, <strong>incorrect</strong></del>.</p>
<p><del datetime="2010-05-27T08:28:55+00:00">operator&lt;&lt; calls vsnprintf, which should be thread-safe by itself. However, OSX&#039;s vsnprintf ultimately calls localeconv_l, which is not thread-safe. And, you end up with something like this:</del></p>
<p><code>#0  0x96f734a9 in malloc_error_break ()<br />
#1  0x96f6e497 in szone_error ()<br />
#2  0x96e98503 in szone_free ()<br />
#3  0x96e9836d in free ()<br />
#4  0x96e97f24 in localeconv_l ()<br />
#5  0x96e93335 in __vfprintf ()<br />
#6  0x96ecb9b5 in vsnprintf ()<br />
#7  0x0144615e in std::__convert_from_v ()<br />
#8  0x01437d2a in std::num_put&lt;char, std::ostreambuf_iterator&lt;char, std::char_traits &gt; &gt;::_M_insert_float ()<br />
#9  0x0143803d in std::num_put&lt;char, std::ostreambuf_iterator&lt;char, std::char_traits &gt; &gt;::do_put ()<br />
#10 0x0144ab6a in std::ostream::_M_insert ()<br />
#11 0x0000fb25 in std::basic_ostringstream&lt;char, std::char_traits, std::allocator &gt;::str () at sstream:217<br />
...</code></p>
<p><del datetime="2010-05-27T08:28:55+00:00">Which means there&#8217;s no way of converting stuff to human readable in a thread-safe manner. I&#8217;m not sure whether I&#8217;m missing something or not&#8230; but this looks very fishy. I ended up adding a stupid big mutex around my stringify calls, but that looks more like a workaround that a final solution to the problem. Plus, this doesn&#8217;t protect ANY other uses of iostream&#8217;s operator&lt;&lt; such as loggers.</del></p>
<p>Ok&#8230; looks like that wasn&#8217;t a very accurate diagnostic. This is going to be more annoying than I thought.</p>
<p>&mdash; ferdy</p>
<br /> Tagged: <a href='http://fpereda.wordpress.com/tag/c/'>C</a>, <a href='http://fpereda.wordpress.com/tag/osx/'>osx</a>, <a href='http://fpereda.wordpress.com/tag/programming/'>programming</a>, <a href='http://fpereda.wordpress.com/tag/threads/'>threads</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fpereda.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fpereda.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fpereda.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fpereda.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fpereda.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fpereda.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fpereda.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fpereda.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fpereda.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fpereda.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fpereda.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fpereda.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fpereda.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fpereda.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpereda.wordpress.com&amp;blog=3759924&amp;post=120&amp;subd=fpereda&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fpereda.wordpress.com/2010/05/25/iostreams-are-very-thread-unsafe-on-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0169c931dc5673c5f7fe792e9d397f72?s=96&#38;d=" medium="image">
			<media:title type="html">fpereda</media:title>
		</media:content>
	</item>
		<item>
		<title>Finally, a real AMSV (Autonomous Marine Surface Vehicle)</title>
		<link>http://fpereda.wordpress.com/2010/05/01/finally-a-real-amsv-autonomous-marine-surface-vehicle/</link>
		<comments>http://fpereda.wordpress.com/2010/05/01/finally-a-real-amsv-autonomous-marine-surface-vehicle/#comments</comments>
		<pubDate>Sat, 01 May 2010 15:15:57 +0000</pubDate>
		<dc:creator>Fernando J. Pereda</dc:creator>
				<category><![CDATA[blag]]></category>

		<guid isPermaLink="false">http://fpereda.wordpress.com/?p=115</guid>
		<description><![CDATA[After lots of work from different people, it finally is a real AMSV. Nothing too fancy yet (just a mere PD controller for speed and heading). It is, nonetheless, a very interesting platform for future research. With semi-strong current and some wind it managed to follow a very nice path across some waypoints: The trajectory [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpereda.wordpress.com&amp;blog=3759924&amp;post=115&amp;subd=fpereda&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After lots of work from different people, <strong>it</strong> finally is a real AMSV. Nothing too fancy yet (just a mere PD controller for speed and heading). It is, nonetheless, a very interesting platform for future research.</p>
<p>With semi-strong current and some wind it managed to follow a very nice path across some waypoints:</p>
<p><a href="http://fpereda.files.wordpress.com/2010/05/waypoints.png"><img class="aligncenter size-full wp-image-116" title="AMSV following simple waypoints" src="http://fpereda.files.wordpress.com/2010/05/waypoints.png" alt="" width="747" height="523" /></a></p>
<p>The trajectory between p2 and the shore was done manually using a joystick. Interestingly enough, that path is less nice than those done by the autonomous control.</p>
<p>I hope to be able to post more niceties soon.</p>
<p>&mdash; ferdy</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fpereda.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fpereda.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fpereda.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fpereda.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fpereda.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fpereda.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fpereda.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fpereda.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fpereda.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fpereda.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fpereda.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fpereda.wordpress.com/115/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fpereda.wordpress.com/115/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fpereda.wordpress.com/115/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpereda.wordpress.com&amp;blog=3759924&amp;post=115&amp;subd=fpereda&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fpereda.wordpress.com/2010/05/01/finally-a-real-amsv-autonomous-marine-surface-vehicle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0169c931dc5673c5f7fe792e9d397f72?s=96&#38;d=" medium="image">
			<media:title type="html">fpereda</media:title>
		</media:content>

		<media:content url="http://fpereda.files.wordpress.com/2010/05/waypoints.png" medium="image">
			<media:title type="html">AMSV following simple waypoints</media:title>
		</media:content>
	</item>
		<item>
		<title>MSDNAA, clever?</title>
		<link>http://fpereda.wordpress.com/2009/05/29/msdnaa-clever/</link>
		<comments>http://fpereda.wordpress.com/2009/05/29/msdnaa-clever/#comments</comments>
		<pubDate>Fri, 29 May 2009 09:02:19 +0000</pubDate>
		<dc:creator>Fernando J. Pereda</dc:creator>
				<category><![CDATA[blag]]></category>
		<category><![CDATA[enterprisey]]></category>
		<category><![CDATA[idiots]]></category>
		<category><![CDATA[rant]]></category>
		<category><![CDATA[suckrosoft]]></category>

		<guid isPermaLink="false">http://fpereda.wordpress.com/?p=113</guid>
		<description><![CDATA[So MSDNAA lets university students get some Microsoft products for free for educational purposes. That&#8217;s all fine and dandy except that you can&#8217;t directly download stuff, you have to do it using a shitty download manager. It is hilarious that you have to run a Windows executable to download a copy of Windows XP. Chicken [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpereda.wordpress.com&amp;blog=3759924&amp;post=113&amp;subd=fpereda&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So MSDNAA lets university students get some Microsoft products for free for educational purposes. That&#8217;s all fine and dandy except that you can&#8217;t directly download stuff, you have to do it using a shitty download manager.</p>
<p>It is hilarious that you have to run a Windows executable to download a copy of Windows XP.</p>
<p>Chicken and egg?&#8230; Yeah, that&#8217;s clever.</p>
<p>One point for you Suckrosoft.</p>
<br /> Tagged: enterprisey, idiots, rant, suckrosoft <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fpereda.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fpereda.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fpereda.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fpereda.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fpereda.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fpereda.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fpereda.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fpereda.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fpereda.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fpereda.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fpereda.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fpereda.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fpereda.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fpereda.wordpress.com/113/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpereda.wordpress.com&amp;blog=3759924&amp;post=113&amp;subd=fpereda&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fpereda.wordpress.com/2009/05/29/msdnaa-clever/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0169c931dc5673c5f7fe792e9d397f72?s=96&#38;d=" medium="image">
			<media:title type="html">fpereda</media:title>
		</media:content>
	</item>
		<item>
		<title>OpenSceneGraph</title>
		<link>http://fpereda.wordpress.com/2009/05/10/openscenegraph/</link>
		<comments>http://fpereda.wordpress.com/2009/05/10/openscenegraph/#comments</comments>
		<pubDate>Sun, 10 May 2009 22:18:55 +0000</pubDate>
		<dc:creator>Fernando J. Pereda</dc:creator>
				<category><![CDATA[blag]]></category>
		<category><![CDATA[cmake-sucks-goat-balls]]></category>
		<category><![CDATA[cpp]]></category>
		<category><![CDATA[openscenegraph]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[spacefish]]></category>

		<guid isPermaLink="false">http://fpereda.wordpress.com/?p=109</guid>
		<description><![CDATA[For SpaceFish I wanted a quick way to load a 3D model and be able to rotate it easily. This, along with an artificial horizon is a nice way to see the attitude of the plane while it is far to see it. It is also quite good to replay recorded data during experiments to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpereda.wordpress.com&amp;blog=3759924&amp;post=109&amp;subd=fpereda&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For <a href="http://www.spacefishproject.com">SpaceFish</a> I wanted a quick way to load a 3D model and be able to rotate it easily. This, along with an artificial horizon is a nice way to see the attitude of the plane while it is far to see it. It is also quite good to replay recorded data during experiments to study it further in the lab.</p>
<p>Since I haven&#8217;t really done anything in OpenGL beyond stupid examples and helloworld-like programs and given that I don&#8217;t have much time to devote to this task I decided to use an existing framework. Among <a href="http://irrlicht.sourceforge.net/">Irrlicht</a>, <a href="http://www.openscenegraph.org">OpenSceneGraph</a> and <a href="http://www.ogre3d.org/">Ogre</a>. I decided to give OpenSceneGraph a try, for no particular reason.</p>
<p>Unfortunately, it took a while to get it working under OSX&#8230; it needs something like this. I use <a href="http://www.macports.org">MacPorts</a> for this kind of stuff under OSX:</p>
<pre>fixOpenSceneGraph()
{
	local lib_dir=/opt/local/lib
	pushd ${lib_dir} &gt; /dev/null
	echo pushd ${lib_dir}
	for i in libosg*.dylib* libOpenThreads*.dylib* ; do
		echo install_name_tool -id ${lib_dir}/${i} ${i}
		otool -L ${i} | sed -e 1d | while read f ; do
			if [[ ${f} =~ ^libosg ]] || [[ ${f} =~ ^libOpenThreads ]] ; then
				l=${f%% *}
				echo install_name_tool -change ${l} ${lib_dir}/${l} ${i}
			fi
		done
	done
	popd &gt; /dev/null
	echo popd
	port contents OpenSceneGraph |
		sed -n -e '/^[[:space:]]*\/opt\/local\/bin\//p' -e '/\.so/p' |
		while read f ; do
		otool -L ${f} | sed -e 1d | while read d ; do
			if [[ ${d} =~ ^libosg ]] || [[ ${d} =~ ^libOpenThreads ]] ; then
				l=${d%% *}
				echo install_name_tool -change ${l} ${lib_dir}/${l} ${f}
			fi
		done
	done
}</pre>
<p>It wasn&#8217;t fun to figure that out (thank you CMake)&#8230;</p>
<p>Anyway, I think I&#8217;ll stick to OpenSceneGraph until it annoys me enough. For now, I managed to do what I wanted in less than 2 hours, which is pretty good when you have a stupidly tight schedule.</p>
<p>&mdash; ferdy</p>
<br /> Tagged: cmake-sucks-goat-balls, cpp, openscenegraph, osx, spacefish <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fpereda.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fpereda.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fpereda.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fpereda.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fpereda.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fpereda.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fpereda.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fpereda.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fpereda.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fpereda.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fpereda.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fpereda.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fpereda.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fpereda.wordpress.com/109/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpereda.wordpress.com&amp;blog=3759924&amp;post=109&amp;subd=fpereda&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fpereda.wordpress.com/2009/05/10/openscenegraph/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0169c931dc5673c5f7fe792e9d397f72?s=96&#38;d=" medium="image">
			<media:title type="html">fpereda</media:title>
		</media:content>
	</item>
		<item>
		<title>Small C trivia</title>
		<link>http://fpereda.wordpress.com/2009/04/27/small-c-trivia/</link>
		<comments>http://fpereda.wordpress.com/2009/04/27/small-c-trivia/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 07:50:06 +0000</pubDate>
		<dc:creator>Fernando J. Pereda</dc:creator>
				<category><![CDATA[blag]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[CS]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[trivia]]></category>

		<guid isPermaLink="false">http://fpereda.wordpress.com/?p=103</guid>
		<description><![CDATA[This is somehow surprising the first time you see it and it is interesting to remind it to people from time to time. The question is easy, does this program always return 0? That is, are those summations the same? If there&#8217;s a case when it doesn&#8217;t, provide a sample input and explain why it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpereda.wordpress.com&amp;blog=3759924&amp;post=103&amp;subd=fpereda&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is somehow surprising the first time you see it and it is interesting to remind it to people from time to time. The question is easy, does this program always return 0? That is, are those summations the same?</p>
<p>If there&#8217;s a case when it doesn&#8217;t, provide a sample input and explain why it happens.</p>
<pre>#include &lt;stdio.h&gt;
#include &lt;stdlib.h&gt;

int main(int argc, char *argv[])
{
	float f[argc - 1];
	for (int i = 1; i &lt; argc; i++)
		f[i - 1] = atof(argv[i]);
	float r1 = 0;
	for (int i = 0; i &lt; argc - 1; i++)
		r1 += f[i];
	float r2 = 0;
	for (int i = argc - 2; i &gt;= 0; i--)
		r2 += f[i];
	return r1 != r2;
}</pre>
<p>As usual, I&#8217;ll post the solution in a couple of days or when someone gets it right (which is always the case :))</p>
<p>&mdash; fpereda</p>
<p><b>Update:</b> correct typo spotted by Snaury.</p>
<br /> Tagged: C, CS, programming, trivia <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fpereda.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fpereda.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fpereda.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fpereda.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fpereda.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fpereda.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fpereda.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fpereda.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fpereda.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fpereda.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fpereda.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fpereda.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fpereda.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fpereda.wordpress.com/103/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpereda.wordpress.com&amp;blog=3759924&amp;post=103&amp;subd=fpereda&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fpereda.wordpress.com/2009/04/27/small-c-trivia/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0169c931dc5673c5f7fe792e9d397f72?s=96&#38;d=" medium="image">
			<media:title type="html">fpereda</media:title>
		</media:content>
	</item>
		<item>
		<title>The Burning Ship fractal</title>
		<link>http://fpereda.wordpress.com/2009/03/21/the-burning-ship-fractal/</link>
		<comments>http://fpereda.wordpress.com/2009/03/21/the-burning-ship-fractal/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 19:10:24 +0000</pubDate>
		<dc:creator>Fernando J. Pereda</dc:creator>
				<category><![CDATA[blag]]></category>
		<category><![CDATA[burningship]]></category>
		<category><![CDATA[chaos]]></category>
		<category><![CDATA[fractal]]></category>
		<category><![CDATA[gmandel]]></category>

		<guid isPermaLink="false">http://fpereda.wordpress.com/?p=95</guid>
		<description><![CDATA[I finally sat down and wrote support for drawing the Burning Ship Fractal into gmandel. It only took a couple of minutes, but I haven&#8217;t really had spare time lately. Some parts of the fractal are quite interesting and different from other fractals derived from the Mandelbrot set. Here are some pictures using gmandel: &#8212; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpereda.wordpress.com&amp;blog=3759924&amp;post=95&amp;subd=fpereda&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I finally sat down and wrote support for drawing the <a href="http://en.wikipedia.org/wiki/Burning_Ship_fractal">Burning Ship Fractal</a> into gmandel. It only took a couple of minutes, but I haven&#8217;t really had spare time lately.</p>
<p>Some parts of the fractal are quite interesting and different from other fractals derived from the <a href="http://en.wikipedia.org/wiki/Mandelbrot_set">Mandelbrot set</a>. Here are some pictures using gmandel:</p>

<a href='http://fpereda.wordpress.com/2009/03/21/the-burning-ship-fractal/burningship1/' title='burningship1'><img data-attachment-id='96' data-orig-size='900,600' data-liked='0'width="150" height="100" src="http://fpereda.files.wordpress.com/2009/03/burningship1.png?w=150&#038;h=100" class="attachment-thumbnail" alt="burningship1" title="burningship1" /></a>
<a href='http://fpereda.wordpress.com/2009/03/21/the-burning-ship-fractal/burningship2/' title='burningship2'><img data-attachment-id='97' data-orig-size='900,600' data-liked='0'width="150" height="100" src="http://fpereda.files.wordpress.com/2009/03/burningship2.png?w=150&#038;h=100" class="attachment-thumbnail" alt="burningship2" title="burningship2" /></a>
<a href='http://fpereda.wordpress.com/2009/03/21/the-burning-ship-fractal/burningship3/' title='burningship3'><img data-attachment-id='98' data-orig-size='900,600' data-liked='0'width="150" height="100" src="http://fpereda.files.wordpress.com/2009/03/burningship3.png?w=150&#038;h=100" class="attachment-thumbnail" alt="burningship3" title="burningship3" /></a>

<p>&mdash; fpereda</p>
<br /> Tagged: burningship, chaos, fractal, gmandel <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fpereda.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fpereda.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fpereda.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fpereda.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fpereda.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fpereda.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fpereda.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fpereda.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fpereda.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fpereda.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fpereda.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fpereda.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fpereda.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fpereda.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpereda.wordpress.com&amp;blog=3759924&amp;post=95&amp;subd=fpereda&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fpereda.wordpress.com/2009/03/21/the-burning-ship-fractal/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0169c931dc5673c5f7fe792e9d397f72?s=96&#38;d=" medium="image">
			<media:title type="html">fpereda</media:title>
		</media:content>

		<media:content url="http://fpereda.files.wordpress.com/2009/03/burningship1.png?w=150" medium="image">
			<media:title type="html">burningship1</media:title>
		</media:content>

		<media:content url="http://fpereda.files.wordpress.com/2009/03/burningship2.png?w=150" medium="image">
			<media:title type="html">burningship2</media:title>
		</media:content>

		<media:content url="http://fpereda.files.wordpress.com/2009/03/burningship3.png?w=150" medium="image">
			<media:title type="html">burningship3</media:title>
		</media:content>
	</item>
		<item>
		<title>Bye-Bye Gentoo</title>
		<link>http://fpereda.wordpress.com/2009/03/15/bye-bye-gentoo/</link>
		<comments>http://fpereda.wordpress.com/2009/03/15/bye-bye-gentoo/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 17:23:45 +0000</pubDate>
		<dc:creator>Fernando J. Pereda</dc:creator>
				<category><![CDATA[blag]]></category>
		<category><![CDATA[gentoo]]></category>

		<guid isPermaLink="false">http://fpereda.wordpress.com/?p=90</guid>
		<description><![CDATA[My retirement from Gentoo is complete now. Good luck to everybody. I hope some people understand the real needs of Gentoo and where it should go. Even if I&#8217;m not planning to come back to Gentoo (either as a user or as a developer), I certainly hope the best for it. Cheers. &#8212; ferdy Tagged: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpereda.wordpress.com&amp;blog=3759924&amp;post=90&amp;subd=fpereda&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My retirement from Gentoo is complete now.</p>
<p>Good luck to everybody. I hope some people understand the real needs of Gentoo and where it should go. Even if I&#8217;m not planning to come back to Gentoo (either as a user or as a developer), I certainly hope the best for it.</p>
<p>Cheers.</p>
<p>&mdash; ferdy</p>
<br /> Tagged: gentoo <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fpereda.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fpereda.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fpereda.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fpereda.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fpereda.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fpereda.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fpereda.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fpereda.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fpereda.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fpereda.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fpereda.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fpereda.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fpereda.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fpereda.wordpress.com/90/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpereda.wordpress.com&amp;blog=3759924&amp;post=90&amp;subd=fpereda&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fpereda.wordpress.com/2009/03/15/bye-bye-gentoo/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0169c931dc5673c5f7fe792e9d397f72?s=96&#38;d=" medium="image">
			<media:title type="html">fpereda</media:title>
		</media:content>
	</item>
		<item>
		<title>Selected!</title>
		<link>http://fpereda.wordpress.com/2009/02/10/selected/</link>
		<comments>http://fpereda.wordpress.com/2009/02/10/selected/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 18:11:36 +0000</pubDate>
		<dc:creator>Fernando J. Pereda</dc:creator>
				<category><![CDATA[blag]]></category>
		<category><![CDATA[esa]]></category>
		<category><![CDATA[estec]]></category>
		<category><![CDATA[happy]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[spacefish]]></category>

		<guid isPermaLink="false">http://fpereda.wordpress.com/?p=86</guid>
		<description><![CDATA[So this led to this &#8217;nuff said! Mood: Extremelly happy. &#8212; ferdy Tagged: esa, estec, happy, research, spacefish<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpereda.wordpress.com&amp;blog=3759924&amp;post=86&amp;subd=fpereda&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So <a href="http://fpereda.wordpress.com/2009/02/02/estec-eeepc-first-big-test/">this</a> led to <a href="http://www.spacefishproject.com/2009/02/passed-the-selection-workshop/">this</a></p>
<p>&#8217;nuff said!</p>
<p><b>Mood</b>: Extremelly happy.</p>
<p>&mdash; ferdy</p>
<br /> Tagged: esa, estec, happy, research, spacefish <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fpereda.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fpereda.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fpereda.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fpereda.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fpereda.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fpereda.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fpereda.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fpereda.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fpereda.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fpereda.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fpereda.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fpereda.wordpress.com/86/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fpereda.wordpress.com/86/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fpereda.wordpress.com/86/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpereda.wordpress.com&amp;blog=3759924&amp;post=86&amp;subd=fpereda&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fpereda.wordpress.com/2009/02/10/selected/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0169c931dc5673c5f7fe792e9d397f72?s=96&#38;d=" medium="image">
			<media:title type="html">fpereda</media:title>
		</media:content>
	</item>
		<item>
		<title>More reading</title>
		<link>http://fpereda.wordpress.com/2009/02/02/more-reading/</link>
		<comments>http://fpereda.wordpress.com/2009/02/02/more-reading/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 12:05:35 +0000</pubDate>
		<dc:creator>Fernando J. Pereda</dc:creator>
				<category><![CDATA[blag]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[reading]]></category>
		<category><![CDATA[thanks]]></category>

		<guid isPermaLink="false">http://fpereda.wordpress.com/?p=79</guid>
		<description><![CDATA[I finished reading Anathem a while ago, and I really do recommend it. It was weird at first, but really nice in the end. It finished a bit fast, I&#8217;d say it needs another hundred pages to tie some of the stuff. Also, Ricardo Cervera (you don&#8217;t have an url these days, you do?) sent [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpereda.wordpress.com&amp;blog=3759924&amp;post=79&amp;subd=fpereda&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I finished reading <a href="http://en.wikipedia.org/wiki/Anathem">Anathem</a> a while ago, and I really do recommend it. It was weird at first, but really nice in the end. It finished a bit fast, I&#8217;d say it needs another hundred pages to tie some of the stuff.</p>
<p>Also, Ricardo Cervera (you don&#8217;t have an url these days, you do?) sent me <a href="http://highered.mcgraw-hill.com/sites/0070131511/">Introduction to Algorithms</a> which I&#8217;ve been skimming through. Really nice book, of course. &mdash; Thanks.</p>
<p>As part of one of the research projects I&#8217;m involved, I just started reading/studying <a href="http://eu.wiley.com/WileyCDA/WileyTitle/productCd-0471371459.html">Aircraft control and simulation</a>. Fortunately, it is not hurting as much as I expected. Though it is not for the faint of heart.</p>
<p>&mdash; ferdy</p>
<br /> Tagged: book, reading, thanks <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fpereda.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fpereda.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fpereda.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fpereda.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fpereda.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fpereda.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fpereda.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fpereda.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fpereda.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fpereda.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fpereda.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fpereda.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fpereda.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fpereda.wordpress.com/79/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpereda.wordpress.com&amp;blog=3759924&amp;post=79&amp;subd=fpereda&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fpereda.wordpress.com/2009/02/02/more-reading/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0169c931dc5673c5f7fe792e9d397f72?s=96&#38;d=" medium="image">
			<media:title type="html">fpereda</media:title>
		</media:content>
	</item>
		<item>
		<title>ESTEC and EeePC&#8217;s first big test</title>
		<link>http://fpereda.wordpress.com/2009/02/02/estec-eeepc-first-big-test/</link>
		<comments>http://fpereda.wordpress.com/2009/02/02/estec-eeepc-first-big-test/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 09:07:44 +0000</pubDate>
		<dc:creator>Fernando J. Pereda</dc:creator>
				<category><![CDATA[blag]]></category>
		<category><![CDATA[asus]]></category>
		<category><![CDATA[eee pc]]></category>
		<category><![CDATA[eeepc]]></category>
		<category><![CDATA[esa]]></category>
		<category><![CDATA[estec]]></category>
		<category><![CDATA[netbook]]></category>
		<category><![CDATA[ucm]]></category>

		<guid isPermaLink="false">http://fpereda.wordpress.com/?p=73</guid>
		<description><![CDATA[This year I joined a couple of research projects at the Computer Architecture and Automatics Department of UCM. Since I&#8217;m still finishing my Computer Science degree I can&#8217;t spend as much time as I&#8217;d liked on the projects I&#8217;m taking part. I&#8217;m mostly doing softwar and learning quite a bit of electronics and such. Tomorrow [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpereda.wordpress.com&amp;blog=3759924&amp;post=73&amp;subd=fpereda&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This year I joined a couple of research projects at the Computer Architecture and Automatics Department of <a href="http://www.ucm.es">UCM</a>. Since I&#8217;m still finishing my Computer Science degree I can&#8217;t spend as much time as I&#8217;d liked on the projects I&#8217;m taking part. I&#8217;m mostly doing softwar and learning quite a bit of electronics and such.</p>
<p>Tomorrow morning I&#8217;m heading ESA&#8217;s <a href="http://www.esa.int/estec">ESTEC</a> to attend the first workshop of this year&#8217;s <a>RexusBexus</a> campaign. We&#8217;ll be there until friday. We&#8217;ve worked quite hard and are hoping to get selected for the next phase. Even if we are continuing our research even if we don&#8217;t get accepted, it is a great opportunity to test the thing.</p>
<p>Given that I really hate checking luggage at airports I was planning to travel as light as possible. Not needing lots of computing power the Eee came as the best candidate to carry around. I haven&#8217;t really done much with it than using it to go to University and back home so this is going to be its firs big test. I get to see whether this netbook thing really works for me, though I think it will.</p>
<p>We&#8217;ll see how it works&#8230; </p>
<p>&mdash; ferdy</p>
<br /> Tagged: asus, eee pc, eeepc, esa, estec, netbook, ucm <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fpereda.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fpereda.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fpereda.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fpereda.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fpereda.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fpereda.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fpereda.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fpereda.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fpereda.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fpereda.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fpereda.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fpereda.wordpress.com/73/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fpereda.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fpereda.wordpress.com/73/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fpereda.wordpress.com&amp;blog=3759924&amp;post=73&amp;subd=fpereda&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fpereda.wordpress.com/2009/02/02/estec-eeepc-first-big-test/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0169c931dc5673c5f7fe792e9d397f72?s=96&#38;d=" medium="image">
			<media:title type="html">fpereda</media:title>
		</media:content>
	</item>
	</channel>
</rss>
