<?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>Works of Time</title>
	<atom:link href="http://worksoftime.nl/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://worksoftime.nl/blog</link>
	<description>Weblog of Tim Huisman</description>
	<lastBuildDate>Sun, 04 Mar 2012 20:05:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Being responsive from mobile to desktop</title>
		<link>http://worksoftime.nl/blog/being-responsive-mobile-to-desktop/</link>
		<comments>http://worksoftime.nl/blog/being-responsive-mobile-to-desktop/#comments</comments>
		<pubDate>Sun, 04 Mar 2012 15:26:25 +0000</pubDate>
		<dc:creator>Tim Huisman</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Page speed optimization]]></category>
		<category><![CDATA[Responsive web design]]></category>

		<guid isPermaLink="false">http://worksoftime.nl/blog/?p=1412</guid>
		<description><![CDATA[Two months ago I was in a situation where I thought about making my website responsive. At the time I was working on my first responsive website One Planet One World. Applying the mobile first responsive web design mindset; start &#8230; <a href="http://worksoftime.nl/blog/being-responsive-mobile-to-desktop/">Continued</a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://worksoftime.nl/blog/assets/responsive.jpg" alt="" title="Desktop first or Mobile first?" width="525" height="100" class="aligncenter size-full wp-image-1586 colorbox-1412" /></p>
<p>Two months ago I was in a situation where I thought about making my website responsive. At the time I was working on my first responsive website <a href="http://www.oneplanetoneworld.info/">One Planet One World</a>. Applying the <em>mobile first responsive web design</em> mindset; start with the mobile version and work towards larger versions (tablet and desktop).</p>
<p>For <em>One Planet One World</em> it was a natural choice to go mobile first. Having the benefit of a clean sheet and the use of the <a href="http://www.rootstheme.com/">Roots WP theme</a> (implements <a href="http://html5boilerplate.com/">HTML5 Boilerplate</a>), which already advocates mobile first <a href="https://github.com/retlehs/roots/blob/master/css/style.css">in its stylesheet</a> [rule 93-101]. But for my own website I already had the styling for the desktop version. A question arose: &#8220;degrade from desktop to mobile or enhance from mobile to desktop?&#8221; The first option would mean I only had to make media queries for the mobile and tablet versions. The second option would mean I had to start from scratch (sort of).</p>
<p><span id="more-1412"></span></p>
<p>After I read <a href="http://www.abookapart.com/products/responsive-web-design">Responsive Web Design</a> (from A Book Apart) I made the decision to go for option two. First of all this gave me the opportunity to get rid and/or change elements that needed improvement. Secondly, the first option would mean I would have to write more lines of <em>CSS</em> in the end. For example, the fixed <a href="http://960.gs/">960 Grid System</a> would need to be reset for smaller than 960 pixels screen sizes.</p>
<p>Thirdly, option two would benefit the page speed performance on mobile devices more. I&#8217;ll illustrate this with two code examples. Both examples show simplified code which add the grey wooden background and the social network icons in the footer.<br />
&nbsp;</p>
<h3>Option 1 &#8211; desktop to mobile</h3>
<p>In the &#8216;All devices&#8217;-style both the body and <a href="http://worksoftime.nl/blog/making-of-css-sprites/">social icons</a> get a background image. If the screen size is smaller than 480 pixels the &#8216;Mobile&#8217;-style will be applied. Which will remove the background from the body and change the image used for the social icons. This means that it takes <strong class="bold-spotlight">two</strong> downloads on desktop and <strong class="bold-spotlight">three</strong> on mobile.</p>
<pre class="wp-code-highlight prettyprint">
/* 'All devices'-style [desktop] */
body { background-image: url(../img/bg.jpg); }
.social icons { background-image: url(../img/sprite-icons.png); }

/* 'Mobile'-style */
@media only screen and (max-width: 480px) {
	body { background-image: none; }
	.social icons { background-image: url(../img/sprite-icons-large.png); }
}
</pre>
<p>&nbsp;</p>
<h3>Option 2 &#8211; mobile to desktop</h3>
<p>In the &#8216;All devices&#8217;-style only the social icons get a background image. If the screen size is larger than 960 pixels the &#8216;Desktop&#8217;-style will be applied. Which will add the background to the body and change the social icons image. In this case it would take <strong class="bold-spotlight">three</strong> downloads on desktop and only <strong class="bold-spotlight">one</strong> on mobile.</p>
<pre class="wp-code-highlight prettyprint">
/* 'All devices'-style [mobile] */
.social icons { background-image: url(../img/sprite-icons-large.png); }

/* 'Desktop'-style */
@media only screen and (min-width: 960px) {
	body { background-image: url(../img/bg.jpg); }
	.social icons { background-image: url(../img/sprite-icons.png); }
}
</pre>
<p>&nbsp;</p>
<h3>Conclusion</h3>
<p>If <em>CSS</em> and <em>responsive web design</em> are correctly applied it would mean there is one &#8216;All devices&#8217;-style and multiple queries to select other devices or screen sizes. The &#8216;All devices&#8217;-style shall always be applied, while the queries will only be applied if it matches the screen size. This means that all images in the &#8216;All devices&#8217;-style will be downloaded, even though they might not be shown on mobile. This becomes clear in the code example for option 1.</p>
<p>Every image (and other files) that are part of a website have to be downloaded. It&#8217;s best practice to limit <a href="http://developer.yahoo.com/performance/rules.html#num_http">the amount of downloads</a>, because downloading simply takes time. This is probably even more the case for mobile devices. Generally mobile devices have slower CPU speed and lower Internet connection speed, which already makes the loading of a website slower. Loading images, which might not even be shown, will only increase this load time. This is clearly pointless and something you should try to avoid.</p>
<p>It&#8217;s therefore better to apply the mobile first mindset: start with mobile and work towards larger screen sizes.</p>
]]></content:encoded>
			<wfw:commentRss>http://worksoftime.nl/blog/being-responsive-mobile-to-desktop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Works of Time 3.1 &#8211; &#8220;It&#8217;s responsive!&#8221;</title>
		<link>http://worksoftime.nl/blog/works-of-time-3-1/</link>
		<comments>http://worksoftime.nl/blog/works-of-time-3-1/#comments</comments>
		<pubDate>Sun, 19 Feb 2012 21:09:35 +0000</pubDate>
		<dc:creator>Tim Huisman</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Page speed optimization]]></category>
		<category><![CDATA[Responsive web design]]></category>
		<category><![CDATA[Works of Time]]></category>

		<guid isPermaLink="false">http://worksoftime.nl/blog/?p=1514</guid>
		<description><![CDATA[As I mentioned in some of my previous posts, I wanted to make Works of Time responsive with version three. But back then I didn&#8217;t have enough time to make this come to pass. After completing my previous project (One &#8230; <a href="http://worksoftime.nl/blog/works-of-time-3-1/">Continued</a>]]></description>
			<content:encoded><![CDATA[<p>As I mentioned in some of my previous posts, I wanted to make <em>Works of Time</em> responsive with <a href="http://worksoftime.nl/blog/works-of-time-3-0/">version three</a>. But back then I didn&#8217;t have enough time to make this come to pass. After completing my previous project (<a href="http://worksoftime.nl/portfolio/one-planet-one-world/">One Planet One World</a> &#8211; my first responsive website) and a relative calm period at school I finally found the time I needed.</p>
<p>After almost a month of redesigning, developing and refactoring I&#8217;m proud to announce that version 3.1 is completed. While the main focus was to apply responsiveness, I also took the opportunity to make some other minor changes such as the dotted lines used in titles and the overview page for the <a href="http://worksoftime.nl/pcm/">PCM stages</a>. However, most changes needed to be made because the old situation wasn&#8217;t compatible with the new flexible layout. Or because of limitations of mobile and tablet devices.</p>
<p><span id="more-1514"></span></p>
<p>In the image below [click for larger version] the three views of the website are shown: desktop (left), tablet (middle) and mobile (right). Some changes that can be seen are:</p>
<ul>
<li>Image slideshow gets smaller.</li>
<li>Navigation of slideshow hide in mobile view.</li>
<li>Positioning of elements in header and footer change.</li>
<li>Social network icons (in footer) are larger in tablet and mobile view.</li>
<li>The sidebar (grey block) positions under the main text in tablet and mobile view.</li>
</ul>
<p><a href="/blog/images/wotr-large.png"><img class="colorbox-1514"  src="/blog/images/wotr-small.png" alt="Desktop, Tablet and Mobile views" title="Desktop, Tablet and Mobile views" width="600" height="343"></a></p>
<p>I&#8217;m currently working towards my graduation on the subject of page speed optimization and how it can be applied efficiently. The last two weeks I&#8217;ve been reading hundreds of articles, blogposts, papers and websites about this subject. One of the things I learned is that a fast website is more than a good score in PageSpeed and/or YSlow. I&#8217;ve been using <a href="http://www.webpagetest.org/">WebPageTest</a> lately to get an idea of how quick my website loads: <a href="http://www.webpagetest.org/result/120219_2Q_39TZA/">the report of this blog</a> (in IE9, on a 1,5Mbps connection from Amsterdam).</p>
<p>I&#8217;ve managed to get my average page speed down to 3.5 seconds, which is almost a full second faster than version 3.0. Because I&#8217;m becoming a sort of advocate of the importance of page speed I want to share some interesting infographics (from <a href="http://www.strangeloopnetworks.com">Strangeloop Networks</a>):</p>
<ul>
<li><a href="http://www.strangeloopnetworks.com/resources/infographics/web-performance-and-user-expectations/poster-visualizing-web-performance/">Visualizing Web Performance</a></li>
<li><a href="http://www.strangeloopnetworks.com/resources/infographics/2012-annual-state-of-the-union/poster/">2012 State of the Union: E-Commerce Page Speed and Website Performance</a></li>
<li><a href="http://www.strangeloopnetworks.com/resources/infographics/mobile-infographics/poster-mobile-infographics/">Mobile Web Performance vs. User Expectations</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://worksoftime.nl/blog/works-of-time-3-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Portfolio: One Planet One World</title>
		<link>http://worksoftime.nl/blog/portfolio-one-planet-one-world/</link>
		<comments>http://worksoftime.nl/blog/portfolio-one-planet-one-world/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 20:24:41 +0000</pubDate>
		<dc:creator>Tim Huisman</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[One Planet One World]]></category>
		<category><![CDATA[Responsive web design]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://worksoftime.nl/blog/?p=1460</guid>
		<description><![CDATA[After almost two months of designing and developing I&#8217;m pleased to announce that the new version of One Planet One World is finished. The new design &#8211; nicknamed &#8216;Rastabar&#8217; after the iconic seperator at the top and bottom of the &#8230; <a href="http://worksoftime.nl/blog/portfolio-one-planet-one-world/">Continued</a>]]></description>
			<content:encoded><![CDATA[<p>After almost two months of designing and developing I&#8217;m pleased to announce that the new version of <a href="http://www.oneplanetoneworld.info/">One Planet One World</a> is finished. The new design &#8211; nicknamed &#8216;Rastabar&#8217; after the iconic seperator at the top and bottom of the pages &#8211; is fully responsive, so that the viewability remains intact on tablets and smartphones. This project is a first for me, as it was my first website with a responsive and fluid layout.</p>
<p style="text-align: center;"><img class="size-full wp-image-1461 aligncenter colorbox-1460" title="header-oneplanetoneworld" src="http://worksoftime.nl/blog/assets/header-oneplanetoneworld.png" alt="" width="525" height="100" /></p>
<p><span id="more-1460"></span></p>
<blockquote><p>One Planet One World is the website of Martijn Huisman, on which he publishes his essays, stories, photos and research projects. Some of the subjects he writes about are history and media, Japan and reggae. With the new design, the website, founded in 2009, has been upgraded to it&#8217;s third version.</p>
<p>This new version &#8211; nicknamed &#8216;Rastabar&#8217;, after the iconic green-gold-red seperator at the top and bottom of the page &#8211; implements a new and fresh design. More thought has been given to implementing shareability with social networks via &#8216;Share&#8217;-buttons, Facebook &#8216;Like&#8217;-buttons and a Twitter feed. Finally, the most important improvement has been made to the publications page, which now functions as a portfolio. It has changed from a simple list to an overview page, and every publication now has it&#8217;s own page.</p>
<p>On a more personal note: One Planet One World is the first website with a fluid and responsive layout that I&#8217;ve made. Meaning that the site will adept itself to the platform it&#8217;s being viewed on. This has been achieved with CSS3 media queries and by using percentages instead of pixels for element widths.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://worksoftime.nl/blog/portfolio-one-planet-one-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Photos: Berlin, the City of the Bear</title>
		<link>http://worksoftime.nl/blog/photos-berlin/</link>
		<comments>http://worksoftime.nl/blog/photos-berlin/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 16:52:19 +0000</pubDate>
		<dc:creator>Tim Huisman</dc:creator>
				<category><![CDATA[Holiday]]></category>
		<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://worksoftime.nl/blog/?p=1161</guid>
		<description><![CDATA[Fourth and final destination: Berlin. The biggest city of the four and indeed with to much to see in only two days (I didn&#8217;t follow my &#8216;three-day&#8217; rule this time). My favorite attraction: Zoo Berlin. I nearly spent five hours &#8230; <a href="http://worksoftime.nl/blog/photos-berlin/">Continued</a>]]></description>
			<content:encoded><![CDATA[<p>Fourth and final destination: Berlin. The biggest city of the four and indeed with to much to see in only two days (I didn&#8217;t follow my &#8216;three-day&#8217; rule this time). My favorite attraction: <a href="http://www.zoo-berlin.de/zoo.html">Zoo Berlin</a>. I nearly spent five hours enjoying the diversity and beauty of the beasts and park as a whole. Most rememberable moment: standing in front of the lion enclosure, while they started to roar! Deafening, brutal and wild. But enough talk, here are some of the photos from the 518 I took in total:</p>
<p class="align-center"><a href="http://worksoftime.nl/blog/assets/Berlijn-84.jpg"><img class="alignnone size-thumbnail wp-image-1416 colorbox-1161" title="A pygmy hippopotamus @ Berlin Zoo" src="http://worksoftime.nl/blog/assets/Berlijn-84-197x140.jpg" alt="A pygmy hippopotamus @ Berlin Zoo" width="197" height="140" /></a><a href="/blog/assets/Berlijn-132.jpg"><img class="alignnone size-thumbnail wp-image-1418 colorbox-1161" title="Three Pumba's @ Berlin Zoo" src="http://worksoftime.nl/blog/assets/Berlijn-132-197x140.jpg" alt="Three Pumba's" width="197" height="140" /></a><a href="/blog/assets/Berlijn-127.jpg"><img class="alignnone size-thumbnail wp-image-1417 colorbox-1161" title="White wolf @ Berlin Zoo" src="http://worksoftime.nl/blog/assets/Berlijn-127-197x140.jpg" alt="White wolf" width="197" height="140" /></a></p>
<p><span id="more-1161"></span></p>
<p class="align-center"><a href="http://worksoftime.nl/blog/assets/Berlijn-95.jpg"><img class="alignnone size-medium wp-image-1419 colorbox-1161" title="A kind of horse @ Berlin Zoo" src="http://worksoftime.nl/blog/assets/Berlijn-95-147x196.jpg" alt="A kind of horse" width="147" height="196" /></a><a href="http://worksoftime.nl/blog/assets/Berlijn-202.jpg"><img class="alignnone size-medium wp-image-1422 colorbox-1161" title="Giant Panda Bao Bao @ Berlin Zoo" src="http://worksoftime.nl/blog/assets/Berlijn-202-147x196.jpg" alt="Giant Panda Bao Bao" width="147" height="196" /></a><a href="http://worksoftime.nl/blog/assets/Berlijn-45.jpg"><img class="alignnone size-medium wp-image-1449 colorbox-1161" title="Brandenburger Tor" src="http://worksoftime.nl/blog/assets/Berlijn-45-147x196.jpg" alt="Brandenburger Tor" width="147" height="196" /></a><a href="http://worksoftime.nl/blog/assets/Berlijn-287.jpg"><img class="alignnone size-medium wp-image-1427 colorbox-1161" title="Alte Nationalgalerie, on the Museumsinsel" src="http://worksoftime.nl/blog/assets/Berlijn-287-147x196.jpg" alt="Alte Nationalgalerie, on the Museumsinsel" width="147" height="196" /></a></p>
<p class="align-center"><a href="/blog/assets/Berlijn-251.jpg"><img class="alignnone size-thumbnail wp-image-1425 colorbox-1161" title="Splitting of the Spree at the Museumsinsel" src="http://worksoftime.nl/blog/assets/Berlijn-251-197x140.jpg" alt="Splitting of the Spree at the Museumsinsel" width="197" height="140" /></a><a href="/blog/assets/Berlijn-264.jpg"><img class="alignnone size-thumbnail wp-image-1426 colorbox-1161" title="Altes Museum, at the Museumsinsel" src="http://worksoftime.nl/blog/assets/Berlijn-264-197x140.jpg" alt="Altes Museum, ont the Museumsinsel" width="197" height="140" /></a><a href="http://worksoftime.nl/blog/assets/Berlijn-268.jpg"><img class="alignnone size-thumbnail wp-image-1432 colorbox-1161" title="Berliner Dom" src="http://worksoftime.nl/blog/assets/Berlijn-268-197x140.jpg" alt="Berliner Dom" width="197" height="140" /></a></p>
<p class="align-center"><a href="/blog/assets/Berlijn-403.jpg"><img class="alignnone size-medium wp-image-1429 colorbox-1161" title="Exposition in the Altes Museum" src="http://worksoftime.nl/blog/assets/Berlijn-403-147x196.jpg" alt="Altes Museum" width="147" height="196" /></a><a href="/blog/assets/Berlijn-304.jpg"><img class="alignnone size-medium wp-image-1428 colorbox-1161" title="Berliner Rathaus (Town Hall)" src="http://worksoftime.nl/blog/assets/Berlijn-304-147x196.jpg" alt="Berliner Rathaus" width="147" height="196" /></a><a href="http://worksoftime.nl/blog/assets/Berlijn-311.jpg"><img class="alignnone size-medium wp-image-1430 colorbox-1161" title="World Time Clock at Alexanderplatz" src="http://worksoftime.nl/blog/assets/Berlijn-311-147x196.jpg" alt="World Time Clock at Alexanderplatz" width="147" height="196" /></a><a href="http://worksoftime.nl/blog/assets/Berlijn-308.jpg"><img class="alignnone size-medium wp-image-1450 colorbox-1161" title="Berliner Fernsehturm" src="http://worksoftime.nl/blog/assets/Berlijn-308-147x196.jpg" alt="Berliner Fernsehturm" width="147" height="196" /></a></p>
<p class="align-center"><a href="http://worksoftime.nl/blog/assets/Berlijn-335.jpg"><img class="alignnone size-thumbnail wp-image-1434 colorbox-1161" title="Reichstag" src="http://worksoftime.nl/blog/assets/Berlijn-335-197x140.jpg" alt="Reichstag" width="197" height="140" /></a><a href="http://worksoftime.nl/blog/assets/Berlijn-449.jpg"><img class="alignnone size-thumbnail wp-image-1453 colorbox-1161" title="Checkpoint Mini Berlin" src="http://worksoftime.nl/blog/assets/Berlijn-449-197x140.jpg" alt="Checkpoint Mini Berlin" width="197" height="140" /></a><a href="/blog/assets/Berlijn-363.jpg"><img class="alignnone size-thumbnail wp-image-1433 colorbox-1161" title="View from Siegessäule" src="http://worksoftime.nl/blog/assets/Berlijn-363-197x140.jpg" alt="View from Siegessäule" width="197" height="140" /></a></p>
<p class="align-center"><a href="http://worksoftime.nl/blog/assets/Berlijn-375.jpg"><img class="alignnone size-medium wp-image-1437 colorbox-1161" title="Siegessäule" src="http://worksoftime.nl/blog/assets/Berlijn-375-147x196.jpg" alt="Siegessäule" width="147" height="196" /></a><a href="/blog/assets/Berlijn-366.jpg"><img class="alignnone size-medium wp-image-1436 colorbox-1161" title="The statue of Victoria, on top of the Siegessäule" src="http://worksoftime.nl/blog/assets/Berlijn-366-147x196.jpg" alt="The statue of Victoria" width="147" height="196" /></a><a href="/blog/assets/Berlijn-442.jpg"><img class="alignnone size-medium wp-image-1438 colorbox-1161" title="" src="http://worksoftime.nl/blog/assets/Berlijn-442-147x196.jpg" alt="Deutscher Dom" width="147" height="196" /></a><a href="/blog/assets/Berlijn-447.jpg"><img class="alignnone size-medium wp-image-1439 colorbox-1161" title="Deutscher Dom, on the Gendarmenmarkt" src="http://worksoftime.nl/blog/assets/Berlijn-447-147x196.jpg" alt="Deutscher Dom" width="147" height="196" /></a></p>
<p class="align-center"><a href="http://worksoftime.nl/blog/assets/Berlijn-452.jpg"><img class="alignnone size-thumbnail wp-image-1440 colorbox-1161" title="Checkpoint Charlie" src="http://worksoftime.nl/blog/assets/Berlijn-452-197x140.jpg" alt="Checkpoint Charlie" width="197" height="140" /></a><a href="/blog/assets/Berlijn-478.jpg"><img class="alignnone size-thumbnail wp-image-1442 colorbox-1161" title="East Side Gallery" src="http://worksoftime.nl/blog/assets/Berlijn-478-197x140.jpg" alt="East Side Gallery" width="197" height="140" /></a><a href="/blog/assets/Berlijn-472.jpg"><img class="alignnone size-thumbnail wp-image-1441 colorbox-1161" title="East Side Gallery" src="http://worksoftime.nl/blog/assets/Berlijn-472-197x140.jpg" alt="East Side Gallery" width="197" height="140" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://worksoftime.nl/blog/photos-berlin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Photos: Prague, the Golden City</title>
		<link>http://worksoftime.nl/blog/photos-prague/</link>
		<comments>http://worksoftime.nl/blog/photos-prague/#comments</comments>
		<pubDate>Sat, 24 Dec 2011 18:03:08 +0000</pubDate>
		<dc:creator>Tim Huisman</dc:creator>
				<category><![CDATA[Holiday]]></category>
		<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://worksoftime.nl/blog/?p=1159</guid>
		<description><![CDATA[Third destination: Prague, capital of the Czech Republic. People that played the latest Call of Duty: Modern Warfare (3) game, might recognize some of the buildings in the photographs. For example the Old Town bridge tower or the buildings surrounding &#8230; <a href="http://worksoftime.nl/blog/photos-prague/">Continued</a>]]></description>
			<content:encoded><![CDATA[<p>Third destination: Prague, capital of the Czech Republic. People that played the latest <em>Call of Duty: Modern Warfare (3)</em> game, might recognize some of the buildings in the photographs. For example the <a class="colorbox-link" href="http://www.topzine.cz/wp-content/uploads/2011/05/modern_warfare_3_image.png">Old Town bridge tower</a> or the buildings surrounding <a class="colorbox-link" href="http://images.wikia.com/callofduty/images/e/e8/PragueOldTownSquare.jpg">Old Town Square</a>. I stayed for three days &#8211; the magic number when it comes to visiting most European capitals, in my experience.</p>
<p>I would like to wish everyone happy holidays and a happy new year. It <a href="http://www.nasa.gov/topics/earth/features/2012.html"><em>might</em> be the last</a> time we can celebrate them! *dramatic music*</p>
<p class="align-center"><a href="http://worksoftime.nl/blog/assets/Praag-16.jpg"><img src="http://worksoftime.nl/blog/assets/Praag-16-147x196.jpg" alt="Charles Bridge" title="Charles Bridge - Old Town bridge tower" width="147" height="196" class="alignnone size-medium wp-image-1360 colorbox-1159" /></a><a href="/blog/assets/Praag-24.jpg"><img src="http://worksoftime.nl/blog/assets/Praag-24-147x196.jpg" alt="Old Town Hall Tower" title="Old Town Hall Tower" width="147" height="196" class="alignnone size-medium wp-image-1361 colorbox-1159" /></a><a href="/blog/assets/Praag-26.jpg"><img src="http://worksoftime.nl/blog/assets/Praag-26-147x196.jpg" alt="Old Town Hall Tower - Astronomical Clock" title="Old Town Hall Tower - Astronomical Clock" width="147" height="196" class="alignnone size-medium wp-image-1362 colorbox-1159" /></a><a href="http://worksoftime.nl/blog/assets/Praag-135.jpg"><img src="http://worksoftime.nl/blog/assets/Praag-135-147x196.jpg" alt="Old Town Hall Tower" title="Inside the Old Town Hall Tower" width="147" height="196" class="alignnone size-medium wp-image-1370 colorbox-1159" /></a></p>
<p><span id="more-1159"></span></p>
<p class="align-center"><a href="http://worksoftime.nl/blog/assets/Praag-142.jpg"><img src="http://worksoftime.nl/blog/assets/Praag-142-147x196.jpg" alt="Church of Our Lady Before Tyn" title="Church of Our Lady Before Tyn" width="147" height="196" class="alignnone size-medium wp-image-1371 colorbox-1159" /></a><a href="http://worksoftime.nl/blog/assets/Praag-47.jpg"><img src="http://worksoftime.nl/blog/assets/Praag-47-147x196.jpg" alt="National Museum" title="Fountain in front of National Museum" width="147" height="196" class="alignnone size-medium wp-image-1372 colorbox-1159" /></a><a href="/blog/assets/Praag-51.jpg"><img src="http://worksoftime.nl/blog/assets/Praag-51-147x196.jpg" alt="Žižkov Television Tower" title="Žižkov Television Tower" width="147" height="196" class="alignnone size-medium wp-image-1364 colorbox-1159" /></a><a href="/blog/assets/Praag-72.jpg"><img src="http://worksoftime.nl/blog/assets/Praag-72-147x196.jpg" alt="Jan Žižka Monument" title="Jan Žižka Monument" width="147" height="196" class="alignnone size-medium wp-image-1365 colorbox-1159" /></a></p>
<p class="align-center"><a href="http://worksoftime.nl/blog/assets/Praag-125.jpg"><img src="http://worksoftime.nl/blog/assets/Praag-125-197x140.jpg" alt="Old Town Hall" title="Old Town Hall" width="197" height="140" class="alignnone size-thumbnail wp-image-1378 colorbox-1159" /></a><a href="/blog/assets/Praag-30.jpg"><img src="http://worksoftime.nl/blog/assets/Praag-30-197x140.jpg" alt="Statue on Old Town Square" title="Statue on Old Town Square" width="197" height="140" class="alignnone size-thumbnail wp-image-1380 colorbox-1159" /></a><a href="http://worksoftime.nl/blog/assets/Praag-171.jpg"><img src="http://worksoftime.nl/blog/assets/Praag-171-197x140.jpg" alt="Vysehrad Park" title="Vysehrad Park" width="197" height="140" class="alignnone size-thumbnail wp-image-1379 colorbox-1159" /></a></p>
<p class="align-center"><a href="http://worksoftime.nl/blog/assets/Praag-234.jpg"><img src="http://worksoftime.nl/blog/assets/Praag-234-197x140.jpg" alt="Main entrance to Prague Castle" title="Main entrance to Prague Castle" width="197" height="140" class="alignnone size-thumbnail wp-image-1390 colorbox-1159" /></a><a href="/blog/assets/Praag-244.jpg"><img src="http://worksoftime.nl/blog/assets/Praag-244-197x140.jpg" alt="Saint Vitus&#039; Cathedral" title="Saint Vitus&#039; Cathedral" width="197" height="140" class="alignnone size-thumbnail wp-image-1391 colorbox-1159" /></a><a href="/blog/assets/Praag-283.jpg"><img src="http://worksoftime.nl/blog/assets/Praag-283-197x140.jpg" alt="Saint Vitus&#039; Cathedral" title="Saint Vitus&#039; Cathedral" width="197" height="140" class="alignnone size-thumbnail wp-image-1392 colorbox-1159" /></a></p>
<p class="align-center"><a href="/blog/assets/Praag-100.jpg"><img src="http://worksoftime.nl/blog/assets/Praag-100-147x196.jpg" alt="Wallenstein Garden" title="Wallenstein Garden - Prague Castle in the background" width="147" height="196" class="alignnone size-medium wp-image-1366 colorbox-1159" /></a><a href="/blog/assets/Praag-109.jpg"><img src="http://worksoftime.nl/blog/assets/Praag-109-147x196.jpg" alt="Wallenstein Garden" title="Wallenstein Garden - Italian grotto with artificial stalactites" width="147" height="196" class="alignnone size-medium wp-image-1367 colorbox-1159" /></a><a href="http://worksoftime.nl/blog/assets/Praag-170.jpg"><img src="http://worksoftime.nl/blog/assets/Praag-170-147x196.jpg" alt="The Church of St. Peter and St. Paul" title="The Church of St. Peter and St. Paul" width="147" height="196" class="alignnone size-medium wp-image-1375 colorbox-1159" /></a><a href="http://worksoftime.nl/blog/assets/Praag-203.jpg"><img src="http://worksoftime.nl/blog/assets/Praag-203-147x196.jpg" alt="Observation Tower on Petrin Hill" title="Observation Tower on Petrin Hill" width="147" height="196" class="alignnone size-medium wp-image-1384 colorbox-1159" /></a></p>
<p class="align-center"><a href="http://worksoftime.nl/blog/assets/Praag-228.jpg"><img src="http://worksoftime.nl/blog/assets/Praag-228-147x196.jpg" alt="Loreta Praha" title="Loreta Praha" width="147" height="196" class="alignnone size-medium wp-image-1386 colorbox-1159" /></a><a href="/blog/assets/Praag-309.jpg"><img src="http://worksoftime.nl/blog/assets/Praag-309-147x196.jpg" alt="Bridges over the Vltava river" title="Bridges over the Vltava river" width="147" height="196" class="alignnone size-medium wp-image-1388 colorbox-1159" /></a><a href="/blog/assets/Praag-297.jpg"><img src="http://worksoftime.nl/blog/assets/Praag-297-147x196.jpg" alt="Daliborka Tower" title="Daliborka Tower" width="147" height="196" class="alignnone size-medium wp-image-1395 colorbox-1159" /></a><a href="/blog/assets/Praag-323.jpg"><img src="http://worksoftime.nl/blog/assets/Praag-323-147x196.jpg" alt="Lesser Town bridge tower" title="Charles Bridge - Lesser Town bridge tower" width="147" height="196" class="alignnone size-medium wp-image-1389 colorbox-1159" /></a></p>
<p><a href="/blog/images/PP1-Large.jpg"><img class="colorbox-1159"  src="/blog/images/PP1-Small.jpg" alt="Prague" title="Prague" width="600" height="190"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://worksoftime.nl/blog/photos-prague/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Panoramas: Rome and Budapest</title>
		<link>http://worksoftime.nl/blog/panoramas-rome-and-budapest/</link>
		<comments>http://worksoftime.nl/blog/panoramas-rome-and-budapest/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 19:22:11 +0000</pubDate>
		<dc:creator>Tim Huisman</dc:creator>
				<category><![CDATA[Holiday]]></category>
		<category><![CDATA[Panoramas]]></category>
		<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://worksoftime.nl/blog/?p=1330</guid>
		<description><![CDATA[After publishing the previous post I remembered I took a couple of photos, that could be stitched together into a panorama photograph. Below are some of the more successful attempts &#8211; Click for full version. Rome Vatican City Budapest Budapest &#8230; <a href="http://worksoftime.nl/blog/panoramas-rome-and-budapest/">Continued</a>]]></description>
			<content:encoded><![CDATA[<p>After publishing the previous post I remembered I took a couple of photos, that could be stitched together into a panorama photograph. Below are some of the more successful attempts &#8211; Click for full version.</p>
<h3>Rome</h3>
<p><a href="/blog/images/PR1-Large.jpg"><img class="colorbox-1330"  src="/blog/images/PR1-Small.jpg" alt="Trajan's Forum" title="Trajan's Forum" width="600" height="191"></a></p>
<p><span id="more-1330"></span></p>
<p><a href="/blog/images/PR2-Large.jpg"><img class="colorbox-1330"  src="/blog/images/PR2-Small.jpg" alt="Colosseum" title="Colosseum" width="600" height="134"></a></p>
<p><a href="/blog/images/PR5-Large.jpg"><img class="colorbox-1330"  src="/blog/images/PR5-Small.jpg" alt="Circus Maximus" title="Circus Maximus" width="600" height="135"></a></p>
<p><a href="/blog/images/PR3-Large.jpg"><img class="colorbox-1330"  src="/blog/images/PR3-Small.jpg" alt="Castel Sant'Angelo" title="Castel Sant'Angelo" width="600" height="223"></a></p>
<h3>Vatican City</h3>
<p><a href="/blog/images/PR4-Large.jpg"><img class="colorbox-1330"  src="/blog/images/PR4-Small.jpg" alt="St. Peter's Square &#038; Saint Peter's Basilica" title="St. Peter's Square &#038; Saint Peter's Basilica" width="600" height="57"></a></p>
<h3>Budapest</h3>
<p><a href="/blog/images/PB1-Large.jpg"><img class="colorbox-1330"  src="/blog/images/PB1-Small.jpg" alt="View towards pest" title="View towards the east of the city" width="600" height="161"></a></p>
<h3>Budapest | Sziget</h3>
<p><a href="/blog/images/PB2-Large.jpg"><img class="colorbox-1330"  src="/blog/images/PB2-Small.jpg" alt="Main Stage" title="Area around the Main Stage" width="600" height="57"></a></p>
<p><a href="/blog/images/PB3-Large.jpg"><img class="colorbox-1330"  src="/blog/images/PB3-Small.jpg" alt="Main Stage" title="Area in front of the Main Stage" width="600" height="174"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://worksoftime.nl/blog/panoramas-rome-and-budapest/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Photos: Budapest, the Pearl of the Danube</title>
		<link>http://worksoftime.nl/blog/photos-budapest/</link>
		<comments>http://worksoftime.nl/blog/photos-budapest/#comments</comments>
		<pubDate>Sat, 10 Dec 2011 18:45:20 +0000</pubDate>
		<dc:creator>Tim Huisman</dc:creator>
				<category><![CDATA[Holiday]]></category>
		<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://worksoftime.nl/blog/?p=1157</guid>
		<description><![CDATA[Second destination: Budapest. After a nightly travel from Rome to Vienna, and a beautiful ride along the Danube and Slovakian border by local train I arrived at the Pearl of the Danube. The city with its rich history would be &#8230; <a href="http://worksoftime.nl/blog/photos-budapest/">Continued</a>]]></description>
			<content:encoded><![CDATA[<p>Second destination: Budapest. After a nightly travel from Rome to Vienna, and a beautiful ride along the Danube and Slovakian border by local train I arrived at the <em>Pearl of the Danube</em>. The city with its rich history would be my &#8216;home&#8217; for ten whole days: three days in the city and seven days on Óbudai island for the Sziget Festival.</p>
<p class="align-center"><a href="/blog/assets/Budapest-43.jpg"><img class="alignnone size-thumbnail wp-image-1256 colorbox-1157" title="Széchenyi Chain Bridge" src="http://worksoftime.nl/blog/assets/Budapest-43-197x140.jpg" alt="Széchenyi Chain Bridge" width="197" height="140" /></a><a href="http://worksoftime.nl/blog/assets/Budapest-40.jpg"><img class="alignnone size-thumbnail wp-image-1257 colorbox-1157" title="The Danube, view towards the Parliament Building" src="http://worksoftime.nl/blog/assets/Budapest-40-197x140.jpg" alt="The Danube" width="197" height="140" /></a><a href="http://worksoftime.nl/blog/assets/Budapest-75.jpg"><img class="alignnone size-thumbnail wp-image-1258 colorbox-1157" title="The Parliament Building" src="http://worksoftime.nl/blog/assets/Budapest-75-197x140.jpg" alt="The Parliament Building" width="197" height="140" /></a></p>
<p><span id="more-1157"></span></p>
<p class="align-center"><a href="http://worksoftime.nl/blog/assets/Budapest-49.jpg"><img class="alignnone size-medium wp-image-1260 colorbox-1157" title="The Parliament Building" src="http://worksoftime.nl/blog/assets/Budapest-49-147x196.jpg" alt="The Parliament Building" width="147" height="196" /></a><a href="http://worksoftime.nl/blog/assets/Budapest-86.jpg"><img class="alignnone size-medium wp-image-1261 colorbox-1157" title="The Széchenyi Chain Bridge" src="http://worksoftime.nl/blog/assets/Budapest-86-147x196.jpg" alt="The Széchenyi Chain Bridge" width="147" height="196" /></a><a href="http://worksoftime.nl/blog/assets/Budapest-116.jpg"><img class="alignnone size-medium wp-image-1262 colorbox-1157" title="Buda Castle" src="http://worksoftime.nl/blog/assets/Budapest-116-147x196.jpg" alt="Buda Castle" width="147" height="196" /></a><a href="http://worksoftime.nl/blog/assets/Budapest-132.jpg"><img class="alignnone size-medium wp-image-1263 colorbox-1157" title="Fisherman's Bastion" src="http://worksoftime.nl/blog/assets/Budapest-132-147x196.jpg" alt="Fisherman's Bastion" width="147" height="196" /></a></p>
<p class="align-center"><a href="http://worksoftime.nl/blog/assets/Budapest-107.jpg"><img class="alignnone size-thumbnail wp-image-1265 colorbox-1157" title="Buda Castle" src="http://worksoftime.nl/blog/assets/Budapest-107-197x140.jpg" alt="Buda Castle" width="197" height="140" /></a><a href="http://worksoftime.nl/blog/assets/Budapest-120.jpg"><img class="alignnone size-thumbnail wp-image-1266 colorbox-1157" title="Matthias Church" src="http://worksoftime.nl/blog/assets/Budapest-120-197x140.jpg" alt="Matthias Church" width="197" height="140" /></a><a href="http://worksoftime.nl/blog/assets/Budapest-122.jpg"><img class="alignnone size-thumbnail wp-image-1267 colorbox-1157" title="Fisherman's Bastion" src="http://worksoftime.nl/blog/assets/Budapest-122-197x140.jpg" alt="Fisherman's Bastion" width="197" height="140" /></a></p>
<p class="align-center"><a href="http://worksoftime.nl/blog/assets/Budapest-176.jpg"><img class="alignnone size-medium wp-image-1285 colorbox-1157" title="Citadella" src="http://worksoftime.nl/blog/assets/Budapest-176-147x196.jpg" alt="Citadella" width="147" height="196" /></a><a href="http://worksoftime.nl/blog/assets/Budapest-187.jpg"><img class="alignnone size-medium wp-image-1286 colorbox-1157" title="Citadella, inside the WWII bunker" src="http://worksoftime.nl/blog/assets/Budapest-187-147x196.jpg" alt="Citadella" width="147" height="196" /></a><a href="http://worksoftime.nl/blog/assets/Budapest-195.jpg"><img class="alignnone size-medium wp-image-1287 colorbox-1157" title="Liberty Statue" src="http://worksoftime.nl/blog/assets/Budapest-195-147x196.jpg" alt="Liberty Statue" width="147" height="196" /></a><a href="http://worksoftime.nl/blog/assets/Budapest-199.jpg"><img class="alignnone size-medium wp-image-1288 colorbox-1157" title="Elisabeth Bridge" src="http://worksoftime.nl/blog/assets/Budapest-199-147x196.jpg" alt="Elisabeth Bridge" width="147" height="196" /></a></p>
<p class="align-center"><a href="http://worksoftime.nl/blog/assets/Budapest-133.jpg"><img class="alignnone size-thumbnail wp-image-1269 colorbox-1157" title="Fisherman's Bastion, view towards the Parliament Building" src="http://worksoftime.nl/blog/assets/Budapest-133-197x140.jpg" alt="Fisherman's Bastion" width="197" height="140" /></a><a href="http://worksoftime.nl/blog/assets/Budapest-217.jpg"><img class="alignnone size-thumbnail wp-image-1272 colorbox-1157" title="Heroes' Square" src="http://worksoftime.nl/blog/assets/Budapest-217-197x140.jpg" alt="Heroes' Square" width="197" height="140" /></a><a href="http://worksoftime.nl/blog/assets/Budapest-222.jpg"><img class="alignnone size-thumbnail wp-image-1273 colorbox-1157" title="Heroes' Square" src="http://worksoftime.nl/blog/assets/Budapest-222-197x140.jpg" alt="Heroes' Square" width="197" height="140" /></a></p>
<p class="align-center"><a href="http://worksoftime.nl/blog/assets/Budapest-229.jpg"><img class="alignnone size-medium wp-image-1274 colorbox-1157" title="The Széchényi Thermal Bath" src="http://worksoftime.nl/blog/assets/Budapest-229-147x196.jpg" alt="The Széchényi Thermal Bath" width="147" height="196" /></a><a href="http://worksoftime.nl/blog/assets/Budapest-246.jpg"><img class="alignnone size-medium wp-image-1275 colorbox-1157" title="Vajdahunyad Castle" src="http://worksoftime.nl/blog/assets/Budapest-246-147x196.jpg" alt="Vajdahunyad Castle" width="147" height="196" /></a><a href="http://worksoftime.nl/blog/assets/Budapest-256.jpg"><img class="alignnone size-medium wp-image-1276 colorbox-1157" title="A beautiful mosaic" src="http://worksoftime.nl/blog/assets/Budapest-256-147x196.jpg" alt="A beautiful mosaic" width="147" height="196" /></a><a href="http://worksoftime.nl/blog/assets/Budapest-292.jpg"><img class="alignnone size-medium wp-image-1278 colorbox-1157" title="Water tower on Margaret Island" src="http://worksoftime.nl/blog/assets/Budapest-292-147x196.jpg" alt="Water tower on Margaret Island" width="147" height="196" /></a></p>
<p class="align-center"><a href="/blog/assets/Budapest-238.jpg"><img class="alignnone size-thumbnail wp-image-1283 colorbox-1157" title="Vajdahunyad Castle" src="http://worksoftime.nl/blog/assets/Budapest-238-197x140.jpg" alt="Vajdahunyad Castle" width="197" height="140" /></a><a href="http://worksoftime.nl/blog/assets/Budapest-277.jpg"><img class="alignnone size-thumbnail wp-image-1281 colorbox-1157" title="Margaret Island" src="http://worksoftime.nl/blog/assets/Budapest-277-197x140.jpg" alt="Margaret Island" width="197" height="140" /></a><a href="http://worksoftime.nl/blog/assets/Budapest-257.jpg"><img class="alignnone size-thumbnail wp-image-1282 colorbox-1157" title="Nyugati Pályaudvar, the western trainstation" src="http://worksoftime.nl/blog/assets/Budapest-257-197x140.jpg" alt="Nyugati Pályaudvar" width="197" height="140" /></a></p>
<h3>The Sziget Festival</h3>
<p>After a week of city sightseeing it was time for something completely different: music, dance and madness&#8230; The Sziget Festival, a seven-day music festival on an island in the Danube. With performances of <em>Prince, 30 Seconds to Mars, Kaiser Chiefs, the Chemical Brothers, Pulp, Within Temptation</em> and many more. I discovered new bands, met new people, &#8216;danced&#8217; holding a branch above my head, survived the 1.5 hour long moshpit at <em>the Prodigy</em> and ate chicken testicle stew. In short, a week that I won&#8217;t forget soon and that is likely to be repeated next year&#8230; in about 230 days from now.</p>
<p>I didn&#8217;t take many (usable) photos, so instead some interesting material from others: <a href="http://vimeo.com/29519854">Sziget 2011 Unofficial Video Documentary</a>, <a href="http://www.youtube.com/watch?v=FO6deq2bROg">Obuda Island &#8211; Sziget Festival 2011</a> and <a href="http://www.youtube.com/watch?v=flYFxxsVwf4">Sziget Festival timelapse: 20. Sziget, 6-13 August 2012</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://worksoftime.nl/blog/photos-budapest/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Photos: Rome, the City of the Seven Hills</title>
		<link>http://worksoftime.nl/blog/photos-rome/</link>
		<comments>http://worksoftime.nl/blog/photos-rome/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 20:29:37 +0000</pubDate>
		<dc:creator>Tim Huisman</dc:creator>
				<category><![CDATA[Holiday]]></category>
		<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://worksoftime.nl/blog/?p=1154</guid>
		<description><![CDATA[As someone once said: &#8220;Winter Is Coming!&#8221; A perfect moment to post something about my backpacking adventure through Europe this summer. My journey took me to four countries, their capitals and an island in the Danube for the Sziget music &#8230; <a href="http://worksoftime.nl/blog/photos-rome/">Continued</a>]]></description>
			<content:encoded><![CDATA[<p>As someone once said: &#8220;<em>Winter Is Coming!</em>&#8221; A perfect moment to post something about my backpacking adventure through Europe this summer. My journey took me to <a class="colorbox-link" href="http://worksoftime.nl/blog/assets/sh2011.png">four countries, their capitals</a> and an island in the Danube for the <a href="http://sziget.hu/festival_english/">Sziget music festival</a>. Perhaps the thought of these locations and summery weather might bring you warmth in these cold and dark days at the end of 2011. Instead of a story the posts will mainly feature photos I took. First destination: Rome, Italy.</p>
<p>My main form of transport was by train (I traveled with an <a href="http://www.interrailnet.com/">InterRail Pass</a>) and that meant sitting in a train for a while&#8230; I arrived in Rome 24 hours after leaving Utrecht CS, without any sleep &#8211; never take a normal seat in a night train! It couldn&#8217;t however stop me playing the tourist shortly after arrival. My visit to <em>the City of the Seven Hills</em> lasted a total of three days. The photos below are only a small portion of the 357 I took during this short stay.</p>
<p class="align-center"><a href="http://worksoftime.nl/blog/assets/Rome-25.jpg"><img class="alignnone size-thumbnail wp-image-1198 colorbox-1154" title="The Monumento Nazionale a Vittorio Emanuele II" src="http://worksoftime.nl/blog/assets/Rome-25-197x140.jpg" alt="The Monumento Nazionale a Vittorio Emanuele II" width="197" height="140" /></a><a href="http://worksoftime.nl/blog/assets/Rome-43.jpg"><img class="alignnone size-thumbnail wp-image-1202 colorbox-1154" title="The Monumento Nazionale a Vittorio Emanuele II" src="http://worksoftime.nl/blog/assets/Rome-43-197x140.jpg" alt="The Monumento Nazionale a Vittorio Emanuele II" width="197" height="140" /></a><a href="http://worksoftime.nl/blog/assets/Rome-39.jpg"><img class="alignnone size-thumbnail wp-image-1199 colorbox-1154" title="Piazza Venezia" src="http://worksoftime.nl/blog/assets/Rome-39-197x140.jpg" alt="Piazza Venezia" width="197" height="140" /></a></p>
<p><span id="more-1154"></span></p>
<p class="align-center"><a href="http://worksoftime.nl/blog/assets/Rome-62.jpg"><img class="alignnone size-thumbnail wp-image-1205 colorbox-1154" title="The Monumento Nazionale a Vittorio Emanuele II - View towards the Colosseum" src="http://worksoftime.nl/blog/assets/Rome-62-197x140.jpg" alt="The Monumento Nazionale a Vittorio Emanuele II" width="197" height="140" /></a><a href="http://worksoftime.nl/blog/assets/Rome-128.jpg"><img class="alignnone size-thumbnail wp-image-1206 colorbox-1154" title="The Arco di Costantino, near the Colosseum" src="http://worksoftime.nl/blog/assets/Rome-128-197x140.jpg" alt="The Arco di Costantino" width="197" height="140" /></a><a href="http://worksoftime.nl/blog/assets/Rome-141.jpg"><img class="alignnone size-thumbnail wp-image-1207 colorbox-1154" title="The Colosseum" src="http://worksoftime.nl/blog/assets/Rome-141-197x140.jpg" alt="The Colosseum" width="197" height="140" /></a></p>
<p class="align-center"><a href="http://worksoftime.nl/blog/assets/Rome-147.jpg"><img class="alignnone size-medium wp-image-1212 colorbox-1154" title="The Colosseum" src="http://worksoftime.nl/blog/assets/Rome-147-147x196.jpg" alt="The Colosseum" width="147" height="196" /></a><a href="http://worksoftime.nl/blog/assets/Rome-154.jpg"><img class="alignnone size-medium wp-image-1213 colorbox-1154" title="The Arco di Costantino, taken from within the Colloseum" src="http://worksoftime.nl/blog/assets/Rome-154-147x196.jpg" alt="The Arco di Costantino" width="147" height="196" /></a><a href="http://worksoftime.nl/blog/assets/Rome-164.jpg"><img class="alignnone size-medium wp-image-1217 colorbox-1154" title="Piazza del Popolo" src="http://worksoftime.nl/blog/assets/Rome-164-147x196.jpg" alt="Piazza del Popolo" width="147" height="196" /></a><a href="http://worksoftime.nl/blog/assets/Rome-166.jpg"><img class="alignnone size-medium wp-image-1214 colorbox-1154" title="Obelisco Flaminio, at the Piazza del Popolo" src="http://worksoftime.nl/blog/assets/Rome-166-147x196.jpg" alt="Obelisco Flaminio" width="147" height="196" /></a></p>
<p class="align-center"><a href="http://worksoftime.nl/blog/assets/Rome-200.jpg"><img class="alignnone size-thumbnail wp-image-1218 colorbox-1154" title="The Trevi Fountain" src="http://worksoftime.nl/blog/assets/Rome-200-197x140.jpg" alt="The Trevi Fountain" width="197" height="140" /></a><a href="http://worksoftime.nl/blog/assets/Rome-205.jpg"><img class="alignnone size-thumbnail wp-image-1219 colorbox-1154" title="The Pantheon" src="http://worksoftime.nl/blog/assets/Rome-205-197x140.jpg" alt="The Pantheon" width="197" height="140" /></a><a href="http://worksoftime.nl/blog/assets/Rome-210.jpg"><img class="alignnone size-thumbnail wp-image-1220 colorbox-1154" title="The Pantheon" src="http://worksoftime.nl/blog/assets/Rome-210-197x140.jpg" alt="The Pantheon" width="197" height="140" /></a></p>
<p class="align-center"><a href="http://worksoftime.nl/blog/assets/Rome-232.jpg"><img class="alignnone size-thumbnail wp-image-1224 colorbox-1154" title="Fontana dei Quattro Fiumi, at the Piazza Navona" src="http://worksoftime.nl/blog/assets/Rome-232-197x140.jpg" alt="Fontana dei Quattro Fiumi" width="197" height="140" /></a><a href="http://worksoftime.nl/blog/assets/Rome-238.jpg"><img class="alignnone size-thumbnail wp-image-1225 colorbox-1154" title="Palazzo Senatorio, it houses the city hall." src="http://worksoftime.nl/blog/assets/Rome-238-197x140.jpg" alt="Palazzo Senatorio" width="197" height="140" /></a><a href="http://worksoftime.nl/blog/assets/Rome-257.jpg"><img class="alignnone size-thumbnail wp-image-1226 colorbox-1154" title="St. Peter's Square &amp; Basilica" src="http://worksoftime.nl/blog/assets/Rome-257-197x140.jpg" alt="St. Peter's Square &amp; Basilica" width="197" height="140" /></a></p>
<p class="align-center"><a href="http://worksoftime.nl/blog/assets/Rome-272.jpg"><img class="alignnone size-medium wp-image-1229 colorbox-1154" title="Saint Peter's Basilica" src="http://worksoftime.nl/blog/assets/Rome-272-147x196.jpg" alt="Saint Peter's Basilica" width="147" height="196" /></a><a href="http://worksoftime.nl/blog/assets/Rome-330.jpg"><img class="alignnone size-medium wp-image-1231 colorbox-1154" title="Musei Vaticani" src="http://worksoftime.nl/blog/assets/Rome-330-147x196.jpg" alt="Musei Vaticani" width="147" height="196" /></a><a href="http://worksoftime.nl/blog/assets/Rome-354.jpg"><img class="alignnone size-medium wp-image-1230 colorbox-1154" title="Musei Vaticani, spiral staircase towards exit" src="http://worksoftime.nl/blog/assets/Rome-354-147x196.jpg" alt="Musei Vaticani" width="147" height="196" /></a><a href="http://worksoftime.nl/blog/assets/Rome-297.jpg"><img class="alignnone size-medium wp-image-1246 colorbox-1154" title="Castel Sant'Angelo" src="http://worksoftime.nl/blog/assets/Rome-297-147x196.jpg" alt="Castel Sant'Angelo" width="147" height="196" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://worksoftime.nl/blog/photos-rome/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Making Of – Part IV: Shadows</title>
		<link>http://worksoftime.nl/blog/making-of-css-shadows/</link>
		<comments>http://worksoftime.nl/blog/making-of-css-shadows/#comments</comments>
		<pubDate>Sun, 27 Nov 2011 18:19:35 +0000</pubDate>
		<dc:creator>Tim Huisman</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Works of Time]]></category>

		<guid isPermaLink="false">http://worksoftime.nl/blog/?p=1128</guid>
		<description><![CDATA[This is the fourth installment in the ‘Making of Works of Time’ series and continues where the previous post stopped. In which I made a start showing how to get rid of images by using CSS3. This was one of &#8230; <a href="http://worksoftime.nl/blog/making-of-css-shadows/">Continued</a>]]></description>
			<content:encoded><![CDATA[<p>This is the fourth installment in the <em>‘Making of Works of Time’</em> series and continues where <a href="http://worksoftime.nl/blog/making-of-css-gradients/" title="The Making Of – Part III: Gradients">the previous post</a> stopped. In which I made a start showing how to get rid of images by using CSS3. This was one of my goals with the new version of my site: <em>&#8220;I wanted to use as few images as necessary for styling purposes.&#8221;</em> To replace the images I&#8217;ve used <em>gradients</em> (see previous post) and <em>box-shadows</em>. This post will look into the latter one.</p>
<p>Before CSS3 shadows could be added through a number of ways: most notable via images or with the use of Javascript. It will do the trick, but when we would look at performance it&#8217;s not desirable: you&#8217;ll have to load more images/Javascript files. This means more HTTP request and an increase in page loading speed. But now with CSS3 we can simply add a line (in the ideal situation) of code to achieve the same effect. However, in this early state of its implementation it must be said that in some situations <em>box-shadow</em> won&#8217;t work the way you would like it to. In some cases you may still end up using images.</p>
<p><span id="more-1128"></span></p>
<p>&nbsp;</p>
<h3>Implementation</h3>
<p>Just like with gradients and transitions we&#8217;ll have to use vendor prefixes for Firefox, Safari and Chrome. Other browsers use the standard <em>box-shadow</em> property. The box-shadow property can have four values: horizontal offset, vertical offset, blur and color. Below is the code I used on my website for the main container: by giving the offsets a value of 0px and blur 20px the shadow will become visible on all four sides of the container.</p>
<pre class="wp-code-highlight prettyprint">
-moz-box-shadow: 0 0 20px #000; // Firefox
-webkit-box-shadow: 0 0 20px #000; // Safari en Chrome
box-shadow: 0 0 20px #000;
</pre>
<p>&nbsp;<br />
Voilá! This concludes the two-part &#8216;tutorial&#8217; on how to make images obsolete by using CSS3. In this case I only used <em>box-shadow</em> and <em>gradients</em>, but there are more examples in which CSS techniques could be used. A common feature of websites are buttons, which in most cases are styled with rounded corners nowadays. Again we can use images or Javascript, but we can also implement it with CSS3. Combining the two techniques and <em>border-radius</em> could result in image free buttons <a href="http://hellohappy.org/css3-buttons/">[examples]</a>. Which are more flexible than using images and are better performance wise.</p>
<p>This will be the last post in the <em>‘Making of Works of Time’</em> series for now. But you might be seeing future posts, when I&#8217;ve implemented some features that are still on my to-do list: <em>HTML5 manifest</em> and <em>CSS media queries</em>.<br />
&nbsp;</p>
<h3>Further Reading</h3>
<ul>
<li><a href="http://www.css3.info/preview/box-shadow/">Box-shadow, one of CSS3′s best new features</a> on CSS3.info</li>
<li><a href="http://www.westciv.com/tools/boxshadows/index.html">Box Shadow generator</a> on Westciv.com</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://worksoftime.nl/blog/making-of-css-shadows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Making Of – Part III: Gradients</title>
		<link>http://worksoftime.nl/blog/making-of-css-gradients/</link>
		<comments>http://worksoftime.nl/blog/making-of-css-gradients/#comments</comments>
		<pubDate>Sun, 20 Nov 2011 20:29:45 +0000</pubDate>
		<dc:creator>Tim Huisman</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Works of Time]]></category>

		<guid isPermaLink="false">http://worksoftime.nl/blog/?p=1082</guid>
		<description><![CDATA[This is the third installment in the &#8216;Making of Works of Time&#8217; series and will focus on CSS gradients. As I mentioned earlier in the post about version 3.0 I wanted to use as few images as necessary for styling purposes. &#8230; <a href="http://worksoftime.nl/blog/making-of-css-gradients/">Continued</a>]]></description>
			<content:encoded><![CDATA[<p>This is the third installment in the <em>&#8216;Making of Works of Time&#8217;</em> series and will focus on <em>CSS gradients</em>. As I mentioned earlier in <a title="Works of Time 3.0" href="http://worksoftime.nl/blog/works-of-time-3-0/">the post about version 3.0</a> I wanted to use as few images as necessary for styling purposes. In version 2.0 I was using two images as background for the header, navigation, footer and content (see below). With the CSS3 techniques <em>box-shadow</em> and <em>gradients</em> I&#8217;ve replaced them with a couple of lines of CSS. In this and the upcoming post I&#8217;ll demonstrate what was needed to achieve this.</p>
<p><img src="http://worksoftime.nl/blog/assets/bg-sprite2-600x128.png" alt="Background Sprite 2.0" title="Background Sprite 2.0" width="600" height="128" class="alignnone size-large wp-image-1092 colorbox-1082" /><img src="http://worksoftime.nl/blog/assets/bg-content-600x13.png" alt="Background Content 2.0" title="Background Content 2.0" width="600" height="13" class="alignnone size-large wp-image-1085 colorbox-1082" /></p>
<p><span id="more-1082"></span></p>
<p>The issue with <em>CSS gradients</em> is that all browsers use another form of implementation. Therefore we&#8217;ll need to apply vendor prefixes at this moment, just like with <a href="http://worksoftime.nl/blog/making-of-css-transitions/" title="The Making Of – Part I: Transitions">CSS3 transitions</a>. Furthermore, Internet Explorer uses the filter technique instead to achieve the gradient in IE6-9. To make the gradient work in IE6-9, Firefox, Chrome and Safari you&#8217;ll already three lines of code.</p>
<p>This is almost impossible to memorize and therefore I use and advice the following generator: <a href="http://www.colorzilla.com/gradient-editor/">Ultimate CSS Gradient Generator from ColorZilla</a>. It not only outputs the gradient for almost all browsers, but also has a <em>Photoshop</em>-like editor to create the gradient itself. It also adds a fall back for older browsers (<em>background-color</em>) and integrates the official W3C implementation: the gradient will still work once all vendor prefixes have been made unnecessary and removed.<br />
&nbsp;</p>
<h3>Implementation</h3>
<p>There are three different gradients used on the new website: the header, sub- and main navigation and the footer. I say different, but they only differ from each other in the colors that are used. Below is the code used for the header:</p>
<pre class="wp-code-highlight prettyprint">
/* Old browsers */
background: #eeeeee;

/* FF 3.6+ */
background: -moz-linear-gradient(top, #eeeeee 0%, #dddddd 100%);

/* Chrome, Safari 4+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeeeee),
color-stop(100%,#dddddd));

/* Chrome 10+, Safari 5.1+ */
background: -webkit-linear-gradient(top, #eeeeee 0%,#dddddd 100%);

/* Opera 11.10+ - the best browser there is! */
background: -o-linear-gradient(top, #eeeeee 0%,#dddddd 100%);

/* IE10+ */
background: -ms-linear-gradient(top, #eeeeee 0%,#dddddd 100%);

/* W3C */
background: linear-gradient(top, #eeeeee 0%,#dddddd 100%);

/* IE6-9 */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee',
endColorstr='#dddddd', GradientType=0 );
</pre>
<p>&nbsp;<br />
It&#8217;s a lot of code for such a small thing, but the advantage is that you can get rid of some of your images (in my case only one). This means less HTTP requests and an increase in performance/page speed. Every millisecond counts: <em>&#8220;Tests at Amazon revealed that every 100 ms increase in load time of Amazon.com decreased sales by 1%.&#8221;</em> <a href="http://www.websiteoptimization.com/speed/tweak/psychology-web-performance/">[source]</a></p></blockquote>
<p>&nbsp;</p>
<h3>Further Reading</h3>
<ul>
<li><a href="http://webdesignerwall.com/tutorials/cross-browser-css-gradient">Cross-Browser CSS Gradient</a> on Web Designer Wall</li>
<li><a href="http://css-tricks.com/5700-css3-gradients/">Speed Up with CSS3 Gradients</a> by Chris Coyier</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://worksoftime.nl/blog/making-of-css-gradients/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

