<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>KennethVR</title>
	
	<link>http://www.kennethvr.be/blog</link>
	<description>References and Experiences</description>
	<lastBuildDate>Mon, 06 Sep 2010 09:45:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Kennethvr" /><feedburner:info uri="kennethvr" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>JavaScript floating point numbers issue…</title>
		<link>http://feedproxy.google.com/~r/Kennethvr/~3/TBflWpxQAUU/</link>
		<comments>http://www.kennethvr.be/blog/2010/09/06/javascript-floating-point-numbers-issue/#comments</comments>
		<pubDate>Mon, 06 Sep 2010 09:45:22 +0000</pubDate>
		<dc:creator>Kenneth van Rumste</dc:creator>
				<category><![CDATA[DEVelopment EXPerience]]></category>
		<category><![CDATA[study references]]></category>
		<category><![CDATA[floating point]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[numbers]]></category>
		<category><![CDATA[round]]></category>
		<category><![CDATA[stackoverflow]]></category>

		<guid isPermaLink="false">http://www.kennethvr.be/blog/?p=1604</guid>
		<description><![CDATA[I struggled with some numbers today. A common bug in JavaScript is when converting numbers to floating point numbers, add them and the result will be different from what you expect it to be. For example: if you add 0.1 + 0.2 it gives 0.30000000000000004 in stead of 0.3. Reason: Because internally, computers use a [...]]]></description>
			<content:encoded><![CDATA[<p>I struggled with some numbers today.<br />
A common bug in JavaScript is when converting numbers to floating point numbers, add them and the result will be different from what you expect it to be.<br />
For example: if you add 0.1 + 0.2 it gives 0.30000000000000004 in stead of 0.3.
</p>
<p>
Reason:<br />
<em><span style="color: #999999;">Because internally, computers use a format (binary floating-point) that   cannot accurately represent a number like 0.1, 0.2 or 0.3 at all.
</p>
<p>
When the code is compiled or interpreted, your “0.1” is already rounded to the nearest number in that format,<br />
which results in a small rounding error even before the calculation happens.</span></em>
</p>
<p>
The solution for this problem is rounding it after the add action.
</p>
<pre class="brush: php;">
&lt;script type=&quot;text/javascript&quot;&gt;

  function roundNumber(number, digits) {
      var multiple = Math.pow(10, digits);
      var rndedNum = Math.round(number * multiple) / multiple;
      return rndedNum;
  }

 function printFloat(){
	  var myFloatNumber1 = document.getElementById('floatNumber1');
	  var myFloatNumber2 = document.getElementById('floatNumber2');
	  alert(roundNumber(parseFloat(myFloatNumber1.value)+ parseFloat(myFloatNumber2.value),2))
 }

&lt;/script&gt;

&lt;input type=&quot;text&quot; id=&quot;floatNumber1&quot;&gt;&lt;/input&gt;
&lt;input type=&quot;text&quot; id=&quot;floatNumber2&quot;&gt;&lt;/input&gt;

&lt;input type=&quot;button&quot; onclick=&quot;printFloat()&quot;/&gt;
</pre>
<p>
If you want to read more about this topic or why it happens, you can visit these sites:<br />
<a target="_blank" href="http://books.google.com/books?id=PXa2bby0oQ0C&#038;pg=PA105&#038;dq=douglas+crockford+javascript+good+parts+dollar+values+can+be+converted&#038;rview=1&#038;cd=1#v=onepage&#038;q&#038;f=false">JavaScript: The Good Parts: Appendix A &#8211; Awful Parts (page 105)</a><br />
<a target="_blank" href="http://wiki.ecmascript.org/doku.php?id=proposals:decimal&#038;s=decimal">decimal arithmetic</a><br />
<a href="http://en.wikipedia.org/wiki/Floating-point">Wikipedia article on floating point numbers</a>
</p>
<p>
or you could just use StackOverflow like any other selfrespecting developer and ask it to the community<br />
<a target="_blank" href="http://stackoverflow.com/questions/588004/is-javascripts-math-broken">Is the math broken?</a><br />
<a target="_blank" href="http://stackoverflow.com/questions/3650081/why-does-the-sum-of-2-parsefloat-variables-give-me-an-incorrect-decimal-number">My question on stackoverflow</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=JavaScript+floating+point+numbers+issue...+-+http://b2l.me/aprf83&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.kennethvr.be/blog/2010/09/06/javascript-floating-point-numbers-issue/&amp;title=JavaScript+floating+point+numbers+issue..." rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.kennethvr.be/blog/2010/09/06/javascript-floating-point-numbers-issue/&amp;t=JavaScript+floating+point+numbers+issue..." rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=JavaScript+floating+point+numbers+issue...&amp;body=Link: http://www.kennethvr.be/blog/2010/09/06/javascript-floating-point-numbers-issue/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20struggled%20with%20some%20numbers%20today.%0D%0AA%20common%20bug%20in%20JavaScript%20is%20when%20converting%20numbers%20to%20floating%20point%20numbers%2C%20add%20them%20and%20the%20result%20will%20be%20different%20from%20what%20you%20expect%20it%20to%20be.%0D%0AFor%20example%3A%20if%20you%20add%200.1%20%2B%200.2%20it%20gives%200.30000000000000004%20in%20stead%20of%200.3.%0D%0A%0D%0A%0D%0AReason%3A%0D%0ABecause%20inter" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22JavaScript%20floating%20point%20numbers%20issue...%22&amp;body=Link: http://www.kennethvr.be/blog/2010/09/06/javascript-floating-point-numbers-issue/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20struggled%20with%20some%20numbers%20today.%0D%0AA%20common%20bug%20in%20JavaScript%20is%20when%20converting%20numbers%20to%20floating%20point%20numbers%2C%20add%20them%20and%20the%20result%20will%20be%20different%20from%20what%20you%20expect%20it%20to%20be.%0D%0AFor%20example%3A%20if%20you%20add%200.1%20%2B%200.2%20it%20gives%200.30000000000000004%20in%20stead%20of%200.3.%0D%0A%0D%0A%0D%0AReason%3A%0D%0ABecause%20inter" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.kennethvr.be/blog/2010/09/06/javascript-floating-point-numbers-issue/&amp;n=JavaScript+floating+point+numbers+issue...&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.kennethvr.be/blog/2010/09/06/javascript-floating-point-numbers-issue/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.kennethvr.be/blog/2010/09/06/javascript-floating-point-numbers-issue/&amp;title=JavaScript+floating+point+numbers+issue..." rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.kennethvr.be/blog/2010/09/06/javascript-floating-point-numbers-issue/&amp;title=JavaScript+floating+point+numbers+issue...&amp;summary=I%20struggled%20with%20some%20numbers%20today.%0D%0AA%20common%20bug%20in%20JavaScript%20is%20when%20converting%20numbers%20to%20floating%20point%20numbers%2C%20add%20them%20and%20the%20result%20will%20be%20different%20from%20what%20you%20expect%20it%20to%20be.%0D%0AFor%20example%3A%20if%20you%20add%200.1%20%2B%200.2%20it%20gives%200.30000000000000004%20in%20stead%20of%200.3.%0D%0A%0D%0A%0D%0AReason%3A%0D%0ABecause%20inter&amp;source=KennethVR" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.kennethvr.be/blog/2010/09/06/javascript-floating-point-numbers-issue/&amp;title=JavaScript+floating+point+numbers+issue..." rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<img src="http://feeds.feedburner.com/~r/Kennethvr/~4/TBflWpxQAUU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kennethvr.be/blog/2010/09/06/javascript-floating-point-numbers-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kennethvr.be/blog/2010/09/06/javascript-floating-point-numbers-issue/</feedburner:origLink></item>
		<item>
		<title>Scrum guide</title>
		<link>http://feedproxy.google.com/~r/Kennethvr/~3/y19o0ZHo1lQ/</link>
		<comments>http://www.kennethvr.be/blog/2010/09/01/scrum-guide/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 10:08:44 +0000</pubDate>
		<dc:creator>Kenneth van Rumste</dc:creator>
				<category><![CDATA[All Articles]]></category>
		<category><![CDATA[study references]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[scrum]]></category>

		<guid isPermaLink="false">http://www.kennethvr.be/blog/?p=1602</guid>
		<description><![CDATA[this is placed as a reference, or for interested visitors.. the scrum guide by scrum.org Scrum Guide Tweet This! Share this on del.icio.us Share this on Facebook Email this via Gmail Email this to a friend? Blog this on Blogger Subscribe to the comments for this post? Digg this! Share this on LinkedIn Share this [...]]]></description>
			<content:encoded><![CDATA[<p>this is placed as a reference, or for interested visitors.. the scrum guide by scrum.org</p>
<p><a style="margin: 12px auto 6px auto; font-family: Helvetica,Arial,Sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 14px; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none; display: block; text-decoration: underline;" title="View Scrum Guide on Scribd" href="http://www.scribd.com/doc/35686704/Scrum-Guide">Scrum Guide</a> <object id="doc_451716481045553" style="outline: none;" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="100%" height="500" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="name" value="doc_451716481045553" /><param name="data" value="http://d1.scribdassets.com/ScribdViewer.swf" /><param name="wmode" value="opaque" /><param name="bgcolor" value="#ffffff" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="FlashVars" value="document_id=35686704&amp;access_key=key-28ba9sbsj04zgvf85efh&amp;page=1&amp;viewMode=list" /><param name="src" value="http://d1.scribdassets.com/ScribdViewer.swf" /><param name="allowfullscreen" value="true" /><embed id="doc_451716481045553" style="outline: none;" type="application/x-shockwave-flash" width="100%" height="500" src="http://d1.scribdassets.com/ScribdViewer.swf" flashvars="document_id=35686704&amp;access_key=key-28ba9sbsj04zgvf85efh&amp;page=1&amp;viewMode=list" allowscriptaccess="always" allowfullscreen="true" bgcolor="#ffffff" wmode="opaque" data="http://d1.scribdassets.com/ScribdViewer.swf" name="doc_451716481045553"></embed></object></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Scrum+guide+-+http://b2l.me/anm429&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.kennethvr.be/blog/2010/09/01/scrum-guide/&amp;title=Scrum+guide" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.kennethvr.be/blog/2010/09/01/scrum-guide/&amp;t=Scrum+guide" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Scrum+guide&amp;body=Link: http://www.kennethvr.be/blog/2010/09/01/scrum-guide/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A this%20is%20placed%20as%20a%20reference%2C%20or%20for%20interested%20visitors..%20the%20scrum%20guide%20by%20scrum.org%0D%0A%0D%0AScrum%20Guide%20" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Scrum%20guide%22&amp;body=Link: http://www.kennethvr.be/blog/2010/09/01/scrum-guide/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A this%20is%20placed%20as%20a%20reference%2C%20or%20for%20interested%20visitors..%20the%20scrum%20guide%20by%20scrum.org%0D%0A%0D%0AScrum%20Guide%20" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.kennethvr.be/blog/2010/09/01/scrum-guide/&amp;n=Scrum+guide&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.kennethvr.be/blog/2010/09/01/scrum-guide/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.kennethvr.be/blog/2010/09/01/scrum-guide/&amp;title=Scrum+guide" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.kennethvr.be/blog/2010/09/01/scrum-guide/&amp;title=Scrum+guide&amp;summary=this%20is%20placed%20as%20a%20reference%2C%20or%20for%20interested%20visitors..%20the%20scrum%20guide%20by%20scrum.org%0D%0A%0D%0AScrum%20Guide%20&amp;source=KennethVR" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.kennethvr.be/blog/2010/09/01/scrum-guide/&amp;title=Scrum+guide" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<img src="http://feeds.feedburner.com/~r/Kennethvr/~4/y19o0ZHo1lQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kennethvr.be/blog/2010/09/01/scrum-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kennethvr.be/blog/2010/09/01/scrum-guide/</feedburner:origLink></item>
		<item>
		<title>Agile methodology vs housekeeping methodology</title>
		<link>http://feedproxy.google.com/~r/Kennethvr/~3/avX0MKPzzDE/</link>
		<comments>http://www.kennethvr.be/blog/2010/08/19/agile-methodology-vs-housekeeping-methodology/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 06:24:17 +0000</pubDate>
		<dc:creator>Kenneth van Rumste</dc:creator>
				<category><![CDATA[entertainment]]></category>
		<category><![CDATA[backlog]]></category>
		<category><![CDATA[scrum]]></category>
		<category><![CDATA[sprint]]></category>

		<guid isPermaLink="false">http://www.kennethvr.be/blog/?p=1599</guid>
		<description><![CDATA[Tweet This! Share this on del.icio.us Share this on Facebook Email this via Gmail Email this to a friend? Blog this on Blogger Subscribe to the comments for this post? Digg this! Share this on LinkedIn Share this on Reddit]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="agilevshousekeeping" src="http://2.bp.blogspot.com/_YzKCMr-tcMM/TGo68I8B3fI/AAAAAAAAARo/IMEqUb-qCC0/s1600/83+WashingMachine1.jpg" alt="" width="750" height="669" /></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Agile+methodology+vs+housekeeping+methodology+-+http://b2l.me/ajc55w&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.kennethvr.be/blog/2010/08/19/agile-methodology-vs-housekeeping-methodology/&amp;title=Agile+methodology+vs+housekeeping+methodology" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.kennethvr.be/blog/2010/08/19/agile-methodology-vs-housekeeping-methodology/&amp;t=Agile+methodology+vs+housekeeping+methodology" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Agile+methodology+vs+housekeeping+methodology&amp;body=Link: http://www.kennethvr.be/blog/2010/08/19/agile-methodology-vs-housekeeping-methodology/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A " rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Agile%20methodology%20vs%20housekeeping%20methodology%22&amp;body=Link: http://www.kennethvr.be/blog/2010/08/19/agile-methodology-vs-housekeeping-methodology/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A " rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.kennethvr.be/blog/2010/08/19/agile-methodology-vs-housekeeping-methodology/&amp;n=Agile+methodology+vs+housekeeping+methodology&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.kennethvr.be/blog/2010/08/19/agile-methodology-vs-housekeeping-methodology/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.kennethvr.be/blog/2010/08/19/agile-methodology-vs-housekeeping-methodology/&amp;title=Agile+methodology+vs+housekeeping+methodology" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.kennethvr.be/blog/2010/08/19/agile-methodology-vs-housekeeping-methodology/&amp;title=Agile+methodology+vs+housekeeping+methodology&amp;summary=&amp;source=KennethVR" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.kennethvr.be/blog/2010/08/19/agile-methodology-vs-housekeeping-methodology/&amp;title=Agile+methodology+vs+housekeeping+methodology" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<img src="http://feeds.feedburner.com/~r/Kennethvr/~4/avX0MKPzzDE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kennethvr.be/blog/2010/08/19/agile-methodology-vs-housekeeping-methodology/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kennethvr.be/blog/2010/08/19/agile-methodology-vs-housekeeping-methodology/</feedburner:origLink></item>
		<item>
		<title>PHP song by Emergent Collective One, and it ROCKS!</title>
		<link>http://feedproxy.google.com/~r/Kennethvr/~3/9ePV4lUCyxY/</link>
		<comments>http://www.kennethvr.be/blog/2010/08/04/php-song-by-emergent-collective-one-and-it-rocks/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 08:32:09 +0000</pubDate>
		<dc:creator>Kenneth van Rumste</dc:creator>
				<category><![CDATA[All Articles]]></category>
		<category><![CDATA[DEVelopment EXPerience]]></category>
		<category><![CDATA[entertainment]]></category>
		<category><![CDATA[Emergent Collective One]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.kennethvr.be/blog/?p=1581</guid>
		<description><![CDATA[Oh, hell yeah, I just found my personal anthem thx to colleague Dimitri. This is for all you PHP hating dudes! Big thank you goes to the Emergent Collective One! Lee Fernandes, creator of the song said this: I like thick beats, and I struggle with lyrics, but can do something nice from time to time. [...]]]></description>
			<content:encoded><![CDATA[<p>Oh, hell yeah, I just found my personal anthem thx to colleague Dimitri.</p>
<p>This is for all you PHP hating dudes! Big thank you goes to the Emergent Collective One!<br />
Lee Fernandes, creator of the song said this:</p>
<blockquote><p><em>I like thick beats, and I struggle with lyrics, but can do something nice from time to time. Some of the style I learned in music production translated to application development, a general willingness to try new approaches. And the pragmatism of development cycles came back to my music production workflow, so I bang em out dutifully.</em></p></blockquote>
<p>Check for song nr 4, play it and listen to the lyrics, it&#8217;s awesome.</p>
<p>The whole album of Emergent Collective One is free to download at <a href="http://fracturedvisionmedia.com/FVM005/" target="_blank">http://fracturedvisionmedia.com/FVM005/</a></p>
<p>Be sure to listen to all other songs on the album too, they really aren&#8217;t that bad at all!!!</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=PHP+song+by+Emergent+Collective+One%2C+and+it+ROCKS%21+-+http://b2l.me/aewtjx&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.kennethvr.be/blog/2010/08/04/php-song-by-emergent-collective-one-and-it-rocks/&amp;title=PHP+song+by+Emergent+Collective+One%2C+and+it+ROCKS%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.kennethvr.be/blog/2010/08/04/php-song-by-emergent-collective-one-and-it-rocks/&amp;t=PHP+song+by+Emergent+Collective+One%2C+and+it+ROCKS%21" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=PHP+song+by+Emergent+Collective+One%2C+and+it+ROCKS%21&amp;body=Link: http://www.kennethvr.be/blog/2010/08/04/php-song-by-emergent-collective-one-and-it-rocks/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Oh%2C%20hell%20yeah%2C%20I%20just%20found%20my%20personal%20anthem%20thx%20to%20colleague%20Dimitri.%0D%0A%0D%0AThis%20is%20for%20all%20you%20PHP%20hating%20dudes%21%20Big%20thank%20you%20goes%20to%20the%20Emergent%20Collective%20One%21%0D%0ALee%20Fernandes%2C%20creator%20of%20the%20song%20said%20this%3A%0D%0AI%20like%20thick%20beats%2C%20and%20I%20struggle%20with%20lyrics%2C%20but%20can%20do%20something%C2%A0nice%20from%20time%20to" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22PHP%20song%20by%20Emergent%20Collective%20One%2C%20and%20it%20ROCKS%21%22&amp;body=Link: http://www.kennethvr.be/blog/2010/08/04/php-song-by-emergent-collective-one-and-it-rocks/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Oh%2C%20hell%20yeah%2C%20I%20just%20found%20my%20personal%20anthem%20thx%20to%20colleague%20Dimitri.%0D%0A%0D%0AThis%20is%20for%20all%20you%20PHP%20hating%20dudes%21%20Big%20thank%20you%20goes%20to%20the%20Emergent%20Collective%20One%21%0D%0ALee%20Fernandes%2C%20creator%20of%20the%20song%20said%20this%3A%0D%0AI%20like%20thick%20beats%2C%20and%20I%20struggle%20with%20lyrics%2C%20but%20can%20do%20something%C2%A0nice%20from%20time%20to" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.kennethvr.be/blog/2010/08/04/php-song-by-emergent-collective-one-and-it-rocks/&amp;n=PHP+song+by+Emergent+Collective+One%2C+and+it+ROCKS%21&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.kennethvr.be/blog/2010/08/04/php-song-by-emergent-collective-one-and-it-rocks/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.kennethvr.be/blog/2010/08/04/php-song-by-emergent-collective-one-and-it-rocks/&amp;title=PHP+song+by+Emergent+Collective+One%2C+and+it+ROCKS%21" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.kennethvr.be/blog/2010/08/04/php-song-by-emergent-collective-one-and-it-rocks/&amp;title=PHP+song+by+Emergent+Collective+One%2C+and+it+ROCKS%21&amp;summary=Oh%2C%20hell%20yeah%2C%20I%20just%20found%20my%20personal%20anthem%20thx%20to%20colleague%20Dimitri.%0D%0A%0D%0AThis%20is%20for%20all%20you%20PHP%20hating%20dudes%21%20Big%20thank%20you%20goes%20to%20the%20Emergent%20Collective%20One%21%0D%0ALee%20Fernandes%2C%20creator%20of%20the%20song%20said%20this%3A%0D%0AI%20like%20thick%20beats%2C%20and%20I%20struggle%20with%20lyrics%2C%20but%20can%20do%20something%C2%A0nice%20from%20time%20to&amp;source=KennethVR" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.kennethvr.be/blog/2010/08/04/php-song-by-emergent-collective-one-and-it-rocks/&amp;title=PHP+song+by+Emergent+Collective+One%2C+and+it+ROCKS%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<img src="http://feeds.feedburner.com/~r/Kennethvr/~4/9ePV4lUCyxY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kennethvr.be/blog/2010/08/04/php-song-by-emergent-collective-one-and-it-rocks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.kennethvr.be/blog/2010/08/04/php-song-by-emergent-collective-one-and-it-rocks/</feedburner:origLink></item>
		<item>
		<title>Extend phpMyAdmin max session lifetime</title>
		<link>http://feedproxy.google.com/~r/Kennethvr/~3/xDuafxgCReA/</link>
		<comments>http://www.kennethvr.be/blog/2010/08/02/extend-phpmyadmin-max-session-lifetime/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 10:07:43 +0000</pubDate>
		<dc:creator>Kenneth van Rumste</dc:creator>
				<category><![CDATA[All Articles]]></category>
		<category><![CDATA[DEVelopment EXPerience]]></category>
		<category><![CDATA[study references]]></category>
		<category><![CDATA[extend]]></category>
		<category><![CDATA[lifetime]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[session]]></category>

		<guid isPermaLink="false">http://www.kennethvr.be/blog/?p=1561</guid>
		<description><![CDATA[When you install a clean version of phpMyAdmin you might get this after a while: You can remove this problem by simply extending the session lifetime to the desired number of seconds. By default it is set to 1440 seconds, 24 minutes and that might give you the above result once in a while. So [...]]]></description>
			<content:encoded><![CDATA[<p>When you install a clean version of phpMyAdmin you might get this after a while:</p>
<p><a href="http://www.kennethvr.be/blog/wp-content/uploads/phpmyadmintimeout.jpg"><img class="size-full wp-image-1562 alignnone" title="phpmyadmintimeout" src="http://www.kennethvr.be/blog/wp-content/uploads/phpmyadmintimeout.jpg" alt="" width="408" height="363" /></a></p>
<p>You can remove this problem by simply extending the session lifetime to the desired number of seconds. By default it is set to 1440 seconds, 24 minutes and that might give you the above result once in a while. So extend the session lifetime to, for example 10800 seconds (3 hours),in the php.ini as followed:<a href="http://www.kennethvr.be/blog/wp-content/uploads/phpmyadmintimeout.jpg"></a></p>
<pre class="brush: php;">
; After this number of seconds, stored data will be seen as 'garbage' and
; cleaned up by the garbage collection process.
session.gc_maxlifetime = 1440
</pre>
<p>to</p>
<pre class="brush: php;">
; After this number of seconds, stored data will be seen as 'garbage' and
; cleaned up by the garbage collection process.
session.gc_maxlifetime = 10800
</pre>
<p>don&#8217;t forget to restart your local wamp/lamp&#8230;</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Extend+phpMyAdmin+max+session+lifetime+-+http://b2l.me/aeeu9b&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.kennethvr.be/blog/2010/08/02/extend-phpmyadmin-max-session-lifetime/&amp;title=Extend+phpMyAdmin+max+session+lifetime" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.kennethvr.be/blog/2010/08/02/extend-phpmyadmin-max-session-lifetime/&amp;t=Extend+phpMyAdmin+max+session+lifetime" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Extend+phpMyAdmin+max+session+lifetime&amp;body=Link: http://www.kennethvr.be/blog/2010/08/02/extend-phpmyadmin-max-session-lifetime/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A When%20you%20install%20a%20clean%20version%20of%20phpMyAdmin%20you%20might%20get%20this%20after%20a%20while%3A%0D%0A%0D%0A%0D%0A%0D%0AYou%20can%20remove%20this%20problem%20by%20simply%20extending%20the%20session%20lifetime%20to%20the%20desired%20number%20of%20seconds.%20By%20default%20it%20is%20set%20to%201440%20seconds%2C%2024%20minutes%20and%20that%20might%20give%20you%20the%20above%20result%20once%20in%20a%20while.%20So" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Extend%20phpMyAdmin%20max%20session%20lifetime%22&amp;body=Link: http://www.kennethvr.be/blog/2010/08/02/extend-phpmyadmin-max-session-lifetime/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A When%20you%20install%20a%20clean%20version%20of%20phpMyAdmin%20you%20might%20get%20this%20after%20a%20while%3A%0D%0A%0D%0A%0D%0A%0D%0AYou%20can%20remove%20this%20problem%20by%20simply%20extending%20the%20session%20lifetime%20to%20the%20desired%20number%20of%20seconds.%20By%20default%20it%20is%20set%20to%201440%20seconds%2C%2024%20minutes%20and%20that%20might%20give%20you%20the%20above%20result%20once%20in%20a%20while.%20So" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.kennethvr.be/blog/2010/08/02/extend-phpmyadmin-max-session-lifetime/&amp;n=Extend+phpMyAdmin+max+session+lifetime&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.kennethvr.be/blog/2010/08/02/extend-phpmyadmin-max-session-lifetime/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.kennethvr.be/blog/2010/08/02/extend-phpmyadmin-max-session-lifetime/&amp;title=Extend+phpMyAdmin+max+session+lifetime" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.kennethvr.be/blog/2010/08/02/extend-phpmyadmin-max-session-lifetime/&amp;title=Extend+phpMyAdmin+max+session+lifetime&amp;summary=When%20you%20install%20a%20clean%20version%20of%20phpMyAdmin%20you%20might%20get%20this%20after%20a%20while%3A%0D%0A%0D%0A%0D%0A%0D%0AYou%20can%20remove%20this%20problem%20by%20simply%20extending%20the%20session%20lifetime%20to%20the%20desired%20number%20of%20seconds.%20By%20default%20it%20is%20set%20to%201440%20seconds%2C%2024%20minutes%20and%20that%20might%20give%20you%20the%20above%20result%20once%20in%20a%20while.%20So&amp;source=KennethVR" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.kennethvr.be/blog/2010/08/02/extend-phpmyadmin-max-session-lifetime/&amp;title=Extend+phpMyAdmin+max+session+lifetime" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<img src="http://feeds.feedburner.com/~r/Kennethvr/~4/xDuafxgCReA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kennethvr.be/blog/2010/08/02/extend-phpmyadmin-max-session-lifetime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kennethvr.be/blog/2010/08/02/extend-phpmyadmin-max-session-lifetime/</feedburner:origLink></item>
		<item>
		<title>.Project File in Eclipse</title>
		<link>http://feedproxy.google.com/~r/Kennethvr/~3/zP2kmkYrVQA/</link>
		<comments>http://www.kennethvr.be/blog/2010/07/29/project-file-in-eclipse/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 09:59:41 +0000</pubDate>
		<dc:creator>Kenneth van Rumste</dc:creator>
				<category><![CDATA[All Articles]]></category>
		<category><![CDATA[study references]]></category>
		<category><![CDATA[.project]]></category>
		<category><![CDATA[eclipse]]></category>

		<guid isPermaLink="false">http://www.kennethvr.be/blog/?p=1556</guid>
		<description><![CDATA[This is perhaps more a reference for me than for anyone else reading my blog But I think it might come in quite useful someday. Here&#8217;s a description of the project file of an eclipse project: http://help.eclipse.org/ganymede/index.jsp?topic=/org.eclipse.platform.doc.isv/reference/misc/project_description_file.html and here is my code on the php project: &#60;?xml version=&#34;1.0&#34; encoding=&#34;UTF-8&#34;?&#62; &#60;projectDescription&#62; &#60;name&#62;ProjectName&#60;/name&#62; &#60;comment&#62;&#60;/comment&#62; &#60;projects&#62; &#60;/projects&#62; &#60;buildSpec&#62; &#60;buildCommand&#62; &#60;name&#62;org.eclipse.wst.validation.validationbuilder&#60;/name&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>This is perhaps more a reference for me than for anyone else reading my blog</p>
<p>But I think it might come in quite useful someday.</p>
<p>Here&#8217;s a description of the project file of an eclipse project:</p>
<p><a href="http://help.eclipse.org/ganymede/index.jsp?topic=/org.eclipse.platform.doc.isv/reference/misc/project_description_file.html">http://help.eclipse.org/ganymede/index.jsp?topic=/org.eclipse.platform.doc.isv/reference/misc/project_description_file.html</a></p>
<p>and here is my code on the php project:</p>
<pre class="brush: xml;">
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;projectDescription&gt;
	&lt;name&gt;ProjectName&lt;/name&gt;
	&lt;comment&gt;&lt;/comment&gt;
	&lt;projects&gt;
	&lt;/projects&gt;
  &lt;buildSpec&gt;
    &lt;buildCommand&gt;
      &lt;name&gt;org.eclipse.wst.validation.validationbuilder&lt;/name&gt;
      &lt;arguments&gt;
      &lt;/arguments&gt;
    &lt;/buildCommand&gt;
    &lt;buildCommand&gt;
      &lt;name&gt;org.eclipse.dltk.core.scriptbuilder&lt;/name&gt;
      &lt;arguments&gt;
      &lt;/arguments&gt;
    &lt;/buildCommand&gt;
  &lt;/buildSpec&gt;
  &lt;natures&gt;
    &lt;nature&gt;org.eclipse.php.core.PHPNature&lt;/nature&gt;
  &lt;/natures&gt;
&lt;/projectDescription&gt;
</pre>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=.Project+File+in+Eclipse+-+http://b2l.me/adfygs&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.kennethvr.be/blog/2010/07/29/project-file-in-eclipse/&amp;title=.Project+File+in+Eclipse" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.kennethvr.be/blog/2010/07/29/project-file-in-eclipse/&amp;t=.Project+File+in+Eclipse" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=.Project+File+in+Eclipse&amp;body=Link: http://www.kennethvr.be/blog/2010/07/29/project-file-in-eclipse/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A This%20is%20perhaps%20more%20a%20reference%20for%20me%20than%20for%20anyone%20else%20reading%20my%20blog%0D%0A%0D%0ABut%20I%20think%20it%20might%20come%20in%20quite%C2%A0useful%C2%A0someday.%0D%0A%0D%0AHere%27s%20a%20description%20of%20the%20project%20file%20of%20an%20eclipse%20project%3A%0D%0A%0D%0Ahttp%3A%2F%2Fhelp.eclipse.org%2Fganymede%2Findex.jsp%3Ftopic%3D%2Forg.eclipse.platform.doc.isv%2Freference%2Fmisc%2Fpro" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22.Project%20File%20in%20Eclipse%22&amp;body=Link: http://www.kennethvr.be/blog/2010/07/29/project-file-in-eclipse/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A This%20is%20perhaps%20more%20a%20reference%20for%20me%20than%20for%20anyone%20else%20reading%20my%20blog%0D%0A%0D%0ABut%20I%20think%20it%20might%20come%20in%20quite%C2%A0useful%C2%A0someday.%0D%0A%0D%0AHere%27s%20a%20description%20of%20the%20project%20file%20of%20an%20eclipse%20project%3A%0D%0A%0D%0Ahttp%3A%2F%2Fhelp.eclipse.org%2Fganymede%2Findex.jsp%3Ftopic%3D%2Forg.eclipse.platform.doc.isv%2Freference%2Fmisc%2Fpro" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.kennethvr.be/blog/2010/07/29/project-file-in-eclipse/&amp;n=.Project+File+in+Eclipse&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.kennethvr.be/blog/2010/07/29/project-file-in-eclipse/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.kennethvr.be/blog/2010/07/29/project-file-in-eclipse/&amp;title=.Project+File+in+Eclipse" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.kennethvr.be/blog/2010/07/29/project-file-in-eclipse/&amp;title=.Project+File+in+Eclipse&amp;summary=This%20is%20perhaps%20more%20a%20reference%20for%20me%20than%20for%20anyone%20else%20reading%20my%20blog%0D%0A%0D%0ABut%20I%20think%20it%20might%20come%20in%20quite%C2%A0useful%C2%A0someday.%0D%0A%0D%0AHere%27s%20a%20description%20of%20the%20project%20file%20of%20an%20eclipse%20project%3A%0D%0A%0D%0Ahttp%3A%2F%2Fhelp.eclipse.org%2Fganymede%2Findex.jsp%3Ftopic%3D%2Forg.eclipse.platform.doc.isv%2Freference%2Fmisc%2Fpro&amp;source=KennethVR" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.kennethvr.be/blog/2010/07/29/project-file-in-eclipse/&amp;title=.Project+File+in+Eclipse" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<img src="http://feeds.feedburner.com/~r/Kennethvr/~4/zP2kmkYrVQA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kennethvr.be/blog/2010/07/29/project-file-in-eclipse/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.kennethvr.be/blog/2010/07/29/project-file-in-eclipse/</feedburner:origLink></item>
		<item>
		<title>the bucket list</title>
		<link>http://feedproxy.google.com/~r/Kennethvr/~3/jKMDd7sEXRI/</link>
		<comments>http://www.kennethvr.be/blog/2010/07/28/the-bucket-list/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 06:32:42 +0000</pubDate>
		<dc:creator>Kenneth van Rumste</dc:creator>
				<category><![CDATA[entertainment]]></category>
		<category><![CDATA[bucket list]]></category>
		<category><![CDATA[walk america]]></category>

		<guid isPermaLink="false">http://www.kennethvr.be/blog/?p=1553</guid>
		<description><![CDATA[Here&#8217;s a nice project, perhaps I could make my own list of things that I want to do before I die&#8230; Tweet This! Share this on del.icio.us Share this on Facebook Email this via Gmail Email this to a friend? Blog this on Blogger Subscribe to the comments for this post? Digg this! Share this [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a nice project, perhaps I could make my own list of things that I want to do before I die&#8230;</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/lzRKEv6cHuk&amp;color1=0xb1b1b1&amp;color2=0xd0d0d0&amp;hl=nl_NL&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="385" src="http://www.youtube.com/v/lzRKEv6cHuk&amp;color1=0xb1b1b1&amp;color2=0xd0d0d0&amp;hl=nl_NL&amp;feature=player_embedded&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=the+bucket+list+-+http://b2l.me/ac7kh6&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.kennethvr.be/blog/2010/07/28/the-bucket-list/&amp;title=the+bucket+list" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.kennethvr.be/blog/2010/07/28/the-bucket-list/&amp;t=the+bucket+list" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=the+bucket+list&amp;body=Link: http://www.kennethvr.be/blog/2010/07/28/the-bucket-list/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Here%27s%20a%20nice%20project%2C%20perhaps%20I%20could%20make%20my%20own%20list%20of%20things%20that%20I%20want%20to%20do%20before%20I%20die...%0D%0A%0D%0A" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22the%20bucket%20list%22&amp;body=Link: http://www.kennethvr.be/blog/2010/07/28/the-bucket-list/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Here%27s%20a%20nice%20project%2C%20perhaps%20I%20could%20make%20my%20own%20list%20of%20things%20that%20I%20want%20to%20do%20before%20I%20die...%0D%0A%0D%0A" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.kennethvr.be/blog/2010/07/28/the-bucket-list/&amp;n=the+bucket+list&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.kennethvr.be/blog/2010/07/28/the-bucket-list/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.kennethvr.be/blog/2010/07/28/the-bucket-list/&amp;title=the+bucket+list" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.kennethvr.be/blog/2010/07/28/the-bucket-list/&amp;title=the+bucket+list&amp;summary=Here%27s%20a%20nice%20project%2C%20perhaps%20I%20could%20make%20my%20own%20list%20of%20things%20that%20I%20want%20to%20do%20before%20I%20die...%0D%0A%0D%0A&amp;source=KennethVR" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.kennethvr.be/blog/2010/07/28/the-bucket-list/&amp;title=the+bucket+list" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<img src="http://feeds.feedburner.com/~r/Kennethvr/~4/jKMDd7sEXRI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kennethvr.be/blog/2010/07/28/the-bucket-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kennethvr.be/blog/2010/07/28/the-bucket-list/</feedburner:origLink></item>
		<item>
		<title>upgrade to the new version of PhpMyAdmin 3.3.4</title>
		<link>http://feedproxy.google.com/~r/Kennethvr/~3/v5-PFSfZos0/</link>
		<comments>http://www.kennethvr.be/blog/2010/07/12/upgrade-to-the-new-version-of-phpmyadmin-3-3-4/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 14:21:24 +0000</pubDate>
		<dc:creator>Kenneth van Rumste</dc:creator>
				<category><![CDATA[DEVelopment EXPerience]]></category>
		<category><![CDATA[study references]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[wamp]]></category>

		<guid isPermaLink="false">http://www.kennethvr.be/blog/?p=1541</guid>
		<description><![CDATA[Since 28th of June, the new version of phpMyAdmin 3.3.4 came out and here is how you can upgrade your previously installed version to the newer one. My setup is on Windows with Wamp so if you have another local host running, you’ll have to adapt to your way of working, but I’ll bet that [...]]]></description>
			<content:encoded><![CDATA[<p>Since 28th of June, the new version of phpMyAdmin 3.3.4 came out and here is how you can upgrade your previously installed version to the newer one.<br />
My setup is on Windows with Wamp so if you have another local host running, you’ll have to adapt to your way of working, but I’ll bet that the difference isn’t that big.</p>
<p>My start screen looked something like this, on which we can see the older version and obviously it’s time to upgrade.</p>
<p style="text-align: center;"><a href="http://www.kennethvr.be/blog/wp-content/uploads/oldversion.jpg"><img class="size-full wp-image-1542 aligncenter" title="oldversion" src="http://www.kennethvr.be/blog/wp-content/uploads/oldversion.jpg" alt="" width="400" height="400" /></a></p>
<p style="text-align: left;">Go to the download page and download the latest version you prefer. As my whole environment is set in English I just select the <a href="http://sourceforge.net/projects/phpmyadmin/files%2FphpMyAdmin%2F3.3.4%2FphpMyAdmin-3.3.4-english.7z/download#!md5!323edbe2a48ba71dfdf1fc73069c1742" target="_blank">phpMyAdmin-3.3.4-english.7z</a> version.</p>
<p>Second step is to extract the downloaded files to your local location and set the rights as you prefer. This can be done in different ways but I prefer the manual way, this is done by copying the config.sample.inc.php, renaming it to config.inc.php and change the preferences in the file as you prefer.</p>
<p>In my case the only two lines that had to be changed where:</p>
<pre class="brush: php;">
$cfg['Servers'][$i]['controluser'] = 'root';
$cfg['Servers'][$i]['controlpass'] = 'blabla';
</pre>
<p>If you need more information, it can be found in the documentation included in the package (documentation.txt).</p>
<p>If we go to the location on our local host now (in my case http://localhost/phpMyAdmin/) we get an error saying that we don’t have permissions to view this page.</p>
<p>In order to get this working we need to set the phpmyadmin.conf file and adapt it, the alias and directory need to be adapted to the freshly installed version.</p>
<pre class="brush: php;">
Alias /phpmyadmin &quot;C:\wamp\apps\phpMyAdmin-3.3.4-english&quot;

# to give access to phpmyadmin from outside
# replace the lines
#
#        Order Deny,Allow
#	Deny from all
#	Allow from 127.0.0.1
#
# by
#
#        Order Allow,Deny
#   Allow from all
#

&lt;Directory &quot;C:\wamp\apps\phpMyAdmin-3.3.4-english/&quot;&gt;
    Options Indexes FollowSymLinks MultiViews
    AllowOverride all
        Order Deny,Allow
	Deny from all
	Allow from 127.0.0.1
&lt;/Directory&gt;
</pre>
<p>After restarting your local wamp, you’ll get the correct and new version of phpMyAdmin in your browser.</p>
<p><a href="http://www.kennethvr.be/blog/wp-content/uploads/newversion.jpg"><img class="aligncenter size-full wp-image-1543" title="newversion" src="http://www.kennethvr.be/blog/wp-content/uploads/newversion.jpg" alt="" width="400" height="400" /></a></p>
<p>Have fun.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=upgrade+to+the+new+version+of+PhpMyAdmin+3.3.4+-+http://b2l.me/aaaymj&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.kennethvr.be/blog/2010/07/12/upgrade-to-the-new-version-of-phpmyadmin-3-3-4/&amp;title=upgrade+to+the+new+version+of+PhpMyAdmin+3.3.4" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.kennethvr.be/blog/2010/07/12/upgrade-to-the-new-version-of-phpmyadmin-3-3-4/&amp;t=upgrade+to+the+new+version+of+PhpMyAdmin+3.3.4" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=upgrade+to+the+new+version+of+PhpMyAdmin+3.3.4&amp;body=Link: http://www.kennethvr.be/blog/2010/07/12/upgrade-to-the-new-version-of-phpmyadmin-3-3-4/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Since%2028th%20of%20June%2C%20the%20new%20version%20of%20phpMyAdmin%203.3.4%20came%20out%20and%20here%20is%20how%20you%20can%20upgrade%20your%20previously%20installed%20version%20to%20the%20newer%20one.%0D%0AMy%20setup%20is%20on%20Windows%20with%20Wamp%20so%20if%20you%20have%20another%20local%20host%20running%2C%20you%E2%80%99ll%20have%20to%20adapt%20to%20your%20way%20of%20working%2C%20but%20I%E2%80%99ll%20bet%20that%20the%20dif" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22upgrade%20to%20the%20new%20version%20of%20PhpMyAdmin%203.3.4%22&amp;body=Link: http://www.kennethvr.be/blog/2010/07/12/upgrade-to-the-new-version-of-phpmyadmin-3-3-4/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Since%2028th%20of%20June%2C%20the%20new%20version%20of%20phpMyAdmin%203.3.4%20came%20out%20and%20here%20is%20how%20you%20can%20upgrade%20your%20previously%20installed%20version%20to%20the%20newer%20one.%0D%0AMy%20setup%20is%20on%20Windows%20with%20Wamp%20so%20if%20you%20have%20another%20local%20host%20running%2C%20you%E2%80%99ll%20have%20to%20adapt%20to%20your%20way%20of%20working%2C%20but%20I%E2%80%99ll%20bet%20that%20the%20dif" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.kennethvr.be/blog/2010/07/12/upgrade-to-the-new-version-of-phpmyadmin-3-3-4/&amp;n=upgrade+to+the+new+version+of+PhpMyAdmin+3.3.4&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.kennethvr.be/blog/2010/07/12/upgrade-to-the-new-version-of-phpmyadmin-3-3-4/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.kennethvr.be/blog/2010/07/12/upgrade-to-the-new-version-of-phpmyadmin-3-3-4/&amp;title=upgrade+to+the+new+version+of+PhpMyAdmin+3.3.4" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.kennethvr.be/blog/2010/07/12/upgrade-to-the-new-version-of-phpmyadmin-3-3-4/&amp;title=upgrade+to+the+new+version+of+PhpMyAdmin+3.3.4&amp;summary=Since%2028th%20of%20June%2C%20the%20new%20version%20of%20phpMyAdmin%203.3.4%20came%20out%20and%20here%20is%20how%20you%20can%20upgrade%20your%20previously%20installed%20version%20to%20the%20newer%20one.%0D%0AMy%20setup%20is%20on%20Windows%20with%20Wamp%20so%20if%20you%20have%20another%20local%20host%20running%2C%20you%E2%80%99ll%20have%20to%20adapt%20to%20your%20way%20of%20working%2C%20but%20I%E2%80%99ll%20bet%20that%20the%20dif&amp;source=KennethVR" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.kennethvr.be/blog/2010/07/12/upgrade-to-the-new-version-of-phpmyadmin-3-3-4/&amp;title=upgrade+to+the+new+version+of+PhpMyAdmin+3.3.4" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<img src="http://feeds.feedburner.com/~r/Kennethvr/~4/v5-PFSfZos0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kennethvr.be/blog/2010/07/12/upgrade-to-the-new-version-of-phpmyadmin-3-3-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kennethvr.be/blog/2010/07/12/upgrade-to-the-new-version-of-phpmyadmin-3-3-4/</feedburner:origLink></item>
		<item>
		<title>Google Internet Summit 2009: The Future</title>
		<link>http://feedproxy.google.com/~r/Kennethvr/~3/2rZ_60Hq7To/</link>
		<comments>http://www.kennethvr.be/blog/2010/07/09/google-internet-summit-2009-the-future/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 10:11:16 +0000</pubDate>
		<dc:creator>Kenneth van Rumste</dc:creator>
				<category><![CDATA[entertainment]]></category>
		<category><![CDATA[Chip Elliot]]></category>
		<category><![CDATA[future]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[moore]]></category>
		<category><![CDATA[Nick McKeown]]></category>
		<category><![CDATA[Paul Saffo]]></category>
		<category><![CDATA[robots]]></category>

		<guid isPermaLink="false">http://www.kennethvr.be/blog/?p=1535</guid>
		<description><![CDATA[Here is a really really long video on the future of the internet by Chip Elliot, Nick McKeown, and Paul Saffo. One of the most interesting things is on 1:05:00 where he starts talking about robots becoming smarter than people. His example is about cars driving a race, without any human interaction, on a track [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a really really long video on the future of the internet by Chip Elliot, Nick McKeown, and Paul Saffo.<br />
One of the most interesting things is on 1:05:00 where he starts talking about robots becoming smarter than people.<br />
His example is about cars driving a race, without any human interaction, on a track just using sensors. Just a half hour before the race, where 9 out of ten cars get to the finish, an accident happens with real humans down the road and this confirms his theory on robots becoming better then people.</p>
<p>I believe that this is happening indeed, the only question is: When will robots take all possible issues and influences into account that only can be done by human common sense?<br />
That and the enormous amount of data that has to be processed will be the biggest issues to solve in the future.<br />
The amount of data of what is happening with us and around us increases on a daily basis and basic sensors won&#8217;t be sufficient&#8230;</p>
<p>I&#8217;m really curious where this is all heading. Following <a href="http://en.wikipedia.org/wiki/Moore's_law" target="_blank">Moore&#8217;s law</a>, doubling everything in the next 2 years, I will outlive all these inventions <img src='http://www.kennethvr.be/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>That is off course, if I stop drinking those loads of coffee&#8230;</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/YP2Rp5x46OQ&amp;hl=en_US&amp;fs=1?rel=0&amp;color1=0x5d1719&amp;color2=0xcd311b&amp;hd=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="385" src="http://www.youtube.com/v/YP2Rp5x46OQ&amp;hl=en_US&amp;fs=1?rel=0&amp;color1=0x5d1719&amp;color2=0xcd311b&amp;hd=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Google+Internet+Summit+2009%3A+The+Future+-+http://b2l.me/9v7n6&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.kennethvr.be/blog/2010/07/09/google-internet-summit-2009-the-future/&amp;title=Google+Internet+Summit+2009%3A+The+Future" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.kennethvr.be/blog/2010/07/09/google-internet-summit-2009-the-future/&amp;t=Google+Internet+Summit+2009%3A+The+Future" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Google+Internet+Summit+2009%3A+The+Future&amp;body=Link: http://www.kennethvr.be/blog/2010/07/09/google-internet-summit-2009-the-future/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Here%20is%20a%20really%20really%20long%20video%20on%20the%20future%20of%20the%20internet%20by%20Chip%20Elliot%2C%20Nick%20McKeown%2C%20and%20Paul%20Saffo.%0D%0AOne%20of%20the%20most%20interesting%20things%20is%20on%201%3A05%3A00%20where%20he%20starts%20talking%20about%20robots%20becoming%20smarter%20than%20people.%0D%0AHis%20example%20is%20about%20cars%20driving%20a%20race%2C%20without%20any%20human%20interaction" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Google%20Internet%20Summit%202009%3A%20The%20Future%22&amp;body=Link: http://www.kennethvr.be/blog/2010/07/09/google-internet-summit-2009-the-future/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Here%20is%20a%20really%20really%20long%20video%20on%20the%20future%20of%20the%20internet%20by%20Chip%20Elliot%2C%20Nick%20McKeown%2C%20and%20Paul%20Saffo.%0D%0AOne%20of%20the%20most%20interesting%20things%20is%20on%201%3A05%3A00%20where%20he%20starts%20talking%20about%20robots%20becoming%20smarter%20than%20people.%0D%0AHis%20example%20is%20about%20cars%20driving%20a%20race%2C%20without%20any%20human%20interaction" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.kennethvr.be/blog/2010/07/09/google-internet-summit-2009-the-future/&amp;n=Google+Internet+Summit+2009%3A+The+Future&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.kennethvr.be/blog/2010/07/09/google-internet-summit-2009-the-future/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.kennethvr.be/blog/2010/07/09/google-internet-summit-2009-the-future/&amp;title=Google+Internet+Summit+2009%3A+The+Future" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.kennethvr.be/blog/2010/07/09/google-internet-summit-2009-the-future/&amp;title=Google+Internet+Summit+2009%3A+The+Future&amp;summary=Here%20is%20a%20really%20really%20long%20video%20on%20the%20future%20of%20the%20internet%20by%20Chip%20Elliot%2C%20Nick%20McKeown%2C%20and%20Paul%20Saffo.%0D%0AOne%20of%20the%20most%20interesting%20things%20is%20on%201%3A05%3A00%20where%20he%20starts%20talking%20about%20robots%20becoming%20smarter%20than%20people.%0D%0AHis%20example%20is%20about%20cars%20driving%20a%20race%2C%20without%20any%20human%20interaction&amp;source=KennethVR" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.kennethvr.be/blog/2010/07/09/google-internet-summit-2009-the-future/&amp;title=Google+Internet+Summit+2009%3A+The+Future" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<img src="http://feeds.feedburner.com/~r/Kennethvr/~4/2rZ_60Hq7To" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kennethvr.be/blog/2010/07/09/google-internet-summit-2009-the-future/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kennethvr.be/blog/2010/07/09/google-internet-summit-2009-the-future/</feedburner:origLink></item>
		<item>
		<title>Designing the Obama Campaign by Scott Thomas</title>
		<link>http://feedproxy.google.com/~r/Kennethvr/~3/wvSusUzkVtE/</link>
		<comments>http://www.kennethvr.be/blog/2010/06/03/designing-the-obama-campaign-by-scott-thomas/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 08:46:23 +0000</pubDate>
		<dc:creator>Kenneth van Rumste</dc:creator>
				<category><![CDATA[entertainment]]></category>
		<category><![CDATA[study references]]></category>
		<category><![CDATA[analyse]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Obama]]></category>
		<category><![CDATA[Onit]]></category>
		<category><![CDATA[Scott Thomas]]></category>
		<category><![CDATA[templates]]></category>
		<category><![CDATA[versioning]]></category>

		<guid isPermaLink="false">http://www.kennethvr.be/blog/?p=1522</guid>
		<description><![CDATA[Very inspirational speech by Scott Thomas, lead designer on the Obama Campaign. Every designer and project manager should take a look at this video, superb. The &#8216;on it&#8217; joke is one to remember, even the best make mistakes, roflmao! Tweet This! Share this on del.icio.us Share this on Facebook Email this via Gmail Email this [...]]]></description>
			<content:encoded><![CDATA[<p>Very inspirational speech by Scott Thomas, lead designer on the Obama Campaign.</p>
<p>Every designer and project manager should take a look at this video, superb.</p>
<p>The &#8216;on it&#8217; joke is one to remember, even the best make mistakes, roflmao!</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="600" height="450" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=5943199&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=e91c6b&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="600" height="450" src="http://vimeo.com/moogaloop.swf?clip_id=5943199&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=e91c6b&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Designing+the+Obama+Campaign+by+Scott+Thomas+-+http://b2l.me/ytybB&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.kennethvr.be/blog/2010/06/03/designing-the-obama-campaign-by-scott-thomas/&amp;title=Designing+the+Obama+Campaign+by+Scott+Thomas" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.kennethvr.be/blog/2010/06/03/designing-the-obama-campaign-by-scott-thomas/&amp;t=Designing+the+Obama+Campaign+by+Scott+Thomas" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Designing+the+Obama+Campaign+by+Scott+Thomas&amp;body=Link: http://www.kennethvr.be/blog/2010/06/03/designing-the-obama-campaign-by-scott-thomas/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Very%20inspirational%20speech%20by%20Scott%20Thomas%2C%20lead%20designer%20on%20the%20Obama%20Campaign.%0D%0A%0D%0AEvery%20designer%20and%20project%20manager%20should%20take%20a%20look%20at%20this%20video%2C%20superb.%0D%0A%0D%0AThe%20%27on%20it%27%20joke%20is%20one%20to%20remember%2C%20even%20the%20best%20make%20mistakes%2C%20roflmao%21%0D%0A%0D%0A" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Designing%20the%20Obama%20Campaign%20by%20Scott%20Thomas%22&amp;body=Link: http://www.kennethvr.be/blog/2010/06/03/designing-the-obama-campaign-by-scott-thomas/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Very%20inspirational%20speech%20by%20Scott%20Thomas%2C%20lead%20designer%20on%20the%20Obama%20Campaign.%0D%0A%0D%0AEvery%20designer%20and%20project%20manager%20should%20take%20a%20look%20at%20this%20video%2C%20superb.%0D%0A%0D%0AThe%20%27on%20it%27%20joke%20is%20one%20to%20remember%2C%20even%20the%20best%20make%20mistakes%2C%20roflmao%21%0D%0A%0D%0A" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.kennethvr.be/blog/2010/06/03/designing-the-obama-campaign-by-scott-thomas/&amp;n=Designing+the+Obama+Campaign+by+Scott+Thomas&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.kennethvr.be/blog/2010/06/03/designing-the-obama-campaign-by-scott-thomas/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.kennethvr.be/blog/2010/06/03/designing-the-obama-campaign-by-scott-thomas/&amp;title=Designing+the+Obama+Campaign+by+Scott+Thomas" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.kennethvr.be/blog/2010/06/03/designing-the-obama-campaign-by-scott-thomas/&amp;title=Designing+the+Obama+Campaign+by+Scott+Thomas&amp;summary=Very%20inspirational%20speech%20by%20Scott%20Thomas%2C%20lead%20designer%20on%20the%20Obama%20Campaign.%0D%0A%0D%0AEvery%20designer%20and%20project%20manager%20should%20take%20a%20look%20at%20this%20video%2C%20superb.%0D%0A%0D%0AThe%20%27on%20it%27%20joke%20is%20one%20to%20remember%2C%20even%20the%20best%20make%20mistakes%2C%20roflmao%21%0D%0A%0D%0A&amp;source=KennethVR" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.kennethvr.be/blog/2010/06/03/designing-the-obama-campaign-by-scott-thomas/&amp;title=Designing+the+Obama+Campaign+by+Scott+Thomas" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<img src="http://feeds.feedburner.com/~r/Kennethvr/~4/wvSusUzkVtE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kennethvr.be/blog/2010/06/03/designing-the-obama-campaign-by-scott-thomas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kennethvr.be/blog/2010/06/03/designing-the-obama-campaign-by-scott-thomas/</feedburner:origLink></item>
	</channel>
</rss>
