<?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/"
	>

<channel>
	<title>Jeroens blog &#187; Fail</title>
	<atom:link href="http://blog.bn2vs.com/tag/fail/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.bn2vs.com</link>
	<description>Blog of Jeroen De Dauw. The latest news on my open source work and interests.</description>
	<lastBuildDate>Wed, 28 Jul 2010 16:09:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>The next big paradigm shift in database design</title>
		<link>http://blog.bn2vs.com/2010/03/23/the-next-big-paradigm-shift-in-database-design/</link>
		<comments>http://blog.bn2vs.com/2010/03/23/the-next-big-paradigm-shift-in-database-design/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 23:14:38 +0000</pubDate>
		<dc:creator>Jeroen De Dauw</dc:creator>
				<category><![CDATA[Fail]]></category>
		<category><![CDATA[Atheneum]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Epic]]></category>
		<category><![CDATA[KA]]></category>
		<category><![CDATA[KA Sint-Niklaas]]></category>
		<category><![CDATA[Sint-Niklaas]]></category>

		<guid isPermaLink="false">http://blog.bn2vs.com/?p=759</guid>
		<description><![CDATA[Today I came across what I predict will be the next big paradigm shift in the world of database design. This brilliant work I stumbled upon has been created by 4 students at the Koninklijk Atheneum of Sint-Niklaas, an innovative institute devoted to developing bleeding edge technologies. It is a completely new way of structuring [...]]]></description>
			<content:encoded><![CDATA[<div class='wpfblike' style='height: 40px;'><fb:like href='http://blog.bn2vs.com/2010/03/23/the-next-big-paradigm-shift-in-database-design/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' /></div><p>Today I came across what I predict will be the next big paradigm shift in the world of database design. This brilliant work I stumbled upon has been created by 4 students at the <a href="http://www.atheneumsintniklaas.be/">Koninklijk Atheneum of Sint-Niklaas</a>, an innovative institute devoted to developing bleeding edge technologies. It is a completely new way of structuring MySQL database tables, the next epoch in design if you will.</p>
<p>Before we have a look at the code, let&#8217;s first consider the strong points of this new way of structuring database tables.</p>
<p><strong>Benefits</strong>:</p>
<ul>
<li>It does away with all the confusing field type&#8217;s &#8211; just use INT&#8217;s for ID&#8217;s, and text for all the rest.</li>
<li>Create only one table, which then holds all your data. This can be done by creating fields such as peopleWith1pc, peopleWith2pcs, peopleWith3pcs, ect. Brilliant no?</li>
<li>To make it even more easy, it also does away with any sort of naming convention, after all, it&#8217;s only confusing!</li>
</ul>
<p>Let&#8217;s have a look at a simple example where the new pattern is applied to a database in which survey results are stored. The table stores &#8216;answers&#8217; of people who took the survey. The field names are in Dutch, but this should not prevent you from deducing the overall awesomeness. </p>
<p><strong>Code</strong>:</p>
<div class="codecolorer-container sql default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:300px;"><div class="sql codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #993333; font-weight: bold;">CREATE</span> <span style="color: #993333; font-weight: bold;">TABLE</span> <span style="color: #993333; font-weight: bold;">IF</span> <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">EXISTS</span> <span style="color: #ff0000;">`antwoorden`</span> <span style="color: #66cc66;">&#40;</span><br />
&nbsp; <span style="color: #ff0000;">`id`</span> int<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">11</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span> <span style="color: #993333; font-weight: bold;">AUTO_INCREMENT</span><span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`geslacht`</span> text <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`studeren`</span> text <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`geboorteJaar`</span> int<span style="color: #66cc66;">&#40;</span><span style="color: #cc66cc;">4</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span> <span style="color: #993333; font-weight: bold;">DEFAULT</span> <span style="color: #ff0000;">'0'</span><span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`gsm`</span> text <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`prijsGsmToestel`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`herlaadmanier`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`provider`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`bedragPerMaan`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`smsPerDag`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`belPerDag`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`mp3`</span> text <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`prijsMp3`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`gebruikMp3`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pc`</span> text <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`aantalPc1`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`aantalPc2`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`aantalPc3`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`aantalPc4`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`aantalPc5`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`aantalPc6`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`aantalPc7`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`aantalPc8`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`aantalPc9`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`aantalPc10`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`prijsPc`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pcWerk`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pcSchool`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pcGamen`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pcFilm`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pcComm`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pcSociaal`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pcMuziek`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pcAndere`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pcGebruik`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pcProvider`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pc2000`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pcXp`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pcVista`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pc7`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pcLeo`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pcSnowLeo`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pcLinux`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pcUnix`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pcAndereBest`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pda`</span> text <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`prijsPda`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pdaWerk`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pdaSchool`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pdaGamen`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pdaAndere`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pdaGebruik`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pdaProvider`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`tv`</span> text <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`tvGebruik`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`tvProvider`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`gamen`</span> text <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`play1`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`play2`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`play3`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`xbox`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`xbox360`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`psp`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`pspGo`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`gameCube`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`wii`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`ds`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`gameAndere`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`consoleAantal`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`prijsGames`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`digiFoto`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`filmCamera`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`extHD`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`memStick`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`videoRec`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`dvdSpelRec`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`bluRay`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`dlToetsMuis`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`gameToeb`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`surround`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`printer`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`webcam`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`scanner`</span> text<span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #ff0000;">`enqueteLeuk`</span> text <span style="color: #993333; font-weight: bold;">NOT</span> <span style="color: #993333; font-weight: bold;">NULL</span><span style="color: #66cc66;">,</span><br />
&nbsp; <span style="color: #993333; font-weight: bold;">PRIMARY</span> <span style="color: #993333; font-weight: bold;">KEY</span> &nbsp;<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">`id`</span><span style="color: #66cc66;">&#41;</span><br />
<span style="color: #66cc66;">&#41;</span></div></div>
<p><strong>References</strong>:</p>
<ul>
<li><a href="http://www.codeproject.com/Feature/CodingHorrors.aspx?msg=3412364#xx3412364xx">Official paper on TCP</a></li>
<li><a href="http://encyclopediadramatica.com/Fail">A deeper look at the benefits</a></li>
<li><a href="http://www.youtube.com/watch?v=oHg5SJYRHA0">Step-by-step tutorial</a></li>
</ul>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F03%2F23%2Fthe-next-big-paradigm-shift-in-database-design%2F&amp;title=The+next+big+paradigm+shift+in+database+design" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F03%2F23%2Fthe-next-big-paradigm-shift-in-database-design%2F&amp;title=The+next+big+paradigm+shift+in+database+design" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F03%2F23%2Fthe-next-big-paradigm-shift-in-database-design%2F&amp;title=The+next+big+paradigm+shift+in+database+design" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F03%2F23%2Fthe-next-big-paradigm-shift-in-database-design%2F&amp;headline=The+next+big+paradigm+shift+in+database+design" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=The+next+big+paradigm+shift+in+database+design&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F03%2F23%2Fthe-next-big-paradigm-shift-in-database-design%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=The+next+big+paradigm+shift+in+database+design&amp;u=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F03%2F23%2Fthe-next-big-paradigm-shift-in-database-design%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=The+next+big+paradigm+shift+in+database+design&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F03%2F23%2Fthe-next-big-paradigm-shift-in-database-design%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=The+next+big+paradigm+shift+in+database+design&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F03%2F23%2Fthe-next-big-paradigm-shift-in-database-design%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=The+next+big+paradigm+shift+in+database+design&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F03%2F23%2Fthe-next-big-paradigm-shift-in-database-design%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F03%2F23%2Fthe-next-big-paradigm-shift-in-database-design%2F&amp;title=The+next+big+paradigm+shift+in+database+design&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F03%2F23%2Fthe-next-big-paradigm-shift-in-database-design%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.bn2vs.com%2F2010%2F03%2F23%2Fthe-next-big-paradigm-shift-in-database-design%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F03%2F23%2Fthe-next-big-paradigm-shift-in-database-design%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.bn2vs.com/2010/03/23/the-next-big-paradigm-shift-in-database-design/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HowTo: Go to a movie in Sint Niklaas for free</title>
		<link>http://blog.bn2vs.com/2010/02/23/howto-go-to-a-movie-in-sint-niklaas-for-free/</link>
		<comments>http://blog.bn2vs.com/2010/02/23/howto-go-to-a-movie-in-sint-niklaas-for-free/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 21:24:09 +0000</pubDate>
		<dc:creator>Jeroen De Dauw</dc:creator>
				<category><![CDATA[Fail]]></category>
		<category><![CDATA[Cinema]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[Hax]]></category>
		<category><![CDATA[Movie]]></category>
		<category><![CDATA[Sint-Niklaas]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://blog.bn2vs.com/?p=710</guid>
		<description><![CDATA[Two weekends back, me and two friends went to the cinema in Sint Niklaas, a city in East Flanders, Belgium. Some lol&#8217;ed stuff happened though: As usual, we bought our tickets at one of the ticket machines at the entrance. To be more precise, our favourite machine, which, as all others there, runs on Windows [...]]]></description>
			<content:encoded><![CDATA[<div class='wpfblike' style='height: 40px;'><fb:like href='http://blog.bn2vs.com/2010/02/23/howto-go-to-a-movie-in-sint-niklaas-for-free/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' /></div><p>Two weekends back, me and two friends went to the <a href="http://www.siniscoop.be/nl/sint-niklaas/home/">cinema in Sint Niklaas</a>, a city in East Flanders, Belgium. Some lol&#8217;ed stuff happened though:</p>
<p>As usual, we bought our tickets at one of the ticket machines at the entrance. To be more precise, our favourite machine, which, as all others there, runs on Windows XP (win!), but is a little more bugged, since it allows you to get rid of the reservation application in several ways. For some reason we got blank tickets, with nothing printed on them <img src='http://blog.bn2vs.com/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' />  We tried to go to the room where the film we wanted to see (<a href="http://en.wikipedia.org/wiki/The_Book_of_Eli">The Book of Eli</a>) was played, but did not get access, since they first had to check the misbehaving machine. In the meanwhile, two other people had bought a ticket at that machine, but didn&#8217;t get anything out of it at all. After 5 mins of waiting they came to fix up the machine by resetting some stuff, and we could finally go and see the movie we came for. It&#8217;s so typical this happens to use, and we have to wait there for 5 mins!</p>
<p>You have absolutely no reason to think I somehow managed to get free tickets from the machine, and then mess it up, so we could go watch the film for free. Therefore the title of this blog post is obviously highly misleading.</p>
<p><a href="http://blog.bn2vs.com/wp-content/uploads/2010/02/Foto03851.jpg"><img class="alignnone size-full wp-image-732" title="Lol'ed ticket machine" src="http://blog.bn2vs.com/wp-content/uploads/2010/02/Foto03851.jpg" alt="Lol'ed ticket machine" width="601" height="450" /></a></p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;">
<h1 id="firstHeading" class="firstHeading">The Book of Eli</h1>
</div>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F02%2F23%2Fhowto-go-to-a-movie-in-sint-niklaas-for-free%2F&amp;title=HowTo%3A+Go+to+a+movie+in+Sint+Niklaas+for+free" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F02%2F23%2Fhowto-go-to-a-movie-in-sint-niklaas-for-free%2F&amp;title=HowTo%3A+Go+to+a+movie+in+Sint+Niklaas+for+free" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F02%2F23%2Fhowto-go-to-a-movie-in-sint-niklaas-for-free%2F&amp;title=HowTo%3A+Go+to+a+movie+in+Sint+Niklaas+for+free" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F02%2F23%2Fhowto-go-to-a-movie-in-sint-niklaas-for-free%2F&amp;headline=HowTo%3A+Go+to+a+movie+in+Sint+Niklaas+for+free" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=HowTo%3A+Go+to+a+movie+in+Sint+Niklaas+for+free&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F02%2F23%2Fhowto-go-to-a-movie-in-sint-niklaas-for-free%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=HowTo%3A+Go+to+a+movie+in+Sint+Niklaas+for+free&amp;u=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F02%2F23%2Fhowto-go-to-a-movie-in-sint-niklaas-for-free%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=HowTo%3A+Go+to+a+movie+in+Sint+Niklaas+for+free&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F02%2F23%2Fhowto-go-to-a-movie-in-sint-niklaas-for-free%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=HowTo%3A+Go+to+a+movie+in+Sint+Niklaas+for+free&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F02%2F23%2Fhowto-go-to-a-movie-in-sint-niklaas-for-free%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=HowTo%3A+Go+to+a+movie+in+Sint+Niklaas+for+free&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F02%2F23%2Fhowto-go-to-a-movie-in-sint-niklaas-for-free%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F02%2F23%2Fhowto-go-to-a-movie-in-sint-niklaas-for-free%2F&amp;title=HowTo%3A+Go+to+a+movie+in+Sint+Niklaas+for+free&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F02%2F23%2Fhowto-go-to-a-movie-in-sint-niklaas-for-free%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.bn2vs.com%2F2010%2F02%2F23%2Fhowto-go-to-a-movie-in-sint-niklaas-for-free%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.bn2vs.com%2F2010%2F02%2F23%2Fhowto-go-to-a-movie-in-sint-niklaas-for-free%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.bn2vs.com/2010/02/23/howto-go-to-a-movie-in-sint-niklaas-for-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Argenta internet banking &#8211; going to write a book</title>
		<link>http://blog.bn2vs.com/2009/07/26/argenta-internet-banking-going-to-write-a-book/</link>
		<comments>http://blog.bn2vs.com/2009/07/26/argenta-internet-banking-going-to-write-a-book/#comments</comments>
		<pubDate>Sun, 26 Jul 2009 13:54:03 +0000</pubDate>
		<dc:creator>Jeroen De Dauw</dc:creator>
				<category><![CDATA[Banking]]></category>
		<category><![CDATA[Fail]]></category>
		<category><![CDATA[Argenta]]></category>
		<category><![CDATA[Internet banking]]></category>

		<guid isPermaLink="false">http://blog.bn2vs.com/?p=253</guid>
		<description><![CDATA[Yay &#8211; I almost thought I could finally access my bank account for the first time in what must now almost be a year &#8211; of course I couldn&#8217;t. I&#8217;ll start at the beginning, going through all the ways their system failed. All my problems started off with me just trying to sign in to [...]]]></description>
			<content:encoded><![CDATA[<div class='wpfblike' style='height: 40px;'><fb:like href='http://blog.bn2vs.com/2009/07/26/argenta-internet-banking-going-to-write-a-book/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' /></div><p>Yay &#8211; I almost thought I could finally access my bank account for the first time in what must now almost be a year &#8211; of course I couldn&#8217;t.</p>
<p>I&#8217;ll start at the beginning, going through all the ways their system failed.<img class="alignright size-full wp-image-262" title="Argenta logo" src="http://blog.bn2vs.com/wp-content/uploads/2009/07/argenta-logo.gif" alt="Argenta logo" width="187" height="55" /></p>
<p>All my problems started off with me just trying to sign in to my on-line banking account. Back then they where switching between a system with just logins, and one with a card-reader you need to put your bank card into. Like I always had done, I tried to sign in to my account, but entered a wrong password 3 times according to the site (very strange since I have 100&#8242;s of logins, and practically never enter a wrong password &#8211; and my portable password manager certainly doesn&#8217;t). So I had to wait a little over a week until they send me a new code. When entering it, it failed again (and so the cycle repeated itself a few times).</p>
<p>At some point the people at the banking office got so annoyed (since this was all my fault), they gave me a card-reader so I could use the new system. I have logged in to that once just to checked how it worked. A week later, when I needed to do some transaction, I did exactly the same, but got some obscure error when I put my card into the reader. After sending an email to my bank and waiting a few days, I got the reply the chip was damaged, and I should go get a new card. I went passed the office again, and requested a new card, which I immediately got. I had to wait for a code to be sent though. Due to some delays at the main office, this took approximately 3 weeks (omg?).</p>
<p>Well, when I finally got that code, I of course tried it out right away. Apparently I had to &#8216;activate&#8217; my card first at an ATM though. I don&#8217;t know how, but I somehow failed to sense in the force I had to do this, and only found out after my card got blocked and someone informed me about it. Great, now I had to wait for another code to be sent!</p>
<p>This one only took a week or so, and I managed to activate it at the ATM. (Why is that required &#8211; lame analogue nonsense!) So today I tried to login again. I went to the correct section of the Argenta site, entered my details, put in a challenge and my pin into the card reader, and typed the response in the form on the web-page. I didn&#8217;t get any errors saying my code was wrong or that the chip of my card was damaged, so I thought &#8216;woooot, finally!&#8217;.</p>
<p>Half a second later, I got this popup:</p>
<p><img class="alignnone size-full wp-image-255" title="Argenta internetbanking - 'we are to lame to let you login'" src="http://blog.bn2vs.com/wp-content/uploads/2009/07/argenta-internetbanking-failed-again.gif" alt="Argenta internetbanking - 'we are to lame to let you login'" width="599" height="126" /></p>
<p>This is Dutch, translated into English it says: <em>There is a problem with your card. You can contact the support &#8230;.</em></p>
<p>What?! There is <strong>A PROBLEM?!!!!</strong> with my card????</p>
<p>I send another mail requesting the reason for this. If they fail to give decent support, I&#8217;m going to transfer all the money I got there to one of my other accounts at another bank. I&#8217;m not going to quit to try get access to my account. It&#8217;s just funny how they keep fucking their system up. If this wasn&#8217;t Dutch &#8211; I&#8217;d submit it to failblog. I&#8217;m also staring to think it&#8217;s just easier to go hack their servers then to access my account in a regular fashion, it would s not surprise me if the security fails as much as their login system.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F07%2F26%2Fargenta-internet-banking-going-to-write-a-book%2F&amp;title=Argenta+internet+banking+-+going+to+write+a+book" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F07%2F26%2Fargenta-internet-banking-going-to-write-a-book%2F&amp;title=Argenta+internet+banking+-+going+to+write+a+book" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F07%2F26%2Fargenta-internet-banking-going-to-write-a-book%2F&amp;title=Argenta+internet+banking+-+going+to+write+a+book" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F07%2F26%2Fargenta-internet-banking-going-to-write-a-book%2F&amp;headline=Argenta+internet+banking+-+going+to+write+a+book" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Argenta+internet+banking+-+going+to+write+a+book&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F07%2F26%2Fargenta-internet-banking-going-to-write-a-book%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Argenta+internet+banking+-+going+to+write+a+book&amp;u=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F07%2F26%2Fargenta-internet-banking-going-to-write-a-book%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Argenta+internet+banking+-+going+to+write+a+book&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F07%2F26%2Fargenta-internet-banking-going-to-write-a-book%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Argenta+internet+banking+-+going+to+write+a+book&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F07%2F26%2Fargenta-internet-banking-going-to-write-a-book%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Argenta+internet+banking+-+going+to+write+a+book&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F07%2F26%2Fargenta-internet-banking-going-to-write-a-book%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F07%2F26%2Fargenta-internet-banking-going-to-write-a-book%2F&amp;title=Argenta+internet+banking+-+going+to+write+a+book&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F07%2F26%2Fargenta-internet-banking-going-to-write-a-book%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.bn2vs.com%2F2009%2F07%2F26%2Fargenta-internet-banking-going-to-write-a-book%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F07%2F26%2Fargenta-internet-banking-going-to-write-a-book%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.bn2vs.com/2009/07/26/argenta-internet-banking-going-to-write-a-book/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Eye accident</title>
		<link>http://blog.bn2vs.com/2009/06/27/eye-accident/</link>
		<comments>http://blog.bn2vs.com/2009/06/27/eye-accident/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 11:00:51 +0000</pubDate>
		<dc:creator>Jeroen De Dauw</dc:creator>
				<category><![CDATA[Fail]]></category>

		<guid isPermaLink="false">http://blog.bn2vs.com/?p=65</guid>
		<description><![CDATA[Yesterday, when I was cycling home, from Sint-Niklaas to Hulst, as usual, my left eye got hit by a small piece of flying debry. At first I thought there was a sharp piece of stone in my eye that I couldn&#8217;t get out. But after going to the optician (and having a lot of pain [...]]]></description>
			<content:encoded><![CDATA[<div class='wpfblike' style='height: 40px;'><fb:like href='http://blog.bn2vs.com/2009/06/27/eye-accident/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' /></div><p>Yesterday, when I was cycling home, from Sint-Niklaas to Hulst, as usual, my left eye got hit by a small piece of flying debry. At first I thought there was a sharp piece of stone in my eye that I couldn&#8217;t get out. But after going to the optician (and having a lot of pain &#8211; lame analogue shit <img src='http://blog.bn2vs.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> ) , it was clear there was nothing in my eye, but a part of the upper layer was damaged. I now have to take painkillers and some antibiotics for 2 days, after which (lucky!) my eye should be completely healed without any permanent effects.</p>
<p>This is really lame though, couse I&#8217;m not able to efficiently work on <a href="http://blog.bn2vs.com/2009/04/26/google-summer-of-code-2009/" target="_self">my GSoC project</a> with one eye, and reading articles is also quite tiring. Could have been <a href="http://www.youtube.com/watch?v=nmXL6-F3vZQ" target="_blank">worse</a> though &#8211; lol.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F27%2Feye-accident%2F&amp;title=Eye+accident" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F27%2Feye-accident%2F&amp;title=Eye+accident" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F27%2Feye-accident%2F&amp;title=Eye+accident" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F27%2Feye-accident%2F&amp;headline=Eye+accident" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Eye+accident&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F27%2Feye-accident%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Eye+accident&amp;u=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F27%2Feye-accident%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Eye+accident&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F27%2Feye-accident%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Eye+accident&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F27%2Feye-accident%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Eye+accident&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F27%2Feye-accident%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F27%2Feye-accident%2F&amp;title=Eye+accident&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F27%2Feye-accident%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F27%2Feye-accident%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F27%2Feye-accident%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.bn2vs.com/2009/06/27/eye-accident/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Epic blog fail</title>
		<link>http://blog.bn2vs.com/2009/06/24/epic-blog-fail/</link>
		<comments>http://blog.bn2vs.com/2009/06/24/epic-blog-fail/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 22:14:03 +0000</pubDate>
		<dc:creator>Jeroen De Dauw</dc:creator>
				<category><![CDATA[Fail]]></category>

		<guid isPermaLink="false">http://blog.bn2vs.com/?p=38</guid>
		<description><![CDATA[Yesterday I was working on my GSoC project and moving a whole bunch of data around (I&#8217;ll post more on this later on). I somehow succeeded in deleting my blog&#8217;s database. &#8230; &#8230; &#8230; Indeed, that&#8217;s just a huge fail -_-&#8221; Anywayz, I got it back up now, and restored about half of the posts [...]]]></description>
			<content:encoded><![CDATA[<div class='wpfblike' style='height: 40px;'><fb:like href='http://blog.bn2vs.com/2009/06/24/epic-blog-fail/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' /></div><p>Yesterday I was working on my GSoC project and moving a whole bunch of data around (I&#8217;ll post more on this later on). I somehow succeeded in deleting my blog&#8217;s database.</p>
<p>&#8230;<br />
&#8230;<br />
&#8230;</p>
<p>Indeed, that&#8217;s just a huge fail -_-&#8221;</p>
<p>Anywayz, I got it back up now, and restored about half of the posts by copieng their html source from the google cache. I&#8217;m not going to recover the less imprortant ones, and the comments will also be lost <img src='http://blog.bn2vs.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  The post dates are also wrong now, which I&#8217;m going to fix in a moment. After I&#8217;m done I&#8217;m so going to take a bakup <img src='http://blog.bn2vs.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>EDIT: I got tired of poking around in my blog database, so not all post have the correct date. They are all in the correct order though.</p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F24%2Fepic-blog-fail%2F&amp;title=Epic+blog+fail" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F24%2Fepic-blog-fail%2F&amp;title=Epic+blog+fail" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F24%2Fepic-blog-fail%2F&amp;title=Epic+blog+fail" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F24%2Fepic-blog-fail%2F&amp;headline=Epic+blog+fail" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Epic+blog+fail&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F24%2Fepic-blog-fail%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Epic+blog+fail&amp;u=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F24%2Fepic-blog-fail%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Epic+blog+fail&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F24%2Fepic-blog-fail%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Epic+blog+fail&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F24%2Fepic-blog-fail%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Epic+blog+fail&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F24%2Fepic-blog-fail%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F24%2Fepic-blog-fail%2F&amp;title=Epic+blog+fail&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F24%2Fepic-blog-fail%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F24%2Fepic-blog-fail%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F24%2Fepic-blog-fail%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.bn2vs.com/2009/06/24/epic-blog-fail/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The quest for the GSoC money</title>
		<link>http://blog.bn2vs.com/2009/06/03/the-quest-for-the-gsoc-money/</link>
		<comments>http://blog.bn2vs.com/2009/06/03/the-quest-for-the-gsoc-money/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 17:08:54 +0000</pubDate>
		<dc:creator>Jeroen De Dauw</dc:creator>
				<category><![CDATA[Fail]]></category>
		<category><![CDATA[GSoC]]></category>

		<guid isPermaLink="false">http://blog.bn2vs.com/?p=50</guid>
		<description><![CDATA[I finally received my first Google Summer of Code payment. This payment was in the form of a prepaid card send to me via mail, together with 2 GSoC stickers and a Google notebook – YAY! Getting the money from the card proved to be quite an ordeal though. The first step required to getting [...]]]></description>
			<content:encoded><![CDATA[<div class='wpfblike' style='height: 40px;'><fb:like href='http://blog.bn2vs.com/2009/06/03/the-quest-for-the-gsoc-money/' layout='default' show_faces='true' width='400' action='like' colorscheme='light' /></div><p>I finally received my first <a href="http://blog.bn2vs.com/2009/04/26/google-summer-of-code/" target="_self">Google Summer of Code</a> payment.</p>
<p>This payment was in the form of a prepaid card send to me via mail, together with 2 GSoC stickers and a Google notebook – YAY! Getting the money from the card proved to be quite an ordeal though.</p>
<p><img class="alignleft size-full wp-image-112" src="http://blog.bn2vs.com/wp-content/uploads/2009/06/citi_prepaid_re-branding_02.jpg" alt="" width="113" height="68" />The first step required to getting the money from the card was registering on the citiprepaid website. To do this all GSoC students needed to fill in a form with your name, email and other info. You also had to enter your phone number. This is where it got funny. The form contains 3 fields to enter different parts of your phone number into, but only 2 of these are visible -&gt; WTF??!! Since the phone number is required and must be valid, no one can submit the form without a workaround provided by another GSoC student: using the <a href="https://addons.mozilla.org/en-US/firefox/browse/type:7" target="_blank">FireFox plugin</a> <a href="https://addons.mozilla.org/en-US/firefox/addon/60" target="_blank">Web Developer</a> to display detailed form information, which would then also reveal the hidden field. Another issue here, although considerably smaller, is that only US numbers will be accepted, which forces all non-us residents participating in GSoC to enter a wrong number.</p>
<p>By making it impossible for non-geeks to successfully submit the registration form, <a href="https://www.citiprepaid.com" target="_blank">citiprepaid</a> now joins <a href="http://www.argenta.be" target="_blank">Argenta</a> on my list of banks that try to fuck up their websites.</p>
<p>Anyway, I got my €350 from the card (although it took me at least 3 hours to get all the damned stuff fixed), so I’m happy <img class="wp-smiley" src="http://blog.bn2vs.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" /></p>
<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F03%2Fthe-quest-for-the-gsoc-money%2F&amp;title=The+quest+for+the+GSoC+money++" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F03%2Fthe-quest-for-the-gsoc-money%2F&amp;title=The+quest+for+the+GSoC+money++" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F03%2Fthe-quest-for-the-gsoc-money%2F&amp;title=The+quest+for+the+GSoC+money++" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F03%2Fthe-quest-for-the-gsoc-money%2F&amp;headline=The+quest+for+the+GSoC+money++" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=The+quest+for+the+GSoC+money++&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F03%2Fthe-quest-for-the-gsoc-money%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=The+quest+for+the+GSoC+money++&amp;u=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F03%2Fthe-quest-for-the-gsoc-money%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=The+quest+for+the+GSoC+money++&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F03%2Fthe-quest-for-the-gsoc-money%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=The+quest+for+the+GSoC+money++&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F03%2Fthe-quest-for-the-gsoc-money%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=The+quest+for+the+GSoC+money++&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F03%2Fthe-quest-for-the-gsoc-money%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F03%2Fthe-quest-for-the-gsoc-money%2F&amp;title=The+quest+for+the+GSoC+money++&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F03%2Fthe-quest-for-the-gsoc-money%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F03%2Fthe-quest-for-the-gsoc-money%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.bn2vs.com%2F2009%2F06%2F03%2Fthe-quest-for-the-gsoc-money%2F" ><img class="lightsocial_img" src="http://blog.bn2vs.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.bn2vs.com/2009/06/03/the-quest-for-the-gsoc-money/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
