<?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/"
	>

<channel>
	<title>Maurice Snip</title>
	<atom:link href="http://www.mauricesnip.nl/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mauricesnip.nl</link>
	<description>Weblog and Portfolio</description>
	<pubDate>Mon, 02 Feb 2009 22:21:03 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Even Google makes mistakes</title>
		<link>http://www.mauricesnip.nl/archives/even-google-makes-mistakes/</link>
		<comments>http://www.mauricesnip.nl/archives/even-google-makes-mistakes/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 15:19:34 +0000</pubDate>
		<dc:creator>Maurice Snip</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[google]]></category>

		<category><![CDATA[harmful]]></category>

		<category><![CDATA[mistake]]></category>

		<guid isPermaLink="false">http://www.mauricesnip.nl/?p=20</guid>
		<description><![CDATA[Since half an hour all of the Google search results are considered harmful for your computer. It looks like someone over at Google updated their search engine to a wrong untested version. I&#8217;m sure Google is already working hard to getting this fixed as soon as possible.
Update 16:25 GMT+1: It looks like Google fixed the [...]]]></description>
			<content:encoded><![CDATA[<p>Since half an hour all of the Google search results are considered harmful for your computer. It looks like someone over at Google updated their search engine to a wrong untested version. I&#8217;m sure Google is already working hard to getting this fixed as soon as possible.</p>
<div id="attachment_26" class="wp-caption aligncenter" style="width: 468px"><img src="http://www.mauricesnip.nl/wp-content/uploads/2009/01/google-harmful.png" alt="Google considering all websites to be harmful" title="google-harmful" width="458" height="323" class="size-full wp-image-26" /><p class="wp-caption-text">Google considering all websites to be harmful</p></div>
<p>Update 16:25 GMT+1: It looks like Google fixed the rather annoying bug, happy Googling!</p>
<p>Update 2: As all of you might know, it wasn&#8217;t Google&#8217;s fault. The problem started after an update of Google&#8217;s website blacklist which is provided by <a href="http://www.stopbadware.org/">StopBadware.org</a>. This non-profit company mistakenly added root (&#8221;/&#8221;) to their blacklist, which Google blindly copied to their server. For more information, <a href="http://googleblog.blogspot.com/2009/01/this-site-may-harm-your-computer-on.html">read the full story of Google</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mauricesnip.nl/archives/even-google-makes-mistakes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Upgraded to WordPress 2.7</title>
		<link>http://www.mauricesnip.nl/archives/upgraded-to-wordpress-27/</link>
		<comments>http://www.mauricesnip.nl/archives/upgraded-to-wordpress-27/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 10:44:23 +0000</pubDate>
		<dc:creator>Maurice Snip</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.mauricesnip.nl/?p=12</guid>
		<description><![CDATA[Since I&#8217;m enjoying my Christmas holidays, I thought I&#8217;d do a couple of things I should have done ages ago. One of them is upgrading WordPress. When I read about the new admin interface in WordPress 2.7, I couldn&#8217;t resist to upgrade right away. I have to say, WordPress did a really nice job on [...]]]></description>
			<content:encoded><![CDATA[<p>Since I&#8217;m enjoying my Christmas holidays, I thought I&#8217;d do a couple of things I should have done ages ago. One of them is upgrading WordPress. When I read about the new admin interface in WordPress 2.7, I couldn&#8217;t resist to upgrade right away. I have to say, WordPress did a really nice job on the new interface. It&#8217;s so much better than the old version. If you&#8217;re still running an older version, I recommend to upgrade to WordPress 2.7, it only takes a few minutes. Be sure to read the <a href="http://codex.wordpress.org/Upgrading_WordPress">Upgrading WordPress</a> and <a href="http://codex.wordpress.org/WordPress_Backups">WordPress Backups</a> guides at the WordPress codex pages.</p>
<p>As you might have noticed, I also installed a new WordPress theme. This time by the guys of <a href="http://www.letseat.at/">LetsEat.at</a>, thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mauricesnip.nl/archives/upgraded-to-wordpress-27/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Manually firing an event the cross browser way</title>
		<link>http://www.mauricesnip.nl/archives/manually-firing-an-event-the-cross-browser-way/</link>
		<comments>http://www.mauricesnip.nl/archives/manually-firing-an-event-the-cross-browser-way/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 22:16:20 +0000</pubDate>
		<dc:creator>Maurice Snip</dc:creator>
		
		<category><![CDATA[Client side]]></category>

		<category><![CDATA[Cross browser]]></category>

		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.mauricesnip.nl/archives/manually-firing-an-event-the-cross-browser-way/</guid>
		<description><![CDATA[In a recent project I needed a way to manually fire an event that works in all major browsers on the market today. Since Internet Explorer and Firefox, Safari use a different event model, feature detection is needed. Where the document.createEvent block executes the code for Firefox, Safari, etc, the document.createEventObject executes the code for [...]]]></description>
			<content:encoded><![CDATA[<p>In a recent project I needed a way to manually fire an event that works in all major browsers on the market today. Since Internet Explorer and Firefox, Safari use a different event model, feature detection is needed. Where the <code>document.createEvent</code> block executes the code for Firefox, Safari, etc, the <code>document.createEventObject</code> executes the code for Internet Explorer. The function:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
</pre></td><td class="code"><pre class="javascript javascript" style="font-family:monospace;"><span style="color: #006600; font-style: italic;">/**
 * Manually fires the given event
 * 
 * @param {Mixed} el The element object or element ID that has to fire the event
 * @param {String} set The event set used, eg. HTMLEvents or MouseEvents
 * @param {String} type The event type to fire, eg. change or click
 */</span>
<span style="color: #003366; font-weight: bold;">function</span> fireEventXB<span style="color: #009900;">&#40;</span>el<span style="color: #339933;">,</span> set<span style="color: #339933;">,</span> type<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">typeof</span> el <span style="color: #339933;">==</span> <span style="color: #3366CC;">'string'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		el <span style="color: #339933;">=</span> document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span>el<span style="color: #009900;">&#41;</span>;
	<span style="color: #009900;">&#125;</span>
	<span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>document.<span style="color: #660066;">createEvent</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #003366; font-weight: bold;">var</span> evObj <span style="color: #339933;">=</span> document.<span style="color: #660066;">createEvent</span><span style="color: #009900;">&#40;</span>set<span style="color: #009900;">&#41;</span>;
		evObj.<span style="color: #660066;">initEvent</span><span style="color: #009900;">&#40;</span>type<span style="color: #339933;">,</span> <span style="color: #003366; font-weight: bold;">true</span><span style="color: #339933;">,</span> <span style="color: #003366; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span>;
		el.<span style="color: #660066;">dispatchEvent</span><span style="color: #009900;">&#40;</span>evObj<span style="color: #009900;">&#41;</span>;
	<span style="color: #009900;">&#125;</span>
	<span style="color: #000066; font-weight: bold;">else</span> <span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>document.<span style="color: #660066;">createEventObject</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		el.<span style="color: #660066;">fireEvent</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'on'</span> <span style="color: #339933;">+</span> type<span style="color: #009900;">&#41;</span>;
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.mauricesnip.nl/archives/manually-firing-an-event-the-cross-browser-way/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A new look has arrived</title>
		<link>http://www.mauricesnip.nl/archives/a-new-look-has-arrived/</link>
		<comments>http://www.mauricesnip.nl/archives/a-new-look-has-arrived/#comments</comments>
		<pubDate>Sat, 28 Jun 2008 09:00:49 +0000</pubDate>
		<dc:creator>Maurice Snip</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[User Interface]]></category>

		<guid isPermaLink="false">http://www.mauricesnip.nl/archives/a-new-look-has-arrived/</guid>
		<description><![CDATA[Since I didn&#8217;t make a Wordpress template so far, I decided to go with a free template I found at Smashing Magazine a while ago. I have to thank Igor Penjivrag for offering this template, called Cubismo, for free! So, this is going to be the look of my weblog till I&#8217;ve designed and developed [...]]]></description>
			<content:encoded><![CDATA[<p>Since I didn&#8217;t make a Wordpress template so far, I decided to go with a free template I found at <a href="http://www.smashingmagazine.com/2008/01/08/100-excellent-free-high-quality-wordpress-themes/">Smashing Magazine</a> a while ago. I have to thank <a href="http://colorlightstudio.com/">Igor Penjivrag</a> for offering this template, called <a href="http://colorlightstudio.com/2007/11/20/cubismo/">Cubismo</a>, for free! So, this is going to be the look of my weblog till I&#8217;ve designed and developed my own template.</p>
<p>In other news, I recently bought a 15&#8243; Macbook Pro for primarily web development, but also for a whole new user experience  in operating systems. I have to admit, Mac OS X works like a charm! A great variaty of (third-party) applications which work like they should and have even better user interfaces. <strike>Talking about Mac applications, check back soon for a list of 5 Mac applications worth buying!</strike> Sorry!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mauricesnip.nl/archives/a-new-look-has-arrived/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What&#8217;s taking so long?</title>
		<link>http://www.mauricesnip.nl/archives/whats-taking-so-long/</link>
		<comments>http://www.mauricesnip.nl/archives/whats-taking-so-long/#comments</comments>
		<pubDate>Wed, 30 May 2007 20:41:10 +0000</pubDate>
		<dc:creator>Maurice Snip</dc:creator>
		
		<category><![CDATA[CodeIgniter]]></category>

		<category><![CDATA[User Interface]]></category>

		<category><![CDATA[Web Application]]></category>

		<guid isPermaLink="false">http://www.mauricesnip.nl/archives/whats-taking-so-long/</guid>
		<description><![CDATA[I know, one and a half month later and still no Wordpress theme. It&#8217;s hard to find time to write new articles and design an entirely new Wordpress theme when you&#8217;re studying at a full-time basis. Lately, me and my project team have been working on our final assessment, a community driven recommender system based [...]]]></description>
			<content:encoded><![CDATA[<p>I know, one and a half month later and still no Wordpress theme. It&#8217;s hard to find time to write new articles and design an entirely new Wordpress theme when you&#8217;re studying at a full-time basis. Lately, me and my project team have been working on our final assessment, a community driven recommender system based on relations between items. My task is to design and develop the web based administration back-end of the system, with which you can manage the items, tags and relations. Here are two mock-ups of the layout:</p>
<div style="text-align: center;"><a href='http://www.mauricesnip.nl/wp-content/uploads/2007/05/login-big.png' title='Login preview big'><img style="padding: 2px; border: 1px solid #ddd;" src='http://www.mauricesnip.nl/wp-content/uploads/2007/05/login-big.thumbnail.png' alt='Login preview big' /></a> <a href='http://www.mauricesnip.nl/wp-content/uploads/2007/05/items-big.png' title='Items preview big'><img style="padding: 2px; border: 1px solid #ddd;" src='http://www.mauricesnip.nl/wp-content/uploads/2007/05/items-big.thumbnail.png' alt='Items preview big' /></a></div>
<p>The login page uses the final color palette, which is a bit friendlier for the eyes. Knowing myself, I&#8217;m sure I&#8217;ll tweak the layout here and there to make it look good. If you have any comments, please feel free to post them here.</p>
<p>We&#8217;re developing the entire application using the <a href="http://codeigniter.com/">CodeIgniter</a> PHP framework. The Model View Controller (MVC) pattern, also used by CakePHP and Ruby on Rails, makes it easy to rapidly design and develop a web application.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mauricesnip.nl/archives/whats-taking-so-long/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Finally online!</title>
		<link>http://www.mauricesnip.nl/archives/finally-online/</link>
		<comments>http://www.mauricesnip.nl/archives/finally-online/#comments</comments>
		<pubDate>Thu, 19 Apr 2007 17:09:40 +0000</pubDate>
		<dc:creator>Maurice Snip</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.mauricesnip.nl/?p=3</guid>
		<description><![CDATA[Last month I decided it was time to get a weblog and a portfolio, since companies in the web development branch often ask for your references. And hey, what&#8217;s a web developer without a weblog these days? So, here it is, brand new and shiny, the weblog of Maurice Snip. You can read more about [...]]]></description>
			<content:encoded><![CDATA[<p>Last month I decided it was time to get a weblog and a portfolio, since companies in the web development branch often ask for your references. And hey, what&#8217;s a web developer without a weblog these days? So, here it is, brand new and shiny, the weblog of Maurice Snip. You can read more about me <a href="http://www.mauricesnip.nl/about" title="About Maurice Snip">here</a>.</p>
<p>As you can see, a lot of work has to be done before this website is completely finished. First of all I need to make a user interface, and mold it into a WordPress theme. As I&#8217;ve read so far, it&#8217;s fairly simple to make one, I expect it to be online hopefully within a month. Second, I need to install or make my own portfolio plugin, so i can show you all my latest projects. Time will tell!</p>
<p>What subjects can you expect on my weblog? Well, mainly my experiences in web development, some daily life stuff, and maybe even software updates. When I think it&#8217;s worth mentioning, I post it.</p>
<p>As all good things come to an end, so is this very first post on my new weblog. More posts to come!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mauricesnip.nl/archives/finally-online/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
