<?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; in English</title>
	<atom:link href="http://www.nybergh.net/notes/category/english/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>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>George Carlin Dead of Heart Failure</title>
		<link>http://www.nybergh.net/notes/2008/06/23/george-carlin-dead-of-heart-failure/</link>
		<comments>http://www.nybergh.net/notes/2008/06/23/george-carlin-dead-of-heart-failure/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 19:31:14 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[in English]]></category>
		<category><![CDATA[link tips]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[activism]]></category>
		<category><![CDATA[censorship]]></category>
		<category><![CDATA[fcc]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[USA]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=135</guid>
		<description><![CDATA[Carlin, who died at the age of 71, was an American author, comedian and actor known for his dislike of taboos and defence of Free Speech. A recording of his Seven Dirty Words monologue, which after being aired by a radio broadcaster caused a 1978 American Supreme Court ruling establishing that the F.C.C. can regulate [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nybergh.net/stuff/linked/2008/06/jesus_is_coming_look_busy_george_carlin-2008.jpg"><img class="alignnone size-thumbnail wp-image-136" title="shitpissfuckcuntcocksuckermotherfuckertits" src="http://www.nybergh.net/stuff/linked/2008/06/jesus_is_coming_look_busy_george_carlin-2008-150x150.jpg" alt="George Carlin" width="150" height="150" /></a></p>
<p>Carlin, who <a href="http://news.slashdot.org/article.pl?sid=08/06/23/128232" target="_blank">died at the age of 71</a>, was an American author, comedian and actor known for his dislike of taboos and defence of Free Speech.</p>
<p>A recording of his <a href="http://en.wikipedia.org/wiki/Seven_dirty_words" target="_blank">Seven Dirty Words</a> monologue, which after being aired by a radio broadcaster caused a 1978 American Supreme Court ruling establishing that the <a href="http://www.urbandictionary.com/define.php?term=pigfucker" target="_blank">F.C.C.</a> can <a href="http://en.wikipedia.org/wiki/F.C.C._v._Pacifica_Foundation" target="_blank">regulate</a> what words one (still!) mustn&#8217;t use on regulated broadcast media in the US.</p>
<p>This is a good time for anyone who&#8217;s unfamiliar with the US broadcast <a href="http://en.wikipedia.org/w/index.php?title=Federal_Communications_Commission&amp;oldid=221095228#Consolidation_permissivity.2C_indecency_crackdowns" target="_blank">decency requirements</a> to take a look at the <a href="http://en.wikipedia.org/wiki/Parents_Television_Council" target="_blank">silliness</a> that shapes the <a href="http://en.wikipedia.org/wiki/Culture_of_the_United_States#Popular_culture" target="_blank">popular culture</a> we all consume.</p>
<p><a href="http://commons.wikimedia.org/wiki/Image:Jesus_is_coming.._Look_Busy_(George_Carlin).jpg" target="_blank">[image source]</a></p>
<p><strong>See also:</strong></p>
<p><a href="http://www.youtube.com/watch?v=BTyzTJTNhNk&amp;fmt=18" target="_blank">Carlin performs The Seven Dirty Words Sketch<br />
</a></p>
<p><a href="http://www.youtube.com/watch?v=MeSSwKffj9o&amp;fmt=18" target="_blank">Carlin performs a rant on religion</a></p>
<p><a href="http://www.youtube.com/watch?v=x0QzkcOGlWk&amp;fmt=18">Carlin&#8217;s monologue on the &#8220;American Dream&#8221;</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/george-carlin-dead-of-heart-failure/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Introducing omglog.com</title>
		<link>http://www.nybergh.net/notes/2008/06/22/introducing-omglogcom/</link>
		<comments>http://www.nybergh.net/notes/2008/06/22/introducing-omglogcom/#comments</comments>
		<pubDate>Sun, 22 Jun 2008 13:05:44 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[in English]]></category>
		<category><![CDATA[link tips]]></category>
		<category><![CDATA[linux/unix]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[omglog]]></category>
		<category><![CDATA[projects]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=132</guid>
		<description><![CDATA[For some time, I&#8217;ve wanted another blog with a significantly lower threshold for posting short shutouts of those random links that keep me distracted. The source of this text, the notes section on my personal site, should for a number of reasons be kept relatively tidy and reserved for longer posts with my own, original [...]]]></description>
			<content:encoded><![CDATA[<p>For some time, I&#8217;ve wanted another blog with a significantly lower threshold for posting short shutouts of those random links that keep me distracted. The source of this text, the notes section on my personal site, should  for a number of reasons be kept relatively tidy and reserved for longer posts with my own, original content. There&#8217;s at least the aspect of tagging and categorizing mutating into some completely different, before unseen beast on any site with more than 5 posts a day; designing sites with lots of different content is difficult. &#8220;Difficult&#8221; is a word I&#8217;d like to not be descriptive of a site that one day might become a CV of some kind.</p>
<p>I like writing longer texts, but length leads to a number of problems. Most importantly: the editing process of making a long text readable is a timesink in itself. To make things more difficult, I&#8217;m usually blogging in a language I don&#8217;t speak natively, which makes it hard to live up to the ideal of posting nothing but well structured divine words of wisdom, unless I choose to give writing indecent amounts of time I&#8217;d rather spend procrastinating in a different fashion. Also: no one reads long texts on the web, at least I know I hardly do so.</p>
<p>In other words, by writing only longer texts, fewer individual works get written and I&#8217;m giving any readers I might have less useful information. Choosing to focus on longer texts of a certain level of depth causes the the exclusion of stuff that really should be posted somewhere.</p>
<p><a href="http://omglog.com"><img title="Honestly, this isn't Twitter" src="http://www.nybergh.net/stuff/linked/2008/06/2008-06-18-omglogcom-with-prologue-theme-150x150.png" alt="omglog.com 2008-06-16" width="150" height="150" /></a></p>
<p><strong>I think I&#8217;ve now solved this dilemma</strong>. No, I didn&#8217;t discover <a href="http://del.icio.us">Delicious</a>/<a href="http://www.stumbleupon.com" target="_blank">SU</a> or the for <a href="http://twitterholic.com" target="_blank">&#8216;merican Internet celebrity and presidential candidate types</a> so popular combination of <a href="http://twitter.com/" target="_blank">Twitter</a> and <a href="http://tinyurl.com/" target="_blank">Tinyurl</a> &#8211; the whole point here is to be self hosted, and besides I already use IRC and Facebook for real world contacts.</p>
<p>What I did do was to open a WP site at <strong><a href="http://omglog.com" target="_blank">omglog.com</a></strong>. Beginning with the <a href="http://en.blog.wordpress.com/2008/01/28/introducing-prologue/" target="_blank">Prologue</a> based design, it feels like a combination of a <a href="http://en.wikipedia.org/wiki/Micro-blogging" target="_blank">microblog</a> and a <a href="http://en.wikipedia.org/wiki/Tumblelog" target="_blank">tumblelog</a>. Keeping <strong><a href="http://omglog.com" target="_blank">omglog.com</a> </strong>within the bounds of being <strong>a simple diary of notable links</strong> is a high priority, as I believe that all the five to eight people who read my posts regularly don&#8217;t need another source of lengthy rants written in dysfunctional English.</p>
<p>Hoping to activate a few potential contributors, I chose to include the author&#8217;s name in the &#8220;permalink structure&#8221;, the way URLs look on the blog. To illustrate this: my entries can be reached at <strong><a href="http://omglog.com/thomas" target="_blank">omglog.com/thomas</a></strong>. All authors obviously have individual feeds with their own posts; my first use for this was to automatically import my posts as &#8220;notes&#8221; on Facebook and similar places.</p>
<p>I invite all readers of this to subsribe to the <strong><a href="http://feeds.omglog.com/omglog">main omglog feed</a></strong>. Anyone I know is also welcome to join <strong><a href="http://omglog.com">omglog.com</a></strong> as a contributor, consider contacting me if you need a place for storing interesting links in mainly English, Finnish and Scandinavian languages. The goal is to be very free-form, all contributors are asked to kindly define &#8220;interesting&#8221; by themselves, I&#8217;m already busy being interested on my own.</p>
<p>If you don&#8217;t want to post yourself, feel free to send me links (hello [at] omglog [dot] com).</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/22/introducing-omglogcom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Funny: The Ladybird Book of The Policeman</title>
		<link>http://www.nybergh.net/notes/2008/06/06/funny-the-ladybird-book-of-the-policeman/</link>
		<comments>http://www.nybergh.net/notes/2008/06/06/funny-the-ladybird-book-of-the-policeman/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 18:07:21 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[in English]]></category>
		<category><![CDATA[link tips]]></category>
		<category><![CDATA[children's books]]></category>
		<category><![CDATA[funny]]></category>
		<category><![CDATA[humor]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=130</guid>
		<description><![CDATA[The IRC gods delivered me this shall we say, updated version of one of those silly (60&#8242;s?) easy reading books published by Ladybird. I was drinking some water when I began reading this and immediately almost drowned myself laughing. [via:1,2 (dunno where this originates)] Copyright &#169; 2012 Thomas Nybergh. Unless something else is specified, the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nybergh.net/stuff/linked/2008/06/the_ladybird_book_of_the_policeman_police_at_work_easy_reading_files_image_14.jpg"><img class="alignnone size-medium wp-image-131" style="vertical-align: bottom;" title="Let's go outside - here they are, our brave policemen, occupied with preventing the most disgusting crimes against nature." src="http://www.nybergh.net/stuff/linked/2008/06/the_ladybird_book_of_the_policeman_police_at_work_easy_reading_files_image_14-300x223.jpg" alt="\" width="300" height="223" /></a></p>
<p>The IRC gods delivered me this shall we say, <a href="http://420.thrashbarg.net/the_ladybird_book_of_the_policeman_police_at_work_easy_reading.html">updated version of one of those silly (60&#8242;s?) easy reading books</a> published by <a href="http://en.wikipedia.org/w/index.php?title=Ladybird_Books&amp;oldid=203947377#History" target="_blank">Ladybird</a>.</p>
<p>I was drinking some water when I began reading this and immediately almost drowned myself laughing.</p>
<p>[via:<a href="http://kriswithak.co.uk/ladybird" target="_blank">1</a>,<a href="http://seorant.ath.cx/police/ladybird.html" target="_blank">2</a> (dunno where this originates)]</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/06/funny-the-ladybird-book-of-the-policeman/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>Creepy photoshopped father-son portraits</title>
		<link>http://www.nybergh.net/notes/2008/05/31/creepy-photoshopped-father-son-portraits/</link>
		<comments>http://www.nybergh.net/notes/2008/05/31/creepy-photoshopped-father-son-portraits/#comments</comments>
		<pubDate>Sat, 31 May 2008 12:22:46 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[in English]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[link tips]]></category>
		<category><![CDATA[creepy]]></category>
		<category><![CDATA[funny]]></category>
		<category><![CDATA[Internet meme]]></category>
		<category><![CDATA[manbabies]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=126</guid>
		<description><![CDATA[I hope manbabies.com proves to be too unhealthy for the human mind to become a longstanding mainstream webtard meme. Image borrowed from post #43. [via:kung fu grippe] Copyright &#169; 2012 Thomas Nybergh. Unless something else is specified, the content of this post is licensed under the Creative Commons Attribution-Noncommercial-Share Alike 1.0 Finland license. Questions related [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nybergh.net/stuff/linked/2008/05/manbabiesdotcom_image_43.jpg"><img class="alignnone size-medium wp-image-127" title="And contrary to my normal position on father son relationships, the unhealthy part is not the football" src="http://www.nybergh.net/stuff/linked/2008/05/manbabiesdotcom_image_43-261x300.jpg" alt="Manbabies.com image #43" width="261" height="300" /></a></p>
<p>I hope <a href="http://manbabies.com" target="_blank">manbabies.com</a> proves to be too unhealthy for the human mind to become a longstanding mainstream webtard meme. Image borrowed from <a href="http://manbabies.com/content/43" target="_blank">post #43</a>.</p>
<p>[via:<a href="http://www.kungfugrippe.com/post/34164533/manbabies-com-dad" target="_blank">kung fu grippe</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/31/creepy-photoshopped-father-son-portraits/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>Swedish copyright lobby avoids precedent by paying file sharer&#8217;s fines and court costs</title>
		<link>http://www.nybergh.net/notes/2008/05/27/swedish-copyright-lobby-avoids-precedent-by-paying-file-sharers-fines-and-court-costs/</link>
		<comments>http://www.nybergh.net/notes/2008/05/27/swedish-copyright-lobby-avoids-precedent-by-paying-file-sharers-fines-and-court-costs/#comments</comments>
		<pubDate>Tue, 27 May 2008 13:25:49 +0000</pubDate>
		<dc:creator>Thomas Nybergh</dc:creator>
				<category><![CDATA[in English]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[notes]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[copyright]]></category>
		<category><![CDATA[copyright Mafia]]></category>
		<category><![CDATA[court]]></category>
		<category><![CDATA[MAFIAA]]></category>
		<category><![CDATA[Sweden]]></category>
		<category><![CDATA[The Pirate Bay]]></category>

		<guid isPermaLink="false">http://www.nybergh.net/?p=121</guid>
		<description><![CDATA[The Pirate Bay blog has a recent post where the author claims to have received insider knowledge on why a recent verdict from a Swedish district court (tingsrätt) wasn&#8217;t appealed against by the defendant, a file sharer. I quote a part of a translation of the text made by the third commenter on the original [...]]]></description>
			<content:encoded><![CDATA[<p>The Pirate Bay blog has a <a href="http://thepiratebay.org/blog/109" target="_blank">recent post</a> where the author claims to have received insider knowledge on why a recent verdict from a Swedish district court (tingsrätt) wasn&#8217;t appealed against by the defendant, a file sharer.</p>
<p>I quote a part of a translation of the text made by the third commenter on the original post&#8217;s page:</p>
<blockquote><p>&#8220;When you&#8217;re running a site like TPB you often get tips from different people about what&#8217;s happening in those questions of interest to you. Yesterday we got two independent tips from very reliable sources (insiders, as it is called) that the 31 year old man who was convicted to inconditional sentence have got his fines and court costs paid by the copyright lobby &#8211; this to get a precedent. In other words, the copyright lobby have more or less bought it.&#8221;</p></blockquote>
<p>The eleventh commenter provides what seems like a reasonable explanation:</p>
<blockquote><p>&#8220;Actually, in Sweden, the verdict of the lower courts (Tingsrätten) is not considered a precedent. Only a few cases from the Supreme Courts (Högsta Domstolen and Regeringsrätten), the Court of Appeal (Hovrätten) and some special purpose courts ( Migrationsöverdomstolen, Miljööverdomstolen, Marknadsdomstolen and Arbetsdomstolen) is considered precedents. This is one of the differences between a Civil Law system (ie. Sweden) and a Common Law system (ie. England and USA).</p>
<p>So, if these accusations are true, then the copyright lobby has rather ensured that this case does NOT become a precedent (which could turn out catastrophically for them, if the appeal had gone against them). However, what they have succeeded in doing is proving that (suspended) prison time is a possible sentencing for file sharing, which is what they need to get search warrants, even though they can&#8217;t point to this case in future court cases..&#8221;</p></blockquote>
<p>If this is true, the copyright Mafia hasn&#8217;t exactly made a very surprising choice of tactics.</p>
<p><a href='http://www.nybergh.net/stuff/linked/2008/05/the-pirate-bay-logo-200px.png'><img src="http://www.nybergh.net/stuff/linked/2008/05/the-pirate-bay-logo-200px.png" alt="The Pirate Bay logo (200px)" title="Arr!" width="200" height="227" class="alignnone size-medium wp-image-122" /></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/27/swedish-copyright-lobby-avoids-precedent-by-paying-file-sharers-fines-and-court-costs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

