<?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:creativeCommons="http://backend.userland.com/creativeCommonsRssModule">

<channel>
	<title>Thomas Nybergh &#187; software</title>
	<atom:link href="http://www.nybergh.net/notes/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nybergh.net</link>
	<description></description>
	<lastBuildDate>Mon, 28 Nov 2011 20:34:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Batch convert Irssi logs or other text files to UTF-8 using recode</title>
		<link>http://www.nybergh.net/notes/2009/02/08/batch-convert-irssi-logs-or-other-text-files-to-utf-8-using-recode/</link>
		<comments>http://www.nybergh.net/notes/2009/02/08/batch-convert-irssi-logs-or-other-text-files-to-utf-8-using-recode/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 14:27:50 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[in English]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[link tips]]></category>
		<category><![CDATA[linux/unix]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=173</guid>
		<description><![CDATA[When I recently rented a VPS running a fresh install of Debian, I thought it was about time to stick with the now default Unicode locale, UTF-8. Doing this switch in a sensible fashion would include converting often used text files, such as chat logs from the older, more compatible but limited ISO 8859-15 charset. [...]]]></description>
			<content:encoded><![CDATA[<p>When I recently rented a <a href="http://en.wikipedia.org/wiki/Virtual_private_server">VPS</a> running a fresh install of <a href="http://www.debian.org">Debian</a>, I thought it was about time to stick with the now default <a href="http://en.wikipedia.org/wiki/Unicode">Unicode</a> locale, <a href="http://en.wikipedia.org/wiki/UTF-8" target="_blank">UTF-8</a>. Doing this switch in a sensible fashion would include converting often used text files, such as chat logs from the older, more compatible but limited <a href="http://en.wikipedia.org/wiki/ISO/IEC_8859-15">ISO 8859-15</a> charset.</p>
<p>(By the way: <a href="http://www.linode.com/?r=1a6b2f3b1d8d45c56752699f0b2e3755964a7cc3" target="_blank">Linode</a>, my VPS host, seems to be <a href="http://hostingfu.com/article/linode-xen-vps-review">awesome</a>.)</p>
<p>My chat client <a href="http://www.irssi.org" target="_blank">Irssi</a> combined with <a href="http://www.openssh.com" target="_blank">OpenSSH</a>, <a href="http://www.gnu.org/software/screen/" target="_blank">GNU Screen</a> and <a href="http://www.bitlbee.org" target="_blank">Bitlbee</a> provides me with hugely powerful social infrastructure in the form of continuous conversations that can be reached with any SSH client. Add logging and basic Unix tools to the mix and you have a silly fast and simple way of finding stuff you&#8217;ve discussed. In other words: my IRC/Live/Jabber logs are important works of reference and must be kept up to date with the system locale.</p>
<p>I failed to find any directly suitable or functional shell one-liners for this operation, until <a href="http://www.cs.helsinki.fi/u/tajnyman/" target="_blank">Thomas</a> handed me something that worked for me.</p>
<p>The conversion command later on this page converts all files in Irssi&#8217;s default log location, <code>~/irclogs</code>, and its subdirectories from ISO-8859-15 to UTF-8.  The conversion is performed on the files themselves<strong> </strong>using <a href="http://www.gnu.org/software/recode/" target="_blank">recode</a> <strong>in their current location</strong>. Don&#8217;t run with scissors, please do yourself a favor by making a <a href="http://420.thrashbarg.net/jesus_saves_incremental_backups.jpg">backup</a> copy of your precious logs. The most obvious tool for that is perhaps:</p>
<p><code>"cp -r ~/irclogs ~/backup_irclogs"</code></p>
<p><strong>This is <a href="http://www.cs.helsinki.fi/u/tajnyman/">Thomas</a>&#8216; conversion command:</strong></p>
<p><code>"find ~/irclogs/* | while read i; do echo "Converting $i"; recode ISO-8859-15..UTF-8 "$i"; done"</code></p>
<p><a href="http://www.waino.org" target="_blank">Stig</a> later informed me about <a href="http://www.gnu.org/software/findutils/" target="_blank">find</a> having exec capablities, but since I&#8217;m lazy and all that, you&#8217;ll have to optimze the above version yourself.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.nybergh.net">Thomas Nybergh</a></strong>. Unless something else is specified, the content of this post is licensed under the <a href="http://creativecommons.org/licenses/by-nc-sa/1.0/fi/deed.en">Creative Commons Attribution-Noncommercial-Share Alike 1.0 Finland license</a>. Questions related to licensing can be sent to thomas [at] nybergh.net. Now, go eat some ice cream.<img src="http:///misc.nybergh.net/trk/white_pixel_nybergh.gif"><br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.nybergh.net/notes/2009/02/08/batch-convert-irssi-logs-or-other-text-files-to-utf-8-using-recode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Openness and microblogging</title>
		<link>http://www.nybergh.net/notes/2008/09/10/openness-and-microblogging/</link>
		<comments>http://www.nybergh.net/notes/2008/09/10/openness-and-microblogging/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 15:17:21 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[in English]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[link tips]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[works published elsewhere]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[jaiku]]></category>
		<category><![CDATA[microblogging]]></category>
		<category><![CDATA[open standards]]></category>
		<category><![CDATA[openmicroblogging]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=151</guid>
		<description><![CDATA[This entry was originally posted as a comment on Xuenay&#8217;s blog. Also: doesn&#8217;t LiveJournal support real hyperlinks in comments? Ultra-suckage. I&#8217;ve always found Twitter to be a very interesting concept, but I don&#8217;t use the service myself. I find its minimalism compelling, but its terrible at representing conversations or replies. Jaiku on the other hand [...]]]></description>
			<content:encoded><![CDATA[<p><strong>This entry was originally posted as <a href="http://xuenay.livejournal.com/311857.html?thread=1168689#t1168689">a comment on Xuenay&#8217;s blog</a>. Also: doesn&#8217;t LiveJournal support real hyperlinks in comments? Ultra-suckage.</strong></p>
<p>I&#8217;ve always found Twitter to be a very interesting concept, but I don&#8217;t use the service myself. I find its minimalism compelling, but its terrible at representing conversations or replies. Jaiku on the other hand has a few very appealing mobile location centric features.</p>
<p>As with any blogging systems, it&#8217;s the content that makes the whole thing worth looking at. Some <a href="http://twitter.com/hotdogsladies/statuses/766322414">really</a> <a href="http://twitter.com/hotdogsladies/statuses/866473022">entertaining</a> <a href="http://twitter.com/nostrich/statuses/908547080">writers</a> are currently <a href="http://twitter.com/shoesonwrong/statuses/889895840">using</a> Twitter to post hilarious one-liners &#8211; I follow these with RSS like I&#8217;d do with any blog, without being a registered user.</p>
<p>I use Facebook&#8217;s status feature in an almost Twitter-like fashion, mainly because almost everyone I know already is into Facebook. I&#8217;m very disappointed in FB&#8217;s walled garden-approach: status messages or replies to these, along with other potentially useful things, like posted links, don&#8217;t have obvious unique urls or archive views you can browse back to after some time, and are pretty much not reachable from the outside. It is, however possible to <a href="http://internetducttape.com/2007/08/08/broadcast-facebook-status-rss-filter/">get RSS feeds</a> both of your own and your friend&#8217;s status messages.</p>
<p>As my FB status messages really are something I consider a semi-daily writing exercise, I do want them archived. I save <a href="http://status.nybergh.net">my status messages</a> in a WordPress install I set up together with <a href="http://wordpress.org/extend/plugins/feedwordpress/">Feedwordpress</a> and <a href="http://www.feedburner.com">Feedburner</a>, but this doesn&#8217;t of course save any comments someone may post on FB.</p>
<p>What I&#8217;m trying to get at is that microblogging, as a concept, needs to become more mature and standardized, or it will lag behind like instant messaging has done for a decade or so. <a href="http://en.wikipedia.org/wiki/OpenMicroBlogging">OpenMicroBlogging</a> and it&#8217;s reference implementation, <a href="http://en.wikipedia.org/wiki/Laconica">Laconica</a> have the potential to revolutionize public discourse on the internet beyond what&#8217;s possible with today&#8217;s already interesting services. Proprietary platforms such as Twitter, Jaiku and Facebook have the advantages of large user bases and cell phone connectivity but they really need to use something like <a href="http://en.wikipedia.org/wiki/OpenMicroBlogging">OpenMicroBlogging</a> protocol for cross-service communication to become really useful.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.nybergh.net">Thomas Nybergh</a></strong>. Unless something else is specified, the content of this post is licensed under the <a href="http://creativecommons.org/licenses/by-nc-sa/1.0/fi/deed.en">Creative Commons Attribution-Noncommercial-Share Alike 1.0 Finland license</a>. Questions related to licensing can be sent to thomas [at] nybergh.net. Now, go eat some ice cream.<img src="http:///misc.nybergh.net/trk/white_pixel_nybergh.gif"><br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.nybergh.net/notes/2008/09/10/openness-and-microblogging/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Finnish appeal court decision: breaking CSS illegal</title>
		<link>http://www.nybergh.net/notes/2008/05/26/finnish-appeal-court-decision-breaking-css-illegal/</link>
		<comments>http://www.nybergh.net/notes/2008/05/26/finnish-appeal-court-decision-breaking-css-illegal/#comments</comments>
		<pubDate>Mon, 26 May 2008 11:40:36 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[in English]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[copyright]]></category>
		<category><![CDATA[court]]></category>
		<category><![CDATA[finland]]></category>
		<category><![CDATA[law]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[wtf]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=119</guid>
		<description><![CDATA[Due to recent very unclear, confusing and freedom hating legislation prepared by corrupt and incompetent people and an appeal court decision from a couple of days back, it&#8217;s now criminal to break the not very functional CSS copy protection used on most commercial DVD-Video discs. Watching DVDs using GNU/Linux systems is thus not something well [...]]]></description>
			<content:encoded><![CDATA[<p>Due to recent <a href="http://en.wikipedia.org/wiki/2005_amendment_to_the_Finnish_Copyright_Act_and_Penal_Code" target="_blank">very unclear, confusing and freedom hating legislation prepared by corrupt and incompetent people</a> and an appeal court decision from a couple of days back, it&#8217;s now criminal to break the not very functional CSS copy protection used on most commercial DVD-Video discs. Watching DVDs using GNU/Linux systems is thus not something well behaved Finnish citizens should spend their time doing.</p>
<p>For now, there aren&#8217;t really any proper sources in English, but for those willing to do some guesswork, Google&#8217;s translation tool can help, see <a href="http://www.tietokone.fi/uutta/uutinen.asp?news_id=34004">Tietokone</a> (<a href="http://www.google.com/translate?u=http%3A%2F%2Fwww.tietokone.fi%2Fuutta%2Fuutinen.asp%3Fnews_id%3D34004&#038;hl=en&#038;ie=UTF8&#038;sl=fi&#038;tl=en" target="_blank">translation</a>), <a href="http://www.digitoday.fi/yhteiskunta/2008/05/26/+Dvd%3An+katselu+Linux-koneessa+muuttui+rikolliseksi/200814212/66" target="_blank">Digitoday</a> (<a href="http://www.google.com/translate?u=http%3A%2F%2Fwww.digitoday.fi%2Fyhteiskunta%2F2008%2F05%2F26%2F%2BDvd%253An%2Bkatselu%2BLinux-koneessa%2Bmuuttui%2Brikolliseksi%2F200814212%2F66&#038;hl=en&#038;ie=UTF8&#038;sl=fi&#038;tl=en" target="_blank">translation</a>), <a href="http://www.turre.com/blog/?p=154">Turre Legal&#8217;s blog with the court decision as an enclosed PDF</a></a> (<a href="http://www.google.com/translate?u=http%3A%2F%2Fwww.turre.com%2Fblog%2F%3Fp%3D154&#038;hl=en&#038;ie=UTF8&#038;sl=fi&#038;tl=en" target="_blank">translation</a>).</p>
<p><strong>EDIT: <a href="http://jaakko.hartikainen.googlepages.com/home">There&#8217;s now a human made translation of Turre Legal&#8217;s blog entry</a> and I&#8217;m trying to <a href="http://slashdot.org/firehose.pl?op=view&#038;id=689175">get the story published on Slashdot</a>.</p>
<p>EDIT2: <a href="http://yro.slashdot.org/article.pl?sid=08/05/26/1357257" target="_blank">I got the story on the front page of Slashdot</a>.</p>
<p>EDIT3: there&#8217;s now a <a href="http://www.turre.com/blog/?p=156">proper post in English on Turre Legal&#8217;s own blog</a>.</strong></p>
<p>My attempt to sum this up is as follows: the verdict is contrary to what a district court <a href="http://arstechnica.com/news.ars/post/20070525-finland-court-breaking-ineffective-copy-protection-is-permissible.html" target="_blank">thought of the same case last year</a> when two local electronic rights activists were declared not guilty after having framed themselves by spreading information on how to break CSS. Back then it was to the activists&#8217; benefit has CSS been badly broken and inneffective ever since <a href="http://en.wikipedia.org/wiki/DeCSS" target="_blank">DeCSS</a> came out.</p>
<p>Lawyer Mikko Välimäki of the law firm Turre legal, which represents the activists, <a href="http://www.turre.com/blog/?p=154">expresses surprise</a> over the appeal court&#8217;s explanation which includes implications along the lines of Linux users not being able to watch dvds without knowingly downloading cracking software.</p>
<p><a href='http://www.nybergh.net/stuff/linked/2008/05/decss-code-sample.png'><img src="http://www.nybergh.net/stuff/linked/2008/05/decss-code-sample-300x209.png" alt="DeCSS code sample" title="Code sample from the illegal DeCSS tool" width="300" height="209" class="alignnone size-medium wp-image-120" /></a><br />
(<a href="http://commons.wikimedia.org/wiki/Image:DeCSS.PNG" target="_blank">image from Wikimedia commons</a>)</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.nybergh.net">Thomas Nybergh</a></strong>. Unless something else is specified, the content of this post is licensed under the <a href="http://creativecommons.org/licenses/by-nc-sa/1.0/fi/deed.en">Creative Commons Attribution-Noncommercial-Share Alike 1.0 Finland license</a>. Questions related to licensing can be sent to thomas [at] nybergh.net. Now, go eat some ice cream.<img src="http:///misc.nybergh.net/trk/white_pixel_nybergh.gif"><br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.nybergh.net/notes/2008/05/26/finnish-appeal-court-decision-breaking-css-illegal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amarok&#8217;s sound output broken by default in Ubuntu 8.04</title>
		<link>http://www.nybergh.net/notes/2008/05/16/amaroks-sound-output-broken-by-default-in-ubuntu-804/</link>
		<comments>http://www.nybergh.net/notes/2008/05/16/amaroks-sound-output-broken-by-default-in-ubuntu-804/#comments</comments>
		<pubDate>Fri, 16 May 2008 18:07:40 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[linux/unix]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Amarok]]></category>
		<category><![CDATA[Free Software]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Hardy Heron]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=95</guid>
		<description><![CDATA[After installing Ubuntu Linux 8.04 (Hardy Heron), I didn&#8217;t get any sound when I tried to play sound files in Amarok (the distribution&#8217;s own package of version 1.4.9.1), a music oriented audio player/music library for *nix. I fixed this by changing opening Settings - Configure Amarok - Engine and changing the Xine engine&#8217;s (no other [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nybergh.net/stuff/linked/2008/05/amarok-1491-engine-configuration-output-plugin-selection-ubuntu-804-screenshot.png"><img class="alignnone size-medium wp-image-97" style="vertical-align: middle;" title="Changing the settings saves you from loss of music and cake" src="http://www.nybergh.net/stuff/linked/2008/05/amarok-1491-engine-configuration-output-plugin-selection-ubuntu-804-screenshot-279x300.png" alt="Screenshot of Amarok 1.4.9.1's engine configuration output plugin selection in Ubuntu 8.04" width="279" height="300" /></a></p>
<p>After installing <a href="http://www.ubuntu.com">Ubuntu</a> Linux 8.04 (Hardy Heron), I didn&#8217;t get any sound when I tried to play sound files in <a href="http://amarok.kde.org">Amarok</a> (the distribution&#8217;s own package of version 1.4.9.1), a music oriented audio player/music library for *nix.</p>
<p>I fixed this by changing opening <code>Settings - Configure Amarok - Engine</code> and changing the Xine engine&#8217;s (<a href="http://amarok.kde.org/blog/archives/91-Backends,-Phonon,-GStreamer.html">no other engine</a> is installed by default these days) output plugin from &#8220;<code>default</code>&#8221; to &#8220;<code>alsa</code>&#8220;. The problem is probably related to <a href="http://pulseaudio.org">PulseAudio</a>, <a href="http://en.wikipedia.org/wiki/PulseAudio">a new sound server</a> used by default in many recent GNU/Linux distributions.</p>
<p><a href="http://www.nybergh.net/stuff/linked/2008/05/amarok-1491-engine-configuration-output-plugin-selection-ubuntu-804-screenshot.png"><br />
</a></p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.nybergh.net">Thomas Nybergh</a></strong>. Unless something else is specified, the content of this post is licensed under the <a href="http://creativecommons.org/licenses/by-nc-sa/1.0/fi/deed.en">Creative Commons Attribution-Noncommercial-Share Alike 1.0 Finland license</a>. Questions related to licensing can be sent to thomas [at] nybergh.net. Now, go eat some ice cream.<img src="http:///misc.nybergh.net/trk/white_pixel_nybergh.gif"><br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.nybergh.net/notes/2008/05/16/amaroks-sound-output-broken-by-default-in-ubuntu-804/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Microsoft blocks Windows Live Messenger messages with links to Youtube</title>
		<link>http://www.nybergh.net/notes/2008/05/10/microsoft-blocks-windows-live-messenger-messages-with-links-to-youtube/</link>
		<comments>http://www.nybergh.net/notes/2008/05/10/microsoft-blocks-windows-live-messenger-messages-with-links-to-youtube/#comments</comments>
		<pubDate>Sat, 10 May 2008 14:45:29 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[in English]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[idiots]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[stupid]]></category>
		<category><![CDATA[Windows Live]]></category>
		<category><![CDATA[wtf]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=85</guid>
		<description><![CDATA[Microsoft&#8217;s Windows Live Messenger instant messaging network (formerly MSN Messenger) is currently blocking messages with urls that contain *.youtube.com. Tietokone, a Finnish IT publication reports that this applies to messages with links to *.mediafire.com, too. WTF, how did the people running Windows Live even come up with such a lousy idea? I&#8217;m guessing the explanation, [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft&#8217;s <a href="http://en.wikipedia.org/wiki/Windows_Live_Messenger" target="_blank">Windows Live Messenger</a> instant messaging network (formerly MSN Messenger) is currently <a href="http://www.istartedsomething.com/20080510/windows-live-messenger-blocks-wwwyoutubecom/" target="_blank">blocking messages with urls that contain *.youtube.com</a>. <a href="http://www.tietokone.fi/uutta/uutinen.asp?news_id=33839" target="_blank">Tietokone</a>, a Finnish IT publication reports that this applies to messages with links to *.mediafire.com, too.</p>
<p>WTF, how did the people running Windows Live even come up with such a lousy idea? I&#8217;m guessing the explanation, if one ever will be given, will be related to spam/trojans/phising or whatever the latest security scarecrow is. I&#8217;m not willing to speculate whether this is some conspiracy to undermine Google owned services, and this would certainly not be the best way to perform such an operation.</p>
<p>Luckily I don&#8217;t rely on Windows Live Mess-enger, I merely run <a href="http://www.bitlbee.org" target="_blank">BitlBee</a>, a third party IM client in the form of an IRC proxy together with <a href="http://www.irssi.org" target="_blank">Irssi</a> to be able to talk with a few non-IRC persons.</p>
<p>I also verified that this is true with BitlBee. The filtering appears to occur on the server side, not in the client.</p>
<p>[via: <a href="http://www.istartedsomething.com/20080510/windows-live-messenger-blocks-wwwyoutubecom/" target="_blank">istartedsomething</a>, <a href="http://www.tietokone.fi/uutta/uutinen.asp?news_id=33839" target="_blank">Tietokone (in Finnish)</a>. Image borrowed from <a href="http://en.wikipedia.org/wiki/Image:Windows_Live_Messenger_81.png" target="_blank">Wikipedia</a>]</p>
<p><a href='http://www.nybergh.net/stuff/linked/2008/05/windows_live_messenger_and_some_god-awful_smilies-screenshot.png'><img src="http://www.nybergh.net/stuff/linked/2008/05/windows_live_messenger_and_some_god-awful_smilies-screenshot-172x300.png" alt="Instead of making lots of silly laws that lead to victimless crimes, mankind should focus on forgetting and banning the concept of animated, graphical smilies/emoticons" title="Instead of making lots of silly laws that lead to victimless crimes, mankind should focus on forgetting and banning the concept of animated, graphical smilies/emoticons" width="172" height="300" class="alignnone size-medium wp-image-86" /></a></p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.nybergh.net">Thomas Nybergh</a></strong>. Unless something else is specified, the content of this post is licensed under the <a href="http://creativecommons.org/licenses/by-nc-sa/1.0/fi/deed.en">Creative Commons Attribution-Noncommercial-Share Alike 1.0 Finland license</a>. Questions related to licensing can be sent to thomas [at] nybergh.net. Now, go eat some ice cream.<img src="http:///misc.nybergh.net/trk/white_pixel_nybergh.gif"><br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.nybergh.net/notes/2008/05/10/microsoft-blocks-windows-live-messenger-messages-with-links-to-youtube/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amarok in Ubuntu 8.04 won&#8217;t scrobble</title>
		<link>http://www.nybergh.net/notes/2008/05/09/amarok-in-ubuntu-804-wont-scrobble/</link>
		<comments>http://www.nybergh.net/notes/2008/05/09/amarok-in-ubuntu-804-wont-scrobble/#comments</comments>
		<pubDate>Fri, 09 May 2008 12:06:59 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[in English]]></category>
		<category><![CDATA[linux/unix]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Amarok]]></category>
		<category><![CDATA[Hardy]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=83</guid>
		<description><![CDATA[EDIT: This post gets some traffic from Google users who probably are more interested in a later post on fixing a problem causing Ubuntu 8.04&#8242;s Amarok not to play any sound. After upgrading to Ubuntu Linux 8.04 LTS (Hardy Heron) I noticed that Amarok (Ubuntu package version 1.4.9.1-0ubuntu3), one of my preferred audio players/music libraries, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>EDIT: This post gets some traffic from Google users who probably are more interested in <a href="/notes/2008/05/16/amaroks-sound-output-broken-by-default-in-ubuntu-804/">a later post on fixing a problem causing Ubuntu 8.04&#8242;s Amarok not to play any sound</a>.</strong></p>
<p><a href="http://www.nybergh.net/stuff/linked/2008/05/amarok-1491-configure-window-lastfm-ubuntu-804-hardy-heron-screenshot.png"><img class="alignnone size-medium wp-image-84" title="Last.fm configuration window for Amarok 1.4.9.1 under Ubuntu 8.04 LTS (Hardy Heron) - Enter your username in ALL CAPS to solve the scrobbling problem" src="http://www.nybergh.net/stuff/linked/2008/05/amarok-1491-configure-window-lastfm-ubuntu-804-hardy-heron-screenshot-300x225.png" alt="Enter your username in ALL CAPS to solve the scrobbling problem" width="300" height="225" /></a></p>
<p>After upgrading to <a href="http://www.ubuntu.com" target="_blank">Ubuntu Linux</a> 8.04 LTS (Hardy Heron) I noticed that <a href="http://amarok.kde.org" target="_blank">Amarok</a> (Ubuntu <a href="http://packages.ubuntu.com/hardy/amarok">package</a> version 1.4.9.1-0ubuntu3), one of my preferred audio players/music libraries, didn&#8217;t properly submit tracks to <a href="http://www.last.fm" target="_blank">last.fm</a>. All settings were OK, and Amarok even announced that it submitted the tracks, but nothing appeared on <a href="http://www.last.fm/user/apecat">my profile</a>.</p>
<p>Google revealed that this problem can be solved by <a href="http://ubuntuforums.org/showthread.php?t=135744#post4881561" target="_blank">entering a last.fm user name in ALL CAPS</a> in Amarok&#8217;s settings window. The same solution can be applied to solve the same no-scrobbling problem as it may appear while using <a href="http://www.gnome.org/projects/rhythmbox/" target="_blank">Rhytmbox</a>, another free software audio player.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.nybergh.net">Thomas Nybergh</a></strong>. Unless something else is specified, the content of this post is licensed under the <a href="http://creativecommons.org/licenses/by-nc-sa/1.0/fi/deed.en">Creative Commons Attribution-Noncommercial-Share Alike 1.0 Finland license</a>. Questions related to licensing can be sent to thomas [at] nybergh.net. Now, go eat some ice cream.<img src="http:///misc.nybergh.net/trk/white_pixel_nybergh.gif"><br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.nybergh.net/notes/2008/05/09/amarok-in-ubuntu-804-wont-scrobble/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GNOME lunacy: missing option for disabling cursor blinks in Ubuntu 8.04&#8242;s gnome-terminal</title>
		<link>http://www.nybergh.net/notes/2008/05/08/gnome-lunacy-missing-option-for-disabling-cursor-blinks-in-ubuntu-804s-gnome-terminal/</link>
		<comments>http://www.nybergh.net/notes/2008/05/08/gnome-lunacy-missing-option-for-disabling-cursor-blinks-in-ubuntu-804s-gnome-terminal/#comments</comments>
		<pubDate>Thu, 08 May 2008 15:38:51 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[in English]]></category>
		<category><![CDATA[linux/unix]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Free Software]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=82</guid>
		<description><![CDATA[The GNOME desktop environment project is plagued by a design philosophy that apparently aims to make user interfaces suitable for lobotomy victims at the cost of removing features and options from the GUI. This has been discussed endlessly elsewhere. Something probably related to this surfaced when I upgraded to Ubuntu Linux 8.04 LTS (Hardy Heron). [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://en.wikipedia.org/wiki/GNOME">GNOME desktop environment</a> project is plagued by a design philosophy that apparently aims to make user interfaces suitable for <a href="http://en.wikipedia.org/wiki/Lobotomy">lobotomy</a> victims at the cost of removing features and options from the GUI. This has been <a href="http://linux.slashdot.org/article.pl?sid=05/12/13/1340215">discussed endlessly elsewhere</a>.</p>
<p>Something probably related to this surfaced when I upgraded to <a href="http://www.ubuntu.com">Ubuntu Linux</a> 8.04 LTS (Hardy Heron). A program I use a lot, <a href="http://en.wikipedia.org/wiki/GNOME_Terminal">gnome-terminal</a>, no longer has its own setting for disabling cursor blinks under <code>Edit -&gt; Current Profile</code>. Users who want to get rid of this obnoxious response to &#8220;no keyboard input&#8221; now need to alter the system wide &#8220;<code>Cursor blinks in text fields</code>&#8221; option under the &#8220;<code>System -&gt; Preferences -&gt; Keyboard -&gt; General</code>&#8221; menu.</p>
<p>What if I only want to disable cursor blinks in gnome-terminal? In some situations in our world that forces black text on white backgrounds upon us, it&#8217;s hard to spot a static, one pixel wide cursor, but in a white or gray on black terminal with <a href="/notes/2008/03/17/consolas-vs-terminus-my-personal-monospaced-font-war/">a fixed width font</a> and a wide cursor, this problem doesn&#8217;t exist. By the way, why anyone would agree to use a terminal with black text on a white background is beyond me.</p>
<p>The crippled cursor problem isn&#8217;t limited to the gnome-terminal version 2.22.1 binary bundled with Ubuntu 8.04, it&#8217;s in the upstream version too. Luckily there&#8217;s <a href="http://www.chrishowie.com/2008/03/28/gnome-terminal-cursor/">at least one patch that removes this restriction</a>. I&#8217;m sure I won&#8217;t take the time to roll my own patched gnome-terminal, but it&#8217;s good to know that I&#8217;m not the only one who gets annoyed by shit like this.</p>
<p><strong>EDIT: </strong>I later realized that a <a href="http://www.jcornwall.me.uk/2008/04/hardy-heron-and-the-blinkin-terminal/">patched binary</a> has been made available by JLTC. </p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.nybergh.net">Thomas Nybergh</a></strong>. Unless something else is specified, the content of this post is licensed under the <a href="http://creativecommons.org/licenses/by-nc-sa/1.0/fi/deed.en">Creative Commons Attribution-Noncommercial-Share Alike 1.0 Finland license</a>. Questions related to licensing can be sent to thomas [at] nybergh.net. Now, go eat some ice cream.<img src="http:///misc.nybergh.net/trk/white_pixel_nybergh.gif"><br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.nybergh.net/notes/2008/05/08/gnome-lunacy-missing-option-for-disabling-cursor-blinks-in-ubuntu-804s-gnome-terminal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable Nautilus pop-up on media insert in Ubuntu 8.04</title>
		<link>http://www.nybergh.net/notes/2008/05/08/disable-nautilus-pop-up-on-media-insert-in-ubuntu-804/</link>
		<comments>http://www.nybergh.net/notes/2008/05/08/disable-nautilus-pop-up-on-media-insert-in-ubuntu-804/#comments</comments>
		<pubDate>Thu, 08 May 2008 14:03:54 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[in English]]></category>
		<category><![CDATA[linux/unix]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[autorun]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Hardy Heron]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[wtf]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=77</guid>
		<description><![CDATA[Although the new Ubuntu Linux 8.04 LTS release is nice and polished, there are a few glitches in how the bundled GNOME environment allows the user to customize some behavior. Settings for how the desktop environment should handle removable media are important for me as I loathe the idea of having to deal with any [...]]]></description>
			<content:encoded><![CDATA[<p>Although the new <a href="http://www.ubuntu.com">Ubuntu Linux</a> 8.04 LTS release is nice and polished, there are a few glitches in how the bundled <a href="http://en.wikipedia.org/wiki/GNOME">GNOME</a> environment allows the user to customize some behavior. </p>
<p>Settings for how the desktop environment should handle removable media are important for me as I loathe the idea of having to deal with any autorun/auto play or popup nonsense every time i attach removable storage devices.<br />
Settings for this have been available under the <code>System -&gt; Preferences -&gt; Removable Drives and Media</code> menu item in earlier versions of Ubuntu/Gnome.</p>
<p><strong>Previously</strong>, said window looked approximately like <a href="http://www.nybergh.net/stuff/linked/2008/05/removable-drives-and-media-preferences-ubuntu-gnome-earlier-versions-screenshot.png">this:</p>
<p><img src="http://www.nybergh.net/stuff/linked/2008/05/removable-drives-and-media-preferences-ubuntu-gnome-earlier-versions-screenshot-300x230.png" alt="Removable drives and media preferences in earlier Ubuntu versions" title="Removable drives and media preferences in earlier Ubuntu versions" width="300" height="230" class="alignnone size-medium wp-image-79" /></a><br />
(image borrowed from <a href="http://vertito.blogspot.com/2007/08/removable-drives-devices-and-media.html">The Sysad Linux Blog</a>)</p>
<p>In Ubuntu 8.04/Hardy Heron&#8217;s Gnome 2.22.1, <a href='http://www.nybergh.net/stuff/linked/2008/05/removable-drives-and-media-preferences-ubuntu-804-hardy-heron-gnome-screenshot.png'>things look different:</p>
<p><img src="http://www.nybergh.net/stuff/linked/2008/05/removable-drives-and-media-preferences-ubuntu-804-hardy-heron-gnome-screenshot-300x227.png" alt="\&quot;Removable Drives and Media\&quot; preferences in Ubuntu 8.04" title="removable-drives-and-media-preferences-ubuntu-804-hardy-heron-gnome-screenshot" width="300" height="227" class="alignnone size-medium wp-image-78" /></a>.</p>
<p>Note the lack of reference to anything related to actual removable storage media (CD&#8217;s, DVD&#8217;s, Blu-ray, flash drives, USB hard drives&#8230;). Having settings only for scanners, cameras and such under a &#8220;removable media&#8221; window looks like a mistake in UI design to me&#8230; I haven&#8217;t checked if this is Ubuntu specific or something relevant to the vanilla Gnome release as well.</p>
<p>I found a way to <a href="http://ubuntuforums.org/showthread.php?t=758208#post4750015">stop the dreadful autorun/popup flood</a> posted by user <em>noynac</em> in the Ubuntu forums:  </p>
<blockquote><p>&#8220;Load Nautilus and enter <code>edit -&gt; preferences -&gt; media</code>&#8220;</p></blockquote>
<p><a href='http://www.nybergh.net/stuff/linked/2008/05/nautilus-file-management-preferences-removable-media-gnome-ubuntu-804-hardy-heron.png'><img src="http://www.nybergh.net/stuff/linked/2008/05/nautilus-file-management-preferences-removable-media-gnome-ubuntu-804-hardy-heron-300x225.png" alt="Nautilus file manager, settings for removable media, Ubuntu 8.04" title="nautilus-file-management-preferences-removable-media-gnome-ubuntu-804-hardy-heron" width="300" height="225" class="alignnone size-medium wp-image-81" /></a></p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.nybergh.net">Thomas Nybergh</a></strong>. Unless something else is specified, the content of this post is licensed under the <a href="http://creativecommons.org/licenses/by-nc-sa/1.0/fi/deed.en">Creative Commons Attribution-Noncommercial-Share Alike 1.0 Finland license</a>. Questions related to licensing can be sent to thomas [at] nybergh.net. Now, go eat some ice cream.<img src="http:///misc.nybergh.net/trk/white_pixel_nybergh.gif"><br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.nybergh.net/notes/2008/05/08/disable-nautilus-pop-up-on-media-insert-in-ubuntu-804/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Russia to require registration of all Wi-Fi equipment</title>
		<link>http://www.nybergh.net/notes/2008/04/22/russia-to-require-registration-of-all-wi-fi-equipment/</link>
		<comments>http://www.nybergh.net/notes/2008/04/22/russia-to-require-registration-of-all-wi-fi-equipment/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 17:00:48 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[in English]]></category>
		<category><![CDATA[link tips]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Russia]]></category>
		<category><![CDATA[Wi-Fi]]></category>
		<category><![CDATA[WLAN]]></category>
		<category><![CDATA[wtf]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=73</guid>
		<description><![CDATA[In other news, somewhat related to my previous post: Russia may in the future require registration of &#8220;every Wi-Fi device and hotspot&#8221;. What a goddamn Kafka-Orwellian nightmare that country must be. [via: Slashdot] Copyright &#169; 2012 Thomas Nybergh. Unless something else is specified, the content of this post is licensed under the Creative Commons Attribution-Noncommercial-Share [...]]]></description>
			<content:encoded><![CDATA[<p>In other news, somewhat related to my <a href="/notes/2008/04/22/finnish-court-fines-man-for-using-open-wi-fi-network-without-permission/">previous post</a>: Russia may in the future require registration of <a href="http://www.computerworld.com.au/index.php/id;1146771381;fp;16;fpid;0">&#8220;every Wi-Fi device and hotspot&#8221;</a>. What a goddamn Kafka-Orwellian nightmare that country must be.</p>
<p>[<a href="http://yro.slashdot.org/article.pl?sid=08/04/21/0211243">via: Slashdot</a>]</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.nybergh.net">Thomas Nybergh</a></strong>. Unless something else is specified, the content of this post is licensed under the <a href="http://creativecommons.org/licenses/by-nc-sa/1.0/fi/deed.en">Creative Commons Attribution-Noncommercial-Share Alike 1.0 Finland license</a>. Questions related to licensing can be sent to thomas [at] nybergh.net. Now, go eat some ice cream.<img src="http:///misc.nybergh.net/trk/white_pixel_nybergh.gif"><br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.nybergh.net/notes/2008/04/22/russia-to-require-registration-of-all-wi-fi-equipment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Consolas vs. Terminus &#8211; my personal monospaced font war</title>
		<link>http://www.nybergh.net/notes/2008/03/17/consolas-vs-terminus-my-personal-monospaced-font-war/</link>
		<comments>http://www.nybergh.net/notes/2008/03/17/consolas-vs-terminus-my-personal-monospaced-font-war/#comments</comments>
		<pubDate>Sun, 16 Mar 2008 23:49:25 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[in English]]></category>
		<category><![CDATA[in Swedish]]></category>
		<category><![CDATA[linux/unix]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[Consolas]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Terminus]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/notes/2008/03/17/consolas-vs-terminus-my-personal-monospaced-font-war/</guid>
		<description><![CDATA[(I hate Courier New) For some time, I&#8217;ve used Dimitar Zhekov&#8217;s clean, fixed-width font Terminus for terminal-heavy situations in both GNU/Linux and Windows. I&#8217;m clueless in the area of typography, but Terminus looks oddly appealing when looking at e.g. code (which I don&#8217;t write myself), configuration and log files. I keep backup copies of a [...]]]></description>
			<content:encoded><![CDATA[<p><strong>(I hate <a href="http://en.wikipedia.org/wiki/Courier_(typeface)" target="_blank">Courier New</a>)</strong></p>
<p>For some time, I&#8217;ve used <a href="http://www.is-vn.bg/hamster/" target="_blank">Dimitar Zhekov&#8217;s clean, fixed-width font Terminus</a> for terminal-heavy situations in both GNU/Linux and Windows. I&#8217;m clueless in the area of typography, but Terminus looks oddly appealing when looking at e.g. code (which I don&#8217;t write myself), configuration and log files. <a href="http://misc.nybergh.net/pub/fonts/terminus/" target="_blank">I keep backup copies of a TTF version of Terminus in my public file archive</a>.</p>
<p>A few days ago, I discovered <a href="http://en.wikipedia.org/wiki/Consolas" target="_blank">Consolas</a>, a somewhat recent addition to Microsoft&#8217;s free TTF font collection (<a href="http://www.microsoft.com/downloads/details.aspx?familyid=22e69ae4-7e40-4807-8a86-b3d36fab68d3" target="_blank">available for download on microsoft.com</a>, no special MS software like Visual Studio is required), and I&#8217;m probably going to use it for some console based tasks, at least on Windows machines. Please note that Consolas is designed to be used with <a href="http://en.wikipedia.org/wiki/ClearType" target="_blank">ClearType</a>, a font anti-aliasing technology found in Windows XP and later. Without ClearType, Consolas <a href="http://www.codinghorror.com/blog/archives/000356.html" target="_blank">isn&#8217;t worth looking at</a>.</p>
<p>What I&#8217;ve found comparing the aforementioned fonts so far, is that while I like looking at Consolas in my <a href="http://irssi.org" target="_blank">IRC client</a>, I still prefer the more blockish Terminus for staring at and scanning through code and logs. Consolas makes text in human languages, including busy IRC debates, readable at smaller sizes, but is in my opinion suboptimal for navigating through and quickly locating parts of structured text blocks.</p>
<p><strong>EDIT: </strong>I&#8217;ve later found the following comparisons of fixed-width programming fonts: <a href="http://www.codeproject.com/KB/work/FontSurvey.aspx">CodeProject</a>, <a href="http://stackoverflow.com/questions/4689/recommended-fonts-for-programming">Stack Overflow</a>.</p>
<hr/>Copyright &copy; 2012 <strong><a href="http://www.nybergh.net">Thomas Nybergh</a></strong>. Unless something else is specified, the content of this post is licensed under the <a href="http://creativecommons.org/licenses/by-nc-sa/1.0/fi/deed.en">Creative Commons Attribution-Noncommercial-Share Alike 1.0 Finland license</a>. Questions related to licensing can be sent to thomas [at] nybergh.net. Now, go eat some ice cream.<img src="http:///misc.nybergh.net/trk/white_pixel_nybergh.gif"><br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">Plugin</a> by <a href="http://www.taragana.com/">Taragana</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.nybergh.net/notes/2008/03/17/consolas-vs-terminus-my-personal-monospaced-font-war/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

