<?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>RonOnline &#187; Fun</title>
	<atom:link href="http://www.rononline.nl/tag/fun/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rononline.nl</link>
	<description>mount /dev/brain &#124;&#124; tail -f /var/log/thoughts &#62;&#62; /pub/www/rononline</description>
	<lastBuildDate>Sun, 25 Jul 2010 20:15:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1-alpha</generator>
		<item>
		<title>Pas op &#8230; zand!</title>
		<link>http://www.rononline.nl/3533/pas-op-zand/</link>
		<comments>http://www.rononline.nl/3533/pas-op-zand/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 08:37:43 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Nieuws]]></category>
		<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://www.rononline.nl/?p=3533</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="Zand" src="http://www.rononline.nl/wp-content/uploads/2010/01/8cdc_43.jpg" alt="" width="500" height="356" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rononline.nl/3533/pas-op-zand/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Geheugen onder linux</title>
		<link>http://www.rononline.nl/3531/geheugen-onder-linux/</link>
		<comments>http://www.rononline.nl/3531/geheugen-onder-linux/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 20:29:39 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Nieuws]]></category>
		<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://www.rononline.nl/?p=3531</guid>
		<description><![CDATA[Ooit wel eens geschrokken van de free -m output?! Lees dit verhaal maar eens dan &#8230; Many people new to Linux or computers in general have a poor understanding of how RAM works. On Linux systems, most users will look at `top` or use `free` to see the amount of memory installed and/or free. Below [...]]]></description>
			<content:encoded><![CDATA[<p>Ooit wel eens geschrokken van de free -m output?! Lees dit verhaal maar eens dan &#8230;<br />
<span id="more-3531"></span></p>
<p>Many people new to Linux or computers in general have a poor understanding of how RAM works. On Linux systems, most users will look at `top` or use `free` to see the amount of memory installed and/or free. Below is an example:</p>
<div class="code">
<pre>dayid@emiline ~ $ free -m
             total       used       free     shared    buffers     cached
Mem:          2024       1970         53          0         19       1669
-/+ buffers/cache:        281       1742
Swap:         1953          4       1948</pre>
</div>
<p>At first glance, they may look at their machine with 2GB of RAM and wonder how they only have 53MB free! While this is true, the surprise, fear, or angst about this comes from a misunderstanding.</p>
<p>We could take a trip to a million places for this horrible analogy, but let’s pretend we’re on a country farm.</p>
<p>Rather than working with 2024MB of RAM and 1953MB of SWAP, we’ll say we’ve got 20 beds in the house, and 20 beds in the barn.</p>
<p>Rather than programs we’ll have people occupying the space.</p>
<p>For our purposes, ignore costs of cleaning the bedding, water, etc.</p>
<p>The house can hold active workers or non-active workers.</p>
<p>Due to its distance and the time to get to/from it, the barn can only hold non-active workers. When a worker is called from the barn they will have to pass through the house and stay in the house while they work.</p>
<ul>
<li>10 laborers show up to a job. Since the house is closer to the food, showers, and work they’ll be doing, we let them stay in the house.</li>
<li><strong>10 of our 20 beds are used by active workers.</strong></li>
<li>Our farm in `free -m`:
<div class="code-wide">
<pre>                   total       used         free       shared      buffers      cached
House:                20         10           10            0            0           0
-/+ buffers/cache:               10           10
Barn:                 20          0           20</pre>
</div>
</li>
<li>8 more people show up for another job. They also stay in the house since we have the space for them.</li>
<li><strong>18 of our 20 beds are used by active workers.</strong></li>
<li>Our farm in `free -m`:
<div class="code-wide">
<pre>                   total       used         free       shared      buffers      cached
House:                20         18            2            0            0           0
-/+ buffers/cache:               18            2
Barn:                 20          0           20</pre>
</div>
</li>
<li>The first job is over, we no longer need to keep around the first 10 laborers; however, letting them stay doesn’t cost us anything, as if they weren’t there the beds would just be empty (i.e., go to waste).</li>
<li><strong>18 of 20 beds are used. 8 by active workers, 10 by non-active workers.</strong></li>
<li>Our farm in `free -m`:
<div class="code-wide">
<pre>                   total       used         free       shared      buffers      cached
House:                20         18            2            0            0          10
-/+ buffers/cache:                8           12
Barn:                 20          0           20</pre>
</div>
</li>
<li>Let’s take a timeout and review the above output. Right now we have 20 rooms. 18 are being used so only 2 are free. However, since 10 workers aren’t being used, they are in cache – kept around because we have no reason to kick them out – so, we actually have an operating space of 12 workers we could hire. 2 to stay in the unused rooms, and 10 to replace those that are already here.</li>
<li>We have a new job on the farm, so we have 4 new people show up. We do not have enough beds for them. 2 of the 10 who are not active leave. We move in those 4 new people.</li>
<li><strong>20 of 20 beds are used. 12 by active workers, 8 by non-active workers.</strong></li>
<li>Our farm:
<div class="code-wide">
<pre>                   total       used         free       shared      buffers      cached
House:                20         20            0            0            0           8
-/+ buffers/cache:               12            8
Barn:                 20          0           20</pre>
</div>
</li>
<li>Right now we have 20 rooms filled. 8 are filled by people who aren’t working though, so technically we have 8 beds we can use if we need to. Now let’s get crazy.</li>
<li>It’s production season and we have a lot to do around the farm. We setup another program and need to hire 14 new workers for it. We’ll have to kick out the 8 non-active workers and move in 8 of the new workers. However, because we run out of rooms in the house, our least important workers will have to stay in the barn. The barn is still good storing area, but it will take them longer to get to and from the job each time they are required to.</li>
<li><strong>20 of 20 beds are used by active workers. 6 rooms in the barn are used.</strong></li>
<li>Our farm:
<div class="code-wide">
<pre>                   total       used         free       shared      buffers      cached
House:                20         20            0           0            0            0
-/+ buffers/cache:               20            0
Barn:                 20          6           14</pre>
</div>
</li>
<li>Now, things calm down again and only 4 workers are going to remain active. We’re not going to toss out the rest though as they’re not harming anything just taking up space (at least not until we need the space again)</li>
<li>Our farm:
<div class="code-wide">
<pre>                   total       used         free       shared      buffers      cached
House:                20         20            0           0            0           16
-/+ buffers/cache:                4           16
Barn:                 20          6           14</pre>
</div>
</li>
<li>That’s right, our “free” stays 0, as we still have no space available. The important thing to look at here is how much do we have available if we clean out the buffers and cache – which are not necessary to keep, but we generally keep until it needs to be discard.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.rononline.nl/3531/geheugen-onder-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Verkeerde vak</title>
		<link>http://www.rononline.nl/3529/verkeerde-vak/</link>
		<comments>http://www.rononline.nl/3529/verkeerde-vak/#comments</comments>
		<pubDate>Sun, 27 Dec 2009 22:38:48 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Nieuws]]></category>
		<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://www.rononline.nl/?p=3529</guid>
		<description><![CDATA[Je zit in het verkeerde vak]]></description>
			<content:encoded><![CDATA[<p>Je zit in het verkeerde vak</p>
<!-- ProPlayer by Isa Goksu --><div name="mediaspace" id="mediaspace"><div class="pro-player-container" width="530px" height="360px"><div id="pro-player-3529pp-single-4c53318e4ea1e"></div></div></div><script type="text/javascript" charset="utf-8">var flashvars = {width: "530",height: "360",autostart: "false",repeat: "false",backcolor: "111111",frontcolor: "cccccc",lightcolor: "66cc00",stretching: "fill",enablejs: "true",mute: "false",skin: "http://www.rononline.nl/wp-content/plugins/proplayer/players/skins/nacht.swf",image: "http://www.rononline.nl/wp-content/plugins/proplayer/players/preview.png",plugins: "",javascriptid: "3529pp-single-4c53318e4ea1e",image: "http://www.rononline.nl/wp-content/plugins/proplayer/players/preview.png",file: 'http://www.rononline.nl/wp-content/plugins/proplayer/playlist-controller.php?pp_playlist_id=3529pp-single-4c53318e4ea1e&sid=1280520590'};var params = {wmode: "transparent",allowfullscreen: "true",allowscriptaccess: "always",allownetworking: "all"};var attributes = {id: "obj-pro-player-3529pp-single-4c53318e4ea1e",name: "obj-pro-player-3529pp-single-4c53318e4ea1e"};swfobject.embedSWF("http://www.rononline.nl/wp-content/plugins/proplayer/players/player.swf", "pro-player-3529pp-single-4c53318e4ea1e", "530", "360", "9.0.0", false, flashvars, params, attributes);</script>
]]></content:encoded>
			<wfw:commentRss>http://www.rononline.nl/3529/verkeerde-vak/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Broodje Bakpao</title>
		<link>http://www.rononline.nl/3524/broodje-bakpao/</link>
		<comments>http://www.rononline.nl/3524/broodje-bakpao/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 19:34:51 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Nieuws]]></category>
		<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://www.rononline.nl/?p=3524</guid>
		<description><![CDATA[In navolging op het vorige artikel &#8230; Het nummer van Broodje Bakpao : En hier de Making Of van deze clip:]]></description>
			<content:encoded><![CDATA[<p>In navolging op het vorige artikel &#8230;</p>
<p>Het nummer van Broodje Bakpao :</p>
<p><span id="more-3524"></span></p>
<!-- ProPlayer by Isa Goksu --><div name="mediaspace" id="mediaspace"><div class="pro-player-container" width="485px" height="365px"><div id="pro-player-3524pp-single-4c53318e547f3"></div></div></div><script type="text/javascript" charset="utf-8">var flashvars = {width: "485",height: "365",autostart: "false",repeat: "false",backcolor: "111111",frontcolor: "cccccc",lightcolor: "66cc00",stretching: "fill",enablejs: "true",mute: "false",skin: "http://www.rononline.nl/wp-content/plugins/proplayer/players/skins/nacht.swf",image: "http://www.rononline.nl/wp-content/plugins/proplayer/players/preview.png",plugins: "",javascriptid: "3524pp-single-4c53318e547f3",image: "http://www.rononline.nl/wp-content/plugins/proplayer/players/preview.png",file: 'http://www.rononline.nl/wp-content/plugins/proplayer/playlist-controller.php?pp_playlist_id=3524pp-single-4c53318e547f3&sid=1280520590'};var params = {wmode: "transparent",allowfullscreen: "true",allowscriptaccess: "always",allownetworking: "all"};var attributes = {id: "obj-pro-player-3524pp-single-4c53318e547f3",name: "obj-pro-player-3524pp-single-4c53318e547f3"};swfobject.embedSWF("http://www.rononline.nl/wp-content/plugins/proplayer/players/player.swf", "pro-player-3524pp-single-4c53318e547f3", "485", "365", "9.0.0", false, flashvars, params, attributes);</script>
<p>En hier de Making Of van deze clip:</p>
<!-- ProPlayer by Isa Goksu --><div name="mediaspace" id="mediaspace"><div class="pro-player-container" width="485px" height="365px"><div id="pro-player-3524pp-single-4c53318e94922"></div></div></div><script type="text/javascript" charset="utf-8">var flashvars = {width: "485",height: "365",autostart: "false",repeat: "false",backcolor: "111111",frontcolor: "cccccc",lightcolor: "66cc00",stretching: "fill",enablejs: "true",mute: "false",skin: "http://www.rononline.nl/wp-content/plugins/proplayer/players/skins/nacht.swf",image: "http://www.rononline.nl/wp-content/plugins/proplayer/players/preview.png",plugins: "",javascriptid: "3524pp-single-4c53318e94922",image: "http://www.rononline.nl/wp-content/plugins/proplayer/players/preview.png",file: 'http://www.rononline.nl/wp-content/plugins/proplayer/playlist-controller.php?pp_playlist_id=3524pp-single-4c53318e94922&sid=1280520590'};var params = {wmode: "transparent",allowfullscreen: "true",allowscriptaccess: "always",allownetworking: "all"};var attributes = {id: "obj-pro-player-3524pp-single-4c53318e94922",name: "obj-pro-player-3524pp-single-4c53318e94922"};swfobject.embedSWF("http://www.rononline.nl/wp-content/plugins/proplayer/players/player.swf", "pro-player-3524pp-single-4c53318e94922", "485", "365", "9.0.0", false, flashvars, params, attributes);</script>
]]></content:encoded>
			<wfw:commentRss>http://www.rononline.nl/3524/broodje-bakpao/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Kids &#8230;</title>
		<link>http://www.rononline.nl/3520/new-kids/</link>
		<comments>http://www.rononline.nl/3520/new-kids/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 19:31:06 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Nieuws]]></category>
		<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://www.rononline.nl/?p=3520</guid>
		<description><![CDATA[Schultenbräu, lange matten, gabbermuziek en slippers met witte sokken. ‘Hier met die bal, jongeh!’ Het Brabantse tuig terroriseert een camping en sloopt met zichtbaar plezier andermans spullen, door bijvoorbeeld met een heftruck over kampeertentjes heen te rijden. Welkom in de wereld van New Kids, de absurde tv-serie over een groep hangjongeren in het Brabantse dorp [...]]]></description>
			<content:encoded><![CDATA[<p><em><a class="thickbox" href="http://www.rononline.nl/wp-content/uploads/2009/12/c852_741581056_6_3x4y.jpeg"><img class="alignleft" title="nkotb" src="http://www.rononline.nl/wp-content/uploads/2009/12/c852_741581056_6_3x4y.jpeg" alt="" width="252" height="163" /></a>Schultenbräu, lange matten, gabbermuziek en slippers met witte sokken. </em></p>
<p>‘Hier met die bal, jongeh!’ Het Brabantse tuig terroriseert een camping en sloopt met zichtbaar plezier andermans spullen, door bijvoorbeeld met een heftruck over kampeertentjes heen te rijden. Welkom in de wereld van New Kids, de absurde tv-serie over een groep hangjongeren in het Brabantse dorp Maaskantje. De makers van het programma zijn Steffen Haars en Flip van der Kuil, die eerder furore maakten als duo in MTV’s liftprogramma The trip en als makers van Depulpshow op Veronica. Vooral met deze laatste show, een mengeling van hondsbrutale acties en absurde sketches, verwierven ze bekendheid. Wie herinnert zich bijvoorbeeld niet de minuut gratis winkelen, waarbij zogenaamd de verkeerde supermarkt bleek te zijn uitgekozen? Of het moment waarop de jongens voor honderden guldens aan spullen afrekenden bij de Gamma, om vervolgens doodleuk weg te lopen omdat ze hun ‘portemonnee waren vergeten’?</p>
<!-- ProPlayer by Isa Goksu --><div name="mediaspace" id="mediaspace"><div class="pro-player-container" width="475px" height="360px"><div id="pro-player-3520pp-single-4c53318ebfc89"></div></div></div><script type="text/javascript" charset="utf-8">var flashvars = {width: "475",height: "360",autostart: "false",repeat: "false",backcolor: "111111",frontcolor: "cccccc",lightcolor: "66cc00",stretching: "fill",enablejs: "true",mute: "false",skin: "http://www.rononline.nl/wp-content/plugins/proplayer/players/skins/nacht.swf",image: "http://www.rononline.nl/wp-content/plugins/proplayer/players/preview.png",plugins: "",javascriptid: "3520pp-single-4c53318ebfc89",image: "http://www.rononline.nl/wp-content/plugins/proplayer/players/preview.png",file: 'http://www.rononline.nl/wp-content/plugins/proplayer/playlist-controller.php?pp_playlist_id=3520pp-single-4c53318ebfc89&sid=1280520591'};var params = {wmode: "transparent",allowfullscreen: "true",allowscriptaccess: "always",allownetworking: "all"};var attributes = {id: "obj-pro-player-3520pp-single-4c53318ebfc89",name: "obj-pro-player-3520pp-single-4c53318ebfc89"};swfobject.embedSWF("http://www.rononline.nl/wp-content/plugins/proplayer/players/player.swf", "pro-player-3520pp-single-4c53318ebfc89", "475", "360", "9.0.0", false, flashvars, params, attributes);</script>
<p><span id="more-3520"></span><strong>Maaskantje</strong><br />
Grofweg dezelfde groep uit Depulpshow keert terug in New Kids. ‘Depulpshow begon doordat we met een groep vrienden filmpjes maakten uit verveling, met humor als belangrijkste drijfveer. Ook nu maken we vooral sketches omdat we ze grappig vinden’, verklaart Steffen Haars in een interview op de perspresentatie van Comedy Central. Hij wordt geflankeerd door Flip van der Kuil, die zich slechts sporadisch in het gesprek mengt. De serie is vanaf vorige maand voor het eerst te zien op tv, maar er zijn reeds twee seizoenen verschenen op internet. Centraal in de serie staat het dorpje Maaskantje, waar Steffen en zijn jongere broer Tim zijn opgegroeid. ‘Vaak denken mensen dat het een fictieve plaats is, maar het dorp bestaat echt. Er wonen zo’n 1000 mensen. Tijdens de opnames stond het hele dorp op zijn kop.’ Tim speelt ook mee in de serie als Gerrie – een van de vijf vaste karakters.<br />
<!-- ProPlayer by Isa Goksu --><div name="mediaspace" id="mediaspace"><div class="pro-player-container" width="475px" height="365px"><div id="pro-player-3520pp-single-4c53318f0b1e3"></div></div></div><script type="text/javascript" charset="utf-8">var flashvars = {width: "475",height: "365",autostart: "false",repeat: "false",backcolor: "111111",frontcolor: "cccccc",lightcolor: "66cc00",stretching: "fill",enablejs: "true",mute: "false",skin: "http://www.rononline.nl/wp-content/plugins/proplayer/players/skins/nacht.swf",image: "http://www.rononline.nl/wp-content/plugins/proplayer/players/preview.png",plugins: "",javascriptid: "3520pp-single-4c53318f0b1e3",image: "http://www.rononline.nl/wp-content/plugins/proplayer/players/preview.png",file: 'http://www.rononline.nl/wp-content/plugins/proplayer/playlist-controller.php?pp_playlist_id=3520pp-single-4c53318f0b1e3&sid=1280520591'};var params = {wmode: "transparent",allowfullscreen: "true",allowscriptaccess: "always",allownetworking: "all"};var attributes = {id: "obj-pro-player-3520pp-single-4c53318f0b1e3",name: "obj-pro-player-3520pp-single-4c53318f0b1e3"};swfobject.embedSWF("http://www.rononline.nl/wp-content/plugins/proplayer/players/player.swf", "pro-player-3520pp-single-4c53318f0b1e3", "475", "365", "9.0.0", false, flashvars, params, attributes);</script><br />
Het nieuwe seizoen blijft in de lijn van de voorgaande seizoenen. De afleveringen bestaan nog steeds uit korte sketches en duren slechts drie minuten. Dat is de juiste lengte volgens Steffen: ‘Het kan zo gemakkelijk online worden bekeken en doorgemaild. Het hoort echter wel op tv thuis, het is tof dat dat nu gebeurt.’ Een nieuwe ontwikkeling in de serie is dat er flink is geschrapt in de personages. New Kids draait nu alleen nog om de Brabantse hangjongeren Rikkert, Gerrie, Richard, Barrie en Robbie – de populairste figuren uit de eerdere seizoenen. Steffen: ‘Die karakters vonden we zelf het leukst. De kijkers kunnen ze nu beter leren kennen. Het zijn natuurlijk simpele gasten, maar er zit net iets meer achter.’</p>
<p><img class="aligncenter" src="http://www.rononline.nl/wp-content/uploads/2009/12/edace.jpg" alt="" width="500" height="426" /></p>
<p><strong>Anti-helden</strong><br />
De uitvalsbasis van het vijftal in de serie is ‘het pleintje’ in Maaskantje. Ze hangen rond, trappen rotzooi of werken te hete snacks naar binnen bij de snackbar – wat hilarische shots oplevert. De inspiratiebron voor New Kids is voornamelijk de eigen jeugd van de acteurs. ‘We zijn allemaal opgegroeid in kleine dorpjes in Brabant, waar we veel van dit soort gasten meemaakten. Ik vond ze toen al enorm interessant. Je ziet ze rondhangen bij een auto met luide muziek en daar bedenk je dan een grapje bij. Dat is eigenlijk de manier waarop we werken. Sowieso zijn we altijd erg van de anti-helden geweest, dat zijn we zelf ook.’ Lachend voegt Steffen toe: ‘We horen van dit soort gasten trouwens dat ze het zelf heel tof vinden. Het is niet de bedoeling om ze belachelijk te maken, we vergroten ze uit tot karikaturen’. Andere inspiratiebronnen die Steffen noemt zijn comedians als Will Ferrell (Old School, Anchorman) en Seth Rogen (Superbad). ‘Het meest putten we echter uit ons eigen leven, en onze eigen zieke geest.’ ‘En alcohol’, voegt Flip voor het eerst in het gesprek toe. ‘Alcohol en wiet, meer heb ik niet te zeggen’, zegt hij grijnzend.</p>
<p>Steffen en Flip schrijven de scenario’s en dialogen voor de serie voornamelijk zelf. ‘We zijn goed op elkaar afgestemd. Soms bedenkt Flip een situatie en dan maak ik de grap af. Vaak werkt het echter ook niet en is de grap niet leuk, dan gaan we weer verder met een nieuwe situatie.’ In het nieuwe seizoen gaan de New Kids dan ook vaak op pad, bijvoorbeeld naar de camping, de kermis of zelfs naar België om daar vuurwerk te kopen. Op de vraag of er na de serie nog plannen zijn voor iets groters, antwoordt Steffen enthousiast: ‘Ja, een film! Daar willen we heel graag geld voor hebben. Dit moet een film worden over dezelfde gasten die een avontuur beleven.’</p>
<p>Kijken kan op <a href="http://www.flabber.nl/newkidsontheblock" target="_blank">Flabber.nl</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rononline.nl/3520/new-kids/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Het blijft Nederland &#8230;</title>
		<link>http://www.rononline.nl/3518/het-blijft-nederland/</link>
		<comments>http://www.rononline.nl/3518/het-blijft-nederland/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 19:21:18 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Nieuws]]></category>
		<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://www.rononline.nl/?p=3518</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img alt="" src="http://www.rononline.nl/wp-content/uploads/2009/12/68e0_4203413422_61a9681d3d.jpg" class="alignnone" width="375" height="500" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rononline.nl/3518/het-blijft-nederland/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shoppen</title>
		<link>http://www.rononline.nl/3514/shoppen/</link>
		<comments>http://www.rononline.nl/3514/shoppen/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 22:29:49 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Nieuws]]></category>
		<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://www.rononline.nl/?p=3514</guid>
		<description><![CDATA[Schat?! Ga je mee winkelen?!]]></description>
			<content:encoded><![CDATA[<p>Schat?! Ga je mee winkelen?!<br />
<img src="http://www.rononline.nl/wp-content/uploads/2009/12/d4f8_9890ca-884.jpg" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rononline.nl/3514/shoppen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Biertje?!</title>
		<link>http://www.rononline.nl/3510/biertje-2/</link>
		<comments>http://www.rononline.nl/3510/biertje-2/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 15:56:00 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Nieuws]]></category>
		<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://www.rononline.nl/?p=3510</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img alt="" src="http://www.rononline.nl/wp-content/uploads/2009/12/3682_16835113.jpg" title="Biertje" class="alignnone" width="457" height="326" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rononline.nl/3510/biertje-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bohemian Rapsody</title>
		<link>http://www.rononline.nl/3494/bohemian-rapsody/</link>
		<comments>http://www.rononline.nl/3494/bohemian-rapsody/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 09:54:20 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Nieuws]]></category>
		<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://www.rononline.nl/?p=3494</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<!-- ProPlayer by Isa Goksu --><div name="mediaspace" id="mediaspace"><div class="pro-player-container" width="530px" height="360px"><div id="pro-player-3494pp-single-4c53318f349dc"></div></div></div><script type="text/javascript" charset="utf-8">var flashvars = {width: "530",height: "360",autostart: "false",repeat: "false",backcolor: "111111",frontcolor: "cccccc",lightcolor: "66cc00",stretching: "fill",enablejs: "true",mute: "false",skin: "http://www.rononline.nl/wp-content/plugins/proplayer/players/skins/nacht.swf",image: "http://www.rononline.nl/wp-content/plugins/proplayer/players/preview.png",plugins: "",javascriptid: "3494pp-single-4c53318f349dc",image: "http://www.rononline.nl/wp-content/plugins/proplayer/players/preview.png",file: 'http://www.rononline.nl/wp-content/plugins/proplayer/playlist-controller.php?pp_playlist_id=3494pp-single-4c53318f349dc&sid=1280520591'};var params = {wmode: "transparent",allowfullscreen: "true",allowscriptaccess: "always",allownetworking: "all"};var attributes = {id: "obj-pro-player-3494pp-single-4c53318f349dc",name: "obj-pro-player-3494pp-single-4c53318f349dc"};swfobject.embedSWF("http://www.rononline.nl/wp-content/plugins/proplayer/players/player.swf", "pro-player-3494pp-single-4c53318f349dc", "530", "360", "9.0.0", false, flashvars, params, attributes);</script>
]]></content:encoded>
			<wfw:commentRss>http://www.rononline.nl/3494/bohemian-rapsody/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>In de metro</title>
		<link>http://www.rononline.nl/3490/in-de-metro/</link>
		<comments>http://www.rononline.nl/3490/in-de-metro/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 21:47:52 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Nieuws]]></category>
		<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://www.rononline.nl/?p=3490</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img alt="" src="http://www.rononline.nl/wp-content/uploads/2009/11/d78f_zonx-de-picdump-mixed-52-44.jpg" title="Metro" class="alignnone" width="450" height="602" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rononline.nl/3490/in-de-metro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
