<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.3" -->
<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>Et tu, Cthulhu</title>
	<link>http://hpjansson.org/blag</link>
	<description></description>
	<pubDate>Wed, 31 Mar 2010 18:49:11 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.3</generator>
	<language>en</language>
			<item>
		<title>Hash Table Shootout!</title>
		<link>http://hpjansson.org/blag/2010/03/31/hash-table-shootout/</link>
		<comments>http://hpjansson.org/blag/2010/03/31/hash-table-shootout/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 18:43:51 +0000</pubDate>
		<dc:creator>Hans Petter Jansson</dc:creator>
		
		<category><![CDATA[Positive]]></category>

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

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

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

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

		<guid isPermaLink="false">http://hpjansson.org/blag/2010/03/31/hash-table-shootout/</guid>
		<description><![CDATA[It&#8217;s gratifying to see GHashTable faring not-too-badly against an assortment of other hash table implementations in Nick Welch&#8217;s excellent benchmarks. I did some work on this previously, but there&#8217;s at least one thing that can still be done to reduce its memory footprint on 64-bit architectures. The table is a big array of structs that [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s gratifying to see GHashTable faring not-too-badly against an assortment of other hash table implementations in <a href="http://incise.org/hash-table-benchmarks.html">Nick Welch&#8217;s excellent benchmarks</a>. I <a href="http://hpjansson.org/blag/2008/04/06/its-not-a-picnic-table/">did some work on this</a> previously, but there&#8217;s at least one thing that can still be done to reduce its memory footprint on 64-bit architectures. The table is a big array of structs that look like this:</p>
<p><code>struct _GHashNode<br />
{<br />
&nbsp;&nbsp;gpointer   key;<br />
&nbsp;&nbsp;gpointer   value;<br />
&nbsp;&nbsp;guint      key_hash;<br />
};</code></p>
<p>The key_hash is useful, as it lets us skip over mismatches and resize the hash table quickly - and on a 32-bit arch, it adds only 4 bytes to every entry, for a total of 12 bytes. However, on a 64-bit arch, it causes entries to be padded so that each entry starts on a multiple of 8 bytes. That wastefulness can be remedied by packing key_hash values in a separate array - as a bonus, entry size becomes a power of two, which means offsets into the array can be calculated using a single shift. On the downside, we&#8217;ll incur the added overhead of maintaining two arrays and accessing an extra cache line for each lookup. I suspect it&#8217;s still worth it, though.</p>
<p>A couple of open questions/comments on the benchmarks themselves:</p>
<ul>
<li>Google&#8217;s dense_hash_map is suspiciously fast at integer deletion - is it shrinking the hash table at all, re-inserting the remaining items as it should? Or does it have some other trick up its sleeve?</li>
<li>How robust are the different strategies with respect to poorly distributed keys? E.g. N*2^M spaced integers: 1024, 2048, 3072, 4096, etc.</li>
<li>How about poor hash functions supplied by the API user? GHashTable attempts to tackle this by calculating the initial array index modulo a prime number, before applying a quadratic modulo on subsequent probes (faster, and required for quadratic probing).</li>
<li>What&#8217;s the per-table overhead? How much memory will, say, some 100.000 tables with &lt;100 items each consume? This is not uncommon in practice - nested hashes are often used to store complex properties, and given suitably large working sets, this can become a significant factor for some programs.</li>
<li> Are the approaches affected by memory fragmentation? Do they cause it? This is hard to measure; maybe many tables could be grown simultaneously in the same address space.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://hpjansson.org/blag/2010/03/31/hash-table-shootout/feed/</wfw:commentRss>
		</item>
		<item>
		<title>openSUSE community week</title>
		<link>http://hpjansson.org/blag/2009/05/11/opensuse-community-week/</link>
		<comments>http://hpjansson.org/blag/2009/05/11/opensuse-community-week/#comments</comments>
		<pubDate>Mon, 11 May 2009 19:22:47 +0000</pubDate>
		<dc:creator>Hans Petter Jansson</dc:creator>
		
		<category><![CDATA[Computing]]></category>

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

		<guid isPermaLink="false">http://hpjansson.org/blag/2009/05/11/opensuse-community-week/</guid>
		<description><![CDATA[Be sure to check out the openSUSE community week currently underway. The GNOME-centric part of the community has its own program for the week.
]]></description>
			<content:encoded><![CDATA[<p>Be sure to check out the <a href="http://en.opensuse.org/Community_Week">openSUSE community week</a> currently underway. The GNOME-centric part of the community has its own <a href="http://en.opensuse.org/Community_Week/GNOME_Schedule">program</a> for the week.</p>
]]></content:encoded>
			<wfw:commentRss>http://hpjansson.org/blag/2009/05/11/opensuse-community-week/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Grand Finale México</title>
		<link>http://hpjansson.org/blag/2009/05/02/grand-finale-mexico/</link>
		<comments>http://hpjansson.org/blag/2009/05/02/grand-finale-mexico/#comments</comments>
		<pubDate>Sun, 03 May 2009 01:25:09 +0000</pubDate>
		<dc:creator>Hans Petter Jansson</dc:creator>
		
		<category><![CDATA[Life]]></category>

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

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

		<guid isPermaLink="false">http://hpjansson.org/blag/2009/05/02/grand-finale-mexico/</guid>
		<description><![CDATA[Since we&#8217;re leaving the country for good (or at least for a very long time), we thought it&#8217;d be nice to do the full-on tourist thing and take a bunch of pictures - actually the only time we&#8217;ve done so in the ten years I&#8217;ve lived here - taking a little piece of Mexico with [...]]]></description>
			<content:encoded><![CDATA[<p>Since we&#8217;re leaving the country for good (or at least for a very long time), we thought it&#8217;d be nice to do the full-on tourist thing and take a bunch of pictures - actually the only time we&#8217;ve done so in the ten years I&#8217;ve lived here - taking a little piece of Mexico with us.</p>
<p>So Maru and I just got back from two weeks of <strike>vacations</strike> non-essential travel. We&#8217;ve had an excellent time, spending the first week in the northern states of <a href="http://en.wikipedia.org/wiki/Chihuahua">Chihuahua</a> and <a href="http://en.wikipedia.org/wiki/Sinaloa">Sinaloa</a> - taking the <a href="http://en.wikipedia.org/wiki/Chepe">Chepe</a> train through <a href="http://en.wikipedia.org/wiki/Copper_Canyon">Copper Canyon</a> territory and reaching an altitude of about 2600m - and the second week on the southern island of <a href="http://en.wikipedia.org/wiki/Cozumel">Cozumel</a>, scuba diving down to -8m.</p>
<p>The <a href="http://en.wikipedia.org/wiki/2009_swine_flu_outbreak">influenza outbreak</a> took us by surprise - we&#8217;ve passed through the Mexico City airport three times since the 18th of April, and hope to do so again in another couple of days - but we are apparently both healthy at this point. It&#8217;d be a bummer if our flight out gets cancelled or - even worse - if we&#8217;re quarantined in Europe, though. Fortunately, the way things are looking now, there isn&#8217;t a huge chance of that happening.</p>
<p>On the upside, we had Cozumel almost to ourselves (we were referred to as &#8220;the only two tourists left on the island&#8221; at least once), as people kept leaving and no more were arriving. I feel bad for anyone working in the tourist business here, though, especially our friend Hilda who lent us her <strike>battered</strike> charming open VW beetle so we could cruise around the island in style.</p>
<p style="text-align: center"><a href="http://hpjansson.org/blag/data/2009/05/hpj-barrancas-river.jpg" title="Copper Canyon river"><img src="http://hpjansson.org/blag/data/2009/05/hpj-barrancas-river.jpg" alt="Copper Canyon river" /></a></p>
<p style="text-align: center"><em>One of the rivers winding through the Copper Canyon</em></p>
<p style="text-align: center"><a href="http://hpjansson.org/blag/data/2009/05/maru-suse-rocks.jpg" title="SUSE rocks"><img src="http://hpjansson.org/blag/data/2009/05/maru-suse-rocks.jpg" alt="SUSE rocks" /></a></p>
<p style="text-align: center"><em>SUSE rocks (I suspect <a href="http://www.bryen.com/">Bryen</a> will love this) </em></p>
<p style="text-align: center"> <a href="http://hpjansson.org/blag/data/2009/05/hpj-zorro-el-fuerte.jpg" title="El Zorro and I"><img src="http://hpjansson.org/blag/data/2009/05/hpj-zorro-el-fuerte.jpg" alt="El Zorro and I" /></a></p>
<p style="text-align: center"><em> Apparently, our hotel in <a href="http://en.wikipedia.org/wiki/El_Fuerte,_Sinaloa">El Fuerte</a> was once the ranch where <a href="http://en.wikipedia.org/wiki/Diego_de_la_Vega">Don Diego de la Vega</a>, aka El Zorro, grew up. I had no idea!<br />
</em></p>
<p style="text-align: center"> <a href="http://hpjansson.org/blag/data/2009/05/road-trip-cozumel.jpg" title="Cozumel coastline"><img src="http://hpjansson.org/blag/data/2009/05/road-trip-cozumel.jpg" alt="Cozumel coastline" /></a></p>
<p style="text-align: center"><em>Ghost island Cozumel</em></p>
<p style="text-align: center"><a href="http://hpjansson.org/blag/data/2009/05/maru-h1n1-outbreak.jpg" title="Mind that face"><img src="http://hpjansson.org/blag/data/2009/05/maru-h1n1-outbreak.jpg" alt="Mind that face" /></a></p>
<p style="text-align: center"><em>Can you believe they actually let us through the security checkpoints dressed like this?</em></p>
]]></content:encoded>
			<wfw:commentRss>http://hpjansson.org/blag/2009/05/02/grand-finale-mexico/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Shoveling snow</title>
		<link>http://hpjansson.org/blag/2009/02/15/shoveling-snow/</link>
		<comments>http://hpjansson.org/blag/2009/02/15/shoveling-snow/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 23:12:05 +0000</pubDate>
		<dc:creator>Hans Petter Jansson</dc:creator>
		
		<category><![CDATA[Positive]]></category>

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

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

		<guid isPermaLink="false">http://hpjansson.org/blag/2009/02/15/shoveling-snow/</guid>
		<description><![CDATA[The snow-shoveling I&#8217;ve been taking part in over the last couple of weeks is best described with a set of graphs:

So far, we&#8217;ve been able to lop about 23 seconds - or 48% - off the time it takes to boot openSUSE 11.1 on this particular netbook, without sacrificing much in the way of functionality. [...]]]></description>
			<content:encoded><![CDATA[<p>The snow-shoveling I&#8217;ve been taking part in over the last couple of weeks is best described with a set of graphs:</p>
<p><a href="http://hpjansson.org/blag/data/2009/02/opensuse-boot-time-1-2-3.png" title="openSUSE boot time improvements on netbook"><img src="http://hpjansson.org/blag/data/2009/02/opensuse-boot-time-1-2-3.png" alt="openSUSE boot time improvements on netbook" /></a></p>
<p>So far, we&#8217;ve been able to lop about 23 seconds - or 48% - off the time it takes to boot openSUSE 11.1 on this particular netbook, without sacrificing much in the way of functionality. It boots straight into GNOME and its usual trappings, including the panel, Nautilus, &#8220;slab&#8221; main menu, nm-applet, PackageKit updater, printing applet (written in Python&#8230;), CUPS, etc.</p>
<p>It&#8217;s important to note that this time is measured from the moment bootchart starts until everything settles and is ready to use, easily identified in the chart as the moment where CPU activity falls to the baseline of noise from bootchartd itself.</p>
<p>It&#8217;s also important to note that this is on a netbook with a slow CPU, slow-to-init X driver/graphics hardware and fast SSD I/O. I&#8217;m hearing a lot of numbers being bandied about these days, e.g. &#8220;distribution Foo boots in 10 seconds&#8221;, and these numbers are meaningless without hardware specifications and a list of features you get. GNOME delivers a different feature set from Xfce, and netbooks and workstations usually perform very differently. Then there are questions of flexibility; is the system open-ended? Can you get server features by just installing packages and configuring them?</p>
<p>IMO, openSUSE has had unacceptable boot times on workstations for a long time now. Hopefully these changes will make it into future releases, upstream where possible.</p>
<p>For more details, see the <a href="http://en.opensuse.org/Boottime/Boot_time">wiki page</a>. Note that for various reasons I haven&#8217;t been able to keep the text up to date. The graphs are representative, though.</p>
]]></content:encoded>
			<wfw:commentRss>http://hpjansson.org/blag/2009/02/15/shoveling-snow/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Life update, winter of 2009</title>
		<link>http://hpjansson.org/blag/2009/02/15/life-update-winter-of-2009/</link>
		<comments>http://hpjansson.org/blag/2009/02/15/life-update-winter-of-2009/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 19:01:27 +0000</pubDate>
		<dc:creator>Hans Petter Jansson</dc:creator>
		
		<category><![CDATA[Life]]></category>

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

		<guid isPermaLink="false">http://hpjansson.org/blag/2009/02/15/life-update-winter-of-2009/</guid>
		<description><![CDATA[Maru and I spent Christmas in Norway this year, and I&#8217;ve stayed on a bit to get things organized for our impending relocation here. Circumstances have delayed us, so instead of arriving ahead of the local recession, we&#8217;ll be setting up right in the middle of it. One can only hope that Norway will weather [...]]]></description>
			<content:encoded><![CDATA[<p>Maru and I spent Christmas in Norway this year, and I&#8217;ve stayed on a bit to get things organized for our impending relocation here. Circumstances have delayed us, so instead of arriving ahead of the local recession, we&#8217;ll be setting up right in the middle of it. One can only hope that Norway will weather it as well as the media will have one believe.</p>
<p>Meanwhile, there&#8217;s plenty of things to do besides worrying. For instance, there&#8217;s work, which at the moment consists of a kind of snow-shoveling exercise. Then there&#8217;s literally shoveling snow - oddly satisfying after so many years in the tropics. Between that and the access to (suitably tame) nature, I might work off the Christmas pounds yet. Apart from that, I&#8217;ve gotten to spend some quality time with my grumpy friends - notably, Johannes turned 30.</p>
<p><a href="http://hpjansson.org/blag/data/2009/02/work-view-winter-2009.jpg" title="View from my workspace"><img src="http://hpjansson.org/blag/data/2009/02/work-view-winter-2009.thumbnail.jpg" alt="View from my workspace" /> </a><a href="http://hpjansson.org/blag/data/2009/02/house-outside-1-winter-2009.jpg" title="View from terrace"><img src="http://hpjansson.org/blag/data/2009/02/house-outside-1-winter-2009.thumbnail.jpg" alt="View from terrace" /> </a><a href="http://hpjansson.org/blag/data/2009/02/house-outside-2-winter-2009.jpg" title="Front porch"><img src="http://hpjansson.org/blag/data/2009/02/house-outside-2-winter-2009.thumbnail.jpg" alt="Front porch" /> </a><a href="http://hpjansson.org/blag/data/2009/02/maru-skiing-tracks.jpg" title="Maru skiing"><img src="http://hpjansson.org/blag/data/2009/02/maru-skiing-tracks.thumbnail.jpg" alt="Maru skiing" /> </a><a href="http://hpjansson.org/blag/data/2009/02/johannes-turns-30.jpg" title="Johannes turns 30"><img src="http://hpjansson.org/blag/data/2009/02/johannes-turns-30.thumbnail.jpg" alt="Johannes turns 30" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://hpjansson.org/blag/2009/02/15/life-update-winter-of-2009/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ENLi 2008</title>
		<link>http://hpjansson.org/blag/2008/10/25/enli-2008/</link>
		<comments>http://hpjansson.org/blag/2008/10/25/enli-2008/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 04:47:07 +0000</pubDate>
		<dc:creator>Hans Petter Jansson</dc:creator>
		
		<category><![CDATA[Positive]]></category>

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

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

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

		<guid isPermaLink="false">http://hpjansson.org/blag/2008/10/25/enli-2008/</guid>
		<description><![CDATA[My talk, La comunidad GNOME para principiantes (The GNOME community for beginners), seems to have gone over well here at ENLi 2008 (the 2008 National Linux Meeting in Puebla, Mexico), with a big audience and interesting followup questions. The slides are available as a collection of plain PNG and JPEG images in a zip archive [...]]]></description>
			<content:encoded><![CDATA[<p>My talk, <em><a href="http://hpjansson.org/talks/la-comunidad-gnome-para-principiantes.zip">La comunidad GNOME para principiantes</a> (The GNOME community for beginners)</em>, seems to have gone over well here at <a href="http://www.enli.org.mx/2008/">ENLi 2008</a> (the 2008 National Linux Meeting in Puebla, Mexico), with a big audience and interesting followup questions. The slides are available as a collection of plain PNG and JPEG images in a zip archive (use the link above).</p>
<p>I&#8217;m having an excellent time. Will post some pictures from the conference later.</p>
<p><strong>Update:</strong> Pictures.</p>
<p align="center"><a href="http://hpjansson.org/blag/data/2008/10/enli-2008-audience.jpg" title="Audience"><img src="http://hpjansson.org/blag/data/2008/10/enli-2008-audience.jpg" alt="Audience" /></a></p>
<p align="center"><em>My wonderful audience</em></p>
<p align="center"> <a href="http://hpjansson.org/blag/data/2008/10/enli-2008-opensuse-discs.jpg" title="openSUSE discs"><img src="http://hpjansson.org/blag/data/2008/10/enli-2008-opensuse-discs.jpg" alt="openSUSE discs" /></a></p>
<p align="center"> <em>I clearly didn&#8217;t bring enough openSUSE discs</em></p>
<p align="left">&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://hpjansson.org/blag/2008/10/25/enli-2008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Not so much a nightmare as a non-dream</title>
		<link>http://hpjansson.org/blag/2008/10/02/not-so-much-a-nightmare-as-a-non-dream/</link>
		<comments>http://hpjansson.org/blag/2008/10/02/not-so-much-a-nightmare-as-a-non-dream/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 05:47:40 +0000</pubDate>
		<dc:creator>Hans Petter Jansson</dc:creator>
		
		<category><![CDATA[Fun]]></category>

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

		<guid isPermaLink="false">http://hpjansson.org/blag/2008/10/02/not-so-much-a-nightmare-as-a-non-dream/</guid>
		<description><![CDATA[Since absolutely everything seems to be about the USA lately, here&#8217;s a paranoid little snippet from good ol&#8217; Burroughs to go with it.
America is not so much a nightmare as a non-dream. The American non-dream is precisely a move to wipe the dream out of existence. The dream is a spontaneous happening and therefore dangerous [...]]]></description>
			<content:encoded><![CDATA[<p>Since absolutely everything seems to be about the USA lately, here&#8217;s a paranoid little snippet from good ol&#8217; Burroughs to go with it.</p>
<blockquote><p>America is not so much a nightmare as a <em>non-dream</em>. The American non-dream is precisely a move to wipe the dream out of existence. The dream is a spontaneous happening and therefore dangerous to a control system set up by the non-dreamers.</p>
<p>— William S. Burroughs, <em>The Job</em></p></blockquote>
<p>Don&#8217;t read too much into it.</p>
]]></content:encoded>
			<wfw:commentRss>http://hpjansson.org/blag/2008/10/02/not-so-much-a-nightmare-as-a-non-dream/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Evolution goodness (and some badness)</title>
		<link>http://hpjansson.org/blag/2008/09/27/evolution-goodness-and-some-badness/</link>
		<comments>http://hpjansson.org/blag/2008/09/27/evolution-goodness-and-some-badness/#comments</comments>
		<pubDate>Sat, 27 Sep 2008 19:47:27 +0000</pubDate>
		<dc:creator>Hans Petter Jansson</dc:creator>
		
		<category><![CDATA[Negative]]></category>

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

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

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

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

		<guid isPermaLink="false">http://hpjansson.org/blag/2008/09/27/evolution-goodness-and-some-badness/</guid>
		<description><![CDATA[My laptop went south a couple of days ago, so I&#8217;m having to make do with a screen that is bigger but endowed with fewer pixels. This has been a source of frustration, especially in Evolution, where I depend on the efficiency afforded me by the tri-pane view. Crank down the resolution a bit, and [...]]]></description>
			<content:encoded><![CDATA[<p>My laptop went south a couple of days ago, so I&#8217;m having to make do with a screen that is bigger but endowed with fewer pixels. This has been a source of frustration, especially in Evolution, where I depend on the efficiency afforded me by the tri-pane view. Crank down the resolution a bit, and it&#8217;s suddenly not so efficient - there isn&#8217;t enough space to display the subjects in the message list anymore. The problem is compounded by useless mailer &#8220;Re:&#8221; and mailing list prefixes.</p>
<p>So, since I don&#8217;t need to see the mailing list and reply status repeated for every single mail, I cooked up a little <a href="http://bugzilla.gnome.org/attachment.cgi?id=119490&amp;action=view">patch</a> to trim the subjects in the message view. When applied, it makes available a new column in View -&gt; Current View -&gt; Define Views&#8230; -&gt; Edit -&gt; Fields Shown&#8230; -&gt; Available Fields. This column implements the trimming, and can be used instead of the traditional <em>Subject</em> one:<br />
<center></p>
<table>
<tr>
<td><a href="http://hpjansson.org/blag/data/2008/09/evolution-subjects-before.png" title="Evolution, traditional subjects"><img src="http://hpjansson.org/blag/data/2008/09/evolution-subjects-before.png" title="Evolution, traditional subjects" alt="Evolution, traditional subjects" height="414" width="310" /></a></td>
<td><a href="http://hpjansson.org/blag/data/2008/09/evolution-subjects-after.png" title="Evolution, trimmed subjects"><img src="http://hpjansson.org/blag/data/2008/09/evolution-subjects-after.png" title="Evolution, trimmed subjects" alt="Evolution, trimmed subjects" height="414" width="310" /></a></td>
</tr>
<tr>
<td><center><em>Traditional</em></center></td>
<td><center><em>Trimmed</em></center></td>
</tr>
</table>
<p align="left">The patch applies to both Evolution 2.22 and 2.24, although unfortunately, a couple of <a href="http://bugzilla.gnome.org/show_bug.cgi?id=552731">nasty</a>, new <a href="http://bugzilla.gnome.org/show_bug.cgi?id=552705">bugs</a> are preventing me from running the latter. If you happen to be running openSUSE Factory like me, and Evolution 2.24 is preventing you from getting work done, you can get my <a href="https://build.opensuse.org/project/show?project=home%3Ahpjansson%3Aevolution-2.22">unofficial 2.22 build</a> for Factory from the build service. It includes the above patch as an added bonus.</p>
<p></center></p>
]]></content:encoded>
			<wfw:commentRss>http://hpjansson.org/blag/2008/09/27/evolution-goodness-and-some-badness/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Robhormiga</title>
		<link>http://hpjansson.org/blag/2008/09/08/robhormiga/</link>
		<comments>http://hpjansson.org/blag/2008/09/08/robhormiga/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 22:23:36 +0000</pubDate>
		<dc:creator>Hans Petter Jansson</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://hpjansson.org/blag/2008/09/08/robhormiga/</guid>
		<description><![CDATA[I learned a new word the other day. Robhormiga, from &#8220;robar&#8221; (stealing) + &#8220;hormiga&#8221; (ant). So literally, &#8220;stealing ant&#8221; or &#8220;thief ant&#8221;. It refers to someone who steals something a little bit at a time, for example in the situation where on some nights, one of your neighbors carries off an armful from the stack [...]]]></description>
			<content:encoded><![CDATA[<p>I learned a new word the other day. <em>Robhormiga</em>, from &#8220;robar&#8221; (stealing) + &#8220;hormiga&#8221; (ant). So literally, &#8220;stealing ant&#8221; or &#8220;thief ant&#8221;. It refers to someone who steals something a little bit at a time, for example in the situation where on some nights, one of your neighbors carries off an armful from the stack of bricks allocated to building storm drains for the local community&#8217;s road-paving project.</p>
<p><strong>Edit:</strong> That should probably be &#8220;robo hormiga&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://hpjansson.org/blag/2008/09/08/robhormiga/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Taking out the trash</title>
		<link>http://hpjansson.org/blag/2008/08/25/taking-out-the-trash/</link>
		<comments>http://hpjansson.org/blag/2008/08/25/taking-out-the-trash/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 05:44:46 +0000</pubDate>
		<dc:creator>Hans Petter Jansson</dc:creator>
		
		<category><![CDATA[Positive]]></category>

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

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

		<guid isPermaLink="false">http://hpjansson.org/blag/2008/08/25/taking-out-the-trash/</guid>
		<description><![CDATA[A friend of mine, Vegard Munthe, works for FAIR, an aid organization that ships used but working computers from rich (or industrialized, or first world, or whatever you want to call it) countries to poorer countries for re-use in school labs there. As part of the deal, the computers are shipped back for reprocessing when [...]]]></description>
			<content:encoded><![CDATA[<p>A friend of mine, Vegard Munthe, works for <a href="http://www.fairinternational.org/">FAIR</a>, an aid organization that ships used but working computers from rich (or industrialized, or first world, or whatever you want to call it) countries to poorer countries for re-use in school labs there. As part of the deal, the computers are shipped back for reprocessing when they are no longer working, to avoid them piling up and causing all kinds of environmental problems. Not so long ago they received <a href="http://www.fairinternational.org/fi-artikkel_276.nml">their first return shipment</a> - according to Vegard, getting the permits to ship and import what basically amounts to a pile of toxic waste was quite the challenge.</p>
<p><a href="http://hpjansson.org/blag/data/2008/08/fair-return-shipment.jpg" title="FAIR’s first return shipment"></a></p>
<p style="text-align: center"><a href="http://hpjansson.org/blag/data/2008/08/fair-return-shipment.jpg" title="FAIR’s first return shipment"><img src="http://hpjansson.org/blag/data/2008/08/fair-return-shipment.jpg" title="FAIR’s first return shipment" alt="FAIR’s first return shipment" height="426" width="640" /></a></p>
<p>Fun fun fun! Congratulations to Vegard &amp; crew on this important milestone.</p>
]]></content:encoded>
			<wfw:commentRss>http://hpjansson.org/blag/2008/08/25/taking-out-the-trash/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
