<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
	        <title>Mike van Rossum</title>
			<atom:link href="http://mikevanrossum.nl/feed.rss" rel="self" type="application/rss+xml"/>
	        <link>http://www.mikevanrossum.nl/</link>
	        <description>I blog about webdevelopment</description>
            			<item>
				<title>Visualizing our running progress</title>
				<link>http://mikevanrossum.nl/blog/2012/05/visualizing-our-running-progress/</link>
				<description>While I was running a couple of weeks back I was thinking about Nike&#8217;s new slogan for it&#8217;s Nike+ campaign. &#8220;Make it count!&#8221; it says, but for what? So I hacked up a little website that fetches all tweets send by the Nike+ app and bundles all our runs together per hour.



Make (&hellip;)</description>
				<pubDate>Thu, 10 May 2012 04:57:27 +0100</pubDate>
				<guid isPermaLink="true">http://mikevanrossum.nl/blog/2012/05/visualizing-our-running-progress/</guid>
			</item>
						<item>
				<title>Storing tweets using nodejs</title>
				<link>http://mikevanrossum.nl/blog/2012/04/storing-tweets-using-nodejs/</link>
				<description>Since I have my own VPS I&#8217;m constantly trying out new stuff. After messing around with nodejs I have my own little script (just over 100 lines) that connects to Twitter using their streaming API, get&#8217;s all tweets that contain certain words, do a minimal amount of parsing and (&hellip;)</description>
				<pubDate>Sat, 21 Apr 2012 07:27:21 +0100</pubDate>
				<guid isPermaLink="true">http://mikevanrossum.nl/blog/2012/04/storing-tweets-using-nodejs/</guid>
			</item>
						<item>
				<title>Music concerts, anno 2012</title>
				<link>http://mikevanrossum.nl/blog/2012/04/the-future-of-music-concerts/</link>
				<description>Tupac made his appearance on the music festival Coachella. The strange part is that he has been dead for over 15 years.



The thing that stands out to me is that the whole idea of a music concert is based around the fact that you get to live the concert. Seeing the artists, (&hellip;)</description>
				<pubDate>Mon, 16 Apr 2012 12:47:39 +0100</pubDate>
				<guid isPermaLink="true">http://mikevanrossum.nl/blog/2012/04/the-future-of-music-concerts/</guid>
			</item>
						<item>
				<title>Getting started with Processing.js</title>
				<link>http://mikevanrossum.nl/blog/2012/04/getting-started-with-processingjs/</link>
				<description>Lately I&#8217;ve been reading a book about data visualization. The book goes into the thought process of visualizing data for humans and also talks a lot about visual coding. All code in the book is Processing code, an extremely easy and fast way to visualize.

Last night I started (&hellip;)</description>
				<pubDate>Tue, 10 Apr 2012 09:56:13 +0100</pubDate>
				<guid isPermaLink="true">http://mikevanrossum.nl/blog/2012/04/getting-started-with-processingjs/</guid>
			</item>
						<item>
				<title>It?s not about about what it does</title>
				<link>http://mikevanrossum.nl/blog/2012/04/its-not-about-about-what-it-does/</link>
				<description>Last week I discovered a new app called Pair, it&#8217;s an extremely simple message app that doesn&#8217;t even cover the basic features of WhatsApp. It goes even further by limiting you to chat with a single person.

Behind those worthless &#8216;specs&#8217; I see a truly innovative app. This app (&hellip;)</description>
				<pubDate>Tue, 3 Apr 2012 10:08:46 +0100</pubDate>
				<guid isPermaLink="true">http://mikevanrossum.nl/blog/2012/04/its-not-about-about-what-it-does/</guid>
			</item>
						<item>
				<title>Open Graph as the semantic web?</title>
				<link>http://mikevanrossum.nl/blog/2012/03/open-graph-as-the-semantic-web/</link>
				<description>The internet plays a key part in how we envision the future. From a broad perspective we can see that a lot of services have shifted to the internet, as technology permits this number will grow even larger.

Projects like the internet of things think about how large amounts of (&hellip;)</description>
				<pubDate>Fri, 23 Mar 2012 09:53:34 +0100</pubDate>
				<guid isPermaLink="true">http://mikevanrossum.nl/blog/2012/03/open-graph-as-the-semantic-web/</guid>
			</item>
						<item>
				<title>Why the end of SEO gets us closer to the answer</title>
				<link>http://mikevanrossum.nl/blog/2012/03/why-the-end-of-seo-gets-us-closer-to-the-answer/</link>
				<description>SEO has played a huge part in the web the last couple of years, but it won&#8217;t last forever. Google announced this week that it will penalize overly optimized websites. This doesn&#8217;t really come as a shock to me when I start thinking about Google in general and the problem it is (&#8230;)</description>
				<pubDate>Mon, 19 Mar 2012 09:11:07 +0100</pubDate>
				<guid isPermaLink="true">http://mikevanrossum.nl/blog/2012/03/why-the-end-of-seo-gets-us-closer-to-the-answer/</guid>
			</item>
						<item>
				<title>How to prevent spam comments on your own PHP blog</title>
				<link>http://mikevanrossum.nl/blog/2012/03/how-to-prevent-spam-comments-on-your-own-php-blog/</link>
				<description>I&#8217;ve been building this website from the ground up, it&#8217;s great that I have all the freedom to build it however I want it. However this does mean I&#8217;m rewriting a lot of problems that has been solved before. 

This week for example I turned on my own commenting module which allows (&#8230;)</description>
				<pubDate>Thu, 8 Mar 2012 09:15:04 +0100</pubDate>
				<guid isPermaLink="true">http://mikevanrossum.nl/blog/2012/03/how-to-prevent-spam-comments-on-your-own-php-blog/</guid>
			</item>
						<item>
				<title>An easy way to manipulate data off dom using jQuery</title>
				<link>http://mikevanrossum.nl/blog/2012/03/an-easy-way-to-manipulate-data-off-dom-using-jquery/</link>
				<description>When you&#8217;re working with javascript you need to take the execution speed into account since its all being processed on the client. There are lots of best practices when it comes to working with websites. You should for example always minify and concatenate your scripts, and make (&#8230;)</description>
				<pubDate>Tue, 6 Mar 2012 01:52:13 +0100</pubDate>
				<guid isPermaLink="true">http://mikevanrossum.nl/blog/2012/03/an-easy-way-to-manipulate-data-off-dom-using-jquery/</guid>
			</item>
						<item>
				<title>Surviving in the present</title>
				<link>http://mikevanrossum.nl/blog/2012/03/surviving-in-the-present/</link>
				<description>I just read this very interesting article called &#8216;We, the Web Kids&#8217; about my generation. The article identifies some interesting problems with the current generation of people who have never lived without the web. 

It explains some very big differences between us and other generations, (&#8230;)</description>
				<pubDate>Sun, 4 Mar 2012 10:29:58 +0100</pubDate>
				<guid isPermaLink="true">http://mikevanrossum.nl/blog/2012/03/surviving-in-the-present/</guid>
			</item>
				</channel>
</rss>
<!--# feed served in: 0.16999 seconds -->