<?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; technology</title>
	<atom:link href="http://www.nybergh.net/notes/category/technology/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>Idiot MEPs want EU to regulate blogging?</title>
		<link>http://www.nybergh.net/notes/2008/06/25/idiot-meps-want-eu-to-regulate-blogging/</link>
		<comments>http://www.nybergh.net/notes/2008/06/25/idiot-meps-want-eu-to-regulate-blogging/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 12:23:07 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[internet]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[eu]]></category>
		<category><![CDATA[idiots]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=140</guid>
		<description><![CDATA[Good grief, what are these MEP asshats thinking? I&#8217;m against ownership concentration as much as the next guy, but I wonder what pluralism in media policy has to do with blogs putting &#8220;journalists and other media professionals under pressure&#8221;. I don&#8217;t see how regulation of before unseen ways in which potentially independent, anonymous citizens can [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nybergh.net/stuff/linked/2008/06/marianne-mikko.png"><img class="alignleft alignnone size-medium wp-image-141" style="float: left;" title="Marianne Mikko, brainfarter extraordinaire?" src="http://www.nybergh.net/stuff/linked/2008/06/marianne-mikko.png" alt="marianne-mikko" width="120" height="172" /></a>Good grief, <a href="http://www.europarl.europa.eu/news/public/story_page/058-31021-161-06-24-909-20080605STO30955-2008-09-06-2008/default_en.htm" target="_blank">what are these MEP asshats thinking</a>?</p>
<p>I&#8217;m against ownership concentration as much as the next guy, but I wonder what pluralism in media policy has to do with blogs putting &#8220;journalists and other media professionals under pressure&#8221;. I don&#8217;t see how regulation of before unseen ways in which potentially independent, anonymous citizens can express themselves could have any effect on privately owned media&#8217;s current ability or inability to act as a &#8220;watchdog for democracy&#8221;.</p>
<p>Do these clowns really believe that biased blogs are anywhere near of becoming as big of a threat to democracy as mainstream media already is in some countries? These MEPs were probably just participating in rituals of verbal incontinence at a press event to celebrate <a href="http://www.europarl.europa.eu/oeil/file.jsp?id=5564652" target="_blank">some report they&#8217;ve written</a>, but it&#8217;s always breathtaking to see how any topic related to the Internet is a good platform for letting clueless people sound like insane authoritarians.</p>
<p>Below are the most dubious parts of the <a href="http://www.europarl.europa.eu/news/public/story_page/058-31021-161-06-24-909-20080605STO30955-2008-09-06-2008/default_en.htm" target="_blank">article</a>:</p>
<blockquote><p>&#8220;Weblogs and other new on-line media pose new challenges, say MEPs. The growth of commercial media outlets for user-generated content, such as photos and videos, used without paying a fee, raises problems of ethics and privacy, and puts journalists and other media professionals under pressure, they say.</p>
<p>The <a href="http://www.europarl.europa.eu/oeil/file.jsp?id=5564652" target="_blank">report</a> &#8220;on concentration and pluralism in the media in the European Union&#8221; &#8211; drafted by Estonian Socialist Marianne Mikko &#8211; also warns against the concentration of the media in the hands of a few companies because the media is vital to safeguarding democracy. &#8220;The media remains a powerful tool, which should not be treated solely in economic terms,&#8221; she said. The report calls for social and legal guarantees to journalists and editors. It will be put to the vote in the full plenary in the future.<br />
&#8230;<br />
Asked if she considered bloggers to be &#8220;a threat&#8221;, she said &#8220;we do not see bloggers as a threat. They are in position, however, to considerably pollute cyberspace. We already have too much spam, misinformation and malicious intent in cyberspace&#8221;. She added, &#8220;I think the public is still very trusting towards blogs, it is still seen as sincere. And it should remain sincere. For that we need a quality mark, a disclosure of who is really writing and why.&#8221;"</p></blockquote>
<p>[via:<a href="http://piraattiliitto.org/uutiset/2008/06/eu-haluaa-bloggaajat-kontrolliin-pakkorekisteroinnilla-ja-laatumerkinnalla" target="_blank">Piraattiliitto</a> (in Finnish)]</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/06/25/idiot-meps-want-eu-to-regulate-blogging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HP GPLs the Tru64 Unix Advanced File System</title>
		<link>http://www.nybergh.net/notes/2008/06/23/hp-gpls-the-tru64-unix-advanced-file-system/</link>
		<comments>http://www.nybergh.net/notes/2008/06/23/hp-gpls-the-tru64-unix-advanced-file-system/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 21:26:52 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[in English]]></category>
		<category><![CDATA[linux/unix]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[file systems]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=137</guid>
		<description><![CDATA[Hewlett-Packard has released the source code of AdvFS under the GNU General Public License. AdvFS is an advanced file system (with features such as snapshots and storage pools) used by the company&#8217;s high end Tru64 UNIX operating system. This probably means that HP does a lot of business with Linux, and that there really is [...]]]></description>
			<content:encoded><![CDATA[<p>Hewlett-Packard has <a href="http://linux.slashdot.org/linux/08/06/23/1728259.shtml" target="_blank">released</a> the <a href="http://advfs.sf.net/" target="_blank">source code</a> of <a href="http://en.wikipedia.org/wiki/AdvFS" target="_blank">AdvFS</a> under the GNU General Public License. AdvFS is an advanced file system (with features such as snapshots and storage pools) used by the company&#8217;s high end <a href="http://en.wikipedia.org/wiki/Tru64_UNIX" target="_blank">Tru64 UNIX</a> operating system.</p>
<p>This probably means that HP does a lot of business with Linux, and that there really is a real demand for a GPL&#8217;d modern file system with features comparable to those of <a href="http://en.wikipedia.org/wiki/ZFS">ZFS</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/06/23/hp-gpls-the-tru64-unix-advanced-file-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wiretapping in Sweden: all communications to be monitored?</title>
		<link>http://www.nybergh.net/notes/2008/06/04/wiretapping-in-sweden-all-communications-to-be-monitored/</link>
		<comments>http://www.nybergh.net/notes/2008/06/04/wiretapping-in-sweden-all-communications-to-be-monitored/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 19:19:35 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[in English]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[link tips]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[orwellian]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[surveillance]]></category>
		<category><![CDATA[Sweden]]></category>
		<category><![CDATA[wiretapping]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=129</guid>
		<description><![CDATA[Rick Falkvinge, the leader of the Swedish Pirate Party discusses a wiretapping bill called &#8220;better adapted military intelligence gathering&#8221; that soon may hit hard on the privacy of anyone relying on any electronic communication routed through Sweden. A few quotes from the post: &#8220;At about 20 points in the national information infrastructure network, all traffic [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nybergh.net/stuff/linked/2008/05/telescreen-nineteen-eighty-four-cropped-screenshot.jpg"><img class="alignnone size-medium wp-image-92" title="Bodströmsamhället" src="http://www.nybergh.net/stuff/linked/2008/05/telescreen-nineteen-eighty-four-cropped-screenshot.jpg" alt="Nineteen Eighty-Four telescreen cropped screenshot" width="206" height="267" /></a></p>
<p>Rick Falkvinge, the leader of the Swedish Pirate Party <a href="http://english.rickfalkvinge.se/2008/06/04/more-on-the-ubiquitous-wiretapping-bill/" target="_blank">discusses</a> a wiretapping bill called &#8220;better adapted military intelligence gathering&#8221; that soon may hit hard on the privacy of anyone relying on any electronic communication routed through Sweden.  A few quotes from the post:</p>
<blockquote><p>&#8220;At about 20 points in the national information infrastructure network, all traffic is spliced off and fed into the Försvarets Radioanstalt (FRA) agency. These points are placed as to catch all traffic entering and leaving the Swedish borders, but will catch much &#8211; if not most &#8211; domestic traffic too, for technical routing reasons. Electronic traffic, in particular, always takes the scenic route.&#8221;</p></blockquote>
<p>The insanity of the bill has been widely commented on by authorities:</p>
<blockquote><p>&#8220;How did the bureaucrats respond [to the bill]? In unusually plain language, actually.&#8221;</p></blockquote>
<blockquote><p>&#8220;The Police Board said that the bill “indicates a frightening lack of understanding for the requirements regarding the protection of citizens’ privacy that follow from our Constitution and the European Convention on Human Rights”.&#8221;</p></blockquote>
<blockquote><p>&#8220;The National Registry Authority replied that this bill “is compatible with neither the Swedish Constitution nor the European Convention on Human Rights. Such an immense expansion of wiretapping of telephony and other forms of communication cannot be legislated under any circumstance.”&#8221;</p></blockquote>
<p>Congratulations, Sweden, you&#8217;ve got <a href="http://en.wikipedia.org/wiki/Swedish_general_election%2C_2006">The AIDS of Right-Wing Government</a>.</p>
<p>[via:<a href="http://piraattiliitto.org/uutiset/2008/06/aanestys-edessa-kaikki-ruotsin-sahkoinen-viestinta-armeijan-valvontaan" target="_blank">Piraattiliitto (In Finnish)</a>]</p>
<p><a href="http://www.nybergh.net/stuff/linked/2008/05/telescreen-nineteen-eighty-four-cropped-screenshot.jpg"><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/06/04/wiretapping-in-sweden-all-communications-to-be-monitored/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google&#8217;s new favicon</title>
		<link>http://www.nybergh.net/notes/2008/05/30/googles-new-favicon/</link>
		<comments>http://www.nybergh.net/notes/2008/05/30/googles-new-favicon/#comments</comments>
		<pubDate>Fri, 30 May 2008 13:41:30 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[in English]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[favicon]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=124</guid>
		<description><![CDATA[Google has a fugly new favicon.ico. I liked the old one because of its relative colorfulness, and I find it somewhat puzzling that they chose to use a gray gradient in the new version. (Image borrowed from Google Blogoscoped) Copyright &#169; 2012 Thomas Nybergh. Unless something else is specified, the content of this post is [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.google.com" target="_blank">Google</a> has a fugly <a href="http://blogoscoped.com/archive/2008-05-30-n48.html" target="_blank">new favicon.ico</a>. I liked the old one because of its relative colorfulness, and I find it somewhat puzzling that they chose to use a gray gradient in the new version.</p>
<p><a href='http://www.nybergh.net/stuff/linked/2008/05/google-new-favicon.png'><img src="http://www.nybergh.net/stuff/linked/2008/05/google-new-favicon.png" alt="Googles old and new favicons as of 2008-05-30" title="A grey gradient?" width="209" height="147" class="alignnone size-medium wp-image-125" /></a></p>
<p>(Image borrowed from <a href="http://blogoscoped.com/archive/2008-05-30-n48.html" target="_blank">Google Blogoscoped</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/30/googles-new-favicon/feed/</wfw:commentRss>
		<slash:comments>0</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>File system expert from Sun posts &#8220;ZFS Pics&#8221; from meeting with Torvalds</title>
		<link>http://www.nybergh.net/notes/2008/05/19/file-system-expert-from-sun-posts-zfs-pics-from-meeting-with-torvalds/</link>
		<comments>http://www.nybergh.net/notes/2008/05/19/file-system-expert-from-sun-posts-zfs-pics-from-meeting-with-torvalds/#comments</comments>
		<pubDate>Mon, 19 May 2008 21:35:42 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[in English]]></category>
		<category><![CDATA[linux/unix]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[Sun]]></category>
		<category><![CDATA[ZFS]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=108</guid>
		<description><![CDATA[Something exciting may be going on. Jeff Bonwick, storage expert and leader of the ZFS team at Sun has posted pictures from a seemingly informal meeting with Linus Torvalds on his blog. Sr Program Manager at Sun, Jim Grisanzio also links to the pictures in a blog post of his own titled &#8220;ZFS Pics&#8220;. Does [...]]]></description>
			<content:encoded><![CDATA[<p>Something exciting may be going on. Jeff Bonwick, storage expert and leader of the <a href="http://en.wikipedia.org/wiki/ZFS" target="_blank">ZFS</a> team at Sun has posted pictures from a seemingly informal meeting with Linus Torvalds <a href="http://blogs.sun.com/bonwick/entry/Casablanca" target="_blank">on his blog</a>. Sr Program Manager at Sun, Jim Grisanzio also links to the pictures in a blog post of his own titled &#8220;<a href="http://blogs.sun.com/jimgris/entry/zfs_pics" target="_blank">ZFS Pics</a>&#8220;.</p>
<p>Does this imply that the Jesus of file systems for serious storage needs may be ported to a near future version of the Linux kernel, despite the <a href="http://en.wikipedia.org/wiki/ZFS#Linux" target="_blank">current licensing issues</a>?
<p><a href='http://www.nybergh.net/stuff/linked/2008/05/zfs.png'><img src="http://www.nybergh.net/stuff/linked/2008/05/zfs-150x150.png" alt="Apple:ish ZFS text" title="Some people need all sorts of glossy effects to get excited by ZFS" width="150" height="150" class="alignnone size-thumbnail wp-image-109" /></a></p>
<p>(image borrowed from <a href="http://www.storiediapple.it/discs-filesystems-and-macs-interview-with-drew-thaler.html">some Apple dude</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/19/file-system-expert-from-sun-posts-zfs-pics-from-meeting-with-torvalds/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>Unsigned British band does surveillance art</title>
		<link>http://www.nybergh.net/notes/2008/05/12/unsigned-british-band-does-surveillance-art/</link>
		<comments>http://www.nybergh.net/notes/2008/05/12/unsigned-british-band-does-surveillance-art/#comments</comments>
		<pubDate>Mon, 12 May 2008 23:40:11 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[in English]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[link tips]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[1984]]></category>
		<category><![CDATA[funny]]></category>
		<category><![CDATA[orwellian]]></category>
		<category><![CDATA[Youtube]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=91</guid>
		<description><![CDATA[I generally find music videos with bands miming songs to be depressing nonsense. An exception to this rule is made by The Get Out Clause, an unsigned Manchester band with their video for a song titled &#8220;Paper&#8221; (link to higher quality Youtube video). By cleverly taking advantage of The United Kingdom&#8217;s groundbreaking pioneer work in [...]]]></description>
			<content:encoded><![CDATA[<p>I generally find music videos with bands miming songs to be depressing nonsense. An exception to this rule is made by <a href="http://www.thegetoutclause.co.uk" target="_blank">The Get Out Clause</a>, an unsigned Manchester band with their video for <a href="http://www.youtube.com/watch?v=98u1HuqS7Nk&#038;fmt=18" target="_blank">a song titled &#8220;Paper&#8221; (link to higher quality Youtube video)</a>.</p>
<p>By cleverly taking advantage of <a href="http://news.bbc.co.uk/1/hi/uk/6108496.stm">The United Kingdom&#8217;s groundbreaking pioneer work</a> in making a real life version of <a href="http://en.wikipedia.org/wiki/Nineteen_Eighty-Four" target="_blank">Nineteen Eighty-Four</a>, they extremely cheaply recorded themselves using surveillance cameras in public places. The band managed to obtain some of the recordings by leaning on <a href="http://en.wikipedia.org/wiki/Data_Protection_Act" target="_blank">UK&#8217;s Data Protection Act</a> and to cut a well working (to the extent that a video of someone miming can &#8220;work&#8221;) music video out of it. (Embedded flash video below).</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/98u1HuqS7Nk&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/98u1HuqS7Nk&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p>If nothing else, <a href="http://www.last.fm/music/The+Get+Out+Clause" target="_blank">their charts on Last.fm</a> may look different a week from now, as of 2008-05-12 23:07 UTC the total play count of The Get Out Clause is 414.</p>
<p>[via:<a href="http://www.boingboing.net/2008/05/09/band-shoots-video-by.html" target="_blank">BoingBoing</a>]</p>
<p><a href='http://www.nybergh.net/stuff/linked/2008/05/telescreen-nineteen-eighty-four-cropped-screenshot.jpg'><img src="http://www.nybergh.net/stuff/linked/2008/05/telescreen-nineteen-eighty-four-cropped-screenshot.jpg" alt="Picture of a large Telescreen taken from the 1984 film Nineteen Eighty-Four telescreen cropped screenshot" title="The sole purpose of this image is to allow me to play Big Brother by watching server logs for users of feed aggregators." width="206" height="267" class="alignnone size-medium wp-image-92" /></a></p>
<p>(Multi-purpose <a href="http://en.wikipedia.org/wiki/Image:Telescreen.png">surveillance image</a> borrowed from Wikipedia.)</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/12/unsigned-british-band-does-surveillance-art/feed/</wfw:commentRss>
		<slash:comments>2</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>
	</channel>
</rss>

