<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	
	<channel>
		<title>E-Dude.org</title>
		<link>http://www.e-dude.org/index.php</link>
		<description></description>
		<language>en</language>
		<managingEditor>tycho+site@e-dude.org</managingEditor>
                <copyright>Copyright 2008</copyright>
		<generator>Pivot Pivot - 1.40.5: 'Dreadwind'</generator>
		<pubDate>Sat, 11 Oct 2008 16:47:26 +0200</pubDate>
		<ttl>60</ttl>
		
		
		
		
		<item>
			<title>Mambo #8 Mile</title>
			<link>http://www.e-dude.org/archive/2008/10/11/mambo_8_mile/my_weblog</link>
			<comments>http://www.e-dude.org/archive/2008/10/11/mambo_8_mile/my_weblog#comm</comments>
                        <description><![CDATA[ I found this little gem on YouTube, brilliant! :)<br />
<br />
<a rel="external" href="http://www.youtube.com/watch?v=jzG5Pkj08QU" title="">Mambo #8 Mile</a><br />
<br />
Found through a <a rel="external" href="http://www.youtube.com/results?search_query=mtv+mash+up&search_type=&aq=f" title="">MTV Mash Up</a> search. ]]></description>
			<guid isPermaLink="false">16@http://e-dude.org/pivot/</guid>
			<category>Web</category>
			<pubDate>Sat, 11 Oct 2008 16:47:00 +0200</pubDate>
		</item>
		
		
		
		<item>
			<title>Daily Wisdom</title>
			<link>http://www.e-dude.org/archive/2008/10/01/daily_wisdom/my_weblog</link>
			<comments>http://www.e-dude.org/archive/2008/10/01/daily_wisdom/my_weblog#comm</comments>
                        <description><![CDATA[ Rain is nature's way of pressing F5. ]]></description>
			<guid isPermaLink="false">15@http://e-dude.org/pivot/</guid>
			<category>Daily Wisdom</category>
			<pubDate>Wed, 01 Oct 2008 21:26:00 +0200</pubDate>
		</item>
		
		
		
		<item>
			<title>Javascript array annoyance from database results</title>
			<link>http://www.e-dude.org/archive/2008/08/09/javascript_array_annoyance_fro/my_weblog</link>
			<comments>http://www.e-dude.org/archive/2008/08/09/javascript_array_annoyance_fro/my_weblog#comm</comments>
                        <description><![CDATA[ A common thing done in webdevelopment is using data from a database.<br />
In your average PHP code you'd just do a while( list( ,$val ) = each( $dbResult ) ) loop, maintaining the correct order for the query results.<br />
<br />
Now for the twist!<br />
<br />
If you want to quite literally use your query result, an array of rows with their associated fields and values, in Javascript you can't really convert that one-to-one.<br />
<br />
So, what's the solution?<br />
<br />
Simple!You make an array and a function to add the rows to your result!<br />
Unfortunately, you can not just add it automatically to the array, so you need some kind of loop.<br />
<br />
Here's an example:<br />
[quote]<br />
function newRow ( id, value )<br />
{<br />
 this.id = id;<br />
 this.value = value;<br />
}<br />
<br />
var myTable = new Array();<br />
<br />
myTable[0] = new newRow( 1, "User1" );<br />
myTable[1] = new newRow( 2, "User2" );<br />
[/quote]<br />
<br />
You can generate that list quite easily in any programming language and/or templating engine and you can use it to feed it to all of your functions as well.<br />
Because it's based on objects, you get to use entry.name too! ]]></description>
			<guid isPermaLink="false">14@http://e-dude.org/pivot/</guid>
			<category>Programming</category>
			<pubDate>Sat, 09 Aug 2008 18:02:00 +0200</pubDate>
		</item>
		
		
		
		<item>
			<title>Sesamestreet kru reprazent yoh!</title>
			<link>http://www.e-dude.org/archive/2008/07/30/sesamestreet_kru_reprazent_yoh/my_weblog</link>
			<comments>http://www.e-dude.org/archive/2008/07/30/sesamestreet_kru_reprazent_yoh/my_weblog#comm</comments>
                        <description><![CDATA[ <center><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/21OH0wlkfbc&hl=en&fs=1"></param><param name="wmode" value="transparent"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/21OH0wlkfbc&hl=en&fs=1" type="application/x-shockwave-flash" allowfullscreen="true" wmode="transparent" width="425" height="344"></embed></object></center> ]]></description>
			<guid isPermaLink="false">13@http://e-dude.org/pivot/</guid>
			<category>Web</category>
			<pubDate>Wed, 30 Jul 2008 19:37:00 +0200</pubDate>
		</item>
		
		
		
		<item>
			<title>Colore - Templates?</title>
			<link>http://www.e-dude.org/archive/2008/07/15/colore__templates/my_weblog</link>
			<comments>http://www.e-dude.org/archive/2008/07/15/colore__templates/my_weblog#comm</comments>
                        <description><![CDATA[ As some of you might know, I've been working on a project called Colore.<br />
<br />
Colore is basically a framework for Rapid Application Development (RAD).<br />
<br />
Colore does so, by allowing the developer (from a functional point of view) to specify contexts in which a request/event will be executed and being able to "attach" code and variables to these contexts.<br />
<br />
After test driving developing with Colore a bit, I've realized I made an error in how I was developing.<br />
<br />
Although Colore was giving me all of the flexibility I needed, I was still stuck in my old design patterns. Kinda like having the latest hardware and still running a very old operating system.<br />
<br />
What I intended to do with Colore was make things easier, but I screwed up myself by using way too complicated templates.<br />
<br />
I'm now going to rewrite some of the templates for my hosting control panel to have 1 template per target, where possible, instead of sticky taping everything together at run-time. ]]></description>
			<guid isPermaLink="false">12@http://e-dude.org/pivot/</guid>
			<category>Programming</category>
			<pubDate>Tue, 15 Jul 2008 21:43:00 +0200</pubDate>
		</item>
		
		
		
		<item>
			<title>Heroic Marathon</title>
			<link>http://www.e-dude.org/archive/2008/05/02/heroic_marathon/my_weblog</link>
			<comments>http://www.e-dude.org/archive/2008/05/02/heroic_marathon/my_weblog#comm</comments>
                        <description><![CDATA[ A colleague of mine plays WoW too.<br />
<br />
He had told me about this "little" marathon they had done a few weeks ago.<br />
<br />
It entailed doing all the instances found in WoW on heroic level in one go.<br />
<br />
If you play WoW, you know what I mean, if you don't, well, it's crazy :)<br />
<br />
Here's his <a rel="external" href="http://www.samsin.nl/games/world_of_warcraft_-_heroic_marathon_by_valerius/" title="">blog post</a>, which features a <a rel="external" href="http://www.youtube.com/watch?v=LlX8f14y0XM" title="">Youtube vid</a> too go with it :) ]]></description>
			<guid isPermaLink="false">11@http://e-dude.org/pivot/</guid>
			<category>WoW</category>
			<pubDate>Fri, 02 May 2008 09:44:00 +0200</pubDate>
		</item>
		
		
		
		<item>
			<title>New T-Shirt!</title>
			<link>http://www.e-dude.org/archive/2008/04/30/new_tshirt/my_weblog</link>
			<comments>http://www.e-dude.org/archive/2008/04/30/new_tshirt/my_weblog#comm</comments>
                        <description><![CDATA[ My lovely girlfriend got this in Amsterdam for me!<br />
<br />
<p style="text-align:center;"><img src="http://www.e-dude.org/images/t-shirt.jpg" style="border:0px solid" title="" alt="" class="pivot-image" /></p><br />
<br />
I love it already! :) ]]></description>
			<guid isPermaLink="false">10@http://e-dude.org/pivot/</guid>
			<category>General</category>
			<pubDate>Wed, 30 Apr 2008 23:37:00 +0200</pubDate>
		</item>
		
		
		
		<item>
			<title>Warsow</title>
			<link>http://www.e-dude.org/archive/2008/04/06/warsow/my_weblog</link>
			<comments>http://www.e-dude.org/archive/2008/04/06/warsow/my_weblog#comm</comments>
                        <description><![CDATA[ Okay, what if you had a nice team of tech savvy gamers, who felt the need for a game with a strong community foundation and aimed for eSports?<br />
<br />
Most likely it would look something like <a rel="external" href="http://www.warsow.net/" title="">Warsow</a>.<br />
<br />
It's still a game in progress, but to me it comes across as being a sort of cartoonesque game.<br />
<br />
I can't really describe it that well, but from what I've seen, it might get very interesting in the future and it's already interesting in this phase!<br />
<br />
As Warsow is meant to be free in terms of beer, I can only suggest to start downloading it and judge for yourself! :) ]]></description>
			<guid isPermaLink="false">9@http://e-dude.org/pivot/</guid>
			<category>Gaming</category>
			<pubDate>Sun, 06 Apr 2008 14:08:00 +0200</pubDate>
		</item>
		
		
		
		<item>
			<title>New assignment!</title>
			<link>http://www.e-dude.org/archive/2008/04/06/new_assignment/my_weblog</link>
			<comments>http://www.e-dude.org/archive/2008/04/06/new_assignment/my_weblog#comm</comments>
                        <description><![CDATA[ As some of you know, I'm working in the consultancy business.<br />
<br />
What does it exactly mean?<br />
<br />
Well, in most of the countries in the world that would mean that you are hired directly for a short period, or maybe longer.<br />
Here, in the Netherlands, we have the same system, but we also have the version where you are actually employed by a consultancy company and you get assigned to a job at a customer of that company.<br />
That's basically what I've been doing since the start of November.<br />
<br />
I started off half way through November at one of the technical universities here in the Netherlands, which lasted until the middle of March.<br />
<br />
Then I got a call for a new placement, if I wanted to work for the <a rel="external" href="http://en.wikipedia.org/wiki/Firewall" title="">Firewall</a> team for a large financial institution, a bank, in Rotterdam.<br />
<br />
After having had some time to recuperate from the previous job, I started on the 26th of March.<br />
<br />
I can only say, it's true what they say about banks!<br />
<br />
Like any financial institution, they have plenty of rules to abide by and add the size of the company and you'll end up with some bureaucracy.<br />
But the people who work there are usually sticking to the company, because all-in-all it's a really nice place to work.<br />
<br />
So far, I've enjoyed it quite a lot!<br />
<br />
Just my little update for the work front :) ]]></description>
			<guid isPermaLink="false">8@http://e-dude.org/pivot/</guid>
			<category>Personal</category>
			<pubDate>Sun, 06 Apr 2008 13:44:00 +0200</pubDate>
		</item>
		
		
		
		<item>
			<title>WoW Live Signature Generator</title>
			<link>http://www.e-dude.org/archive/2008/03/30/wow_live_signature_generator/my_weblog</link>
			<comments>http://www.e-dude.org/archive/2008/03/30/wow_live_signature_generator/my_weblog#comm</comments>
                        <description><![CDATA[ Okay, I've had this for some time now, but I figured I might as well do a post about it!<br />
<br />
To make this interesting for the general public, I'll explain a bit about it.<br />
(Just press the Read more link.)<br />
<br />
For the WoW geeks, here's a short explanation:<br />
It automatically displays your stats based on which class and spec you play.<br />
For instance, for PvP it displays your Resilience, for PvE DPS it displays your (Spell) Hit Rating and tanks will have all of their vital stats.<br />
<br />
You can find the signature generator on <a rel="external" href="http://www.e-dude.org/wowlivesig/" title="">WoWLiveSig</a>The creators of World of Warcraft have put up a little thing called <i>the armory</i>,<br />
The armory basically shows you stuff about the characters in the game.<br />
Those of you familiar with role-playing in general will recognize stats like agility, intellect, stamina and strength.<br />
<br />
So, back to the armory.<br />
<br />
If you use a modern browser which supports XSL, the armory just returns XML with a reference to the XSL files to render it.<br />
<br />
I decided to write a tool to parse the info and display some of the stats available.<br />
<br />
But, alas, there are plenty of those around...<br />
So, I decided to do something special!<br />
<br />
In WoW, you can choose a class to play and you can choose a role (talents) for your char, so in one case you can be a healer, someone who does damage (commonly called DPS) or someone who makes sure all the monsters (mobs) keep focussed on them so others can damage that mob (tank).<br />
Each role has specific statistics to indicate what their "strength" is.<br />
<br />
My signature generator does exactly that and does it fully automatically!<br />
<br />
It's a fun way to do some stuff with XML parsing, image generation (using GD) and handling a large variety of information to choose from! :) ]]></description>
			<guid isPermaLink="false">7@http://e-dude.org/pivot/</guid>
			<category>Programming</category>
			<pubDate>Sun, 30 Mar 2008 23:17:00 +0200</pubDate>
		</item>
		
		
		
		<item>
			<title>Colore Framework</title>
			<link>http://www.e-dude.org/archive/2008/03/30/colore_framework/my_weblog</link>
			<comments>http://www.e-dude.org/archive/2008/03/30/colore_framework/my_weblog#comm</comments>
                        <description><![CDATA[ As some of my friends know, I've been working on a framework to enable developers to develop applications in a more efficient manner.<br />
<br />
Okay, I know this sounds mostly as sales talk, so let me explain.<br />
<br />
Originally, I felt the need for a framework to be able to execute certain logic based on events, for instance.<br />
<br />
To make this more specific, I'm working on control panel like software to use on the server I'm running.<br />
When I started programming, I ran into the problem most programmer are familiar with; when you need to handle a specific request,<br />
you need to figure out which pieces of logic you need to execute in order to properly handle the request.<br />
<br />
My framework, going by the working name of Colore, aims to exactly address that issue.<br />
<br />
When looking at things, you could make a flowchart based on the logic executed to handle a specific request.<br />
<br />
The main aim of Colore is to define the specific aspects of that workflow, define them and allowing the developer (who could even be lacking technical knowledge) to define the separate workflows therefor not having the burden of having to write code which executes the specific code, but rather just get the code executed.<br />
<br />
The main reason for abstracting this into a standard rather than a complete implementation is because my friend Eecolor is rather interested in the whole concept as well...<br />
But he "hates" PHP :P<br />
<br />
So, I'm developing an implementation while writing the standard at the same time and, yes, making it open source. ]]></description>
			<guid isPermaLink="false">6@http://e-dude.org/pivot/</guid>
			<category>Programming</category>
			<pubDate>Sun, 30 Mar 2008 19:40:00 +0200</pubDate>
		</item>
		
		
		
		<item>
			<title>The Simpsons - Who would you cast for a movie with real people?</title>
			<link>http://www.e-dude.org/archive/2008/03/30/the_simpsons__who_would_you_ca/my_weblog</link>
			<comments>http://www.e-dude.org/archive/2008/03/30/the_simpsons__who_would_you_ca/my_weblog#comm</comments>
                        <description><![CDATA[ I recently started to use StumbleUpon and today I stumbled upon a page where the author of that site made a list of actors whom he'd use for a "live" Simpsons movie/show.<br />
<br />
The <a rel="external" href="http://filmonic.com/who-would-you-cast-in-a-live-action-simpsons-movie" title="">page in question</a> and as a bonus a nice <a rel="external" href="http://www.youtube.com/watch?v=brh6KRvQHBc" title="">YouTube video</a> to go with that. ]]></description>
			<guid isPermaLink="false">4@http://e-dude.org/pivot/</guid>
			<category>Web</category>
			<pubDate>Sun, 30 Mar 2008 18:34:00 +0200</pubDate>
		</item>
		
		
		
		<item>
			<title>Welcome</title>
			<link>http://www.e-dude.org/archive/2008/03/30/welcome/my_weblog</link>
			<comments>http://www.e-dude.org/archive/2008/03/30/welcome/my_weblog#comm</comments>
                        <description><![CDATA[ Welcome to my renewed site!<br />
<br />
At least it's gotten a more up-to-date look :) ]]></description>
			<guid isPermaLink="false">3@http://e-dude.org/pivot/</guid>
			<category>General</category>
			<pubDate>Sun, 30 Mar 2008 14:11:00 +0200</pubDate>
		</item>
		
		
		
	</channel>
</rss>
