<?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>Maffelu.net</title>
	<atom:link href="http://maffelu.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://maffelu.net</link>
	<description>A developers blog...</description>
	<lastBuildDate>Fri, 10 May 2013 05:02:35 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Javascript: parsing an int with a leading zero</title>
		<link>http://maffelu.net/javascript-parsing-an-int-with-a-leading-zero/</link>
		<comments>http://maffelu.net/javascript-parsing-an-int-with-a-leading-zero/#comments</comments>
		<pubDate>Fri, 10 May 2013 05:02:35 +0000</pubDate>
		<dc:creator>Magnus Ferm</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[parseInt]]></category>
		<category><![CDATA[radix]]></category>

		<guid isPermaLink="false">http://maffelu.net/?p=852</guid>
		<description><![CDATA[<p>As I had to parse some strings numbers with leading zeroes into int some days ago I thought I&#8217;d just use the old parseInt function and everything would work out well. What could go wrong? Well it turned out that parseInt had a bit of a weird feature when it came to parsing string numbers with leading zeroes. The documentation...</p><p>The post <a href="http://maffelu.net/javascript-parsing-an-int-with-a-leading-zero/">Javascript: parsing an int with a leading zero</a> appeared first on <a href="http://maffelu.net">Maffelu.net</a>.</p>]]></description>
		<wfw:commentRss>http://maffelu.net/javascript-parsing-an-int-with-a-leading-zero/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=maffelu&amp;popout=1&amp;url=http%3A%2F%2Fmaffelu.net%2Fjavascript-parsing-an-int-with-a-leading-zero%2F&amp;language=en_GB&amp;category=text&amp;title=Javascript%3A+parsing+an+int+with+a+leading+zero&amp;description=As+I+had+to+parse+some+strings+numbers+with+leading+zeroes+into+int+some+days+ago+I+thought+I%26%238217%3Bd+just+use+the+old+parseInt+function+and+everything+would+work+out...&amp;tags=parseInt%2Cradix%2Cblog" type="text/html" />
	</item>
		<item>
		<title>JQuery: Handle left-click, right-click and double-click at the same time</title>
		<link>http://maffelu.net/jquery-handle-left-click-right-click-and-double-click-at-the-same-time/</link>
		<comments>http://maffelu.net/jquery-handle-left-click-right-click-and-double-click-at-the-same-time/#comments</comments>
		<pubDate>Sat, 20 Apr 2013 13:04:45 +0000</pubDate>
		<dc:creator>Magnus Ferm</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[click]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://maffelu.net/?p=841</guid>
		<description><![CDATA[<p>I just had to handle a left-click, right-click and a dbl-click at the same time which turned out to be a bit tricky at first using just the mousedown function, but the solution was simple:</p><p>The post <a href="http://maffelu.net/jquery-handle-left-click-right-click-and-double-click-at-the-same-time/">JQuery: Handle left-click, right-click and double-click at the same time</a> appeared first on <a href="http://maffelu.net">Maffelu.net</a>.</p>]]></description>
		<wfw:commentRss>http://maffelu.net/jquery-handle-left-click-right-click-and-double-click-at-the-same-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=maffelu&amp;popout=1&amp;url=http%3A%2F%2Fmaffelu.net%2Fjquery-handle-left-click-right-click-and-double-click-at-the-same-time%2F&amp;language=en_GB&amp;category=text&amp;title=JQuery%3A+Handle+left-click%2C+right-click+and+double-click+at+the+same+time&amp;description=I+just+had+to+handle+a+left-click%2C+right-click+and+a+dbl-click+at+the+same+time+which+turned+out+to+be+a+bit+tricky+at+first+using+just+the+mousedown+function%2C...&amp;tags=click%2Cjquery%2Cblog" type="text/html" />
	</item>
		<item>
		<title>Windows 8: Using jQuery in your Windows Store app</title>
		<link>http://maffelu.net/windows-8-using-jquery-in-your-windows-store-app/</link>
		<comments>http://maffelu.net/windows-8-using-jquery-in-your-windows-store-app/#comments</comments>
		<pubDate>Tue, 16 Apr 2013 18:22:01 +0000</pubDate>
		<dc:creator>Magnus Ferm</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://maffelu.net/?p=826</guid>
		<description><![CDATA[<p>Right, so I thought it would be great to write a HTML5 app in windows 8 since it&#8217;s supported and everything. The one thing I refuse to skip though is jQuery. So, I added jQuery 1.9.1 to my app, referenced it in my html-file and ran the app. The following popup showed up: I searched the web and I found...</p><p>The post <a href="http://maffelu.net/windows-8-using-jquery-in-your-windows-store-app/">Windows 8: Using jQuery in your Windows Store app</a> appeared first on <a href="http://maffelu.net">Maffelu.net</a>.</p>]]></description>
		<wfw:commentRss>http://maffelu.net/windows-8-using-jquery-in-your-windows-store-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=maffelu&amp;popout=1&amp;url=http%3A%2F%2Fmaffelu.net%2Fwindows-8-using-jquery-in-your-windows-store-app%2F&amp;language=en_GB&amp;category=text&amp;title=Windows+8%3A+Using+jQuery+in+your+Windows+Store+app&amp;description=Right%2C+so+I+thought+it+would+be+great+to+write+a+HTML5+app+in+windows+8+since+it%26%238217%3Bs+supported+and+everything.+The+one+thing+I+refuse+to+skip+though+is...&amp;tags=jquery%2CWindows+8%2Cblog" type="text/html" />
	</item>
		<item>
		<title>Windows 8: App badge logo validation error</title>
		<link>http://maffelu.net/windows-8-app-badge-logo-validation-error/</link>
		<comments>http://maffelu.net/windows-8-app-badge-logo-validation-error/#comments</comments>
		<pubDate>Mon, 15 Apr 2013 04:08:50 +0000</pubDate>
		<dc:creator>Magnus Ferm</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Windows 8]]></category>
		<category><![CDATA[Windows App Cert Kit Tool]]></category>

		<guid isPermaLink="false">http://maffelu.net/?p=823</guid>
		<description><![CDATA[<p>As I am almost done with my first Windows 8 App, Himmelsblå Dagar (a Swedish app), I was trying out the Windows App Cert Kit Tool used to validate your application before sending it into Microsoft. It was a good tool as it found two errors I had. One was that I was still building in Debug mode (doh!) and...</p><p>The post <a href="http://maffelu.net/windows-8-app-badge-logo-validation-error/">Windows 8: App badge logo validation error</a> appeared first on <a href="http://maffelu.net">Maffelu.net</a>.</p>]]></description>
		<wfw:commentRss>http://maffelu.net/windows-8-app-badge-logo-validation-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=maffelu&amp;popout=1&amp;url=http%3A%2F%2Fmaffelu.net%2Fwindows-8-app-badge-logo-validation-error%2F&amp;language=en_GB&amp;category=text&amp;title=Windows+8%3A+App+badge+logo+validation+error&amp;description=As+I+am+almost+done+with+my+first+Windows+8+App%2C+Himmelsbl%C3%A5+Dagar+%28a+Swedish+app%29%2C+I+was+trying+out+the+Windows+App+Cert+Kit+Tool+used+to+validate+your...&amp;tags=Windows+8%2CWindows+App+Cert+Kit+Tool%2Cblog" type="text/html" />
	</item>
		<item>
		<title>Windows 8: Updating a live tile from a PHP service</title>
		<link>http://maffelu.net/windows-8-updating-a-live-tile-from-a-php-service/</link>
		<comments>http://maffelu.net/windows-8-updating-a-live-tile-from-a-php-service/#comments</comments>
		<pubDate>Sun, 07 Apr 2013 11:31:58 +0000</pubDate>
		<dc:creator>Magnus Ferm</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Windows 8]]></category>

		<guid isPermaLink="false">http://maffelu.net/?p=812</guid>
		<description><![CDATA[<p>As I am making my first Windows 8 application I want to add a live tile. The application is a fixture list for my football team, Malmö FF, and I want it to have a live tile that always shows the next game. I have all the games listed on a site that I&#8217;ve written in PHP which the full...</p><p>The post <a href="http://maffelu.net/windows-8-updating-a-live-tile-from-a-php-service/">Windows 8: Updating a live tile from a PHP service</a> appeared first on <a href="http://maffelu.net">Maffelu.net</a>.</p>]]></description>
		<wfw:commentRss>http://maffelu.net/windows-8-updating-a-live-tile-from-a-php-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=maffelu&amp;popout=1&amp;url=http%3A%2F%2Fmaffelu.net%2Fwindows-8-updating-a-live-tile-from-a-php-service%2F&amp;language=en_GB&amp;category=text&amp;title=Windows+8%3A+Updating+a+live+tile+from+a+PHP+service&amp;description=As+I+am+making+my+first+Windows+8+application+I+want+to+add+a+live+tile.+The+application+is+a+fixture+list+for+my+football+team%2C+Malm%C3%B6+FF%2C+and+I...&amp;tags=blog" type="text/html" />
	</item>
		<item>
		<title>Javascript: Looping through radio buttons without jQuery</title>
		<link>http://maffelu.net/javascript-looping-through-radio-buttons-without-jquery/</link>
		<comments>http://maffelu.net/javascript-looping-through-radio-buttons-without-jquery/#comments</comments>
		<pubDate>Sun, 17 Mar 2013 20:45:25 +0000</pubDate>
		<dc:creator>Magnus Ferm</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[radio buttons]]></category>

		<guid isPermaLink="false">http://maffelu.net/?p=801</guid>
		<description><![CDATA[<p>There are times when you don&#8217;t have access to a third-party library such as jQuery to make life easy and those are the times where you regret not paying any attention to how actual javascript works. Going through radio buttons with jQuery is very easy, but with javascript it is a little bit more unclear if you haven&#8217;t done it...</p><p>The post <a href="http://maffelu.net/javascript-looping-through-radio-buttons-without-jquery/">Javascript: Looping through radio buttons without jQuery</a> appeared first on <a href="http://maffelu.net">Maffelu.net</a>.</p>]]></description>
		<wfw:commentRss>http://maffelu.net/javascript-looping-through-radio-buttons-without-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=maffelu&amp;popout=1&amp;url=http%3A%2F%2Fmaffelu.net%2Fjavascript-looping-through-radio-buttons-without-jquery%2F&amp;language=en_GB&amp;category=text&amp;title=Javascript%3A+Looping+through+radio+buttons+without+jQuery&amp;description=There+are+times+when+you+don%26%238217%3Bt+have+access+to+a+third-party+library+such+as+jQuery+to+make+life+easy+and+those+are+the+times+where+you+regret+not+paying+any...&amp;tags=html%2Cjavascript%2Cradio+buttons%2Cblog" type="text/html" />
	</item>
	</channel>
</rss>
