<?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>Elger&#039;s Weblog!</title>
	<atom:link href="http://elgerjonker.nl/feed/" rel="self" type="application/rss+xml" />
	<link>http://elgerjonker.nl</link>
	<description>Music and Amazing Original Content</description>
	<lastBuildDate>Sat, 17 Mar 2012 16:58:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Combining RRDtool with jpGraph for Heatmaps</title>
		<link>http://elgerjonker.nl/2012/03/combining-rrdtool-with-jpgraph-for-heatmaps/</link>
		<comments>http://elgerjonker.nl/2012/03/combining-rrdtool-with-jpgraph-for-heatmaps/#comments</comments>
		<pubDate>Sat, 17 Mar 2012 16:58:15 +0000</pubDate>
		<dc:creator>Elger</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Hack42]]></category>
		<category><![CDATA[relaxing]]></category>
		<category><![CDATA[graph]]></category>
		<category><![CDATA[heatman]]></category>
		<category><![CDATA[jpgraph]]></category>
		<category><![CDATA[matrix]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[png]]></category>
		<category><![CDATA[rrd]]></category>

		<guid isPermaLink="false">http://elgerjonker.nl/?p=1154</guid>
		<description><![CDATA[Yes it works. Story below. Results: &#160; &#160; How did he do it? Simple. This is a combination of RRD Tool, jpGraph and PHP. RRD provides the database with measurements, jpGraph provides heat map graphs and PHP glues it all together. (colors are taken from exploded creepers from minecraft). What am i seeing anyway? It [...]]]></description>
			<content:encoded><![CDATA[<p>Yes it works. Story below. Results:</p>
<p><a href="http://elgerjonker.nl/wp-content/uploads/2012/03/openByWeekDayHours-2.php_.png"><img class="aligncenter size-full wp-image-1157" title="openByWeekDayHours-2.php" src="http://elgerjonker.nl/wp-content/uploads/2012/03/openByWeekDayHours-2.php_.png" alt="" width="700" height="230" /></a></p>
<p>&nbsp;</p>
<p><a href="http://elgerjonker.nl/wp-content/uploads/2012/03/insane.png"><img class="aligncenter size-full wp-image-1155" title="insane" src="http://elgerjonker.nl/wp-content/uploads/2012/03/insane.png" alt="" width="700" height="230" /></a></p>
<p>&nbsp;</p>
<h2>How did he do it?</h2>
<p>Simple. This is a combination of RRD Tool, jpGraph and PHP. RRD provides the database with measurements, jpGraph provides heat map graphs and PHP glues it all together. (colors are taken from exploded creepers from minecraft).</p>
<h3>What am i seeing anyway?</h3>
<p>It looks cool, but you&#8217;re looking at a heat map of the open/closed state of our <a href="https://hack42.nl" target="_blank">hackerspace</a>. For the last year, we&#8217;ve measured if the <a href="https://hack42.nl" target="_blank">hackerspace</a> was opened or closed. We measured about every five minutes.</p>
<p>The average of the past three months is displayed in a granularity of hours. This roughly means 2000 measures for a single graph. It renders nearly instant.</p>
<h3>Step by step</h3>
<h4>Export measured values</h4>
<pre>rrdtool xport --start $e-$timespan --end $e --step 3600 --maxrows 4242 --enumds \
        DEF:st=../state.rrd:state:AVERAGE \
        CDEF:open=st,1,0,IF \
        XPORT:open:\"isopen\" \</pre>
<p>&nbsp;</p>
<h4>Spread the measured values by hours</h4>
<pre>foreach($measurements["data"]["row"] as $row) {
       switch ($row["t"] % 86400) {
           case 82800: $hourOpen[0] += $row["v0"]; break;
           case 0: $hourOpen[1] += $row["v0"]; break;</pre>
<p>&nbsp;</p>
<h4>Shift is six hours, so primetime is clearly visible</h4>
<pre>for($i=0;$i&lt;$steps;$i++){
       $element = array_shift($array);
       $array[] = $element;
   }</pre>
<p>&nbsp;</p>
<h4>Feed the data to jpgraph</h4>
<pre>$mp-&gt;colormap-&gt;SetMap($colormap);
unset($colormap);
$mp-&gt;SetCenterPos(0.5,0.47);
$mp-&gt;SetSize(0.75, 0.7);</pre>
<p>&nbsp;</p>
<h3>Other uses:</h3>
<p>The same type of graph can also be used to visualize the temperature in a day. To see how the temperature rises over time. I don&#8217;t think there will be a rewrite though, definition of done.</p>
<p>Note: the graph is supposed to give an estimate if <a href="https://hack42.nl" target="_blank">Hack42</a> is open or not.</p>
<h3>See also</h3>
<ul>
<li>More examples, in production: <a href="https://hack42.nl/spacestate/open/" target="_blank">https://hack42.nl/spacestate/open/</a></li>
<li>More background on my Hack42 project page: <a href="https://hack42.nl/wiki/Gebruiker:Stitch/OpenHeatmap" target="_blank">https://hack42.nl/wiki/Gebruiker:Stitch/OpenHeatmap</a></li>
</ul>
<ul>
<li>JPGraph homepage: <a href="http://jpgraph.net/" rel="nofollow" target="_blank">http://jpgraph.net/</a></li>
<li>RRDTool homepage: <a href="http://oss.oetiker.ch/rrdtool/" rel="nofollow" target="_blank">http://oss.oetiker.ch/rrdtool/</a></li>
<li>PHP homepage: <a href="http://php.net/" rel="nofollow" target="_blank">http://php.net/</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://elgerjonker.nl/2012/03/combining-rrdtool-with-jpgraph-for-heatmaps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OMGWTFBBQ Naar House flyer</title>
		<link>http://elgerjonker.nl/2012/03/omgwtfbbq-naar-house-flyer/</link>
		<comments>http://elgerjonker.nl/2012/03/omgwtfbbq-naar-house-flyer/#comments</comments>
		<pubDate>Sun, 11 Mar 2012 11:39:13 +0000</pubDate>
		<dc:creator>Elger</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[flyer]]></category>
		<category><![CDATA[house]]></category>
		<category><![CDATA[jeugd]]></category>
		<category><![CDATA[jongeren]]></category>
		<category><![CDATA[kapot]]></category>
		<category><![CDATA[levensgevaarlijk]]></category>
		<category><![CDATA[maakt]]></category>
		<category><![CDATA[Muziek]]></category>
		<category><![CDATA[naar]]></category>
		<category><![CDATA[satan]]></category>
		<category><![CDATA[stichting]]></category>

		<guid isPermaLink="false">http://elgerjonker.nl/?p=1146</guid>
		<description><![CDATA[Superbatsie came across an oldschool Dutch flyer regarding a semi-christian organization called &#8220;Naar House&#8221;. It associates House music with satan and warns of the unrepairable damage house music can inflict on your soul. The flyer i got was photograph, so i decided to remake it to a high-res print-ready version. What shame when such a [...]]]></description>
			<content:encoded><![CDATA[<p>Superbatsie came across an oldschool Dutch flyer regarding a semi-christian organization called &#8220;Naar House&#8221;. It associates House music with satan and warns of the unrepairable damage house music can inflict on your soul.</p>
<p>The flyer i got was photograph, so i decided to remake it to a high-res print-ready version. What shame when such a valuable document could not be reprinted (and burned) anymore.</p>
<table border="0">
<tbody>
<tr>
<td><img class="aligncenter  wp-image-1150" title="house-en-jij-original" src="http://elgerjonker.nl/wp-content/uploads/2012/03/house-en-jij-original.jpeg" alt="" width="290" height="389" /></td>
<td><img class="aligncenter size-full wp-image-1148" title="house-en-jij-small" src="http://elgerjonker.nl/wp-content/uploads/2012/03/house-en-jij-small.png" alt="" width="300" height="424" /></td>
</tr>
<tr>
<td style="text-align: center;">Above: the original.</td>
<td style="text-align: center;">Above: the reconstruction [<a href="http://elgerjonker.nl/?attachment_id=1148">small</a>] [<a href="http://elgerjonker.nl/?attachment_id=1151">medium</a>] [<a href="http://elgerjonker.nl/?attachment_id=1149">huge</a>]</td>
</tr>
</tbody>
</table>
<p style="text-align: center;">Download the A4 sized, 300dpi version here: [<a href="http://elgerjonker.nl/?attachment_id=1149">huge</a>] [<a href="http://elgerjonker.nl/?attachment_id=1151">medium</a>] [<a href="http://elgerjonker.nl/?attachment_id=1148">small</a>]</p>
<p style="text-align: center;">Enjoy! <img src='http://elgerjonker.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="text-align: center;">
<p>Did you know there are tons of Christian metal groups? Yes there are, and not even half bad.</p>
<p>Update: welcome to 2012: NOOOOOOOOOO the &#8216;Naar House&#8217; foundation still exists. It is now targeting <em>all popular music</em>. In their seemingly-happy-colorful-educational material, <a href="http://www.naarhouse.nl/files/352/OnderwijspakketDeinvloedvanpopmuziek.pdf">link</a>, you can read that pop music annihilates all you hold dear. It&#8217;s stuff nobody cares about. Let it stay that way. ALL GLORY TO THE <a href="http://futurama.wikia.com/wiki/Hypnotoad">HYPNOTOAD</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://elgerjonker.nl/2012/03/omgwtfbbq-naar-house-flyer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Laser Portraits</title>
		<link>http://elgerjonker.nl/2012/03/laser-portraits/</link>
		<comments>http://elgerjonker.nl/2012/03/laser-portraits/#comments</comments>
		<pubDate>Fri, 09 Mar 2012 10:47:10 +0000</pubDate>
		<dc:creator>Elger</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[retro]]></category>
		<category><![CDATA[t3h interw3bs!1]]></category>

		<guid isPermaLink="false">http://elgerjonker.nl/?p=1140</guid>
		<description><![CDATA[YES! I love this, all of this design just screams &#8220;NO&#8221; and defines an era of portraits! Check out more Laser Portraits! Stitch has one! Do you? &#160; Source material: Laserportrait background: http://www.dogwelder.com/wp-content/uploads/2010/03/lasers.jpg ofrom http://www.dogwelder.com/?p=42 Large stitch image: http://celebrielisilel.deviantart.com/art/Illustrator-Stitch-99289874 (by CelebrielIsilel)]]></description>
			<content:encoded><![CDATA[<p>YES! I love this, all of this design just screams &#8220;NO&#8221; and defines an era of portraits!</p>
<p>Check out more <a href="http://www.laserportraits.net/" target="_blank">Laser Portraits</a>!</p>
<p>Stitch has one! Do you?</p>
<p><a href="http://elgerjonker.nl/wp-content/uploads/2012/03/stitch_laserportrait_tiny.jpg"><img class="aligncenter size-full wp-image-1141" title="stitch_laserportrait_tiny" src="http://elgerjonker.nl/wp-content/uploads/2012/03/stitch_laserportrait_tiny.jpg" alt="" width="500" height="626" /></a></p>
<p>&nbsp;</p>
<p>Source material:</p>
<div lang="nl" dir="ltr">
<ul>
<li>Laserportrait background: <a href="http://www.dogwelder.com/wp-content/uploads/2010/03/lasers.jpg" rel="nofollow">http://www.dogwelder.com/wp-content/uploads/2010/03/lasers.jpg</a> ofrom <a href="http://www.dogwelder.com/?p=42" rel="nofollow">http://www.dogwelder.com/?p=42</a></li>
<li>Large stitch image: <a href="http://celebrielisilel.deviantart.com/art/Illustrator-Stitch-99289874" rel="nofollow">http://celebrielisilel.deviantart.com/art/Illustrator-Stitch-99289874</a> (by CelebrielIsilel)</li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://elgerjonker.nl/2012/03/laser-portraits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ROOAARR Radio, from the Rave Radio part 5 recording</title>
		<link>http://elgerjonker.nl/2012/02/rooaarr-radio-from-the-rave-radio-part-5-recording/</link>
		<comments>http://elgerjonker.nl/2012/02/rooaarr-radio-from-the-rave-radio-part-5-recording/#comments</comments>
		<pubDate>Sun, 26 Feb 2012 21:08:37 +0000</pubDate>
		<dc:creator>Elger</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Rave Radio]]></category>

		<guid isPermaLink="false">http://elgerjonker.nl/?p=1131</guid>
		<description><![CDATA[Been working on episode 5 of Rave Radio 2012. One of the outtakes is a huge ROAR taken to extremes with effects. It&#8217;s Roar Radio, coming up somewhere in early March&#8230; Check out the ROAR, and make sure you&#8217;re listening to it in high volume, preferably in a residential area. The file: roarradio.mp3 &#160; Also, [...]]]></description>
			<content:encoded><![CDATA[<p>Been working on episode 5 of Rave Radio 2012. One of the outtakes is a huge ROAR taken to extremes with effects. It&#8217;s Roar Radio, coming up somewhere in early March&#8230;</p>
<p>Check out the ROAR, and make sure you&#8217;re listening to it in high volume, preferably in a residential area.</p>
<p>The file: <a href="http://elgerjonker.nl/wp-content/uploads/2012/02/roarradio.mp3">roarradio.mp3</a></p>
<p>&nbsp;</p>
<p>Also, did i mention you can book us <a title="Bookings should be boekingen, but nobody is going to notice anyway." href="http://raveradio.nl/bookings/" target="_blank">for live performances? check it out here.</a></p>
<p>&nbsp;</p>
<p><a href="http://elgerjonker.nl/wp-content/uploads/2012/02/Schermafbeelding-2012-02-26-om-22.05.32.png"><img class="aligncenter size-full wp-image-1133" title="Schermafbeelding 2012-02-26 om 22.05.32" src="http://elgerjonker.nl/wp-content/uploads/2012/02/Schermafbeelding-2012-02-26-om-22.05.32.png" alt="" width="625" height="110" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://elgerjonker.nl/2012/02/rooaarr-radio-from-the-rave-radio-part-5-recording/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://elgerjonker.nl/wp-content/uploads/2012/02/roarradio.mp3" length="517600" type="audio/mpeg" />
		</item>
		<item>
		<title>Fake news: privacyloss caused by a phonebook</title>
		<link>http://elgerjonker.nl/2012/02/fake-news-privacyloss-caused-by-a-phonebook/</link>
		<comments>http://elgerjonker.nl/2012/02/fake-news-privacyloss-caused-by-a-phonebook/#comments</comments>
		<pubDate>Sun, 26 Feb 2012 03:47:07 +0000</pubDate>
		<dc:creator>Elger</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Internets]]></category>

		<guid isPermaLink="false">http://elgerjonker.nl/?p=1126</guid>
		<description><![CDATA[Just published a fake dutch news post regarding the loss of privacy sensitive data. The clue is that the data is just a phonebook. The article is in line with the recent increase in data-breaches that have been given widespread attention by the media lately One of the arguments, that a phonebook can lead to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://elgerjonker.nl/wp-content/uploads/2012/02/2012-02-14-21.0422.jpg"><img class="alignright size-thumbnail wp-image-1127" style="margin: 10px;" title="2012-02-14 21.0422" src="http://elgerjonker.nl/wp-content/uploads/2012/02/2012-02-14-21.0422-150x150.jpg" alt="" width="150" height="150" /></a>Just published a fake dutch news post regarding the loss of privacy sensitive data. The clue is that the data is just a phonebook. The article is in line with the recent increase in data-breaches that have been given widespread attention by the media lately <img src='http://elgerjonker.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>One of the arguments, that a phonebook can lead to determination of race or religion is actually true. The rest is just a bunch of fake stuff put together to look true and legit.</p>
<p>It&#8217;s in dutch, and you can check it out <a href="https://revspace.nl/DossierGevonden" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://elgerjonker.nl/2012/02/fake-news-privacyloss-caused-by-a-phonebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RAGE.wav</title>
		<link>http://elgerjonker.nl/2012/02/rage-wav/</link>
		<comments>http://elgerjonker.nl/2012/02/rage-wav/#comments</comments>
		<pubDate>Sun, 19 Feb 2012 14:14:37 +0000</pubDate>
		<dc:creator>Elger</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[stitch]]></category>

		<guid isPermaLink="false">http://elgerjonker.nl/?p=1113</guid>
		<description><![CDATA[TL;DR: Download RAGE.wav Long story Last week i was experimenting with some audio effects. Amazing how the volume can be cranked up to reach absolute insanity without clipping. The rage.wav file is in fact recorded whispering Then i added the most ridiculous audio effects to make it sound &#8230; ridiculous. Before: RAGE whisper input.wav After: RAGE.wav The effect [...]]]></description>
			<content:encoded><![CDATA[<p>TL;DR: Download <a href="http://elgerjonker.nl/wp-content/uploads/2012/02/RAGE.wav">RAGE.wav</a><a href="http://elgerjonker.nl/wp-content/uploads/2012/02/RAEG.png"><img class="alignright size-thumbnail wp-image-1115" style="margin: 10px;" title="RAEG" src="http://elgerjonker.nl/wp-content/uploads/2012/02/RAEG-150x150.png" alt="" width="150" height="150" /></a></p>
<h2>Long story</h2>
<p>Last week i was experimenting with some audio effects. Amazing how the volume can be cranked up to reach absolute insanity without clipping. The rage.wav file is in fact recorded whispering <img src='http://elgerjonker.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Then i added the most ridiculous audio effects to make it sound &#8230; ridiculous.</p>
<ul>
<li>Before: <a href="http://elgerjonker.nl/wp-content/uploads/2012/02/RAGE-whisper-input.wav">RAGE whisper input.wav</a></li>
<li>After: <a href="http://elgerjonker.nl/wp-content/uploads/2012/02/RAGE.wav">RAGE.wav</a></li>
</ul>
<p>The effect chain consists of the following ingredients:</p>
<ul>
<li>Multiband Dynamics (no background noise, more highs)</li>
<li>Warmth</li>
<li>Vocoder (modulator effect)</li>
<li>Compression</li>
<li>Saturator (Hard Curve FTW)</li>
<li>Limiter (to &#8220;avoid&#8221; clipping)</li>
</ul>
<div>I uploaded the original for remixing purposes. Can you increase the volume and impact even more?</div>
]]></content:encoded>
			<wfw:commentRss>http://elgerjonker.nl/2012/02/rage-wav/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://elgerjonker.nl/wp-content/uploads/2012/02/RAGE.wav" length="389140" type="audio/wav" />
<enclosure url="http://elgerjonker.nl/wp-content/uploads/2012/02/RAGE-whisper-input.wav" length="329668" type="audio/wav" />
		</item>
		<item>
		<title>Polaroids in HTML</title>
		<link>http://elgerjonker.nl/2012/02/polaroids-in-html/</link>
		<comments>http://elgerjonker.nl/2012/02/polaroids-in-html/#comments</comments>
		<pubDate>Thu, 16 Feb 2012 17:04:57 +0000</pubDate>
		<dc:creator>Elger</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Hack42]]></category>
		<category><![CDATA[Hackerspaces]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[MediaWiki]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[mediawiki]]></category>
		<category><![CDATA[polaroid]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[webdevelopment]]></category>

		<guid isPermaLink="false">http://elgerjonker.nl/?p=1089</guid>
		<description><![CDATA[To make the showcase on the Hack42 wiki look better, i came up with an idea: polaroids. Instead of showing default lists with pictures, you can also show them in a fashion people can relate to. In about an hour i worked out the idea. The list of pictures now looks like a spread of polaroids [...]]]></description>
			<content:encoded><![CDATA[<p>To make the <a href="https://hack42.nl/wiki/Hack42" target="_blank">showcase on the Hack42</a> wiki look better, i came up with an idea: polaroids. Instead of showing default lists with pictures, you can also show them in a fashion people can relate to. In about an hour i worked out the idea. The list of pictures now looks like a spread of polaroids with words written on them.</p>
<p>With the intelligence in most browsers, it looks even better than expected. For the nerds: below the picture i&#8217;ll explain what i did. Also check the <a href="https://hack42.nl/wiki/Gebruiker:Stitch/Polaroids" target="_blank">project page on the 42 wiki</a>.</p>
<p style="text-align: center;"><a href="http://elgerjonker.nl/wp-content/uploads/2012/02/Schermafbeelding-2012-02-18-om-18.19.10.png"><img class="aligncenter  wp-image-1091" title="Schermafbeelding 2012-02-18 om 18.19.10" src="http://elgerjonker.nl/wp-content/uploads/2012/02/Schermafbeelding-2012-02-18-om-18.19.10.png" alt="" width="568" height="319" /></a></p>
<p>&nbsp;</p>
<h2>HTML, CSS, CSS Fonts</h2>
<p>The pictures are normal pictures inside a &lt;div&gt;. The div has a padding of 10 pixels. Because of the description, the text under the picture adds to the polaroid effect.</p>
<p>The divs have a 1 pixel border, and use CSS3.0 (and browser specific) shadow and rotation.</p>
<p>The font is called GoodDog. It&#8217;s supposed to look like handwriting done with a permanent marker. The font face declaration uses external fonts that are located on the web server. The link is always black, even if you&#8217;ve visited the page. The CSS was injected into mediawiki, so it works in all skins.</p>
<p>Check out the information on the <a href="https://hack42.nl/wiki/Gebruiker:Stitch/Polaroids" target="_blank">project page on the 42 wiki</a>, source is on <a href="https://hack42.nl/wiki/Sjabloon:In_space" target="_blank">this page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://elgerjonker.nl/2012/02/polaroids-in-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updated gaming lab</title>
		<link>http://elgerjonker.nl/2012/02/updated-gaming-lab/</link>
		<comments>http://elgerjonker.nl/2012/02/updated-gaming-lab/#comments</comments>
		<pubDate>Sun, 12 Feb 2012 14:34:41 +0000</pubDate>
		<dc:creator>Elger</dc:creator>
				<category><![CDATA[Hack42]]></category>

		<guid isPermaLink="false">http://elgerjonker.nl/?p=1080</guid>
		<description><![CDATA[Just updated Hack42&#8216;s (retro) gaming lab with a Nintendo flag, game boxes and some posters. It&#8217;s starting to look good. A few more consoles and some IBM pc&#8217;s will make it the perfect gaming lab!]]></description>
			<content:encoded><![CDATA[<p>Just updated <a href="http://hack42.nl">Hack42</a>&#8216;s (retro) gaming lab with a Nintendo flag, game boxes and some posters. It&#8217;s starting to look good. A few more consoles and some IBM pc&#8217;s will make it the perfect gaming lab!</p>
<p><a href="http://elgerjonker.nl/wp-content/uploads/2012/02/DSCF4562.jpg"><img class="aligncenter size-large wp-image-1081" title="DSCF4562" src="http://elgerjonker.nl/wp-content/uploads/2012/02/DSCF4562-1024x768.jpg" alt="" width="630" height="472" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://elgerjonker.nl/2012/02/updated-gaming-lab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What you get for €2,55</title>
		<link>http://elgerjonker.nl/2012/02/what-you-get-for-e255/</link>
		<comments>http://elgerjonker.nl/2012/02/what-you-get-for-e255/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 16:43:46 +0000</pubDate>
		<dc:creator>Elger</dc:creator>
				<category><![CDATA[Lifestyle]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Old School]]></category>

		<guid isPermaLink="false">http://elgerjonker.nl/?p=1073</guid>
		<description><![CDATA[Just visited the local &#8220;second hand store&#8221; and found some nice stuff: a few house CD singles and a Brada laptop stand. Aly us &#8211; Follow me Time defining house classic. Slow and smoothly moving to a place where we can all be free. Includes an instrumental, a dub version but of course the original [...]]]></description>
			<content:encoded><![CDATA[<p>Just visited the local &#8220;second hand store&#8221; and found some nice stuff: a few house CD singles and a Brada laptop stand.</p>
<p><b>Aly us &#8211; Follow me</b></p>
<p>Time defining house classic. Slow and smoothly moving to a place where we can all be free. Includes an instrumental, a dub version but of course the original track with an extended edit.</p>
<p><object width="480" height="360"><param name="movie" value="http://www.youtube.com/v/nSI71yb0n2w?version=3&amp;hl=nl_NL"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/nSI71yb0n2w?version=3&amp;hl=nl_NL" type="application/x-shockwave-flash" width="480" height="360" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><b>Ruffneck ft. Yavahn &#8211; Everybody be Somebody</b></p>
<p>This cd features 9 mixes (73 minutes) of this house track that&#8217;s been produced by Dwayne &#8220;Spen&#8221; Richardson, Derek A. Jenkings &#038; Steven B. Wilson for Backroom Productions &#038; Groundlevel Entertainment. Samples where taken of the AWESOME <a href="http://www.youtube.com/watch?v=PJFShE1VfEc" target="_blank">Yello &#8211; Bostich</a>. Most of the action is on track 8: the full 8 minutes of the tune. The names of the masters at work also appear on this CD but most importantly: the live triangle has been performed by <i>Starvin&#8217; T.</i></p>
<p><object width="480" height="360"><param name="movie" value="http://www.youtube.com/v/AB4pvI9LQ7E?version=3&amp;hl=nl_NL"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/AB4pvI9LQ7E?version=3&amp;hl=nl_NL" type="application/x-shockwave-flash" width="480" height="360" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><b>SL2 &#8211; On a Ragga tip</b></p>
<p>Speeds up the sound with breakbeats from London. From XL recordings came this track by Slipmat and Lime (SL2). It&#8217;s fast, has the classic rasta influence and is a golden oldie. The CD features four tracks including the five minutes original mix and two other breakbeat tracks using pretty much the same breakbeat. Track 3 is pretty OK, but still a b-side. Extended version it is.</p>
<p><object width="480" height="360"><param name="movie" value="http://www.youtube.com/v/38Y16Q4t860?version=3&amp;hl=nl_NL"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/38Y16Q4t860?version=3&amp;hl=nl_NL" type="application/x-shockwave-flash" width="480" height="360" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><b>Lidell Townsell &#8211; Nu Nu</b></p>
<p>Piano house classic that can withstand the test of time for the larger part. &#8220;She looked so fine, i just had to speak&#8221;. Parodied by the 704 boys and the same organ was used by Crystal waters. Including an acapella/dub version for mashing and mixing. Also check out the So Fine Mix The password is play.</p>
<p><object width="480" height="360"><param name="movie" value="http://www.youtube.com/v/7GYPi5P4NPY?version=3&amp;hl=nl_NL"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/7GYPi5P4NPY?version=3&amp;hl=nl_NL" type="application/x-shockwave-flash" width="480" height="360" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><b>Quasar &#8211;  Last Train to Paradise</b></p>
<p>Something from the Turn up the Bass era. The last train to paradise. Bought this one to hear if there where some great remixes that would have less piano and more funk. There is some more acid, an acapella and some percussion. The fun starts at track 4: the 303 edit.</p>
<p><object width="480" height="360"><param name="movie" value="http://www.youtube.com/v/MoNLhWkQ1Ig?version=3&amp;hl=nl_NL"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/MoNLhWkQ1Ig?version=3&amp;hl=nl_NL" type="application/x-shockwave-flash" width="480" height="360" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Unfortunately an empty <b>sleeve of 400 hz &#8211; i&#8217;ve got the music in me</b> <img src='http://elgerjonker.nl/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p><object width="480" height="360"><param name="movie" value="http://www.youtube.com/v/x1dOLIZ0BMI?version=3&amp;hl=nl_NL"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/x1dOLIZ0BMI?version=3&amp;hl=nl_NL" type="application/x-shockwave-flash" width="480" height="360" allowscriptaccess="always" allowfullscreen="true"></embed></object><br />
&nbsp;</p>
<p><b>KK Travels &#8211; Pippi Langhouse</b></p>
<p>One of the all time maximum facepalm house classics for kids. It&#8217;s based on the Swedish child series Pippi Langkous (Pippi Långstrump). There was a version dubbed in Dutch. That one was sampled, sequenced, mashed and filtered into a house production that is nearly bearable to listen to. The B sides of this record really raises some eyebrows <img src='http://elgerjonker.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  And that&#8217;s why this is great.</p>
<p><object width="480" height="360"><param name="movie" value="http://www.youtube.com/v/S0W7IjzMQEY?version=3&amp;hl=nl_NL"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/S0W7IjzMQEY?version=3&amp;hl=nl_NL" type="application/x-shockwave-flash" width="480" height="360" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>&nbsp;</p>
<p>Next to the cd&#8217;s i found a <b><a title="bräda" href="http://www.ikea.com/se/sv/catalog/products/10086654/">brada laptop</a> lap stand to place your laptop on your lap</b>. In real life it would look something like this (if i where tanned and wearing white clothes):</p>
<p><a href="http://elgerjonker.nl/wp-content/uploads/2012/02/brada-laptop-support__68136_PE182290_S4.jpg"><img class="aligncenter size-full wp-image-1074" title="brada-laptop-support__68136_PE182290_S4" src="http://elgerjonker.nl/wp-content/uploads/2012/02/brada-laptop-support__68136_PE182290_S4.jpg" alt="" width="500" height="500" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://elgerjonker.nl/2012/02/what-you-get-for-e255/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hack42 site header</title>
		<link>http://elgerjonker.nl/2012/01/hack42-site-header/</link>
		<comments>http://elgerjonker.nl/2012/01/hack42-site-header/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 23:19:20 +0000</pubDate>
		<dc:creator>Elger</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Hack42]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[innovation]]></category>
		<category><![CDATA[mad]]></category>

		<guid isPermaLink="false">http://elgerjonker.nl/?p=1063</guid>
		<description><![CDATA[I just came across a nice wordpress plugin that makes site-headers look absolutely gorgeous. So, using my Photoshop skills and general knowledge on web development, i made one for Hack42. It came out fantastic! Shoop da whooooopp In a few hours i selected some photos and created about 10 images with the size 950*200. Here&#8217;s a [...]]]></description>
			<content:encoded><![CDATA[<p>I just came across a nice wordpress plugin that makes site-headers look absolutely gorgeous. So, using my Photoshop skills and general knowledge on web development, i made one for <a href="http://hack42.nl" target="_blank">Hack42</a>. It came out fantastic!</p>
<h2>Shoop da whooooopp</h2>
<p>In a few hours i selected some <a href="flickr.com/groups/hack42/pool/" target="_blank">photos</a> and created about 10 images with the size 950*200. Here&#8217;s a few:</p>
<p><a href="http://elgerjonker.nl/wp-content/uploads/2012/01/crackledcd.png"><img class="size-medium wp-image-1065 aligncenter" title="crackledcd" src="http://elgerjonker.nl/wp-content/uploads/2012/01/crackledcd-300x63.png" alt="" width="300" height="63" /></a></p>
<p><a href="http://elgerjonker.nl/wp-content/uploads/2012/01/repairing.png"><img class="size-medium wp-image-1064 aligncenter" title="repairing" src="http://elgerjonker.nl/wp-content/uploads/2012/01/repairing-300x63.png" alt="" width="300" height="63" /></a></p>
<p><a href="http://elgerjonker.nl/wp-content/uploads/2012/01/contact1.png"><img class="aligncenter size-medium wp-image-1068" title="contact" src="http://elgerjonker.nl/wp-content/uploads/2012/01/contact1-300x63.png" alt="" width="300" height="63" /></a></p>
<p>With special tooling, that comes with the commercial version of the plugin, the slideshow was created. The tooling allows to choose what images to use, what titles and subtitles, the delay, styles and some other minor things. In the end it delivers a .zip file that can be uploaded to the site.</p>
<p>Now to actually make a header&#8230; things get creative and innovative.</p>
<h2>Mad scientist at work</h2>
<p>With some careful engineering and code manipulation tricks i actually got the header where i wanted it to be: the header. It required edits in the style.css and header.php files, as well as a dummy page for some workarounds.</p>
<p>One problem occurred: the site header is 200 pixels high, while wordpress insisted it should be 170 pixels. Somewhere, buried deep down in wordpress this was specified. I&#8217;ve looked everywhere but nowhere to find why or when 170 pixels high was defined.</p>
<p><span style="text-decoration: underline;"><em>Time to move in the heavy artillery.</em></span></p>
<p>If you know something on coding, you might want to get a bucket or two to vomit. Basically i change any value of &#8220;170&#8243; with &#8220;200&#8243; on a large portion of the site. This is the <em>wrong</em> <em>way</em> to do things.</p>
<pre>&lt;?php
ob_start();
wp_head();
$fuckingimageheighthack = ob_get_clean();
$fuckingimageheighthack = str_replace("170", "200", $fuckingimageheighthack);
print $fuckingimageheighthack;
?&gt;</pre>
<p>It worked like a charm.</p>
<h2>Result?</h2>
<p>Who cares about all the grunt work. We all want to see nice images and flashy headers. That&#8217;s what counts and that&#8217;s what we&#8217;ve accomplished with all this work. It looks awesome and professional. And that&#8217;s just the way i like things.</p>
<p><em>PS this website will soon also feature these great professional headers with images of my life.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://elgerjonker.nl/2012/01/hack42-site-header/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

