<?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>Evermade</title>
	<atom:link href="http://www.evermade.fi/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.evermade.fi</link>
	<description>Luomme digitaalisia kokonaisuuksia.</description>
	<lastBuildDate>Wed, 22 Feb 2012 20:48:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Nathan Diaz &#8211; Professional MMA Fighter</title>
		<link>http://www.evermade.fi/?post_type=case&#038;p=326</link>
		<comments>http://www.evermade.fi/?post_type=case&#038;p=326#comments</comments>
		<pubDate>Mon, 06 Feb 2012 13:53:20 +0000</pubDate>
		<dc:creator>Mikael</dc:creator>
		
		<guid isPermaLink="false">http://www.evermade.fi/?post_type=case&#038;p=326</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.evermade.fi/?attachment_id=330" rel="attachment wp-att-330"><img class="alignnone size-full wp-image-330" title="nathanpromo1" src="http://www.evermade.fi/wp-content/uploads/2012/02/nathanpromo1.jpg" alt="" width="960" height="500" /></a><a href="http://www.evermade.fi/?attachment_id=331" rel="attachment wp-att-331"><img class="alignnone size-full wp-image-331" title="nathanpromo2" src="http://www.evermade.fi/wp-content/uploads/2012/02/nathanpromo2.jpg" alt="" width="960" height="500" /></a><a href="http://www.evermade.fi/?attachment_id=332" rel="attachment wp-att-332"><img class="alignnone size-full wp-image-332" title="nathanpromo3" src="http://www.evermade.fi/wp-content/uploads/2012/02/nathanpromo3.jpg" alt="" width="960" height="500" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.evermade.fi/?post_type=case&#038;p=326/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Two reasons to love underscore.js</title>
		<link>http://www.evermade.fi/2012/01/18/two-reasons-to-love-underscore-js/</link>
		<comments>http://www.evermade.fi/2012/01/18/two-reasons-to-love-underscore-js/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 20:11:55 +0000</pubDate>
		<dc:creator>Jaakko</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Libraries]]></category>

		<guid isPermaLink="false">http://www.evermade.fi/?p=320</guid>
		<description><![CDATA[I&#8217;ve recently started to include undescore.js library to all JavaScript applications and sites I create. Underscore is a small library providing &#8220;a lot of the functional programming support that you would expect in Prototype.js (or Ruby)&#8221;. I originally found this &#8230; <a href="http://www.evermade.fi/2012/01/18/two-reasons-to-love-underscore-js/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently started to include <a href="http://documentcloud.github.com/underscore/" target="_blank">undescore.js</a> library to all JavaScript applications and sites I create. Underscore is a small library providing &#8220;a lot of the functional programming support that you would expect in Prototype.js (or Ruby)&#8221;. I originally found this library when using Backbone.js framework.</p>
<p>Underscore provides about 60 functions, but there are two that I&#8217;ve found especially useful.</p>
<p><strong>1. bindAll</strong><br />
I&#8217;ve never really understood JavaScript&#8217;s this-context and why it&#8217;s implemented so oddly. When binding object&#8217;s method as an event handler, object context is lost making this-keyword fairly useless.</p>
<p>But hopefully we have Underscore and <a href="http://documentcloud.github.com/underscore/#bindAll" target="_blank">bindAll</a>. It binds a number of methods on the object to be run in the context of that object whenever they are invoked.</p>
<p>See this example stoled directly from documentation:</p>
<p><code>var buttonView = {<br />
label : 'underscore',<br />
onClick : function(){ alert('clicked: ' + this.label); },<br />
onHover : function(){ console.log('hovering: ' + this.label); }<br />
};<br />
_.bindAll(buttonView);<br />
jQuery('#underscore_button').bind('click', buttonView.onClick);<br />
=&gt; When the button is clicked, this.label will have the correct value...</code></p>
<p><strong>2. Templates</strong><br />
I found myself writing a code like this:<br />
<code>var html = "&lt;h1&gt;Menu&lt;/h1&gt;&lt;ul&gt;&lt;li&gt;"+item1+"&lt;/li&gt;&lt;li&gt;"+item2+"&lt;/li&gt;&lt;/ul&gt;"</code></p>
<p>Which is… wrong. You should never mix functional code and presentation. Underscore has a simple <a href="http://documentcloud.github.com/underscore/#template" target="_blank">template</a> function, which allows you to separate markup from JavaScript.</p>
<p>You can define template on your html-source:</p>
<p><code>&lt;script id="my-template" type="javascript/template"&gt;<br />
&lt;h1&gt;Menu&lt;/h1&gt;<br />
&lt;li&gt;&lt;%= item1 %&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;%= item2 %&gt;&lt;/li&gt;<br />
&lt;/script&gt;</code></p>
<p>And then render it on JavaScript side:</p>
<p><code>var template = _.template(jQuery("#my-template").html());<br />
var html = template({ item1: item1, item2: item2 });</code></p>
<p>No more messy html within JavaScript!</p>
<p>With these two simple functions my life gets much easier <img src='http://www.evermade.fi/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.evermade.fi/2012/01/18/two-reasons-to-love-underscore-js/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AlanWake.com goes LIVE</title>
		<link>http://www.evermade.fi/2011/12/21/alanwake-com-goes-live/</link>
		<comments>http://www.evermade.fi/2011/12/21/alanwake-com-goes-live/#comments</comments>
		<pubDate>Wed, 21 Dec 2011 14:48:38 +0000</pubDate>
		<dc:creator>Mikael</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Project Releases]]></category>

		<guid isPermaLink="false">http://www.evermade.fi/?p=294</guid>
		<description><![CDATA[After countless hours of work, we proudly present Alan Wake&#8217;s new website! It&#8217;s been an honor working with such client as Remedy Entertainment. But there is still much to be done! We will fix every bug and make this one &#8230; <a href="http://www.evermade.fi/2011/12/21/alanwake-com-goes-live/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>After countless hours of work, we proudly present Alan Wake&#8217;s new website! It&#8217;s been an honor working with such client as Remedy Entertainment.</p>
<p>But there is still much to be done! We will fix every bug and make this one perfect! If any bugs are found. Please inform us! <img src='http://www.evermade.fi/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Check it out at <a title="www.alanwake.com" href="http://www.alanwake.com" target="_blank">www.alanwake.com</a></p>
<p>More about the project: <a href="http://www.evermade.fi/?post_type=case&amp;p=285">http://www.evermade.fi/?post_type=case&amp;p=285</a></p>
<p><img class="alignnone size-large wp-image-295" title="mainskin" src="http://www.evermade.fi/wp-content/uploads/2011/12/mainskin1-663x345.jpg" alt="" width="663" height="345" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.evermade.fi/2011/12/21/alanwake-com-goes-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alan Wake</title>
		<link>http://www.evermade.fi/?post_type=case&#038;p=285</link>
		<comments>http://www.evermade.fi/?post_type=case&#038;p=285#comments</comments>
		<pubDate>Wed, 21 Dec 2011 13:38:55 +0000</pubDate>
		<dc:creator>Mikael</dc:creator>
		
		<guid isPermaLink="false">http://www.evermade.fi/?post_type=case&#038;p=285</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-292" title="otherskin" src="http://www.evermade.fi/wp-content/uploads/2011/12/otherskin.jpg" alt="Alanwake.com secondary theme, Original Alan Wake" width="960" height="500" /><br />
<img class="alignnone size-full wp-image-290" title="allplatforms" src="http://www.evermade.fi/wp-content/uploads/2011/12/allplatforms.jpg" alt="Webdesign of Alanwake.com on multiple platforms" width="960" height="500" /><br />
<img class="alignnone size-full wp-image-293" title="mainskin" src="http://www.evermade.fi/wp-content/uploads/2011/12/mainskin.jpg" alt="Alanwake.com main theme American Nightmare" width="960" height="500" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.evermade.fi/?post_type=case&#038;p=285/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Caching matters</title>
		<link>http://www.evermade.fi/2011/12/14/caching-matters/</link>
		<comments>http://www.evermade.fi/2011/12/14/caching-matters/#comments</comments>
		<pubDate>Wed, 14 Dec 2011 13:31:25 +0000</pubDate>
		<dc:creator>Jaakko</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.evermade.fi/?p=276</guid>
		<description><![CDATA[We are developing a WordPress site for a popular brand and we&#8217;re expecting high traffic. So I installed WordPress Super Cache plugin and did some measurements with Apache Benchmark. Results are obvious (requests per second, 10 concurrent users): This if &#8230; <a href="http://www.evermade.fi/2011/12/14/caching-matters/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>We are developing a WordPress site for a popular brand and we&#8217;re expecting high traffic. So I installed WordPress Super Cache plugin and did some measurements with Apache Benchmark. Results are obvious (requests per second, 10 concurrent users):</p>
<p><img class="alignnone size-full wp-image-277" title="wordpress-super-cache-plugin-performance-results-2" src="http://www.evermade.fi/wp-content/uploads/2011/12/wordpress-super-cache-plugin-performance-results-2.png" alt="WordPress caching performance compared to non-cached site" width="501" height="283" /></p>
<p>This if nothing proves that caching matters <img src='http://www.evermade.fi/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.evermade.fi/2011/12/14/caching-matters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sneak Preview #1 &#8211; The Fighter</title>
		<link>http://www.evermade.fi/2011/12/13/sneak-preview-1-the-fighter/</link>
		<comments>http://www.evermade.fi/2011/12/13/sneak-preview-1-the-fighter/#comments</comments>
		<pubDate>Tue, 13 Dec 2011 11:26:42 +0000</pubDate>
		<dc:creator>Mikael</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Personal Work]]></category>
		<category><![CDATA[Sneak Previews]]></category>

		<guid isPermaLink="false">http://www.evermade.fi/?p=266</guid>
		<description><![CDATA[A little sneak preview of whats &#8220;under construction&#8221;. One of the very few projects that we&#8217;re allowed to speak of!]]></description>
			<content:encoded><![CDATA[<p>A little sneak preview of whats &#8220;under construction&#8221;. One of the very few projects that we&#8217;re allowed to speak of!<img class="alignnone size-large wp-image-267" title="sneeak" src="http://www.evermade.fi/wp-content/uploads/2011/12/sneeak-663x189.jpg" alt="" width="663" height="189" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.evermade.fi/2011/12/13/sneak-preview-1-the-fighter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Etera &#8211; Christmas E-Card</title>
		<link>http://www.evermade.fi/2011/12/07/etera-christmas-e-card/</link>
		<comments>http://www.evermade.fi/2011/12/07/etera-christmas-e-card/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 18:17:34 +0000</pubDate>
		<dc:creator>Mikael</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Personal Work]]></category>
		<category><![CDATA[E-Card]]></category>
		<category><![CDATA[etera]]></category>
		<category><![CDATA[snowman]]></category>

		<guid isPermaLink="false">http://www.evermade.fi/new/?p=224</guid>
		<description><![CDATA[Hahaaa! We had to design and animate a christmas themed e-card for Etera in Flash. Now its LIVE for the masses! The projects schedule was very swift and there wasn&#8217;t much time to polish everything. Nevertheless the final result is &#8230; <a href="http://www.evermade.fi/2011/12/07/etera-christmas-e-card/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hahaaa! We had to design and animate a christmas themed e-card for Etera in Flash. Now its LIVE for the masses! The projects schedule was very swift and there wasn&#8217;t much time to polish everything. Nevertheless the final result is pure awesomeness.</p>
<p>Check it out by going to: <a title="Etera Christmas E-Card" href="http://www.eteranjoulu.fi/" target="_blank">Etera Christmas E-Card</a> and click to play the &#8220;lumiukko&#8221; animation.</p>
<p>Merry Xmas!</p>
<p><a href="http://www.eteranjoulu.fi/" target="_blank"><img class="alignnone size-full wp-image-231" title="etera_snowman" src="http://www.evermade.fi/wp-content/uploads/2011/12/etera_snowman1.jpg" alt="" width="663" height="367" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.evermade.fi/2011/12/07/etera-christmas-e-card/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vanhuus Rokkaa &#8211; Flyer</title>
		<link>http://www.evermade.fi/2011/12/07/vanhuus-rokkaa-flyers/</link>
		<comments>http://www.evermade.fi/2011/12/07/vanhuus-rokkaa-flyers/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 15:02:07 +0000</pubDate>
		<dc:creator>Mikael</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Personal Work]]></category>

		<guid isPermaLink="false">http://www.evermade.fi/new/?p=208</guid>
		<description><![CDATA[Finished off a flyer for Vanhuus Rokkaa -project. What do you think?]]></description>
			<content:encoded><![CDATA[<p>Finished off a flyer for Vanhuus Rokkaa -project. What do you think?</p>
<p><img class="alignnone size-large wp-image-217" title="flyer-STAND" src="http://www.evermade.fi/wp-content/uploads/2011/12/flyer-STAND2-663x497.jpg" alt="" width="663" height="497" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.evermade.fi/2011/12/07/vanhuus-rokkaa-flyers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blast from the Past: Flash Banner</title>
		<link>http://www.evermade.fi/2011/12/07/blast-from-the-past-flash-banner/</link>
		<comments>http://www.evermade.fi/2011/12/07/blast-from-the-past-flash-banner/#comments</comments>
		<pubDate>Wed, 07 Dec 2011 14:33:58 +0000</pubDate>
		<dc:creator>Mikael</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Personal Work]]></category>
		<category><![CDATA[Flash Banner]]></category>
		<category><![CDATA[Futuremark]]></category>
		<category><![CDATA[Shattered Horizon]]></category>

		<guid isPermaLink="false">http://www.evermade.fi/new/?p=188</guid>
		<description><![CDATA[Here&#8217;s a little something I found from my past works. It&#8217;s an add for a game called Shattered Horizon(developed by Futuremark Corporation).]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a little something I found from my past works. It&#8217;s an add for a game called Shattered Horizon(developed by Futuremark Corporation).</p>
<p><a href="http://evermade.fi/projects/shbanners/SH750x6003.html" target="_blank"><img class="size-medium wp-image-202" title="sh" src="http://www.evermade.fi/wp-content/uploads/2011/12/sh-300x236.jpg" alt="Shattered Horizon Flash Banner" width="300" height="236" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.evermade.fi/2011/12/07/blast-from-the-past-flash-banner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Generic</title>
		<link>http://www.evermade.fi/?post_type=banner&#038;p=156</link>
		<comments>http://www.evermade.fi/?post_type=banner&#038;p=156#comments</comments>
		<pubDate>Wed, 07 Dec 2011 10:15:51 +0000</pubDate>
		<dc:creator>Mikael</dc:creator>
		
		<guid isPermaLink="false">http://www.evermade.fi/new/?post_type=banner&#038;p=156</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.evermade.fi/?post_type=banner&#038;p=156/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

