<?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>Swedish fika &#187; News</title>
	<atom:link href="http://www.swedishfika.com/category/news/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.swedishfika.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 25 Nov 2011 21:56:17 +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>Is Newsletter Unsubscription Success Emails Really Necessary?</title>
		<link>http://www.swedishfika.com/2011/11/25/is-newsletter-unsubscription-success-emails-really-necessary/</link>
		<comments>http://www.swedishfika.com/2011/11/25/is-newsletter-unsubscription-success-emails-really-necessary/#comments</comments>
		<pubDate>Fri, 25 Nov 2011 21:50:19 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.swedishfika.com/?p=1906</guid>
		<description><![CDATA[Every site that has a newsletter signup should provide an easy way to unsubscribe from the subscription list that correspond to that newsletter. A nice way is just to add a link at the bottom of the newsletter labeled &#8220;Unsubscribe&#8221;. But what do we think should happen when you click on that link? 

I think [...]]]></description>
			<content:encoded><![CDATA[<p>Every site that has a newsletter signup should provide an easy way to unsubscribe from the subscription list that correspond to that newsletter. A nice way is just to add a link at the bottom of the newsletter labeled &#8220;Unsubscribe&#8221;. But what do we think should happen when you click on that link? </p>
<p><span id="more-1906"></span><br />
I think that that the link should open the unsubscription web page in my browser where I must confirm my unsubscription. (I could have clicked the link by mistake so it&#8217;s nice to provide a confirmation button) When I confirm my unsubscription all I want is just a message that says whether or not I successfully got unsubscribed. What I see in a lot of newsletter-systems that you unsubscribe from is that you get a unsubscription success email. Yes, another email you don&#8217;t want. I wanted to opt out from the newsletter subscription because I didn&#8217;t want to get any more emails. </p>
<p>If you have any other thoughts on this topic, please add a comment!</p>
<p>/Simon</p>
]]></content:encoded>
			<wfw:commentRss>http://www.swedishfika.com/2011/11/25/is-newsletter-unsubscription-success-emails-really-necessary/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The making of a Color Memory Game</title>
		<link>http://www.swedishfika.com/2011/05/21/the-making-of-a-color-memory-game/</link>
		<comments>http://www.swedishfika.com/2011/05/21/the-making-of-a-color-memory-game/#comments</comments>
		<pubDate>Sat, 21 May 2011 12:53:18 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.swedishfika.com/?p=1860</guid>
		<description><![CDATA[A while ago I made a javascript-based color memory game. I used plain markup, css and javascript for this and I used the Prototype JavaScript Framework instead of jQuery. You can discuss the pros and cons between Prototype and jQuery for hours (if you want to) but this is not something I&#8217;ll cover in this [...]]]></description>
			<content:encoded><![CDATA[<p>A while ago I made a javascript-based color memory game. I used plain markup, css and javascript for this and I used the <a href="http://www.prototypejs.org/">Prototype JavaScript Framework</a> instead of <a href="http://jquery.com/">jQuery</a>. You can discuss the pros and cons between Prototype and jQuery for hours (if you want to) but this is not something I&#8217;ll cover in this post, instead I&#8217;ll go through the core functions of the game. </p>
<p>First off, take a <a href="http://www.simonkjellberg.com/colormemory/">look at the demo here</a>. In writing moment the fastest known player was done in less than 25 secs! </p>
<p><span id="more-1860"></span><br />
This is how I&#8217;ve set up the files for the game: </p>
<p><img src="/wp-content/uploads/colormemory-setup.png" alt="" /></p>
<p>I&#8217;ll actually not write any code in this post, I&#8217;ll just simply go through each function in the javascript (that is the core of the game) and talk about what each function does. I&#8217;ve compressed <a href="/wp-content/uploads/colormemory.tar.gz">the files of the game</a> so if you want, you can download them and take a look at the code in your editor when you continue your reading below. </p>
<p>The .html-file is quite straightforward. It has a container-div where the javascript put the actual gameboard, it initiates the javascript and some other stuff. I don&#8217;t think there&#8217;s any need to go into this file in detail so I&#8217;ll just leave it there. The CSS is, as always, just used for the presentation. The image is used for the backside-cover of the cards. The javascript file named memory.js is the interesting part. So let&#8217;s take a look at this file and go through each function step by step. </p>
<h3>initialize()</h3>
<p>The initialize function has a few default options that can be dynamically changed from wherever you initiate an object of this class. This approach by using the Object.extend-functionality on the default-options is, in my opinion, very powerful since it adds a lot of flexibility to your code. </p>
<p>I said I wouldn&#8217;t post any code in this post but there might be a point to show how you can change these default options. You do that where you create an object of the memory class (in this case in index.html) and this example below shows how you could change the rows and cols without altering the javascript-file itself:  </p>
<p><code>var m = new Memory({<br />
  rows: 3,<br />
  cols: 4<br />
});</code></p>
<p>So, let&#8217;s get back to the initialize function, as you can see, we first set the options for this class. As you see above, the code is dynamic so you can change how many rows and cols you want on your gameboard. Please note that there&#8217;s no functionality that checks whether the total amount of cards is an even number or not so if you change these params, please have in mind that the cols multiplied by the rows should sum up to an even number. </p>
<p>After that we initiate some of the other default properties of this class and then we call the initCards-function. </p>
<h3>initCards()</h3>
<p>In the initCards-function we create the cards for the gameboard. We use some loops to make this happen and we check if a color already has been used. It also shuffles the array that is containing the cards. When this function has done what it&#8217;s supposed to the code then goes on to the createBoard-function. </p>
<h3>createBoard()</h3>
<p>Here, the actual gameboard is created and as it creates each card it also adds an onclick eventlistener to each card. When a card is clicked the flipCard-function is triggered. </p>
<h3>flipCard()</h3>
<p>When the player clicks on a card, this function starts to run and it starts the timer (if it hasn&#8217;t already been started) and then it flips the card you clicked and check whether the player has found a pair or not. This is done with the help of the function named getCardNumberFromId(). </p>
<p>We&#8217;ll that&#8217;s it, I&#8217;ll not go into more details so if you have any questions or feedback, please post a comment! I&#8217;d really like some feedback on the code and if you guys would have done anything differently. </p>
<p>/Simon</p>
]]></content:encoded>
			<wfw:commentRss>http://www.swedishfika.com/2011/05/21/the-making-of-a-color-memory-game/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Publishing in Coda Suddenly Stopped Working</title>
		<link>http://www.swedishfika.com/2011/02/26/publishing-in-coda-suddenly-stopped-working/</link>
		<comments>http://www.swedishfika.com/2011/02/26/publishing-in-coda-suddenly-stopped-working/#comments</comments>
		<pubDate>Sat, 26 Feb 2011 10:23:02 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.swedishfika.com/?p=1851</guid>
		<description><![CDATA[The other day the publishing function in Coda just stopped working. This might have had something to do with me (finally) upgrading to Snow Leopard. The publishing function in Coda is a very sweet tool that keeps track on your changes that you make in your local copy of a site and lets you publish [...]]]></description>
			<content:encoded><![CDATA[<p>The other day the publishing function in Coda just stopped working. This might have had something to do with me (finally) upgrading to Snow Leopard. The publishing function in Coda is a very sweet tool that keeps track on your changes that you make in your local copy of a site and lets you publish the changes from your local copy to your live site and I use it every day in my work. I already had the latest version of Coda installed so I tried to reinstall it but that didn&#8217;t make any difference. I then started searching the web for a solution and found a few discussion threads where people had the same problem. But unfortunately the solutions there did not help me. </p>
<p><span id="more-1851"></span><br />
I finally solved the problem by downloading version 1.6.12 (instead of the in writing moment latest version 1.7). The Coda-people keeps a museum of older versions of Coda if you want to download them which is a great idea (why don&#8217;t everyone do this?), you can find it here: <a href="http://www.panic.com/museum/coda/older/">http://www.panic.com/museum/coda/older/</a></p>
<p>I really don&#8217;t know why it stopped working for me. I really like Coda as a developing tool and I know that this works for others in the latest version. Maybe I just had bad luck when upgrading to Snow Leopard I guess? Just thought that this information could be useful if this happens to someone else. </p>
<p>Cheers! </p>
<p>/Simon</p>
]]></content:encoded>
			<wfw:commentRss>http://www.swedishfika.com/2011/02/26/publishing-in-coda-suddenly-stopped-working/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Going Full Frontal</title>
		<link>http://www.swedishfika.com/2010/11/11/going-to-full-frontal/</link>
		<comments>http://www.swedishfika.com/2010/11/11/going-to-full-frontal/#comments</comments>
		<pubDate>Thu, 11 Nov 2010 16:23:55 +0000</pubDate>
		<dc:creator>Ida</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.swedishfika.com/?p=1819</guid>
		<description><![CDATA[Right now I&#8217;m on my way to Full Frontal, a JavaScript conference in the UK. I&#8217;m extremely excited! This is my first time in the UK and I have high expectations on a snogalicious experience. 

I&#8217;m going there together with three of my co-workers and you can follow our epic JavaScript adventures at http://creunaatfullfrontal.tumblr.com.
Please do!
/Ida
Ps. [...]]]></description>
			<content:encoded><![CDATA[<p>Right now I&#8217;m on my way to <a href="http://2010.full-frontal.org/">Full Frontal</a>, a JavaScript conference in the UK. I&#8217;m extremely excited! This is my first time in the UK and I have high expectations on a snogalicious experience. </p>
<p><span id="more-1819"></span></p>
<p>I&#8217;m going there together with three of my co-workers and you can follow our epic JavaScript adventures at <a href="http://creunaatfullfrontal.tumblr.com/">http://creunaatfullfrontal.tumblr.com</a>.</p>
<p>Please do!</p>
<p>/Ida</p>
<p>Ps. Will of course post a full summary of the conference once I&#8217;m safely back home again…</p>
]]></content:encoded>
			<wfw:commentRss>http://www.swedishfika.com/2010/11/11/going-to-full-frontal/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Rails-like framework for mobile apps</title>
		<link>http://www.swedishfika.com/2010/11/08/rails-like-framework-for-mobile-apps/</link>
		<comments>http://www.swedishfika.com/2010/11/08/rails-like-framework-for-mobile-apps/#comments</comments>
		<pubDate>Mon, 08 Nov 2010 17:51:31 +0000</pubDate>
		<dc:creator>Johan</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.swedishfika.com/?p=1815</guid>
		<description><![CDATA[In an interview with the guys at Think Vitamin, Ryan Singer from 37signals reports that they are working on a Rails-like MVC framework for HTML 5 phone apps. Read more on the Think Vitamin blog.
// Johan
]]></description>
			<content:encoded><![CDATA[<p>In an interview with the guys at <a href="http://thinkvitamin.com/">Think Vitamin</a>, <a href="http://twitter.com/#!/rjs">Ryan Singer</a> from <a href="http://37signals.com/">37signals</a> reports that they are working on a Rails-like MVC framework for HTML 5 phone apps. Read more on the <a href="http://thinkvitamin.com/mobile/new-rails-like-framework-from-37signals-for-html5-mobile-apps/">Think Vitamin</a> blog.</p>
<p>// Johan</p>
]]></content:encoded>
			<wfw:commentRss>http://www.swedishfika.com/2010/11/08/rails-like-framework-for-mobile-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Mobile Alpha 1 Released</title>
		<link>http://www.swedishfika.com/2010/10/17/jquery-mobile-alpha-1-released/</link>
		<comments>http://www.swedishfika.com/2010/10/17/jquery-mobile-alpha-1-released/#comments</comments>
		<pubDate>Sun, 17 Oct 2010 19:53:08 +0000</pubDate>
		<dc:creator>Simon</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.swedishfika.com/?p=1799</guid>
		<description><![CDATA[A friend of mine told me to take a look at jQuery Mobile Alpha 1 that was released yesterday (Oct 16th) and I must say that it looks promising. So what is it? &#8220;jQuery Mobile is a user interface framework, built on top of jQuery, designed to simplify the process of building applications that target [...]]]></description>
			<content:encoded><![CDATA[<p>A friend of mine told me to take a look at jQuery Mobile Alpha 1 that was released yesterday (Oct 16th) and I must say that it looks promising. So what is it? &#8220;jQuery Mobile is a user interface framework, built on top of jQuery, designed to simplify the process of building applications that target mobile devices.&#8221; </p>
<p><span id="more-1799"></span>This is not an in-depth article and, if you want, you can read more about it on jQuery Mobile&#8217;s official site that you find here <a href="http://jquerymobile.com/2010/10/jquery-mobile-alpha-1-released/">http://jquerymobile.com/2010/10/jquery-mobile-alpha-1-released/ </a></p>
<p>If you want to see the demos, take a look here: <a href="http://jquerymobile.com/demos/1.0a1/">http://jquerymobile.com/demos/1.0a1/</a> </p>
<p>/Simon</p>
]]></content:encoded>
			<wfw:commentRss>http://www.swedishfika.com/2010/10/17/jquery-mobile-alpha-1-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Opera Mini for Android</title>
		<link>http://www.swedishfika.com/2010/10/15/opera-mini-for-android/</link>
		<comments>http://www.swedishfika.com/2010/10/15/opera-mini-for-android/#comments</comments>
		<pubDate>Fri, 15 Oct 2010 16:10:00 +0000</pubDate>
		<dc:creator>Johan</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.swedishfika.com/?p=1786</guid>
		<description><![CDATA[Opera Mini for Android is being released within the month.

Hopefully less sucky than the iPhone version. The video also reassures that they&#8217;re not working on an update for the iPhone :/. WP7 next?


]]></description>
			<content:encoded><![CDATA[<p>Opera Mini for Android is being released within the month.<br />
<span id="more-1786"></span><br />
Hopefully less sucky than the iPhone version. The video also reassures that they&#8217;re not working on an update for the iPhone :/. WP7 next?<br />
<span><br />
<script src="http://player.ooyala.com/player.js?embedCode=B2Z2lyMTp9p7DzBNq0uwAS70pSVwzHD9&#038;width=456&#038;deepLinkEmbedCode=B2Z2lyMTp9p7DzBNq0uwAS70pSVwzHD9&#038;height=342"></script></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.swedishfika.com/2010/10/15/opera-mini-for-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Early Breakdown</title>
		<link>http://www.swedishfika.com/2010/10/13/an-early-breakdown/</link>
		<comments>http://www.swedishfika.com/2010/10/13/an-early-breakdown/#comments</comments>
		<pubDate>Wed, 13 Oct 2010 12:46:53 +0000</pubDate>
		<dc:creator>Johan</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.swedishfika.com/?p=1767</guid>
		<description><![CDATA[Ok, so we’ve had a breakdown. And I’m the Judas. In the beginning of 2010 we joined projecte 52 and we were on a 36 post streak when we messed up. Since there will be a lot of year summaries on the net in a couple of months I thought I’d have a breakdown my [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, so we’ve had a breakdown. And I’m the Judas. In the beginning of 2010 we joined <a href="http://project52.info/">projecte 52</a> and we were on a 36 post streak when we messed up. Since there will be a lot of year summaries on the net in a couple of months I thought I’d have a breakdown my favorite posts of this year now.<br />
<span id="more-1767"></span></p>
<h3><a href="http://www.swedishfika.com/2010/06/13/being-the-child-of-the-shoemaker/">Being the Child of the Shoemaker</a></h3>
<p>Ida talks about why web developers have poor sites and how to remedy the situation.</p>
<h3><a href="http://www.swedishfika.com/2010/04/18/toka-koka-bitches/">Toka Koka Bitches</a></h3>
<p>The post that got us hits from people searching for ”Swedish bitches” :/.</p>
<h3><a href="http://www.swedishfika.com/2010/05/15/what-role-will-domain-names-play-in-the-future-of-the-web/">What Role Will Domain Names Play in the Future of the Web?</a></h3>
<p>Simon raises an interesting debate weather domain names will play an important role in our future or not.</p>
<h3><a href="http://www.swedishfika.com/2010/01/19/escaping-from-encoding-hell/">Escaping From Encoding Hell</a></h3>
<p>The ultimate guide for when you’re stuck in encoding hell</p>
<h3><a href="http://www.swedishfika.com/2010/01/11/we-are-craftsmen/">We are Craftsmen</a></h3>
<p>I take up the similarities between two, on the surface, very different professions.</p>
<p>A big up for <a href="http://project52.info/">project 52</a>. Without them many of these posts would still just be unborn ideas locked inside our heads.  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.swedishfika.com/2010/10/13/an-early-breakdown/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A11y for Web Designers #2: Color</title>
		<link>http://www.swedishfika.com/2010/09/12/a11y-for-web-designers-2-color/</link>
		<comments>http://www.swedishfika.com/2010/09/12/a11y-for-web-designers-2-color/#comments</comments>
		<pubDate>Sun, 12 Sep 2010 21:44:42 +0000</pubDate>
		<dc:creator>Ida</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.swedishfika.com/?p=1749</guid>
		<description><![CDATA[Time for the second part in the articles about a11y for web designers. In response to the comment we received to our first article I felt a need to start by making a couple of things clear.  

These articles aren’t about trying to force people into something that will steal time and hurt the [...]]]></description>
			<content:encoded><![CDATA[<p>Time for the second part in the articles about a11y for web designers. In response to the comment we received to our first article I felt a need to start by making a couple of things clear.  </p>
<p><span id="more-1749"></span></p>
<p>These articles aren’t about trying to force people into something that will steal time and hurt the overall design of their projects. My intention with these articles, as I mentioned in my comment, is to raise some sort of awareness of accessibility among designers. I’m of the strong opinion that the web should be open, free and accessible to as many people as possible regardless of equipment or physical state. I do not agree with people who think the web should only be accessible if you got the latest in technology or a perfect health. Of course it’s not always possible to accommodate for everyone. But having accessibility in mind doesn’t cost anything. I would also like to point out that the tools I link to in these articles are simple test-tools that requires a maximum of minutes in test time.</p>
<h3>What about colors?</h3>
<p>So back to the topic. There are two things I would like to point out regarding colors. First: I love color. No that&#8217;s not it. First: (second try). All colors doesn’t look the same on all devices and screens. This is important to remember. Secondly: There are some combination of colors that some people have trouble to different between. Yes, I’m talking about variations of color blindness. Between <a href="http://en.wikipedia.org/wiki/Color_blindness#Epidemiology">7 &#8211; 10% of all males</a> are affected by the red-green type.  Because of this it’s necessary to make sure that the most important elements on your web site is easy to distinguish. Elements to check may be navigation, buttons that leads to different kind of actions and other important information.</p>
<h3>How do I test my colors?</h3>
<p>There are several cool tools out there. I will mention a few here.  </p>
<p>1. One really cool tool available for Mac is <a href="http://michelf.com/projects/sim-daltonism/">Sim Daltonism</a>. With it you can simulate different kinds of color blindness and look at your design in a way a person with color blindness would.<br />
2. <a href="http://www.colblindor.com/coblis-color-blindness-simulator/">Coblis – Color Blindness Simulator</a> is an online tool that lets you upload an image to check for problems.<br />
3. <a href="http://colorfilter.wickline.org/">Colorfilter</a> is another online tool that lets you test a website. I don’t really know how useful like this is since when there is a live web site it’s usually too late or extremely hard to adjust things.<br />
4. Send your design to friends. Yes, I know. This is not a tool. But consider sending your design to some friends. If possible friends with color problems and ask for their opinion. If nothing else they might be able to track down problems in colors due to differences in screens and devices. </p>
<p>If you  feel an urgent need to find out more about color blindness the blog <a href="http://greymeansgo.blogspot.com/">&#8220;Grey Means Go&#8221;</a> offers some nice reads. </p>
<p>That’s it for now.<br />
Have fun designing with colors!</p>
<p>/Ida</p>
]]></content:encoded>
			<wfw:commentRss>http://www.swedishfika.com/2010/09/12/a11y-for-web-designers-2-color/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On HTML5 for Web Designers</title>
		<link>http://www.swedishfika.com/2010/09/05/on-html5-for-web-designers/</link>
		<comments>http://www.swedishfika.com/2010/09/05/on-html5-for-web-designers/#comments</comments>
		<pubDate>Sun, 05 Sep 2010 16:02:59 +0000</pubDate>
		<dc:creator>Ida</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.swedishfika.com/?p=1739</guid>
		<description><![CDATA[I guess most of you have either read it, read about it or at least seen a photo of this book. I’m also naturally assuming that you are as much of a geek as I am. I mean why else would you be here reading this blog? Exactly. So do we really need another review [...]]]></description>
			<content:encoded><![CDATA[<p>I guess most of you have either read it, read about it or at least seen a photo of this book. I’m also naturally assuming that you are as much of a geek as I am. I mean why else would you be here reading this blog? Exactly. So do we really need another review on this book? Maybe not. I mean you can read about it <a href="http://net.tutsplus.com/articles/reviews/html5-for-web-designers-book-review/">here</a>, <a href="http://www.thisisaaronslife.com/book-review-html5-for-web-designers/">here</a> and <a href="http://www.zeldman.com/2010/05/04/html5-for-web-designers/">here</a>. And you can order it <a href="http://books.alistapart.com/">here</a>.<br />
But screw that. I’m gonna review it anyway if not for other reasons than the photo I took of the cover. Hmmpff.</p>
<p><span id="more-1739"></span></p>
<h3>What?</h3>
<p>Ok, it’s HTML5. And yea, it’s the new buzz word. And yup, this book is about that cool new thing. So let me tell you what you’ll find in this book. You will find out a bit about the history behind HTML5. You will learn a bit about what’s included. And what’s not included. No CSS3. Of course. Yes, I know CSS3 is cool too but you need to pick up another book for that. CSS3 and HTML have never and probably never will be the same thing.</p>
<h3>Who should read?</h3>
<p>Look at the title again. See that word? Designers. Exactly. If you are a web designer trying to improve your knowledge in frontend and get the hang on what’s new and exciting this book is for you. I would also dare to say that this book is not unfit for anyone working with the web. Really. The language is smart and not hard on you. Good words and the tone is delightful. (Always wanted to use that word.)</p>
<h3>Who shouldn’t read?</h3>
<p>If you have closely followed what’s been happening on the web during the last six years I would say that this book got no news for you. The same goes for people who have read every article in <a href="http://html5doctor.com/">HTML5doctor</a>, <a href="http://diveintohtml5.org/">diveintoHTML5</a> and have feasted on the specs of <a href="http://www.whatwg.org/specs/web-apps/current-work/">WHATWG</a> and <a href="http://www.w3.org/TR/html5/">W3C</a>. This book didn’t gave me any revolutionary news. I guess I’m too geeky with my feeds. (If this did sound like I’m a cool enlighted web dev that’s on top things… well… well… then you can think of me as a cool enlighted web dev who is on top of things. ) Even so this book is enjoyable. If not for mere reason than boosting the ego and feeling like you actually know something. </p>
<p>Aight. Me be out.<br />
Not feeling comfortable about boosting my ego in public. </p>
<p>/Ida</p>
<p>Ps. If you don&#8217;t care to read/buy this book you might enjoy <a href="http://video.drupalradar.com/services/player/bcpid524210192001?bctid=596569258001">this talk by the author Jeremy Keith</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.swedishfika.com/2010/09/05/on-html5-for-web-designers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

