<?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>Bloggink &#187; Uncategorized</title>
	<atom:link href="http://blog.joggink.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.joggink.com</link>
	<description>Blog of Joggink, home of Jochen Vandendriessche</description>
	<lastBuildDate>Mon, 16 Aug 2010 12:48:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>HTML5 quickstart</title>
		<link>http://blog.joggink.com/2010/08/html5-boilerplate/</link>
		<comments>http://blog.joggink.com/2010/08/html5-boilerplate/#comments</comments>
		<pubDate>Thu, 12 Aug 2010 08:00:01 +0000</pubDate>
		<dc:creator>Jochen Vandendriessche</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[boilerplate]]></category>
		<category><![CDATA[font-face]]></category>
		<category><![CDATA[gzip]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[html5]]></category>

		<guid isPermaLink="false">http://blog.joggink.com/?p=323</guid>
		<description><![CDATA[HTML5 Boilerplate is the professional badass&#8217;s base HTML/CSS/JS template for a fast, robust and future-proof site.
After more than two years in iterative development, you get the best of the best practices baked in: cross-browser normalization, performance optimizations, even optional features like cross-domain ajax and flash. A starter apache .htaccess config file hooks you the eff [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>HTML5 Boilerplate is the professional badass&#8217;s base HTML/CSS/JS template for a fast, robust and future-proof site.</p>
<p>After more than two years in iterative development, you get the best of the best practices baked in: cross-browser normalization, performance optimizations, even optional features like cross-domain ajax and flash. A starter apache .htaccess config file hooks you the eff up with caching rules and preps your site to serve HTML5 video, use @font-face, and get your gzip zipple on.</p>
<p>Boilerplate is not a framework, nor does it prescribe any philosophy of development, it&#8217;s just got some tricks to get your project off the ground quickly and right-footed.</p>
<p><a href="http://html5boilerplate.com/">http://html5boilerplate.com/</a></p></blockquote>
<p>Via <a href="http://twitter.com/deaxon/status/20956044573">Benjamin De Cock (@deaxon)</a></p>
<p>There&#8217;s also an HTML5 reset:</p>
<blockquote><p>Like a lot of developers, we start every HTML project with the same set of HTML and CSS templates. We&#8217;ve been using these files for a long time and we&#8217;ve progressively added bits and pieces to them as our own personal best practices have evolved.</p>
<p>Now that modern browsers are starting to support some of the really useful parts of HTML5 and CSS3, it&#8217;s time for an update, and we thought we&#8217;d put it out there for everyone to use. By no means do we see this as the end-all and beat-all, but we think it&#8217;s a fairly good starting place that anyone can take and make their own.</p>
<p><a href="http://html5reset.org/">http://html5reset.org/</a></p></blockquote>
<p>And even am HTML5 site template to get started:</p>
<blockquote><p>The whole point of this is to abstract things I do over and over again when starting a new web design/development project. This reflects my workflow and may change over time because of that.</p>
<p><a href="http://github.com/dcneiner/html5-site-template">http://github.com/dcneiner/html5-site-template</a></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.joggink.com/2010/08/html5-boilerplate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quicktip: Internet explorer does not trigger key events on the window object</title>
		<link>http://blog.joggink.com/2010/08/quicktip-internet-explorer-does-not-trigger-key-events-on-the-window-object/</link>
		<comments>http://blog.joggink.com/2010/08/quicktip-internet-explorer-does-not-trigger-key-events-on-the-window-object/#comments</comments>
		<pubDate>Wed, 11 Aug 2010 22:22:28 +0000</pubDate>
		<dc:creator>Jochen Vandendriessche</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[keydown]]></category>
		<category><![CDATA[keypress]]></category>
		<category><![CDATA[keyup]]></category>

		<guid isPermaLink="false">http://blog.joggink.com/?p=319</guid>
		<description><![CDATA[In one of my latest projects I had to use jquery keypress events for next and previous navigation. I develop on safari and do the cross browsertesting afterwards, and it didn&#8217;t work in Internet Explorer&#8230;
so instead of listening to the window for keypress events:
$(window).keypress(function(){...});
I had to do this:
$(document).keypress(function(){...});
]]></description>
			<content:encoded><![CDATA[<p>In one of my latest projects I had to use jquery keypress events for next and previous navigation. I develop on safari and do the cross browsertesting afterwards, and it didn&#8217;t work in Internet Explorer&#8230;</p>
<p>so instead of listening to the window for keypress events:</p>
<pre>$(window).keypress(function(){...});</pre>
<p>I had to do this:</p>
<pre>$(document).keypress(function(){...});</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.joggink.com/2010/08/quicktip-internet-explorer-does-not-trigger-key-events-on-the-window-object/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Webdeveloper toolbox</title>
		<link>http://blog.joggink.com/2010/06/google-chrome-extensions/</link>
		<comments>http://blog.joggink.com/2010/06/google-chrome-extensions/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 12:44:59 +0000</pubDate>
		<dc:creator>Jochen Vandendriessche</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[extensions]]></category>
		<category><![CDATA[frontend]]></category>
		<category><![CDATA[google chrome]]></category>

		<guid isPermaLink="false">http://blog.joggink.com/?p=298</guid>
		<description><![CDATA[For all you google chrome webdevelopers out there, this might come in handy (or perhaps it already did): https://chrome.google.com/extensions/featured/web_dev
I prefer working with the nightly build webkit, mostly because the web inspector had a full redesign. Before I used firefox with a gazillion addons ending up using only firebug&#8230; And speaking of firebug, check out the firebug [...]]]></description>
			<content:encoded><![CDATA[<p>For all you google chrome webdevelopers out there, this might come in handy (or perhaps it already did): <a href="https://chrome.google.com/extensions/featured/web_dev">https://chrome.google.com/extensions/featured/web_dev</a></p>
<p>I prefer working with the nightly build webkit, mostly because <a href="http://webkit.org/blog/197/web-inspector-redesign/">the web inspector had a full redesign</a>. Before I used <a href="http://getfirefox.com">firefox</a> with a gazillion addons ending up using only <a href="http://getfirebug.com/">firebug</a>&#8230; And speaking of firebug, check out the <a href="http://getfirebug.com/firebuglite#Bookmarklet">firebug lite bookmarklet</a>, ideal for Internet Explorer issues. And not to forget <a href="http://www.opera.com/dragonfly/">dragonfly</a> for those who use <a href="http://www.opera.com">opera</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.joggink.com/2010/06/google-chrome-extensions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do you bill your clients?</title>
		<link>http://blog.joggink.com/2010/03/how-do-you-bill-your-clients/</link>
		<comments>http://blog.joggink.com/2010/03/how-do-you-bill-your-clients/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 22:48:27 +0000</pubDate>
		<dc:creator>Jochen Vandendriessche</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.joggink.com/?p=291</guid>
		<description><![CDATA[I use this lovely piece of software called billings, it gives me a nice overview of my clients, projects and the time I&#8217;ve spent on each part of their project. I&#8217;ve always given them a fixed price, sometimes I get ready early, on time and sometimes late. The fact is I&#8217;m like public transport or [...]]]></description>
			<content:encoded><![CDATA[<p>I use this lovely piece of software called billings, it gives me a nice overview of my clients, projects and the time I&#8217;ve spent on each part of their project. I&#8217;ve always given them a fixed price, sometimes I get ready early, on time and sometimes late. The fact is I&#8217;m like public transport or an airline company. My clients ask me how much something will cost, I give them a price and we&#8217;re set, the same as booking a flight from Brussels to London, you pay the price and you get there, maybe you&#8217;re early, maybe you get some delay, but the price stays the same.</p>
<p>But maybe, you&#8217;re like a taxi driver, you give them an estimate and if the client agrees you start working. If you deliver on time the pay less, if the job takes a little longer, the customer pays more. I believe this is the most fair way to work, unfortunately web development seems to be in the dark zone for most people, as if we just click buttons on some kind of magic box that does all our work.</p>
<p>So how do you bill your clients?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.joggink.com/2010/03/how-do-you-bill-your-clients/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>The fun theory</title>
		<link>http://blog.joggink.com/2009/12/the-fun-theory/</link>
		<comments>http://blog.joggink.com/2009/12/the-fun-theory/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 11:26:54 +0000</pubDate>
		<dc:creator>Jochen Vandendriessche</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[interface]]></category>

		<guid isPermaLink="false">http://blog.joggink.com/?p=282</guid>
		<description><![CDATA[Could it be that making something more fun to use actually make more people use it? For instance by changing a glass recycling machine into a Bottle Bank Arcade Machine? See for yourself

More videos and info about this concept can be found on: thefuntheory.com
]]></description>
			<content:encoded><![CDATA[<p>Could it be that making something more fun to use actually make more people use it? For instance by changing a glass recycling machine into a Bottle Bank Arcade Machine? See for yourself</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/zSiHjMU-MUo&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en_US&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/zSiHjMU-MUo&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en_US&amp;feature=player_embedded&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>More videos and info about this concept can be found on: <a href="http://thefuntheory.com/" target="_blank">thefuntheory.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.joggink.com/2009/12/the-fun-theory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
