<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" xml:lang="en" xml:base="http://fransdejonge.com/wp-atom.php">
	<title type="text">The One with the Thoughts of Frans</title>
	<subtitle type="text">Just a personal blog, sharing some thoughts and findings.</subtitle>

	<updated>2010-07-28T12:34:37Z</updated>

	<link rel="alternate" type="text/html" href="http://fransdejonge.com" />
	<id>http://fransdejonge.com/feed/atom/</id>
	

	<generator uri="http://wordpress.org/" version="3.0">WordPress</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/theonewiththethoughtsoffrans" /><feedburner:info uri="theonewiththethoughtsoffrans" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry>
		<author>
			<name>Frans</name>
						<uri>http://fransdejonge.com</uri>
					</author>
		<title type="html"><![CDATA[Dealing With cPanel: Setting Up a 301 Redirect to Your Main Domain And Preventing .htaccess Hell]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/theonewiththethoughtsoffrans/~3/JJpa5Gln9sM/" />
		<id>http://fransdejonge.com/?p=1718</id>
		<updated>2010-07-28T12:34:37Z</updated>
		<published>2010-07-28T12:32:35Z</published>
		<category scheme="http://fransdejonge.com" term="Sites" />		<summary type="html"><![CDATA[cPanel is surprisingly ill-suited for managing domains. In this post I discuss two methods I use to prevent some issues that arise from this problem.]]></summary>
		<content type="html" xml:base="http://fransdejonge.com/2010/07/28/dealing-with-cpanel-setting-up-a-301-redirect-to-your-main-domain-and-preventing-htaccess-hell/">&lt;p&gt;cPanel is surprisingly ill-suited for managing domains. Rather than treating each domain as a separate entity, you get one main domain and various so-called add-on domains. The most annoying aspect of this is that it always creates a subdomain when you add a new add-on domain. There should be no such thing as an add-on domain, just a bunch of domains. cPanel has some features that help you work around these defects, but I wasn&amp;#8217;t too thrilled with those. It now seems to automatically redirect the www-subdomain to your no-www domain and you can easily set up subdomains to redirect through the interface, but it doesn&amp;#8217;t satisfy me.&lt;/p&gt;
&lt;h3&gt;Setting Up a 301 Redirect&lt;/h3&gt;
&lt;p&gt;Instead of having to bother with a plethora of settings in cPanel itself, I came up with the following to stick at the top of .htaccess. A quick look around on the Internet brought up &lt;a href="http://www.fayazmiraz.com/remove-subdomain-access-from-addon-domain/"&gt;Fayaz Miraz&amp;#8217;s blog&lt;/a&gt;, but while the solution suggestion was close, it misses one crucial aspect: it only redirects from the main page as far as I can tell. This is fixed easily by the addition of $1 (i.e. everything that was added after the main page).&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;IfModule mod_rewrite.c&amp;gt;
RewriteEngine On

RewriteCond %{HTTP_HOST} !^fransdejonge\.com$
RewriteRule ^(.*)$ http://fransdejonge.com/$1 [R=301,L]

&amp;lt;/IfModule&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Simply put, it matches all possible routes of approach (whether through www or through a subdomain of another domain) and if it&amp;#8217;s not fransdejonge.com, it will 301 redirect to fransdejonge.com. The L means no further rewriting will occur after that rule. Mostly because it would just be inefficient, and partially because something else further down the line might mess things up.&lt;/p&gt;
&lt;h3&gt;Preventing .htaccess Hell&lt;/h3&gt;
&lt;p&gt;Another problem is that cPanel automatically creates a &lt;code&gt;/public_html/addondomain&lt;/code&gt; directory. This is bad, because &lt;code&gt;/public_html&lt;/code&gt; already contains a .htaccess file for the main domain. When accessing &lt;code&gt;/public_html/addondomain&lt;/code&gt;, it would first parse the .htaccess file in &lt;code&gt;/public_html&lt;/code&gt; before moving on and overriding it in &lt;code&gt;/public_html/addondomain&lt;/code&gt;, and that&amp;#8217;s assuming none of the rules in &lt;code&gt;/public_html&lt;/code&gt; make anything go awry!&lt;/p&gt;
&lt;p&gt;To prevent this kind of nightmare from occurring I took the simple precaution of creating a new directory &lt;code&gt;/domains&lt;/code&gt;. This domain is contained in &lt;code&gt;/domains/fransdejonge.com&lt;/code&gt;, for instance, and any other add-on or subdomains can reside in their own &lt;code&gt;/domains/domain.com&lt;/code&gt; directory to prevent any added load from needlessly parsing .htaccess files.&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/theonewiththethoughtsoffrans/~4/JJpa5Gln9sM" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://fransdejonge.com/2010/07/28/dealing-with-cpanel-setting-up-a-301-redirect-to-your-main-domain-and-preventing-htaccess-hell/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://fransdejonge.com/2010/07/28/dealing-with-cpanel-setting-up-a-301-redirect-to-your-main-domain-and-preventing-htaccess-hell/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://fransdejonge.com/2010/07/28/dealing-with-cpanel-setting-up-a-301-redirect-to-your-main-domain-and-preventing-htaccess-hell/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Frans</name>
						<uri>http://fransdejonge.com</uri>
					</author>
		<title type="html"><![CDATA[New URI]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/theonewiththethoughtsoffrans/~3/HedGJdw3rBs/" />
		<id>http://fransdejonge.com/?p=1715</id>
		<updated>2010-07-21T14:46:49Z</updated>
		<published>2010-07-21T14:56:22Z</published>
		<category scheme="http://fransdejonge.com" term="Site" />		<summary type="html"><![CDATA[After nearly five years of being hosted at a subdomain of Lowter, this blog is now hosted on my own server. I would like to extend my gratitude to Ethan for hosting me all those years.]]></summary>
		<content type="html" xml:base="http://fransdejonge.com/2010/07/21/new-uri/">&lt;p&gt;After nearly five years of being hosted at a subdomain of &lt;a href="http://www.lowter.com/"&gt;Lowter&lt;/a&gt;, this blog is now hosted on my own server. I would like to extend my gratitude to &lt;a href="http://ethanpoole.com"&gt;Ethan&lt;/a&gt; for hosting me all those years.&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/theonewiththethoughtsoffrans/~4/HedGJdw3rBs" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://fransdejonge.com/2010/07/21/new-uri/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://fransdejonge.com/2010/07/21/new-uri/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://fransdejonge.com/2010/07/21/new-uri/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Frans</name>
						<uri>http://fransdejonge.com</uri>
					</author>
		<title type="html"><![CDATA[Feminism and Atheism]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/theonewiththethoughtsoffrans/~3/uayhP5y21oU/" />
		<id>http://frans.lowter.us/?p=1698</id>
		<updated>2010-07-04T14:54:59Z</updated>
		<published>2010-07-04T14:54:59Z</published>
		<category scheme="http://fransdejonge.com" term="Atheism" /><category scheme="http://fransdejonge.com" term="Thoughts" />		<summary type="html"><![CDATA["It’s amazing how often I see the same information posted on both the feminist and atheist blogs I follow. Religion is not good to women."]]></summary>
		<content type="html" xml:base="http://fransdejonge.com/2010/07/04/feminism-and-atheism/">&lt;blockquote cite="http://friendlyatheist.com/2010/07/03/muslim-family-threatens-harry-potter-actress-for-dating-hindu/#comment-508207"&gt;&lt;p&gt;It’s amazing how often I see the same information posted on both the feminist and atheist blogs I follow. Religion is not good to women.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;On a very related note, I would highly recommend anyone to read &lt;cite&gt;Infidel&lt;/cite&gt;, the autobiography of Ayaan Hirsi Ali. These issues all come down to treating people equally and fairly regardless of sexuality, gender, race, religion or any other reason, but religion is often in direct opposition with those values. For illustration I&amp;#8217;ll quote the devil of whom I just spoke:&lt;/p&gt;
&lt;blockquote cite="http://www.aei.org/article/101759"&gt;&lt;p&gt;Feminists need to be wary of the celebration of &amp;#8220;cultural diversity&amp;#8221; unless they want to inadvertently celebrate polygamy, child-marriage, marital rape, honor killings, wife beating, selective abortion of female fetuses and other traditions that are now legitimized in the name of culture.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;To end this quick post I&amp;#8217;ll link to some of my favorite atheist blogs.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://scienceblogs.com/pharyngula/"&gt;Pharyngula&lt;/a&gt;, no doubt well-known to many. The amount of time he spends debunking quacks is to be admired &amp;#8211; or to be pitied. Regardless, his blog is intelligent and provocative and an excellent source of rationality.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://friendlyatheist.com/"&gt;Friendly Atheist&lt;/a&gt; isn&amp;#8217;t as entertaining as Pharyngula, but heck, not everything can be.&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.heavingdeadcats.com/"&gt;Heaving Dead Cats&lt;/a&gt; also hails from the US and telltales of living in a society that sounds like the 1950s to my Dutch ears.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I&amp;#8217;ll end this post with Bill &amp;#038; Ted&amp;#8217;s idiom, aka the Golden Rule: be excellent to each other.&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/theonewiththethoughtsoffrans/~4/uayhP5y21oU" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://fransdejonge.com/2010/07/04/feminism-and-atheism/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://fransdejonge.com/2010/07/04/feminism-and-atheism/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://fransdejonge.com/2010/07/04/feminism-and-atheism/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Frans</name>
						<uri>http://fransdejonge.com</uri>
					</author>
		<title type="html"><![CDATA[Pancake Visions]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/theonewiththethoughtsoffrans/~3/t71TqzRV-fY/" />
		<id>http://frans.lowter.us/?p=1697</id>
		<updated>2010-06-08T08:08:53Z</updated>
		<published>2010-06-08T08:08:53Z</published>
		<category scheme="http://fransdejonge.com" term="Anecdotes" /><category scheme="http://fransdejonge.com" term="Drawing" />		<summary type="html"><![CDATA[Pictures in shapes.]]></summary>
		<content type="html" xml:base="http://fransdejonge.com/2010/06/08/pancake-visions/">&lt;p&gt;Some of you may be aware that I often imagine things in random shapes that other people have trouble envisioning, sometimes even after I draw them out. On June 3rd my wife and I baked tiny pancakes, and here&amp;#8217;s what I saw in two of them.&lt;/p&gt;
&lt;p&gt;&lt;object type="image/svg+xml" data="http://frans.lowter.us/img/2010/06/pancake-cat.svg" width="338" height="350"&gt;&lt;a href="http://frans.lowter.us/img/2010/06/pancake-cat.svg"&gt;&lt;img src="http://melbymonkey.smugmug.com/photos/888636791_nHoQf-O.png" alt="" /&gt;&lt;/a&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;The first pancake that managed to attract my attention was an evil cat.&lt;/p&gt;
&lt;p&gt;&lt;object type="image/svg+xml" data="http://frans.lowter.us/img/2010/06/pancake-guy.svg" width="269" height="559"&gt;&lt;a href="http://frans.lowter.us/img/2010/06/pancake-guy.svg"&gt;&lt;img src="http://melbymonkey.smugmug.com/photos/888636808_jfkZw-O.png" alt="A face in a pancake." /&gt;&lt;/a&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;This pancake also happened to be on the plate while taking a picture of the evil cat one, so I figured I&amp;#8217;d demonstrate that I do indeed see something in just about anything.&lt;/p&gt;
&lt;p&gt;Note, these are animated SVG images. At the time of writing they only render correctly in Opera and Webkit browsers, whereas Gecko displays a static image. Internet Explorer is served with fallback PNGs.&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/theonewiththethoughtsoffrans/~4/t71TqzRV-fY" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://fransdejonge.com/2010/06/08/pancake-visions/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://fransdejonge.com/2010/06/08/pancake-visions/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://fransdejonge.com/2010/06/08/pancake-visions/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Frans</name>
						<uri>http://fransdejonge.com</uri>
					</author>
		<title type="html"><![CDATA[What Do Dinosaurs Eat for Breakfast?]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/theonewiththethoughtsoffrans/~3/0yx5VHLNR6c/" />
		<id>http://frans.lowter.us/?p=1696</id>
		<updated>2010-06-01T19:50:41Z</updated>
		<published>2010-06-01T19:50:41Z</published>
		<category scheme="http://fransdejonge.com" term="Anecdotes" />		<summary type="html"><![CDATA[A trip down memory lane.]]></summary>
		<content type="html" xml:base="http://fransdejonge.com/2010/06/01/what-do-dinosaurs-eat-for-breakfast/">&lt;p&gt;It was a nice day in spring, almost 20 years ago. There was a dinosaur exhibition traveling around the world and for a couple of months it was closer to home, somewhere in the Netherlands. I don&amp;#8217;t remember the name, the location or all that much about the exhibition at all. I do have some distinct memories of the fossilized bones of an apatosaurus (which my spell checker wishes to &amp;#8220;correct&amp;#8221; to brontosaurus), but I&amp;#8217;m not quite sure if that was at the same exhibition. To cut the reminiscing about which bones belong to which exhibition short, however, let me continue with the story.&lt;/p&gt;
&lt;p&gt;We got out of the car and walked to the entrance of the location hosting the dinosaur exhibition. The large banners showing pictures of artist&amp;#8217;s impressions of dinosaurs and pictures of dinosaur skeletons already excited me, so I probably jumped around and said something like &amp;#8220;Mom! Dad! Look, pictures of dinosaurs!&amp;#8221; The ticket office was as boring as ticket offices patently are, but this didn&amp;#8217;t dim my enthusiasm. As I struggled not to embarrass my parents by screaming loudly and enthusiastically about the dinosaur treasures awaiting us, my father finished buying our tickets. I probably still gained free entrance to most museums, exhibitions and the like in those days.&lt;/p&gt;
&lt;p&gt;As we entered the exhibition, we didn&amp;#8217;t immediately hit on all the bony goodness of fossils. It was merely a fairly boring main hall from which you could go in several directions to actually enjoy skeletal delight. However, there was a fake life-like tyrannosaurus rex at the other end of the hall. Although we&amp;#8217;d come there to enjoy vertebrate fossils, I was quite willing to give reconstructions a chance, and besides it was the most real thing we&amp;#8217;d seen so far. I asked my mother if I could enjoy the anonymous&amp;#8217; artist&amp;#8217;s work, got permission, and sprinted toward the t-rex to gaze at the marvels of reconstruction in what was supposed to be some kind of natural (plastic) environment.&lt;/p&gt;
&lt;p&gt;The first thing I noticed, while still running toward it, was that the skin looked surprisingly much like real lizards. I had expected it to look more plasticly, perhaps more similar to my own toy dinosaurs. I slowed down somewhat because the t-rex was starting to tower over me. I doubt it was any more than 1/5th the size of a real t-rex, but I was quite small myself. But before I had slowed down enough to stop the t-rex turned its head toward me. I froze. I thought a thousand things at once in the following less than half a second. Weren&amp;#8217;t dinosaurs extinct? But this one looked awful realistic; that would explain a lot. The WNF was always talking about animals that could go extinct, is this &amp;#8211; as it lowered its upper body toward me my mind entered a blank. Fight or flight kicked in. You want to fight? I&amp;#8217;m here to save your ass from extinction, pal, so you better beha- the t-rex opened its mouth and roared. I doubt I ever ran as fast as I did right then and there. As I sought cover behind my parents the t-rex stopped roaring. &amp;#8220;Mommy, daddy, that t-rex-&amp;#8221; I said while I pointed at it with a shaking finger. My parents laughed, and both took one of my hands. My mother pointed out that the t-rex hadn&amp;#8217;t come after me, and it had stopped moving or making any noise.&lt;/p&gt;
&lt;p&gt;I wasn&amp;#8217;t as eager to visit the exhibition anymore. That creepy dinosaur was guarding the entrance hall. However, my curiosity got the best of me, so it didn&amp;#8217;t take my parents long to convince me to look at the mechanical dinosaur some more. After I carefully positioned myself behind my parents, we walked toward the theropod. When we were close enough, the t-rex repeated his earlier shenanigans in the exact same manner, a clear sign of a machine; unless by some fluke this were an autistic carnivore. After realizing that it was motion-triggered and only had a limited range of motion, I silently gawked at the awesomeness of the creators of the realistic t-rex.&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/theonewiththethoughtsoffrans/~4/0yx5VHLNR6c" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://fransdejonge.com/2010/06/01/what-do-dinosaurs-eat-for-breakfast/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://fransdejonge.com/2010/06/01/what-do-dinosaurs-eat-for-breakfast/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://fransdejonge.com/2010/06/01/what-do-dinosaurs-eat-for-breakfast/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Frans</name>
						<uri>http://fransdejonge.com</uri>
					</author>
		<title type="html"><![CDATA[What Is a Malamanteau?]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/theonewiththethoughtsoffrans/~3/w-LFs7cYO5E/" />
		<id>http://frans.lowter.us/?p=1694</id>
		<updated>2010-05-29T12:22:35Z</updated>
		<published>2010-05-29T12:22:35Z</published>
		<category scheme="http://fransdejonge.com" term="Internet" /><category scheme="http://fransdejonge.com" term="Language" />		<summary type="html"><![CDATA[Rescued from Wikipedia.]]></summary>
		<content type="html" xml:base="http://fransdejonge.com/2010/05/29/what-is-a-malamanteau/">&lt;p&gt;The following article appeared on Wikipedia for a very short time due to &lt;a href="http://xkcd.com/739/"&gt;a recent xkcd comic&lt;/a&gt;. It&amp;#8217;s a reference back to &lt;a href="http://languagelog.ldc.upenn.edu/nll/?p=2314"&gt;Language Log&lt;/a&gt;, which references xkcd sometimes, but the reverse seldom happens.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;A &lt;b&gt;malamanteau&lt;/b&gt; (plural malamanteaux) is a neologism for a portmanteau created by incorrectly combining a malapropism with a neologism. It is itself a portmanteau of &lt;a href="/wiki/Malapropism" title="Malapropism"&gt;malapropism&lt;/a&gt; and &lt;a href="/wiki/Portmanteau" title="Portmanteau"&gt;portmanteau&lt;/a&gt;. In a less strict definition, a portmanteau of a malapropism with another word can also be considered a malamanteau. The contained malapropism must be typically a very common one, probably most people are not aware of, in order to be able to regain the meaning of a malamanteau.&lt;/p&gt;
&lt;p&gt;A malamanteau often is created when somebody tries to use a neologism (alternatively, an idiom) but mistakenly confuses a word with another one. However, unlike a malapropism or an &lt;a href="/wiki/Eggcorn" title="Eggcorn"&gt;eggcorn&lt;/a&gt;, the fumbled word is not completely replaced, but merely transfixed to the new one. A famous example is: &amp;#8220;misunderestimate&amp;#8221; which was popularized by the 43rd President of the United States, &lt;a href="/wiki/George_W._Bush" title="George W. Bush"&gt;George W. Bush&lt;/a&gt;. Probably it was intended to be &amp;#8220;underestimate&amp;#8221; but mistakenly jumbled with &amp;#8220;misunderstand.&amp;#8221;&lt;/p&gt;
&lt;h3&gt;&lt;span class="mw-headline" id="Examples"&gt;Examples&lt;/span&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Somebody describes his misunderstanding of what someone was saying by stating, &amp;#8220;I misconscrewed it up.&amp;#8221;&lt;/li&gt;
&lt;li&gt;Somenone explains his inability to talk while being upset by saying he was &amp;#8220;flustrated.&amp;#8221;&lt;/li&gt;
&lt;li&gt;A meaningful malamanteau is &amp;#8220;ambiviolent,&amp;#8221; as in: &amp;#8220;Beatrix Kiddo in &lt;a href="/wiki/Kill_Bill" title="Kill Bill"&gt;Kill Bill&lt;/a&gt; was ambiviolent. She didn&amp;#8217;t know who to kill first.&amp;#8221;&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;
&lt;p&gt;I was going to write more about it when I made this draft, but by now it&amp;#8217;s two weeks later and I&amp;#8217;ve lost interest. Booyah.&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/theonewiththethoughtsoffrans/~4/w-LFs7cYO5E" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://fransdejonge.com/2010/05/29/what-is-a-malamanteau/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://fransdejonge.com/2010/05/29/what-is-a-malamanteau/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://fransdejonge.com/2010/05/29/what-is-a-malamanteau/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Frans</name>
						<uri>http://fransdejonge.com</uri>
					</author>
		<title type="html"><![CDATA[Intelligent Alien Life Does Exist, Otherwise They Would Have Contacted Us]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/theonewiththethoughtsoffrans/~3/svcfIiXajMY/" />
		<id>http://frans.lowter.us/?p=653</id>
		<updated>2010-05-18T19:30:03Z</updated>
		<published>2010-05-18T19:30:03Z</published>
		<category scheme="http://fransdejonge.com" term="Recycled" /><category scheme="http://fransdejonge.com" term="Thoughts" />		<summary type="html"><![CDATA[A little background on my forum signature.]]></summary>
		<content type="html" xml:base="http://fransdejonge.com/2010/05/18/intelligent-alien-life-does-exist-otherwise-they-would-have-contacted-us/">&lt;p&gt;This post is &lt;a href="http://frans.lowter.us/2009/12/06/virtual-recycling/"&gt;recycled&lt;/a&gt;, and was originally published on my former weblog on Saturday 2005-02-26 at 18:08:45. I tweaked some grammar and spelling here and there, but I resisted the urge to rewrite this entry almost entirely. I did not, however, refrain from commenting on myself. Sensitive souls beware: I added some brand new explicit content.&lt;/p&gt;
&lt;hr/&gt;
&lt;p&gt;This is the only signature I had which really liked. &lt;ins&gt;[I guess I must really, really like it, for I still use it.]&lt;/ins&gt; It looks like a quote from someone famous at first sight &lt;ins&gt;[(of course famous by no means implies not stupid)]&lt;/ins&gt;, or just a good old expression (you know, like &amp;#8220;an apple a day keeps the doctor away&amp;#8221;), but it is entirely a product of my brain. &lt;ins&gt;[Whoopee.]&lt;/ins&gt; I don&amp;#8217;t find that so very surprising all by itself; in what may be a form of narcissism, I say things I consider quotable quite often. &lt;ins&gt;[Saying quotable things sure is narcissistic. What's that? You meant &lt;q&gt;I consider things I say quotable quite often,&lt;/q&gt; did you? Very well then, carry on. On a very related matter, I'm not so sure if stupid jokes like &lt;q&gt;You've got the first pickle&lt;/q&gt; (when offering a few pickles) as a play on &lt;q&gt;first pick&lt;/q&gt; is all that quotable, though.]&lt;/ins&gt; But still, this particular &amp;#8220;quote of my mind&amp;#8221; has a sort of uniqueness over it. &lt;ins&gt;[Oh boy. If that means it's the magnum opus of my brain, I'm fucked.]&lt;/ins&gt;&lt;/p&gt;
&lt;p&gt;You should also know something about my browsing behavior to understand a bit about what happened when the quote came to me. I seldom browse with less than four pages open. &lt;ins&gt;[Even at the time that was a lie and you know it. I bet you rarely managed to browse with less than 10.]&lt;/ins&gt; I basically just open what I find interesting and then read what I have opened one by one, or close it quickly if I see it is not what I expected it to be. &lt;ins&gt;[Most people, on the other hand, close pages they don't want to see as slowly as possible.]&lt;/ins&gt; I also start writing a reply to something, to interrupt it by going to some other page, after which I will continue writing the reply. &lt;ins&gt;[You were also doing that while writing this post, weren't you?]&lt;/ins&gt;&lt;/p&gt;
&lt;p&gt;The situation where the general idea came into my mind was like this. I was filling in profile information on some site (I don&amp;#8217;t remember which one, but it doesn&amp;#8217;t matter) and I came to the signature part. I could use the quote which I made up with my Chicken avatar (&amp;#8220;The chicken and the egg came at the same time&amp;#8221;), but I wanted something new. &lt;ins&gt;[I'm sure that everybody knows what your &lt;a href="http://frans.lowter.us/wp-content/uploads/2009/12/chicken.gif"&gt;Chicken avatar&lt;/a&gt; looks like.]&lt;/ins&gt; Something catchy. So I decided to go to another site. Meanwhile, I could think about my signature.&lt;/p&gt;
&lt;p&gt;It was quite a strange site I visited. A UFO related site, where they argued that UFOs actually were some kind of new technology from the Third Reich, whose descendants still resided on Antarctica. Utter nonsense and therefore enjoyable. &lt;ins&gt;[The perfect way to judge whether something is enjoyable.]&lt;/ins&gt; But then suddenly this thought came into my mind, because of the combination between World War II and UFOs. &lt;ins&gt;[Suddenly, I wanted to kill myself.]&lt;/ins&gt; Why haven&amp;#8217;t aliens contacted us? If they&amp;#8217;ve observed us they must have noticed the bloodbaths of Alexander, the expansion and fall of the Roman empire, the Conquistadors, Napoleon, and most important, World War II. So yes, obviously alien life is intelligent; if they weren&amp;#8217;t, they would have contacted us. Intelligent alien life does exist, otherwise they would have contacted us. &lt;ins&gt;[Amazing!]&lt;/ins&gt;&lt;/p&gt;
&lt;p&gt;And there it was. The perfect signature. I had exactly the kind of bad quote I wanted my signature to be. I still like it. &lt;ins&gt;[I guess I can live with it for a while longer. Perhaps I should update it. &lt;a href="http://frans.lowter.us/2009/12/04/space-dino/"&gt;Space dinosaurs&lt;/a&gt; do exist, otherwise they would not be extinct on earth.]&lt;/ins&gt;&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/theonewiththethoughtsoffrans/~4/svcfIiXajMY" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://fransdejonge.com/2010/05/18/intelligent-alien-life-does-exist-otherwise-they-would-have-contacted-us/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://fransdejonge.com/2010/05/18/intelligent-alien-life-does-exist-otherwise-they-would-have-contacted-us/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://fransdejonge.com/2010/05/18/intelligent-alien-life-does-exist-otherwise-they-would-have-contacted-us/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Frans</name>
						<uri>http://fransdejonge.com</uri>
					</author>
		<title type="html"><![CDATA[Opera and Link Targets]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/theonewiththethoughtsoffrans/~3/5zM99BRD9EE/" />
		<id>http://frans.lowter.us/?p=1693</id>
		<updated>2010-05-09T12:20:49Z</updated>
		<published>2010-05-09T12:20:49Z</published>
		<category scheme="http://fransdejonge.com" term="Opera" />		<summary type="html"><![CDATA[How to customize Opera's handling of links.]]></summary>
		<content type="html" xml:base="http://fransdejonge.com/2010/05/09/opera-and-link-targets/">&lt;p&gt;If you&amp;#8217;re like me and you aren&amp;#8217;t particularly fond of sites opening in new tabs without your explicit command, you might be interested in activating &lt;a href="opera:config#Ignore%20Target"&gt;Opera&amp;#8217;s Ignore Target setting&lt;/a&gt;. This setting &amp;#8220;Unfortunately &amp;#8230; also disables the &lt;em&gt;window.open()&lt;/em&gt; method, breaking the functionality of many sites,&amp;#8221; so you might prefer to utilize &lt;a href="http://extendopera.org/userjs/content/remove-blank-targets"&gt;JKing&amp;#8217;s UserJS which stops most links from opening in new windows&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;On the other hand, you might prefer all links to external sites to open in a new tab. I recently wrote &lt;a href="http://extendopera.org/userjs/content/external-links-new-window" title="A script that opens external links in a new tab."&gt;a script that does just that&lt;/a&gt; for someone on the MyOpera forum.&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/theonewiththethoughtsoffrans/~4/5zM99BRD9EE" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://fransdejonge.com/2010/05/09/opera-and-link-targets/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://fransdejonge.com/2010/05/09/opera-and-link-targets/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://fransdejonge.com/2010/05/09/opera-and-link-targets/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Frans</name>
						<uri>http://fransdejonge.com</uri>
					</author>
		<title type="html"><![CDATA[Hewlett Packard Breaks Wheaton&#039;s Law]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/theonewiththethoughtsoffrans/~3/VoV9kGGpjKw/" />
		<id>http://frans.lowter.us/?p=1688</id>
		<updated>2010-05-03T16:49:46Z</updated>
		<published>2010-05-03T16:49:46Z</published>
		<category scheme="http://fransdejonge.com" term="Anecdotes" /><category scheme="http://fransdejonge.com" term="Media" />		<summary type="html"><![CDATA[HP region encodes their printers and ink cartridges.]]></summary>
		<content type="html" xml:base="http://fransdejonge.com/2010/05/03/hewlett-packard-breaks-wheatons-law/">&lt;p&gt;The title of this post probably isn&amp;#8217;t a shocker, assuming you know that &lt;a href="http://twitter.com/wilw/status/5966220832"&gt;Wheaton&amp;#8217;s Law&lt;/a&gt; is &amp;#8220;don&amp;#8217;t be a dick.&amp;#8221; &lt;small class="sidenote"&gt;Wil Wheaton is a pretty awesome &lt;del datetime="2010-04-30T10:15:10+00:00"&gt;guy&lt;/del&gt;&lt;ins datetime="2010-04-30T10:15:10+00:00"&gt;geek&lt;/ins&gt;. &lt;a href="http://wilwheaton.typepad.com/"&gt;His blog&lt;/a&gt; and his podcasts are well worth listening to.&lt;/small&gt; What is shocking to me, however, is the fact that HP region encodes their printers and ink cartridges. That&amp;#8217;s right, just like the annoying mechanisms that apply to DVDs, Blu-ray Discs, video games and whatever else might be region-encoded, ink cartridges are region encoded as well.&lt;/p&gt;
&lt;p&gt;We discovered this issue a couple of weeks ago when my wife&amp;#8217;s printer ran out of ink. She&amp;#8217;s got an &lt;a href="http://www.amazon.com/HP-PSC-2355-All-in-One-Printer/dp/B0002OKBXA"&gt;HP PSC 2355 All-in-One Printer&lt;/a&gt;, which, while not super expensive, she certainly wasn&amp;#8217;t going to leave in the US. At Saturn (where ink is slightly cheaper than at Mediamarkt even though they&amp;#8217;re owned by the same corporation) she selected some ink cartridges and we thought that would be the end of the ink shortage. The ink cartridges had the exact printer model in the list of compatible printers on the package, but after inserting the cartridges in the printer it displayed the joyful message that an &amp;#8220;Incorrect Print Cartridge&amp;#8221; had been inserted.&lt;/p&gt;
&lt;p&gt;It&amp;#8217;s especially lovely how all of the official HP support pages claim that &lt;a href="http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00249451&amp;#038;lc=en&amp;#038;cc=us&amp;#038;dlc=en&amp;#038;os=228&amp;#038;product=422000&amp;#038;rule=44430&amp;#038;lang=en#"&gt;something has probably inexplicably gone awry with the cartridge itself&lt;/a&gt; and, summarized, that it really couldn&amp;#8217;t have anything to do with the printer. While keeping the possibility in mind, we didn&amp;#8217;t consider this scenario very likely, however.&lt;/p&gt;
&lt;p&gt;Alternative search results seemed to point to &lt;a href="http://forums13.itrc.hp.com/service/forums/questionanswer.do?admit=109447627+1271322923343+28353475&amp;#038;threadId=948971"&gt;some obscure error&lt;/a&gt; and upon running &lt;a href="http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?lc=en&amp;#038;lang=en&amp;#038;cc=us&amp;#038;os=228&amp;#038;product=422000&amp;#038;dlc=en&amp;#038;softwareitem=oj-32845-1"&gt;the patch&lt;/a&gt; for this error, the patching software said there was nothing to patch. That was a waste of time and effort.&lt;/p&gt;
&lt;p&gt;Somehow that wasted effort did make me realize that perhaps I should try a broader Internet search while including things like &amp;#8220;US to Europe&amp;#8221; in the search string. This &lt;a href="http://www.fixya.com/support/t3129628-hp_psc_2355_incorrect_print_cartridges"&gt;quickly&lt;/a&gt; yielded &lt;a href="http://www.fixya.com/support/t156381-change_region_code_ink_cartridges"&gt;plenty&lt;/a&gt; of &lt;a href="http://www.fixya.com/support/t465196-change_region_codess_printer_hp_c3180"&gt;results&lt;/a&gt;. One commenter said that &amp;#8220;after 3 phone calls and 4 emails&amp;#8221; he &amp;#8220;learned that all HP printers sold after 2004 are regionalised.&amp;#8221;&lt;/p&gt;
&lt;p&gt;So my wife went on the HP support chat and after 45 minutes to 1 hour of exchanging all kinds of codes and diving into hidden configuration screens (something rather silly that reminds more of an easter egg than of a serious feature) the region of the printer was changed. It&amp;#8217;s now working properly in Europe. Beware, however, if you&amp;#8217;re a business person staying in various continents who wants to take their printer along. Aside from the considerable effort involved, there are only 2 region changes left now.&lt;/p&gt;
&lt;p&gt;Whenever my current Epson printer or my wife&amp;#8217;s HP printer is ready for replacement I will most certainly try to buy one that doesn&amp;#8217;t have such ridiculous &lt;a href="http://en.wikipedia.org/wiki/Anti-feature#Anti-features"&gt;anti-features&lt;/a&gt;. Therefore I was trying to find out if other printer manufacturers also region-encode their ink cartridges; I couldn&amp;#8217;t find anything (though I didn&amp;#8217;t search for very long), but I did run into &lt;a href="http://forums.techguy.org/5856822-post3.html"&gt;this gem&lt;/a&gt;, as a reply to someone asking whether their American Epson printer would work in Japan.&lt;/p&gt;
&lt;blockquote cite="http://forums.techguy.org/5856822-post3.html"&gt;&lt;p&gt;I&amp;#8217;ve never heard of region coding for ink cartridges.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Such sweet, blissful innocence.&lt;/p&gt;
&lt;p&gt;While HP was already on my avoid list due to their abhorrent tech support regarding the lousy computer they sold to my parents. It turned out that the SATA controller to which the HDD was connected had somehow become defective. Figuring this out took me about 5 minutes; they took several weeks and they still couldn&amp;#8217;t find anything wrong with it. But the story behind that is worthy of a separate blog post. Suffice it to say that I will not be buying any computers, printers, scanners or anything else from HP anymore. Lousy support is one thing, but if I wanted to have acts of coitus performed on me if I happen to move outside of some so-called region I&amp;#8217;d rather pay money to a hooker.&lt;/p&gt;
&lt;p&gt;P.S. By the way, Microsoft, this is why I use Ubuntu now instead of software that does all kinds of ridiculous things that I don&amp;#8217;t want it to do. This has already been &lt;a href="http://www.gnu.org/philosophy/right-to-read.html"&gt;extensively covered&lt;/a&gt; by other people, so I certainly won&amp;#8217;t waste my time doing any such thing.&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/theonewiththethoughtsoffrans/~4/VoV9kGGpjKw" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://fransdejonge.com/2010/05/03/hewlett-packard-breaks-wheatons-law/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://fransdejonge.com/2010/05/03/hewlett-packard-breaks-wheatons-law/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://fransdejonge.com/2010/05/03/hewlett-packard-breaks-wheatons-law/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Frans</name>
						<uri>http://fransdejonge.com</uri>
					</author>
		<title type="html"><![CDATA[Fun With American Airlines and British Airways]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/theonewiththethoughtsoffrans/~3/TKrzktRNgxA/" />
		<id>http://frans.lowter.us/?p=1687</id>
		<updated>2010-04-28T19:15:40Z</updated>
		<published>2010-04-28T19:15:40Z</published>
		<category scheme="http://fransdejonge.com" term="Travel" />		<summary type="html"><![CDATA[Unlike my last post about airlines, this one’s about luggage.]]></summary>
		<content type="html" xml:base="http://fransdejonge.com/2010/04/28/fun-with-american-airlines-and-british-airways/">&lt;p&gt;Unlike &lt;a href="http://frans.lowter.us/2010/04/12/fun-with-american-customs-airlines-special-thanks-to-klm-com/"&gt;my last post about airlines&lt;/a&gt;, this one&amp;#8217;s about luggage.&lt;/p&gt;
&lt;p&gt;I was going back from the US to Amsterdam, transferring at Heathrow. Customs &amp;#038; security in England took so long that by the time I got anywhere near the A-gates they&amp;#8217;d already started boarding, so I hurried to the gate and got on board of the plane as one of the last people. Only later did I discover that Heathrow is the absolute craziest airport in the world that should take a very, very good look at how they do things in a proper airport like O&amp;#8217;Hare or Schiphol. They don&amp;#8217;t even seem to know anything about their gates until 30 minutes or so before it&amp;#8217;s scheduled to leave! Anyway, pretty much as soon as I was in the plane the pilot said something like &amp;#8220;it looks like everyone&amp;#8217;s on board already, so we&amp;#8217;re taking off 30 minutes early, woo!&amp;#8221; I remember thinking something like &amp;#8220;good thing my luggage didn&amp;#8217;t have to go through 1 hour customs &amp;#038; security.&amp;#8221;&lt;/p&gt;
&lt;p&gt;We landed in Amsterdam, I got off the plane and I waited at the luggage belt, but my baggage never showed up. As I was looking around to figure out where to go to fix this problem, this guy working there came up to me in his cart and was like &amp;#8220;can I help you?&amp;#8221; So I said, &amp;#8220;I just got here with British Airways flight BA217 [or something along those lines anyway]&amp;#8221; and he said &amp;#8220;that&amp;#8217;s the one from London?&amp;#8221; and I said &amp;#8220;yeah, does it make a difference?&amp;#8221; He said &amp;#8220;no, actually it doesn&amp;#8217;t. Anyway, you have to go to that office right there&amp;#8221; while pointing at this place with a huge line in front of it.&lt;/p&gt;
&lt;p&gt;I went to that office and waited for 30 freaking minutes until it was finally my turn. Then it turned out that this was the KLM &amp;#038; partners lost luggage claim thing, and the BA lost luggage office was on the other side! I wasn&amp;#8217;t the only one misled by the bloke driving around on his cart and like 5 people who had been waiting behind me followed me to the other office where of course all the time no one had been to at all. Turned out my suitcase was still in London and it was scheduled to come toward Amsterdam in about 30 minutes on the next flight. Gee, thanks.&lt;/p&gt;
&lt;p&gt;I scheduled a delivery for the next day between 9 and 12. That was all very decent, except for the fact that they actually came at 14. When I called them at 12:30 they said &amp;#8220;oh, it&amp;#8217;s normal that they might run a little late.&amp;#8221; Sigh.&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/theonewiththethoughtsoffrans/~4/TKrzktRNgxA" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://fransdejonge.com/2010/04/28/fun-with-american-airlines-and-british-airways/#comments" thr:count="3" />
		<link rel="replies" type="application/atom+xml" href="http://fransdejonge.com/2010/04/28/fun-with-american-airlines-and-british-airways/feed/atom/" thr:count="3" />
		<thr:total>3</thr:total>
	<feedburner:origLink>http://fransdejonge.com/2010/04/28/fun-with-american-airlines-and-british-airways/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Frans</name>
						<uri>http://fransdejonge.com</uri>
					</author>
		<title type="html"><![CDATA[Fries Red White]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/theonewiththethoughtsoffrans/~3/XV8Vk7w6_C4/" />
		<id>http://frans.lowter.us/?p=1689</id>
		<updated>2010-04-21T14:02:47Z</updated>
		<published>2010-04-21T14:02:47Z</published>
		<category scheme="http://fransdejonge.com" term="Anecdotes" />		<summary type="html"><![CDATA[I've been reading a lot of notalwaysright over the past few days. It reminded me of an experience I had while working in a sort of fast-food restaurant.]]></summary>
		<content type="html" xml:base="http://fransdejonge.com/2010/04/21/fries-red-white/">&lt;p&gt;I&amp;#8217;ve been reading a lot of &lt;a href="http://notalwaysright.com"&gt;notalwaysright.com&lt;/a&gt; over the past few days. It reminded me of the following experience I had while working at a fast food restaurant when I was 17 years old. The conversation took place in German.&lt;/p&gt;
&lt;hr/&gt;
&lt;dl&gt;
&lt;dt&gt;&lt;cite&gt;Me&lt;/cite&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;q&gt;How can I serve you?&lt;/q&gt;&lt;/dd&gt;
&lt;dt&gt;&lt;cite&gt;Customer&lt;/cite&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;q&gt;I&amp;#8217;ll have fries red white.&lt;/q&gt;&lt;/dd&gt;
&lt;dt&gt;&lt;cite&gt;Me&lt;/cite&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;q&gt;Do you mean mayonnaise and ketchup, madam?&lt;/q&gt;&lt;/dd&gt;
&lt;dt&gt;&lt;cite&gt;Customer&lt;/cite&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;q&gt;No, I mean those red and white condiments that people always have with fries.&lt;/q&gt; &lt;i&gt;This looks sarcastic on paper, but trust me: it wasn&amp;#8217;t.&lt;/i&gt;&lt;/dd&gt;
&lt;dt&gt;&lt;cite&gt;Me&lt;/cite&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;q&gt;I&amp;#8217;m sorry, we don&amp;#8217;t have any white condiments other than mayonnaise. Could I get you mayonnaise and curry sauce, perhaps?&lt;/q&gt;&lt;/dd&gt;
&lt;dt&gt;&lt;cite&gt;Customer&lt;/cite&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;q&gt;&lt;strong&gt;No&lt;/strong&gt;, not mayonnaise and whatever else you said! &lt;strong&gt;Fries red white&lt;/strong&gt;!&lt;/q&gt;&lt;/dd&gt;
&lt;/dl&gt;
&lt;p&gt;&lt;i&gt;I figured I&amp;#8217;d just take a gamble and I gave her fries with mayonnaise and ketchup.&lt;/i&gt;&lt;/p&gt;
&lt;dl&gt;
&lt;dt&gt;&lt;cite&gt;Customer&lt;/cite&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;q&gt;There, was that so hard?&lt;/q&gt;&lt;/dd&gt;
&lt;/dl&gt;
&lt;p&gt;&lt;em&gt;For the record, no other German customer has ever ordered their fries red, white or in any other color; all other Germans ordered fries with a condiment, such as mayonnaise or ketchup.&lt;/em&gt;&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/theonewiththethoughtsoffrans/~4/XV8Vk7w6_C4" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://fransdejonge.com/2010/04/21/fries-red-white/#comments" thr:count="3" />
		<link rel="replies" type="application/atom+xml" href="http://fransdejonge.com/2010/04/21/fries-red-white/feed/atom/" thr:count="3" />
		<thr:total>3</thr:total>
	<feedburner:origLink>http://fransdejonge.com/2010/04/21/fries-red-white/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Frans</name>
						<uri>http://fransdejonge.com</uri>
					</author>
		<title type="html"><![CDATA[Fun With American Customs &amp; Airlines: Special Thanks to KLM.com]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/theonewiththethoughtsoffrans/~3/YcUxe7KjjnU/" />
		<id>http://frans.lowter.us/?p=1686</id>
		<updated>2010-04-12T10:01:34Z</updated>
		<published>2010-04-12T10:01:34Z</published>
		<category scheme="http://fransdejonge.com" term="Travel" />		<summary type="html"><![CDATA[American customs doesn't make any sense. Are they afraid that someone from a roughly equally wealthy state with better welfare would like to become an illegal immigrant?]]></summary>
		<content type="html" xml:base="http://fransdejonge.com/2010/04/12/fun-with-american-customs-airlines-special-thanks-to-klm-com/">&lt;p&gt;A few years ago I booked a flight to America and I got a confirmation e-mail listing the details of the flight. Because it was my first time with an e-ticket, I assumed that was all that I needed. I don&amp;#8217;t mean the type of e-ticket you print yourself but the airlines call it e-tickets anyway. Turns out I was supposed to have received another e-mail and that the reservation number I got wasn&amp;#8217;t an actual e-ticket number. It was apparently a problem with KLM&amp;#8217;s system. Even though I paid with iDeal, it hadn&amp;#8217;t properly registered it. The woman working for KLM at the check-in desk quickly made a few calls, found out the problem was known, and within 5 minutes she&amp;#8217;d gotten me a boarding pass to Detroit. She told me that they were working on getting my connecting flight in order.&lt;/p&gt;
&lt;p&gt;At the other side of the ocean, about 8 to 10 hours later, things were less nice. Customs was making a fuss about my lack of a connecting flight ticket. Gee, if you want people to have all their tickets fixed up at customs, how about you stick those airline desks &lt;strong&gt;before&lt;/strong&gt; you have to pass through customs, or otherwise shut your stupid pie-hole about it. I was in luck: I could see the airline desks from customs, so I could point at the NWA desk and be like &amp;#8220;well, if you want all ticket issues to be resolved you should put those desks before this checkpoint. I need to go to the NWA one over there.&amp;#8221; He grudgingly admitted that my logic was flawless, added a stamp to my passport and stapled this green immigration paper in a way that made it stick out annoyingly. That crooked stapling became a recurring theme during all of my subsequent visits to the US except one.&lt;/p&gt;
&lt;p&gt;So then I went to the NWA desk. I told the woman that KLM had messed something up with my reservation and that they should&amp;#8217;ve fixed it by now. KLM told me they&amp;#8217;d probably fix it in about 1-2 hours, so that presumably would&amp;#8217;ve been before the plane even left Amsterdam. She then asked if she could see the boarding pass I&amp;#8217;d gotten in Amsterdam and said &amp;#8220;you were late, weren&amp;#8217;t you?&amp;#8221; I said something like &amp;#8220;um no, I just told you, KLM messed something up with my reservation because something went wrong with this payment system where my money was transferred but the system didn&amp;#8217;t register this correctly.&amp;#8221; She replied, &amp;#8220;so you were late.&amp;#8221; I tried one or two times to explain the situation again, but I met a blank stare and a repetition of the notion that I must&amp;#8217;ve been late. I ended up saying something like &amp;#8220;sure&amp;#8230; could you get me my ticket for the connecting flight please?&amp;#8221;&lt;/p&gt;
&lt;p&gt;Her NWA computer didn&amp;#8217;t have me in it with my KLM e-ticket number (that the KLM woman gave me), so she had to phone a colleague who did have access to KLM&amp;#8217;s booking system. Consequently she could type in some code on the NWA computer which finally resulted in my ticket. I still don&amp;#8217;t know why she couldn&amp;#8217;t have just typed my name, but oh well.&lt;/p&gt;
&lt;p&gt;Perhaps to compensate for all of the trouble, the connecting flight to Chicago was executed in the most comfortable plane I&amp;#8217;ve ever been in. The seats were wide, there was plenty of leg space. I can tell you that I would&amp;#8217;ve preferred the preceding 8 hour flight in that plane.&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/theonewiththethoughtsoffrans/~4/YcUxe7KjjnU" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://fransdejonge.com/2010/04/12/fun-with-american-customs-airlines-special-thanks-to-klm-com/#comments" thr:count="3" />
		<link rel="replies" type="application/atom+xml" href="http://fransdejonge.com/2010/04/12/fun-with-american-customs-airlines-special-thanks-to-klm-com/feed/atom/" thr:count="3" />
		<thr:total>3</thr:total>
	<feedburner:origLink>http://fransdejonge.com/2010/04/12/fun-with-american-customs-airlines-special-thanks-to-klm-com/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Frans</name>
						<uri>http://fransdejonge.com</uri>
					</author>
		<title type="html"><![CDATA[Acceptable Advertisements]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/theonewiththethoughtsoffrans/~3/r_d22UFNnwY/" />
		<id>http://frans.lowter.us/?p=1685</id>
		<updated>2010-03-31T12:52:06Z</updated>
		<published>2010-03-31T12:52:06Z</published>
		<category scheme="http://fransdejonge.com" term="Internet" />		<summary type="html"><![CDATA[Advertisements should be quiet and unobtrusive.]]></summary>
		<content type="html" xml:base="http://fransdejonge.com/2010/03/31/acceptable-advertisements/">&lt;p&gt;I agree with everything that Faruk Ateş wrote about &lt;a href="http://farukat.es/journal/2010/03/409-ad-blockers-versus-flash-blockers"&gt;ad blockers and flash blockers&lt;/a&gt;, but I would like to add one more point, with which I presume he will agree; I think it&amp;#8217;s implied by his writing by referring to certain advertisements as being beautiful and fitting with the content, but never explicified. My point is simple: the advertisements have to be compatible with the type of media I&amp;#8217;m viewing.&lt;/p&gt;
&lt;p&gt;I don&amp;#8217;t block Flash as it typically crashes separately from Opera on Linux, nor does it seem to slow things down for me. I don&amp;#8217;t typically block ads, either — though it is really annoying if one ad is making the entire page load slowly. However, I will generally close a page while it&amp;#8217;s loading if I am annoyed by the ads. When do ads annoy me? Simple: &lt;strong&gt;when they do not fit the type of content I&amp;#8217;m looking at&lt;/strong&gt;. If I want to read some text, I&amp;#8217;m fine with static textual or image-based ads. I don&amp;#8217;t want animation, although I suppose it&amp;#8217;s possible to change ads now and then without it being too obtrusive. Anything that utilizes Flash typically breaks these rules and comes with distracting animation. Worse, it often even comes with sound. It doesn&amp;#8217;t really matter what I&amp;#8217;m doing; as long as I&amp;#8217;ve got my sound system turned on I don&amp;#8217;t want any sound to come from my speakers that I did not explicitly ask for.&lt;/p&gt;
&lt;p&gt;Now if I&amp;#8217;m going to watch a video, like on &lt;a href="http://www.uitzendinggemist.nl/"&gt;Uitzendinggemist&lt;/a&gt;, then I&amp;#8217;m perfectly fine with a video-based advertisement with audio. &lt;small class="sidenote"&gt;Uitzendinggemist literally means &amp;#8220;missed broadcast.&amp;#8221; It&amp;#8217;s an online archive of most of Dutch public television broadcasts.&lt;/small&gt; After all, I&amp;#8217;m requesting video with sound. A 10-15 second advertisement prior to actually viewing the particular video I requested is perfectly acceptable. Similarly, I welcome short audio clips or endorsements in podcasts if they help pay for the podcast. But don&amp;#8217;t start playing such messages at random. Although I don&amp;#8217;t frequently use Firefox for regular browsing, my favorite extension is StopAutoPlay. This isn&amp;#8217;t just about ads of course and applies just as much to people who decide to stick background music on their site, or to start playing videos automatically (I&amp;#8217;m looking at you, YouTube), though if I opened a video somewhere it&amp;#8217;s usually not too hard to figure out where the noise is coming from.&lt;/p&gt;
&lt;p&gt;What could be an acceptable form of a video-based advertisement on a non-moving Internet page would be something akin to YouTube embedded videos. These don&amp;#8217;t autoplay, but you have to click the play button first.&lt;/p&gt;
&lt;p&gt;Everything I said applies just as much to things that aren&amp;#8217;t advertisements, but too many advertisements seem to be made as annoyingly as possible on purpose. I hope that nobody has ever gained any business from such advertisements. They sure haven&amp;#8217;t from me.&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/theonewiththethoughtsoffrans/~4/r_d22UFNnwY" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://fransdejonge.com/2010/03/31/acceptable-advertisements/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://fransdejonge.com/2010/03/31/acceptable-advertisements/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://fransdejonge.com/2010/03/31/acceptable-advertisements/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Frans</name>
						<uri>http://fransdejonge.com</uri>
					</author>
		<title type="html"><![CDATA[Tubes Beats Yahoo Pipes: Feed Fixup]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/theonewiththethoughtsoffrans/~3/9EE4_R_iQEk/" />
		<id>http://frans.lowter.us/?p=1626</id>
		<updated>2010-03-21T13:01:51Z</updated>
		<published>2010-03-21T13:01:51Z</published>
		<category scheme="http://fransdejonge.com" term="Tubes" />		<summary type="html"><![CDATA[An unexpected extension of Tubes took little time to write.]]></summary>
		<content type="html" xml:base="http://fransdejonge.com/2010/03/21/tubes-beats-yahoo-pipes-feed-fixup/">&lt;p&gt;Although it has only been a couple of weeks since I started work on &lt;a href="http://bitbucket.org/frenzie/tubes/"&gt;Tubes&lt;/a&gt;, the mechanism I put in place to output feeds is already serving me very well. So well that it&amp;#8217;s approaching all of my personal needs. This may potentially be bad for other people, but it&amp;#8217;s great for me. Besides, I put the code out there; it should be easy enough to fork it if you wish it to do more! Bitbucket is also said to make it easy to merge such changes in later. I should also point out that the large majority of the work was of course done by the people who made SimplePie.&lt;/p&gt;
&lt;p&gt;Anyway, I wanted to subscribe to the UN News podcast. To my surprise, gPodder was incapable of handling it. No surprise, as it turns out, because it&amp;#8217;s not even proper according to the iTunes enclosure specification (although I imagine it works in iTunes). SimplePie had a nice get_enclosure() function already, so the first step, adding a proper enclosure to my Tube&amp;#8217;s output feed, was a matter of minutes. The UN also fails to specify any size information, however, which I can&amp;#8217;t say I was too enthused about in my trusty gPodder interface. Another 10 minutes or so later, I finished adding some cURL magic to my application. I should probably stash it away into a class later and see if I can somehow make it utilize SimplePie&amp;#8217;s cache system to minimize useless traffic, but for now I just stuck it straight in the feed generation code. Now the UN feed is transformed from something gPodder couldn&amp;#8217;t handle into something that essentially fixes all the UN did wrong. Thank you SimplePie for providing this great foundation!&lt;/p&gt;
&lt;p&gt;Before (RSS):&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;item&amp;gt;
  &amp;lt;title&amp;gt;UN Daily News 12 March 2010&amp;lt;/title&amp;gt;
  &amp;lt;itunes:author&amp;gt;United Nations Radio&amp;lt;/itunes:author&amp;gt;
  &amp;lt;itunes:subtitle&amp;gt;News and features from United Nations Radio.&amp;lt;/itunes:subtitle&amp;gt;
  &amp;lt;itunes:summary&amp;gt;&amp;lt;/itunes:summary&amp;gt;
  &amp;lt;enclosure url="http://downloads.unmultimedia.org/radio/en/ltd/mp3/2010/10031200.mp3" length="" type="audio/mpeg" /&amp;gt;
  &amp;lt;guid&amp;gt;http://downloads.unmultimedia.org/radio/en/ltd/mp3/2010/10031200.mp3&amp;lt;/guid&amp;gt;
  &amp;lt;pubDate&amp;gt;Fri, 12 Mar 2010 11:42:32 EST&amp;lt;/pubDate&amp;gt;
  &amp;lt;itunes:duration&amp;gt;0:00&amp;lt;/itunes:duration&amp;gt;
&amp;lt;/item&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;After (Atom):&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;entry&amp;gt;
  &amp;lt;author&amp;gt;
   &amp;lt;name&amp;gt;United Nations Radio&amp;lt;/name&amp;gt;
  &amp;lt;/author&amp;gt;
  &amp;lt;title&amp;gt;UN Daily News 12 March 2010&amp;lt;/title&amp;gt;
  &amp;lt;summary&amp;gt; &amp;lt;/summary&amp;gt;
  &amp;lt;published&amp;gt;2010-03-12T11:42:32-05:00&amp;lt;/published&amp;gt;
  &amp;lt;updated&amp;gt;2010-03-12T11:42:32-05:00&amp;lt;/updated&amp;gt;
  &amp;lt;id&amp;gt;http://downloads.unmultimedia.org/radio/en/ltd/mp3/2010/10031200.mp3&amp;lt;/id&amp;gt;
  &amp;lt;link rel="enclosure" type="audio/mpeg" href="http://downloads.unmultimedia.org/radio/en/ltd/mp3/2010/10031200.mp3" length="6720384" /&amp;gt;
  &amp;lt;link rel="alternate" type="text/html" href="http://downloads.unmultimedia.org/radio/en/ltd/mp3/2010/10031200.mp3"/&amp;gt;
&amp;lt;/entry&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;I realize the alternate link currently has the wrong type attribute, which I&amp;#8217;ll look into fixing, but at least my gPodder can handle the feed now.&lt;/p&gt;
&lt;p&gt;I also set up &lt;a href="http://frans.lowter.us/test/tubes/index.php?feedset=news"&gt;a little demo&lt;/a&gt; so you can check the difference with &lt;a href="http://www.unmultimedia.org/radio/english/rss/itunes.xml"&gt;the original feed&lt;/a&gt; for yourselves. I&amp;#8217;d be curious to hear how different podcatchers handle both feeds.&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/theonewiththethoughtsoffrans/~4/9EE4_R_iQEk" height="1" width="1"/&gt;</content>
<link href="http://downloads.unmultimedia.org/radio/en/ltd/mp3/2010/10031200.mp3" rel="enclosure" length="6720384" type="audio/mpeg" />
<link href="http://downloads.unmultimedia.org/radio/en/ltd/mp3/2010/10031200.mp3" rel="enclosure" length="6720384" type="audio/mpeg" />
<link href="http://downloads.unmultimedia.org/radio/en/ltd/mp3/2010/10031200.mp3" rel="enclosure" length="6720384" type="audio/mpeg" />
<link href="http://downloads.unmultimedia.org/radio/en/ltd/mp3/2010/10031200.mp3" rel="enclosure" length="6720384" type="audio/mpeg" />
		<link rel="replies" type="text/html" href="http://fransdejonge.com/2010/03/21/tubes-beats-yahoo-pipes-feed-fixup/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://fransdejonge.com/2010/03/21/tubes-beats-yahoo-pipes-feed-fixup/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://fransdejonge.com/2010/03/21/tubes-beats-yahoo-pipes-feed-fixup/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Frans</name>
						<uri>http://fransdejonge.com</uri>
					</author>
		<title type="html"><![CDATA[A Morass of Rules and Regulations: Dutch Immigration Policy]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/theonewiththethoughtsoffrans/~3/HWQd75gqAz8/" />
		<id>http://frans.lowter.us/?p=1635</id>
		<updated>2010-03-17T12:42:22Z</updated>
		<published>2010-03-17T12:42:22Z</published>
		<category scheme="http://fransdejonge.com" term="Thoughts" />		<summary type="html"><![CDATA[This post will list what I consider most important regarding Dutch immigration policy, how I think the implementation is horrible even if you do agree with the basic principle behind all of the rules, and to a lesser extent how I also think the principle behind some of the rules is improper.]]></summary>
		<content type="html" xml:base="http://fransdejonge.com/2010/03/17/a-morass-of-rules-and-regulations-dutch-immigration-policy/">&lt;p&gt;Nearly a month ago, &lt;a href="http://www.nrc.nl/international/article2488239.ece/Dutch_cabinet,_Balkenendes_fourth,_collapses"&gt;the Dutch cabinet fell&lt;/a&gt;. Because of this, national elections will be held on June 9, 2010. Dutch immigration policy plays an important role in these elections, though there is no real debate on the matter. The immigration debate (or lack thereof) is controlled almost exclusively by Geert Wilders and his PVV.&lt;/p&gt;
&lt;p&gt;A couple of days ago, ppk published his party &lt;a href="http://www.quirksmode.org/politics/blog/archives/2010/03/party_profile_p_1.html"&gt;profile of the PVV&lt;/a&gt;. One commenter remarked, &amp;#8220;On immigration, the CDA/ VVD ideas a couple of Cabinets ago were novel and more creative compared to the rest of Western Europe.&amp;#8221; &lt;small class="sidenote"&gt;If you&amp;#8217;re interested in Dutch politics or simply wish to learn more about it, I can strongly recommend &lt;a href="http://www.quirksmode.org/politics/"&gt;ppk&amp;#8217;s political site&lt;/a&gt;.&lt;/small&gt; This pushed my buttons and I replied that I prefer to call it &amp;#8220;illegal fascist xenophobic nonsense.&amp;#8221; I don&amp;#8217;t think fascist was the right adjective, but other than that I stand by my statement. However, especially the xenophobic part of my opinion regarding Dutch immigration policies embodies much more than merely language and cultural tests, and the income requirement. This post will list what I consider most important regarding Dutch immigration policy, how I think the implementation is horrible even if you do agree with the basic principle behind all of the rules, and to a lesser extent how I also think the principle behind some of the rules is improper.&lt;br /&gt;
&lt;span id="more-1635"&gt;&lt;/span&gt;&lt;/p&gt;
&lt;h3&gt;How Hard Is It to Live With a Foreign Partner in the Netherlands?&lt;/h3&gt;
&lt;p&gt;The following list has examples ranging from easiest to hardest.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;EU citizens with a foreign spouse (nationality spouse is irrelevant). Example: a Romanian with a Mexican spouse.&lt;/li&gt;
&lt;li&gt;Highly-educated workers with a foreign spouse (nationality spouse is irrelevant). Example: an Indian ICT specialist with a Nigerian spouse.&lt;/li&gt;
&lt;li&gt;Turks with a foreign spouse (nationality spouse is irrelevant). Example: a Turkish citizen with a Turkish spouse.&lt;/li&gt;
&lt;li&gt;Non-EU citizens with a permit to live in the Netherlands with their foreign spouse. Example: a Moroccan living in the Netherlands with their Moroccan spouse.&lt;/li&gt;
&lt;li&gt;Dutch people with a foreign Western spouse. Example: a Dutch citizen with an American spouse.&lt;/li&gt;
&lt;li&gt;Dutch people with a foreign non-Western spouse. Example: a Dutch citizen with a Mexican spouse.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;This list and the examples were taken almost directly from &lt;a href="http://www.buitenlandsepartner.nl/forum/viewtopic.php?p=404284#404284"&gt;the &lt;i lang="nl"&gt;Stichting Buitenlandse Partner&lt;/i&gt; (Foreign Partner Foundation) forums&lt;/a&gt;, but I didn&amp;#8217;t feel right about the gender bias in the original (each example was a man wishing to live together with a woman), so I reworded it a little in my translation.&lt;/p&gt;
&lt;h4&gt;Conclusions Based On This List&lt;/h4&gt;
&lt;p&gt;Dutch people have less rights in their own country than EU citizens from any other country. I see no reason why things should be any different for Dutch citizens than for EU citizens.&lt;/p&gt;
&lt;h3&gt;Hurdles&lt;/h3&gt;
&lt;h4&gt;Income&lt;/h4&gt;
&lt;p&gt;If you want to live together with a foreign partner you will have to make approximately €1,700 a month through a permanent employment contract (which I believe has to be for at least a year but don&amp;#8217;t take my word for it). There are several issues with this:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;This income requirement is rather high to say the least. Assuming that this is meant to cover monthly expenses, let me run down our monthly expenses on a monthly basis:
&lt;ul&gt;
&lt;li&gt;Rent (including water): €550/month&lt;/li&gt;
&lt;li&gt;Gas (as in heating and cooking, not gasoline), electricity, Internet &amp;#038; public transport: €100/month&lt;/li&gt;
&lt;li&gt;Food: €250/month&lt;/li&gt;
&lt;li&gt;Insurance: roughly €1,800/year altogether, so €150/month&lt;/li&gt;
&lt;li&gt;Money required for potential unexpected things, such as the washing machine breaking down: €100 (perhaps a little higher than necessary, but I would definitely not like to be short on money if something comes up)
&lt;li&gt;Total: &lt;strong&gt;€1,150&lt;/strong&gt;/month&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This is a little lower than minimum wage, but not too much. Also note that we have a relatively low rent (at least for the amount of space we have available), and that this is for two people, so per person we have to come up with €600/month to be able to get around. For some foreigners (especially non-Western) this might not be very easy, placing the burden of coming up with sufficient money solely on the Dutch citizen. Roughly speaking the &lt;em&gt;equivalent&lt;/em&gt; of minimum wage should be sufficient for this, however.&lt;/p&gt;
&lt;p&gt;I emphasized &lt;em&gt;equivalent&lt;/em&gt; because all of this only applies with a steady employment contract and lowering the income requirement would not fix this. A freelancer making equivalent or more money will not qualify. Someone with a fair amount of money in a savings account will not qualify regardless of whether they have the equivalent of the income requirement/month for a year or more on their savings account. To me it seems a safer bet to allow someone with €30,000 savings to live together with a foreign partner than someone who&amp;#8217;s making €1,700/month but barely has any savings.&lt;/p&gt;
&lt;p&gt;The main problem with this situation, regardless of whether you think €1,700/month is a fair minimum income requirement or not, is that it is only possible to qualify if you&amp;#8217;re employed in a certain way. Your savings don&amp;#8217;t count, your freelance income doesn&amp;#8217;t count, nor can anybody vouch responsibility for your expenses if you&amp;#8217;re not able to make ends meet. Especially the fact that savings hold no value whatsoever seems wrong to me on so many levels. Additionally, I think the partner&amp;#8217;s savings should also be taken into account. If the Dutch citizen&amp;#8217;s savings were taken into account without doing the same for the foreign partner&amp;#8217;s savings, I imagine a workaround would be for the foreign partner to transfer the money to the Dutch partner&amp;#8217;s account, but exchange courses and the like might make that a very costly endeavor if that were a necessity.&lt;/p&gt;
&lt;h4&gt;Cultural test&lt;/h4&gt;
&lt;p&gt;Potentially an interesting idea. As I said on ppk&amp;#8217;s blog, &amp;#8220;The message that we think gays and nudity are awesome and that you should perhaps reconsider [whether you want to live in the Netherlands] if you don&amp;#8217;t like such things is perhaps a good one, but as far as I understand it, [the cultural test is] mostly a waste of time and money.&amp;#8221; To expand on that, there are many questions in there that would be, broadly speaking, answered differently by people from different parts of the country and among different age groups. There is such a thing as Dutch culture, but it&amp;#8217;s certainly not uniform enough to say that in situation X, you should always do Y. Worse, the &amp;#8220;correct&amp;#8221; answers to questions regarding the House of Orange-Nassau and Dutch colonialism have to be answered positively. Why are these in there at all? I couldn&amp;#8217;t find the example test at the moment, but I looked at it a few years ago in NRC Handelsblad and on a site they linked to and I thought they were old-fashioned to say the least. &lt;a href="http://www.yabasta.be/Naar-ons-goeddunken"&gt;Eric Krebbers&lt;/a&gt; describes my thoughts on the matter quite well. If you &lt;a href="http://translate.google.com/translate?js=y&amp;#038;prev=_t&amp;#038;hl=en&amp;#038;ie=UTF-8&amp;#038;layout=1&amp;#038;eotf=1&amp;#038;u=http://www.yabasta.be/Naar-ons-goeddunken&amp;#038;sl=nl&amp;#038;tl=en"&gt;throw it in Google Translate&lt;/a&gt; you&amp;#8217;ll get a reasonable idea of the kind of questions asked. Apparently one of the questions even assumes that immigrants &lt;em&gt;will&lt;/em&gt; be appalled if they see gays kissing openly. I don&amp;#8217;t recall seeing that question, but it&amp;#8217;s certainly in line with what I do remember. One last thing: taking this test costs &lt;strong&gt;€350&lt;/strong&gt;.&lt;/p&gt;
&lt;h4&gt;Residency Permit Request&lt;/h4&gt;
&lt;p&gt;If the foreigner passes the test, the residency permit can be requested. This costs &lt;strong&gt;€800&lt;/strong&gt;. For this money, they&amp;#8217;ll easily take much longer than half a year and then they might still reject you. This isn&amp;#8217;t necessarily a hurdle, but it seems almost a complete waste of money on the part of the requester. How can they do this in other European countries for not even a tenth of this amount?&lt;/p&gt;
&lt;h4&gt;Driver&amp;#8217;s License&lt;/h4&gt;
&lt;p&gt;Virtually no non-EU driver&amp;#8217;s licenses are accepted in the Netherlands. An international driver&amp;#8217;s license is accepted, of course, but after a year or so you&amp;#8217;ll have to get a Dutch driver&amp;#8217;s license. Now I can imagine that a non-Western license could be rejected on the basis that it&amp;#8217;s not worth much, but I&amp;#8217;d like to hear the reasoning regarding Western nations for sure. Anyway, rather than just getting a license (which is €50) you&amp;#8217;ll thus have to take the required tests. That&amp;#8217;s €25 for theory and €250 for the exam. Since you&amp;#8217;ll have to know just what they&amp;#8217;re looking for during the exam I imagine you&amp;#8217;d have to take at least a few lessons, at about €40/hour. €400-500 would thus be my lowest estimate for this.&lt;/p&gt;
&lt;h4&gt;Total Costs&lt;/h4&gt;
&lt;p&gt;A simple addition of €350 and €800 totals at €1,150. Adding the costs of a driver&amp;#8217;s license ups that to €1,500. In most or all other EU countries the same can be achieved for €100 or less. This is &lt;strong&gt;more than 10 times as costly&lt;/strong&gt; and the IND (immigration and naturalization service) is also &lt;strong&gt;slower&lt;/strong&gt; than most of its counterparts across the EU.&lt;/p&gt;
&lt;h3&gt;Legality&lt;/h3&gt;
&lt;p&gt;In 1948, the Universal Declaration of Human Rights (UDHR) was adopted by the United Nations General Assembly (UNGA). Article 16 of the UDHR reads:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;(1) Men and women of full age, without any limitation due to race, nationality or religion, have &lt;strong&gt;the right to marry and to found a family&lt;/strong&gt; (emphasis mine). They are entitled to equal rights as to marriage, during marriage and at its dissolution.&lt;br /&gt;
(2) Marriage shall be entered into only with the free and full consent of the intending spouses.&lt;br /&gt;
(3) The family is the natural and fundamental group unit of society and is &lt;strong&gt;entitled to protection by society and the State&lt;/strong&gt; (emphasis mine).&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Probably more important to us EU citizens, the text of the UDHR is also implemented in the Charter of Fundamental Rights of the European Union. Specifically, article 9.&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&lt;strong&gt;Article 9. Right to marry and right to found a family&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The right to marry and the right to found a family shall be guaranteed in accordance with the national laws governing the exercise of these rights.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;I am not a lawyer, but while Dutch immigration policy might potentially not be inconsistent with the letter of the law (one might argue that these rights are not obstructed because we can live together in any other EU country and America &amp;#8211; I don&amp;#8217;t know how valid such reasoning would be legally), it most certainly is not in accordance with the spirit of the law.&lt;/p&gt;
&lt;h3&gt;Conclusion&lt;/h3&gt;
&lt;p&gt;The current Dutch immigration policy is not implemented in a way that suits a modern, free-thinking democracy. Dutch citizens&amp;#8217; human rights are infringed and the financial burden related to merely requesting a residence permit for those wishing to live together in the Netherlands is over 10 times more than in other European country. Changes are necessary indeed, but not in the direction Wilders suggests.&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/theonewiththethoughtsoffrans/~4/HWQd75gqAz8" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://fransdejonge.com/2010/03/17/a-morass-of-rules-and-regulations-dutch-immigration-policy/#comments" thr:count="2" />
		<link rel="replies" type="application/atom+xml" href="http://fransdejonge.com/2010/03/17/a-morass-of-rules-and-regulations-dutch-immigration-policy/feed/atom/" thr:count="2" />
		<thr:total>2</thr:total>
	<feedburner:origLink>http://fransdejonge.com/2010/03/17/a-morass-of-rules-and-regulations-dutch-immigration-policy/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Frans</name>
						<uri>http://fransdejonge.com</uri>
					</author>
		<title type="html"><![CDATA[Microsoft and Video on The Web]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/theonewiththethoughtsoffrans/~3/2mEu7xOmi7A/" />
		<id>http://frans.lowter.us/?p=1632</id>
		<updated>2010-03-16T20:47:29Z</updated>
		<published>2010-03-16T20:47:29Z</published>
		<category scheme="http://fransdejonge.com" term="Internet" />		<summary type="html"><![CDATA[An open letter to Microsoft worth reading.]]></summary>
		<content type="html" xml:base="http://fransdejonge.com/2010/03/16/microsoft-and-video-on-the-web/">&lt;p&gt;Opera employee Haavard posted an &lt;a href="http://my.opera.com/haavard/blog/2010/03/16/microsoft-letter"&gt;open letter to Microsoft regarding video on the web&lt;/a&gt;. I&amp;#8217;m just going to quote the last and best part.&lt;/p&gt;
&lt;blockquote cite="Haavard"&gt;&lt;p&gt;I know you are a patent licensor in the MPEG LA, and this would actually make your actions even more powerful and meaningful. You could show just how serious you are about interoperability on the Web by supporting the free and open codec rather than the one that would best suit your short-term interests.&lt;/p&gt;
&lt;p&gt;This is a unique opportunity for you to win back the hearts and minds of people who might have otherwise dismissed you as carrying on with &amp;#8220;business as usual&amp;#8221;.&lt;/p&gt;
&lt;p&gt;Are you up for it?&lt;/p&gt;&lt;/blockquote&gt;
&lt;img src="http://feeds.feedburner.com/~r/theonewiththethoughtsoffrans/~4/2mEu7xOmi7A" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://fransdejonge.com/2010/03/16/microsoft-and-video-on-the-web/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://fransdejonge.com/2010/03/16/microsoft-and-video-on-the-web/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://fransdejonge.com/2010/03/16/microsoft-and-video-on-the-web/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Frans</name>
						<uri>http://fransdejonge.com</uri>
					</author>
		<title type="html"><![CDATA[Lighttpd and PHP on Ubuntu]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/theonewiththethoughtsoffrans/~3/4TvVj5S03Iw/" />
		<id>http://frans.lowter.us/?p=1615</id>
		<updated>2010-03-12T11:51:11Z</updated>
		<published>2010-03-12T11:51:11Z</published>
		<category scheme="http://fransdejonge.com" term="Internet" /><category scheme="http://fransdejonge.com" term="Ubuntu" />		<summary type="html"><![CDATA[Summarized guide to installing Lighttpd on Ubuntu.]]></summary>
		<content type="html" xml:base="http://fransdejonge.com/2010/03/12/lighttpd-and-php-on-ubuntu/">&lt;p&gt;I prefer Lighttpd over Apache on my personal computers because of its phenomenal speed and reduced memory usage. It&amp;#8217;s surprisingly easy to get Lighttpd and PHP running on Ubuntu. For an extensive guide, including how to enable MySQL, &lt;a href="http://www.ubuntugeek.com/lighttpd-webserver-setup-with-php5-and-mysql-support.html"&gt;Ubuntu Geek&lt;/a&gt; is the place to be.&lt;/p&gt;
&lt;p&gt;This entry only deals with the basics of getting Lighttpd up and running with PHP. To get started, use:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo apt-get install lighttpd php5-cgi&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Then run &lt;code&gt;lighty-enable-mod&lt;/code&gt; and enter &lt;code&gt;fastcgi&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Then you can edit /etc/lighttpd/lighttpd.conf. Stick the following at the end:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;fastcgi.server = ( “.php” =&gt; ((
“bin-path” =&gt; “/usr/bin/php5-cgi”,
“socket” =&gt; “/tmp/php.socket”
)))&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Recommended: &lt;code&gt;sudo apt-get install php5-curl php5-tidy &lt;/code&gt; to be able to run &lt;a href="http://bitbucket.org/frenzie/tubes/"&gt;Tubes&lt;/a&gt; with all functionality, and of course any other modules you might like. There&amp;#8217;s nothing to it; you don&amp;#8217;t even have to edit php.ini.&lt;/p&gt;
&lt;p&gt;When you&amp;#8217;re done customizing things to your liking, use &lt;code&gt;sudo /etc/init.d/lighttpd restart&lt;/code&gt; to see the changes.&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/theonewiththethoughtsoffrans/~4/4TvVj5S03Iw" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://fransdejonge.com/2010/03/12/lighttpd-and-php-on-ubuntu/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://fransdejonge.com/2010/03/12/lighttpd-and-php-on-ubuntu/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://fransdejonge.com/2010/03/12/lighttpd-and-php-on-ubuntu/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Frans</name>
						<uri>http://fransdejonge.com</uri>
					</author>
		<title type="html"><![CDATA[The Way Alternative Text Should Be Rendered]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/theonewiththethoughtsoffrans/~3/ubxq7DpfK84/" />
		<id>http://frans.lowter.us/?p=1611</id>
		<updated>2010-03-05T09:12:40Z</updated>
		<published>2010-03-05T09:12:40Z</published>
		<category scheme="http://fransdejonge.com" term="Browsers" />		<summary type="html"><![CDATA[Webkit doesn't even display alternative text. What a crock.]]></summary>
		<content type="html" xml:base="http://fransdejonge.com/2010/03/05/the-way-alternative-text-should-be-rendered/">&lt;p&gt;Vlad Alexander describes how &lt;a href="http://rebuildingtheweb.com/en/how-should-browsers-render-alt-text/"&gt;browsers mess up horribly&lt;/a&gt; on alternative text. I noticed the deficiencies in Opera and Firefox before, but what Webkit does is simply ridiculous. I don&amp;#8217;t entirely agree with him since I don&amp;#8217;t think that the alternative content should display without any indication that it&amp;#8217;s alternative text whatsoever. I consider Opera&amp;#8217;s behavior best in this regard (as opposed to the obtrusive icons most other browsers throw in there), except for the part where it applies width and height meant for images to the text thus cutting them off.&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/theonewiththethoughtsoffrans/~4/ubxq7DpfK84" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://fransdejonge.com/2010/03/05/the-way-alternative-text-should-be-rendered/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://fransdejonge.com/2010/03/05/the-way-alternative-text-should-be-rendered/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://fransdejonge.com/2010/03/05/the-way-alternative-text-should-be-rendered/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Frans</name>
						<uri>http://fransdejonge.com</uri>
					</author>
		<title type="html"><![CDATA[Opera 10.50]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/theonewiththethoughtsoffrans/~3/MGfiYJPOYi4/" />
		<id>http://frans.lowter.us/2010/03/03/opera-10-50/</id>
		<updated>2010-03-03T12:30:01Z</updated>
		<published>2010-03-03T12:30:01Z</published>
		<category scheme="http://fransdejonge.com" term="Opera" />		<summary type="html"><![CDATA[For those of you who read my blog, use Opera and don&#8217;t follow the latest releases, Opera 10.50 for Windows was released yesterday. Download it now!]]></summary>
		<content type="html" xml:base="http://fransdejonge.com/2010/03/03/opera-10-50/">&lt;p&gt;For those of you who read my blog, use Opera and don&amp;#8217;t follow the latest releases, Opera 10.50 for Windows was released yesterday. &lt;a href="http://opera.com"&gt;Download&lt;/a&gt; it now!&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/theonewiththethoughtsoffrans/~4/MGfiYJPOYi4" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://fransdejonge.com/2010/03/03/opera-10-50/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://fransdejonge.com/2010/03/03/opera-10-50/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://fransdejonge.com/2010/03/03/opera-10-50/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Frans</name>
						<uri>http://fransdejonge.com</uri>
					</author>
		<title type="html"><![CDATA[What Is Philosophy?]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/theonewiththethoughtsoffrans/~3/Gtr0jmIPnUI/" />
		<id>http://frans.lowter.us/?p=547</id>
		<updated>2010-03-01T10:29:17Z</updated>
		<published>2010-03-01T10:29:17Z</published>
		<category scheme="http://fransdejonge.com" term="Philosophy" />		<summary type="html"><![CDATA[Some kind of introduction to philosophy.]]></summary>
		<content type="html" xml:base="http://fransdejonge.com/2010/03/01/what-is-philosophy/">&lt;p&gt;I wrote this summary for a university course, but I never finished it.&lt;/p&gt;
&lt;h3&gt;The History of Philosophy&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;The history of Western philosophy starts in Greece—Miletus, more precisely, situated in modern-day western Turkey—, around the beginning of the sixth century BCE. According to Aristotle, &lt;a href="http://en.wikipedia.org/wiki/Thales_of_Miletos"&gt;Thales of Miletos&lt;/a&gt; was the first to develop a way of thinking that deserves the name philosophy, around 585 BCE.&lt;/li&gt;
&lt;li&gt;The first philosophers were possibly aware of the novelty of their enterprise; at any rate, they made up a new term for it, &lt;em&gt;historia&lt;/em&gt;, which means as much as &amp;#8220;research.&amp;#8221;&lt;/li&gt;
&lt;li&gt;The verb &lt;em&gt;philosophein&lt;/em&gt; is not found until the second half of the fifth century BCE. This verb and the substantive &lt;em&gt;philosophia&lt;/em&gt; do not become commonplace until the first half of the fourth century BCE. Literally, it means &amp;#8220;love/desire to/strive to&amp;#8221; (phileô) &amp;#8220;knowledge&amp;#8221; (sophia).&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Philosophia&lt;/em&gt; did originally not only specify a specific way thinking: originally philosophizing as an intellectual activity was intrinsically connected to a certain way of life. Something of this ancient concept is still present in our modern language: someone who sees things &amp;#8220;philosophically&amp;#8221; might possess the spiritual calmness the philosophers of Antiquity had in mind.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This intrinsic connection no longer exists, but some particular terms have maintained this connotation to the present day. Kantian, Heideggerian, phenomenologist or structuralist, on the other hand, only refer to certain points of view. The only qualities the philosopher needs to have are the same that every other scientist should have. Consequently, practicing philosophy does not mean that someone is or tries to be a better human being. It should be noted that this isn&amp;#8217;t a modern development. During the Middle Ages, philosophy was little but a tool to support theology, and that is where the modern meaning of philosophy as academic and purely theoretical originated.&lt;/p&gt;
&lt;h3&gt;The Four Philosophical Questions According To Kant&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;What can I know?&lt;/li&gt;
&lt;li&gt;What should I do?&lt;/li&gt;
&lt;li&gt;What may I hope?&lt;/li&gt;
&lt;li&gt;=&gt; What is a human being?&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;To know what philosophy is, it does not suffice to know the history. You need to know which questions philosophy wants to answer. According to Immanuel Kant (1724—1804) philosophy tries to answer three main questions, which come together in one big question.&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/theonewiththethoughtsoffrans/~4/Gtr0jmIPnUI" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://fransdejonge.com/2010/03/01/what-is-philosophy/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://fransdejonge.com/2010/03/01/what-is-philosophy/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://fransdejonge.com/2010/03/01/what-is-philosophy/</feedburner:origLink></entry>
	</feed><!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
