<?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>Studio51</title>
	<atom:link href="http://www.studio51.se/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.studio51.se</link>
	<description>I design and I code. Oh, and I also blog about it!</description>
	<lastBuildDate>Mon, 28 Nov 2011 11:36:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Coding HTML for CMS &#8211; part 1</title>
		<link>http://www.studio51.se/blog/coding-html-cms-part-1/</link>
		<comments>http://www.studio51.se/blog/coding-html-cms-part-1/#comments</comments>
		<pubDate>Mon, 27 Sep 2010 08:50:15 +0000</pubDate>
		<dc:creator>Micke Hasselqvist</dc:creator>
				<category><![CDATA[Web design]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://www.studio51.se/blog/?p=654</guid>
		<description><![CDATA[Most web developers out there start out just coding regular HTML. Hell, many web developers only knows how to code in HTML! But if you want to learn a new set of skills, learning how to put your site in a CMS solution, like WordPress, Drupal or Joomla, is the next logical step. But aside [...]]]></description>
			<content:encoded><![CDATA[<p>Most web developers out there start out just coding regular HTML. Hell, many web developers only knows how to code in HTML! But if you want to learn a new set of skills, learning how to put your site in a CMS solution, like WordPress, Drupal or Joomla, is the next logical step. But aside from learning an entirely new programming language, you also have to rethink the way you code HTML.</p>
<p>This is the first part in a series of articles that will teach you how to code <em>dynamic HTML</em>. Are you ready? Let&#8217;s go!<br />
<span id="more-654"></span></p>
<h3>Step 1 &#8211; be mentally prepared</h3>
<p>Wow, that sounds dramatic, doesn&#8217;t it? Just wanted to get your attention first. I wont be teaching you new skills or anything, but I will be teaching you how to <em>think different!</em></p>
<p><em>Dynamic </em>is the keyword here. By now, you should have realized that there are many methods of doing the same thing. Right now, you have to code with the intention of everything being dynamic. With an interface, every single piece of text and every image should be dynamic.</p>
<h3>Step 2 &#8211; make the content look good, no matter what!</h3>
<p>Here&#8217;s the next keyword for you &#8211; <em>content</em>! The very first thing you should do is identiy what the <em>content </em>is<em> </em>on your site. And what I mean by that is the actual body text. In this area, the user will be able to insert text (obviously), images, lists, tables, anything you can imagine. He will be able to insert an essay and he will be able to insert just two lines. And both of those have to look AGAP (as good as possible!)</p>
<p>And here is the first value for you to use:</p>
<pre class="brush:[css]">div.content {
  min-height: 400px;
}</pre>
<p>Putting a min-height on the actual content-div (that is, if you use a div and not a HTML5-friendly &lt;section&gt; or &lt;article&gt;) ensures that there won&#8217;t be too much of a difference between a page with two lines of text and one with a hundred lines of text.</p>
<p>Moving on:</p>
<pre class="brush:[css]">div.content, div.content p, div.content ul, div.content ol, div.content table {
  font-size: 12px;
  font-family: Arial;
}</pre>
<p>In order to avoid confusion, make sure that the div and the content inside the div has the <em>exact same look</em> as inside the actual CMS. In face, extend it to lists and tables &#8211; copy the same margin and padding.</p>
<p>Also, pro-tip:</p>
<pre class="brush:[css]">div.content p {
  margin-bottom: 1em;
}</pre>
<p>1em is a dynamic value. It essentially means one line-break that is as big as the actual font-size of the p-tag.</p>
<h3>Step 3 &#8211; blurbs</h3>
<p>The CMS solution gives the user the ability to add images to the content area. But there&#8217;s also a second way to add images &#8211; through blurbs!</p>
<p>So, what are blurbs? Blurbs are essentially an area inside a design that&#8217;s reserved for an image or a Flash movie. They often have a fixed width and height. But sometimes, the height can be dynamic, making only the width fixed. So, how do you code the HTML for that?</p>
<p>First of all &#8211; here&#8217;s the HTML:</p>
<pre class="brush:[html]">&lt;div class="index_blurb"&gt;
  &lt;!-- BLURB GOES HERE --&gt;
&lt;/div&gt;</pre>
<p>Simple enough, right? And here&#8217;s the CSS:</p>
<pre class="brush:[css]">.index_blurb
{
  width: 200px;
  height: 200px;
  overflow: hidden;
}

.index_blurb img
{
  display: block;
  margin: 0;
  padding: 0;
}</pre>
<p>This is simple enough, right? The overflow value is only there to fool-proof the design &#8211; if the user accidently inserts a image with different dimensions, it won&#8217;t break the design.</p>
<h3>Conclusion</h3>
<p>So there you have it. This is about two different things &#8211; making the design fool-proof and making it easier to understand and use for the user. Stay tuned for the next part!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studio51.se/blog/coding-html-cms-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction to conditional comments &#8211; target CSS to IE</title>
		<link>http://www.studio51.se/blog/introduction-conditional-comments-target-css-to-ie/</link>
		<comments>http://www.studio51.se/blog/introduction-conditional-comments-target-css-to-ie/#comments</comments>
		<pubDate>Tue, 21 Sep 2010 10:59:46 +0000</pubDate>
		<dc:creator>Micke Hasselqvist</dc:creator>
				<category><![CDATA[Web design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css hacks]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[stylesheet]]></category>

		<guid isPermaLink="false">http://www.studio51.se/blog/?p=638</guid>
		<description><![CDATA[This post might seem a bit unnecessary now that Internet Explorer 9 is right around the corner. But on the other hand &#8211; people are STILL using IE6 and IE7 and will continue to do so for a long time. So this is a skill that is necessary to know about. I am all against [...]]]></description>
			<content:encoded><![CDATA[<p>This post might seem a bit unnecessary now that <a title="First impressions of Internet Explorer 9 beta" href="http://www.studio51.se/blog/web-design/impressions-internet-explorer-9-beta/" target="_blank">Internet Explorer 9 is right around the corner</a>. But on the other hand &#8211; people are STILL using IE6 and IE7 and will continue to do so for a long time. So this is a skill that is necessary to know about.</p>
<p>I am all against those CSS hacks that exists out there. You know how it is &#8211; sometimes Internet Explorer just won&#8217;t behave as the other browsers. CSS hacks aren&#8217;t pretty and can screw things up. But you&#8217;ve got a job to do and a client that is waiting, so what do you do?</p>
<p>Enter conditional comments! A fool-proof way to serve different CSS files to different versions of Internet Explorer!<br />
<span id="more-638"></span></p>
<h3>Why use conditional comments?</h3>
<p>CSS hacks can get the job done. But they often rely upon faulty browser behaviour and thus isn&#8217;t very future-safe. Who knows how future browsers will interpret them?</p>
<p>Conditional comments is nothing but regular comments but with a add-on. All other browsers reads it as comments and you can be 99% sure that future non-IE browsers will as well. Let me give you an example:</p>
<pre class="brush:[html]">&lt;!--[if IE]&gt;
  &lt;link href="css/IE.css" type="text/css" /&gt;
&lt;![endif]--&gt;</pre>
<p>As I said: regular comments but with an add-on.  All regular browsers will view it as a comment and move on. IE browsers will read the style sheet. Excellent!</p>
<p>But wait &#8211; there&#8217;s more! Say what you will about Internet Explorer but that browser IS improving. IE8 and IE9 in particular seems to behave more or less like the other browsers, making an IE-specific stylesheet for those versions unneeded. They might even break the layout! So what now?</p>
<p>Conditional comments are actually quite smart! They allow you to target specific versions of IE, like this:</p>
<pre class="brush:[html]">&lt;!--[if IE 6]&gt;
  &lt;link href="css/IE6.css" rel="stylesheet" type="text/css" /&gt;
&lt;![endif]--&gt;</pre>
<p>You see how simple it is? Only IE6 will read that CSS file! You thought that was good? Take a look at this:</p>
<pre class="brush:[html]">&lt;!--[if lte IE 7]&gt;
  &lt;link href="css/IE7.css" rel="stylesheet" type="text/css" /&gt;
&lt;![endif]--&gt;</pre>
<p>The above example actually target IE version 7 AND BELOW! You see? More modern browsers will <em>never</em> read that specific CSS file.</p>
<p>An added bonus this technique is that it validates. And since it won&#8217;t break in any other browser, and probably never will, it&#8217;s a fool-proof concept. Code away!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studio51.se/blog/introduction-conditional-comments-target-css-to-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First impressions of Internet Explorer 9 beta</title>
		<link>http://www.studio51.se/blog/impressions-internet-explorer-9-beta/</link>
		<comments>http://www.studio51.se/blog/impressions-internet-explorer-9-beta/#comments</comments>
		<pubDate>Fri, 17 Sep 2010 07:48:45 +0000</pubDate>
		<dc:creator>Micke Hasselqvist</dc:creator>
				<category><![CDATA[Web design]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[ie9]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[microsoft]]></category>

		<guid isPermaLink="false">http://www.studio51.se/blog/?p=626</guid>
		<description><![CDATA[This morning Microsoft released the beta of the long-awaited Internet Explorer 9. This is most likely their last ditch at reclaiming their ever decreasing user base. Internet Explorer 9 is a completely different beast than before. Both the interface and the underlying engine has undergone a major overhaul. IE9 runs a lot faster, has a [...]]]></description>
			<content:encoded><![CDATA[<p>This morning Microsoft released the beta of the long-awaited Internet Explorer 9. This is most likely their last ditch at reclaiming their ever decreasing user base.</p>
<p>Internet Explorer 9 is a completely different beast than before. Both the interface and the underlying engine has undergone a major overhaul. IE9 runs a lot faster, has a much smoother interface and better support for the up-and-coming HTML5 and CSS3.</p>
<p><span id="more-626"></span>However, let me first take the time to criticise (I like to do that): why does the IE9 beta installs OVER IE8 instead of being installed as a stand-alone product? That&#8217;s rather weird and inconvenient.</p>
<p>Anyway, the first thing that strikes me is the UI &#8211; it reminds me a lot of Google Chrome and looks a lot cleaner and smoother, focusing the users attention on the actual content instead of the browser. The icons are smaller and in my opinion it looks better.</p>
<p>I tried surfing around popular pages such as Facebook, Twitter, Google etc. And everything is really fast, I was pleasantly surprised. I don&#8217;t know how it compares to Chrome, but it feels on par with it, which is really impressive.</p>
<p>However, it does crash a lot. It is to be expected of a beta, but I ran into a rather large number of errors. Hopefully, they will have it all sorted out in time for the final release.</p>
<p>I haven&#8217;t yet tried out some actual coding, but it is supposed to have much better support for HTML5 and CSS3, which is a REAL relief! Just imagine what the web might look like in five years! I&#8217;m really looking forward to embracing the new technology.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studio51.se/blog/impressions-internet-explorer-9-beta/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Solution to the big, bad cache problem</title>
		<link>http://www.studio51.se/blog/solution-big-bad-cache-problem/</link>
		<comments>http://www.studio51.se/blog/solution-big-bad-cache-problem/#comments</comments>
		<pubDate>Wed, 15 Sep 2010 12:12:30 +0000</pubDate>
		<dc:creator>Micke Hasselqvist</dc:creator>
				<category><![CDATA[Web design]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[caching]]></category>
		<category><![CDATA[query string]]></category>
		<category><![CDATA[web developer]]></category>

		<guid isPermaLink="false">http://www.studio51.se/blog/?p=610</guid>
		<description><![CDATA[Do you wanna know my biggest enemy as a web developer? It&#8217;s not browser inconsistencies, nor is it stubborn designers. No, my biggest and most annoying enemy is a simple one &#8211; browser caching! While this is a good feature for the end-user that enables pages to load a lot faster by saving some information [...]]]></description>
			<content:encoded><![CDATA[<p>Do you wanna know my biggest enemy as a web developer? It&#8217;s not browser inconsistencies, nor is it stubborn designers. No, my biggest and most annoying enemy is a simple one &#8211; browser caching! While this is a good feature for the end-user that enables pages to load a lot faster by saving some information on the user&#8217;s hard drive, it drives me nuts when I&#8217;m updating a page. My carefully reworked style sheet just won&#8217;t load until after the user has reloaded the page and emptied their cache!</p>
<p>However, there is a solution to this problem that has other advantages as well, and I&#8217;m going to tell you all about it!</p>
<p><span id="more-610"></span>When I&#8217;m working on a project, I usually use Firefox and the <a title="Web Developer Firefox extension" href="https://addons.mozilla.org/sv-SE/firefox/addon/60/" target="_blank">Web Developer toolbar extension</a>. It has many advantages and one of them is the ability to easily turn off Firefox caching. This is gold when you&#8217;re doing front-end design! (And I also hear <a title="Web Developer extension for Google Chrome" href="https://chrome.google.com/extensions/detail/bfbameneiokkgbdmiekhjnmfkcnldhhm" target="_blank">it&#8217;s now available for Google Chrome!</a>).</p>
<p>Anyway, let&#8217;s say your job is to update a site with a new font and some new styling. You download the CSS, make the changes and upload the file again. And what happens? The client calls a few days later and claims they can&#8217;t view the changes made! Telling them to reload the page to clear the cache will do no good since the harm is, in a way, already done! How can we prevent this?</p>
<p>Well, let me introduce you to our simple friend &#8211; query strings! While they are normally only used with a server language, like PHP or ASP.NET, (or, in some cases, with JavasScript) they can be utilized when calling CSS style sheets and JavaScript files! Just use a line like this:</p>
<pre class="brush:[html]">&lt;link rel="stylesheet" href="http://www.yoursite.com/css/layout.css?v=1" /&gt;</pre>
<p>This will do no actual effect on the style sheet, or the way it is referenced. You can use this for your first release of your project and the v=1 part tells you, or anyone else picking up the project, that the CSS is on its first version.</p>
<p>HOWEVER! Let&#8217;s say you want to update that file. Download it, make the necessary changes, then upload it and change the calling so it looks like this:</p>
<pre class="brush:[html]">&lt;link rel="stylesheet" href="http://www.yoursite.com/css/layout.css?v=2" /&gt;</pre>
<p>The browser will interpret this as a second CSS file, completely separate from the first one, and thus it will not use the one that is cached! This is great stuff! Of course, the browser will then continue to cache the file as usual, which is all fine and good.</p>
<p>This also has the advantage of telling the developer, whether it be you or anyone else, how many changes has been made to the CSS since the site was first released.</p>
<p>No more angry clients calling back telling me they can&#8217;t view the changes! So simple, yet so powerful!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studio51.se/blog/solution-big-bad-cache-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 8 CSS Galleries</title>
		<link>http://www.studio51.se/blog/top-8-css-galleries/</link>
		<comments>http://www.studio51.se/blog/top-8-css-galleries/#comments</comments>
		<pubDate>Mon, 13 Sep 2010 11:13:45 +0000</pubDate>
		<dc:creator>Micke Hasselqvist</dc:creator>
				<category><![CDATA[Web design]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[source code]]></category>
		<category><![CDATA[top list]]></category>
		<category><![CDATA[web galleries]]></category>

		<guid isPermaLink="false">http://www.studio51.se/blog/?p=583</guid>
		<description><![CDATA[Web galleries is a great way to get inspiration while working on a project. It doesn&#8217;t matter wheter you&#8217;re doing a design, coding HTML or even if you&#8217;re just doing some jQuery &#8211; CSS galleries are awesome! Also, they&#8217;re not just pretty to look at &#8211; have a peek at the source code and spy [...]]]></description>
			<content:encoded><![CDATA[<p>Web galleries is a great way to get inspiration while working on a project. It doesn&#8217;t matter wheter you&#8217;re doing a design, coding HTML or even if you&#8217;re just doing some jQuery &#8211; CSS galleries are awesome!</p>
<p>Also, they&#8217;re not just pretty to look at &#8211; have a peek at the source code and spy on what other people are doing! You might get an idea or two for your own project.</p>
<p>However, <strong>please remember to not steal anything</strong>! I realize there&#8217;s a fine line between inspiration and duplication, but as long as you keep it in the back of your head, I&#8217;m sure you&#8217;ll have nothing to worry about.</p>
<p><span id="more-583"></span>Anyway, here we go:</p>
<h2><a title="CSS Manía" href="http://cssmania.com/" target="_blank">CSS Manía</a></h2>
<p><a href="http://cssmania.com/"><img class="alignnone size-full wp-image-587" title="CSS Manía" src="http://www.studio51.se/blog/wp-content/uploads/2010/09/1.jpg" alt="" width="500" height="318" /></a></p>
<h2><a title="Zeniltuo" href="http://zeniltuo.com/" target="_blank">Zeniltuo</a></h2>
<p><a href="http://zeniltuo.com/"><img class="alignnone size-full wp-image-588" title="Zeniltuo" src="http://www.studio51.se/blog/wp-content/uploads/2010/09/2.jpg" alt="" width="500" height="318" /></a></p>
<h2><a title="Screenalicio.us" href="http://www.screenalicious.com/" target="_blank">Screenalicio.us</a></h2>
<p><a href="http://www.screenalicious.com/"><img class="alignnone size-full wp-image-589" title="Screenalicio.us" src="http://www.studio51.se/blog/wp-content/uploads/2010/09/3.jpg" alt="" width="500" height="318" /></a></p>
<h2><a title="Unmatched Style" href="http://www.unmatchedstyle.com/gallery/" target="_blank">Unmatched Style</a></h2>
<p><a href="http://www.unmatchedstyle.com/gallery/"><img class="alignnone size-full wp-image-592" title="Unmatched Style" src="http://www.studio51.se/blog/wp-content/uploads/2010/09/4.jpg" alt="" width="500" height="318" /></a></p>
<h2><a title="Web Creme" href="http://www.webcreme.com/" target="_blank">Web Creme</a></h2>
<p><a href="http://www.webcreme.com/"><img class="alignnone size-full wp-image-593" title="Web Creme" src="http://www.studio51.se/blog/wp-content/uploads/2010/09/5.jpg" alt="" width="500" height="318" /></a></p>
<h2><a title="CSS Beauty" href="http://www.cssbeauty.com/" target="_blank">CSS Beauty</a></h2>
<p><a href="http://www.cssbeauty.com/"><img class="alignnone size-full wp-image-594" title="CSS Beauty" src="http://www.studio51.se/blog/wp-content/uploads/2010/09/6.jpg" alt="" width="500" height="318" /></a></p>
<h2><a title="Style Crunch" href="http://www.stylecrunch.com/" target="_blank">Style Crunch</a></h2>
<p><a href="http://www.stylecrunch.com/"><img class="alignnone size-full wp-image-597" title="Style Crunch" src="http://www.studio51.se/blog/wp-content/uploads/2010/09/71.jpg" alt="" width="500" height="318" /></a></p>
<h2><a title="CSS Remix" href="http://cssremix.com/" target="_blank">CSS Remix</a></h2>
<p><a href="http://cssremix.com/"><img class="alignnone size-full wp-image-598" title="CSS Remix" src="http://www.studio51.se/blog/wp-content/uploads/2010/09/8.jpg" alt="" width="500" height="318" /></a></p>
<p>There&#8217;s actually one more use to these galleries &#8211; they&#8217;re a great place to submit your own design that you feel proud of. Now, off you go designing those fancy, sexy layouts!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studio51.se/blog/top-8-css-galleries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 7 WordPress plugins</title>
		<link>http://www.studio51.se/blog/top-7-wordpress-plugins/</link>
		<comments>http://www.studio51.se/blog/top-7-wordpress-plugins/#comments</comments>
		<pubDate>Sun, 05 Sep 2010 19:45:26 +0000</pubDate>
		<dc:creator>Micke Hasselqvist</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[top list]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.studio51.se/blog/?p=563</guid>
		<description><![CDATA[WordPress is a fantastic blogging tool. I have it set up to run this very Studio51 blog and I love every aspect of it. It&#8217;s dead easy to set up and use, and it just works straight out of the box. I thought I would give you a collection of my favorite WordPress plugins. I [...]]]></description>
			<content:encoded><![CDATA[<p><a title="WordPress" href="http://wordpress.org/" target="_blank">WordPress</a> is a fantastic blogging tool. I have it set up to run this very <a title="Studio51 blog" href="http://www.studio51.se/blog" target="_self">Studio51 blog</a> and I love every aspect of it. It&#8217;s dead easy to set up and use, and it just works straight out of the box.</p>
<p>I thought I would give you a collection of my favorite WordPress plugins. I use all of them on this very site.<br />
<span id="more-563"></span></p>
<h3>Akismet</h3>
<p>Akismet is a fantastic spam fighter! It is without question the very first plugin that everybody should install on their newly set-up WordPress account. Once activated through an API key that you can obtain on WordPress.org, it will automatically thrash spam comments on your blog posts.</p>
<p><a title="Akismet" href="http://wordpress.org/extend/plugins/akismet/" target="_blank">Download Akismet</a></p>
<h3>HeadSpace2</h3>
<p>The plugin All in One SEO Pack was for long considered the very best plugin used to handle your site&#8217;s search engine optimization. However, I strongly recommend using HeadSpace2 instead. It allows even greater control over all your site&#8217;s pages and posts. The level of customization is just stunning.</p>
<p><a title="HeadSpace2" href="http://urbangiraffe.com/plugins/headspace2/" target="_blank">Download HeadSpace2</a></p>
<h3>CommentLuv</h3>
<p>Simple name for a simple plugin. Every time one of your readers make a comment and writes in the address to their own blog, this plugin goes looking for the latest blog post on that site and displays it under the author&#8217;s comment. Cool way to give something back to the reader for taking the time to comment!</p>
<p><a title="CommentLuv" href="http://comluv.com/" target="_blank">Download CommentLuv</a></p>
<h3>Fluency Admin</h3>
<p>This one is perhaps not one noticable to your readers, but rather to you, the adminstrator. It completely re-amps the admin interface, replacing the sidebar buttons with hover menu&#8217;s, making navigation easier. I personally like this look better than the default one, but this is down to personal choice.</p>
<p><a title="Fluency Admin" href="http://deanjrobinson.com/projects/fluency-admin/" target="_blank">Download Fluency Admin</a></p>
<h3>Google XML Sitemaps</h3>
<p>This goes hand in hand with HeadSpace2 or any other SEO plugin you may have installed. It will generate a XML sitemap, making it easier for Google robots to index your site.</p>
<p><a title="Google XML Sitemaps" href="http://www.arnebrachhold.de/redir/sitemap-home/" target="_blank">Download Google XML Sitemaps</a></p>
<h3>Socialize This</h3>
<p>Generates a set of icons to every one of your blog post, allowing the reader to share your posts on a social network. You can customize which social networks to use, and even download other themes to change the look. And as a bonus &#8211; this plugin can automatically update your Twitter with a link to your latest blog post every time you publish something new.</p>
<p><a title="Socialize This" href="http://www.fullondesign.co.uk/socialize-this" target="_blank">Download Socialize This</a></p>
<h3>WP-DPManager</h3>
<p>It&#8217;s really important to constantly back-up your work &#8211; you never know when your server might have a breakdown and you lose all your work. This plugin allows you to back-up your database, either manually or automatically on a set interval, browse your tables, optimize your database, etc. Highly recommended!</p>
<p><a title="WP-DBManager" href="http://wordpress.org/extend/plugins/wp-dbmanager/" target="_blank">Download WP-DBManager</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.studio51.se/blog/top-7-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disconnect To Increase Your Workflow</title>
		<link>http://www.studio51.se/blog/disconnect-increase-workflow/</link>
		<comments>http://www.studio51.se/blog/disconnect-increase-workflow/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 11:46:18 +0000</pubDate>
		<dc:creator>Micke Hasselqvist</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[current project]]></category>
		<category><![CDATA[distraction]]></category>
		<category><![CDATA[notifications]]></category>
		<category><![CDATA[social networking]]></category>

		<guid isPermaLink="false">http://www.studio51.se/blog/?p=541</guid>
		<description><![CDATA[I love technology. I love playing around with my iPhone, browsing around on the latest social media websites. But as much as I love it, I find myself having big problems with it sometimes. The same technology that gives me work (and something to write about in this very blog) can also become a major [...]]]></description>
			<content:encoded><![CDATA[<p>I love technology. I love playing around with my iPhone, browsing around on the latest social media websites. But as much as I love it, I find myself having big problems with it sometimes. The same technology that gives me work (and something to write about in this very blog) can also become a major obsticle. Being a web designer, I&#8217;m required to be online all day long. And that also means I have to be extra careful not to get sidetracked.</p>
<p>This article will focus on stuff that&#8217;s probably very obvious to some of you, and it isn&#8217;t groundbreaking stuff. However, sometimes we all need to be reminded even of the most plain things. No matter how great of a web designer you are, if you can&#8217;t focus then you&#8217;re not gonna do much good, are you?<br />
<span id="more-541"></span></p>
<h3>Social media sites</h3>
<p>Two of my favorite online services are Facebook and Twitter. I admit that I probably stay logged in more or less throughout the whole day. And while it can be difficult noticing when it becomes a problem and hinders your work &#8211; do the first step and just don&#8217;t log in! Close the tabs containg the program. Reconnect later when you have the time to spare.</p>
<p>I am of the opinion that there is nothing wrong with a little social networking every once in a while, especially since it can actually leads to establishing new contacts. But it is equally important to know when you have to focus and concentrate on your current project.</p>
<h3>Don&#8217;t forget the third-party applications!</h3>
<p>I personally love <a title="TweetDeck" href="http://www.tweetdeck.com/" target="_blank">TweetDeck</a> &#8211; it&#8217;s an awesome way of interacting on <a title="Twitter" href="http://www.twitter.com" target="_blank">Twitter</a>. But no matter what program you choose to use &#8211; close it down! And I mean it entirally &#8211; sometimes minimizing it just don&#8217;t cut it.</p>
<p>Most programs make use of different notifications when stuff happens and this can clearly be a distraction. But even if you just turn off the notification system, the icon clearly begs to be clicked on! Just one more time&#8230; (Or is that just me?)</p>
<p>So &#8211; close it! Close it down!</p>
<h3>Your own personal browser war</h3>
<p>This depends on what exactly you&#8217;re working with. But let&#8217;s say you&#8217;re designing in Photoshop. Why do you even need to have your browser open at all? Close it down! (Heard that before?)</p>
<p>However, if you&#8217;re working with the programming aspect of a project then you clearly need to have it open. But when you do &#8211; <em>don&#8217;t</em> have any more open tabs than you need to. Just like in the TweetDeck case, it&#8217;s all too easy to bring back that Facebook tab to check &#8220;just one more time&#8221;&#8230;</p>
<p>You can also hide both your bookmarks and even the address bar! You can&#8217;t type facebook.com into a non-existant address bar, now can you? Only open up tabs that are relevant to your project and then hide it. It&#8217;s amazing what difference such a simple, yet drastic change can make to your workflow.</p>
<p>Also, a little tip. Use Ctrl+R (Command+R on OS X) to reload the page.</p>
<h3>Your inbox</h3>
<p>Most people (including me) keep their mail boxes open all the time. It serves as a referencing point &#8211; at any time I can look through my conversation with the client to see what exactly has been decided. I never print anything and I hardly ever take notes by hand, so I have it all on my computer.</p>
<p>My advice here really depends on your situation and your role in the company. If you know that your boss wants you to totally focus on your project at hand then this is what you can do: increase the amount of time between automated email checks. Whenever a box pops up on your screen, telling you that you have a new mail, it&#8217;s <em>very </em>tempting to click it. Just avoid that problem altogether.</p>
<p>However, I do realize that this isn&#8217;t feasible for everyone. For example, I could never do that &#8211; something really urgent might come up and I have to drop everything I do to check up on it. My job includes being available if the situation calls for it.</p>
<h3>How to handle phone calls</h3>
<p>For some people, phone can be a BIG distraction, especially for us obsessive people (my iPhone is more important to me than putting on my socks!). However, there&#8217;s one really important thing that can be done to overcome this &#8211; schedule all important phone meetings.</p>
<p>Do you know why this is such a huge deal? It&#8217;s because it&#8217;s a lot easier fitting in your work and making more out of the time you have if you know exactly how much time you have on your hands before the next phone meeting is about to take place. Think about it &#8211; the most distracting things are those that you don&#8217;t expect.</p>
<p>There&#8217;s also another simple solution &#8211; just turn off the signal and let the voice mail take care of it. That way, you can decide for yourself when to deal with an unexpected situation that might arise.</p>
<h3>Smartphones &#8211; not always that smart</h3>
<p>While on the subject of phones &#8211; let&#8217;s talk a bit about smartphones! Since you&#8217;re working with the web, chances are you probably have one of those smartphones. I have an iPhone myself, and I am very happy with it. However, the fact that you can do so much with it can also prove to be a distraction while working. What&#8217;s the point of post-poning automatic email checks if your phone is gonna tell you all about it anyway?</p>
<p>You can turn it off entirely, but it might also suffice to just put it to silent mode and NOT keep it visible. It&#8217;s so easy to fall into the trap of checking &#8220;just one more thing&#8221;. Don&#8217;t do that!</p>
<h3>Instant messaging &#8211; instant annoyance</h3>
<p>No matter what service you use as your instant messaging tool &#8211; it can also be a BIG distraction when your friends or co-workers constantly tries to strike up conversations with you in the middle of a project.</p>
<p>While setting your status as &#8220;Busy&#8221; might suffice in some situations, I would say that the very best thing is to turn it off entirely. Not everyone will respect your status.</p>
<h3>Final words</h3>
<p>This is only a handful of (obvious) tips to utilize if you&#8217;re feeling to distracted. Some of &#8216;em might be hard to implement though.</p>
<p>What do you do to stay focused?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studio51.se/blog/disconnect-increase-workflow/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Top 10 most beautiful blogs</title>
		<link>http://www.studio51.se/blog/top-10-beautiful-blogs/</link>
		<comments>http://www.studio51.se/blog/top-10-beautiful-blogs/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 10:26:54 +0000</pubDate>
		<dc:creator>Micke Hasselqvist</dc:creator>
				<category><![CDATA[Web design]]></category>
		<category><![CDATA[beautiful]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[top list]]></category>

		<guid isPermaLink="false">http://www.studio51.se/blog/?p=500</guid>
		<description><![CDATA[One of the most important aspects of a website is the design. Many people surf through hundreds of different websites each day, and if they feel that the design is low-par, then they won&#8217;t take as much as a second look at the actual content. Sad but true &#8211; it&#8217;s look that matters! This is [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most important aspects of a website is the design. Many people surf through hundreds of different websites each day, and if they feel that the design is low-par, then they won&#8217;t take as much as a second look at the actual content.</p>
<p>Sad but true &#8211; it&#8217;s look that matters! This is especially true when you take services like <a title="StumbleUpon" href="http://www.stumbleupon.com/" target="_blank">StumbleUpon</a> into account. First impression is often the most important impression.</p>
<p>That&#8217;s why I thought I would dedicate this article to the top 10 blogs that really caught my eye. So look, take in and be inspired. And perhaps find elements to implement in your own site?<br />
<span id="more-500"></span></p>
<h2><a title="Douglas Menezes" href="http://douglasmenezes.com/wp/" target="_blank">Douglas Menezes</a></h2>
<p><a href="http://douglasmenezes.com/wp/"><img class="alignnone size-full wp-image-506" title="Douglas Menezes" src="http://www.studio51.se/blog/wp-content/uploads/2010/08/11.jpg" alt="" width="500" height="318" /></a></p>
<h2><a title="Filcka.cz" href="http://filcka.cz/" target="_blank">Filcka.cz</a></h2>
<p><a href="http://filcka.cz/"><img class="alignnone size-full wp-image-508" title="Filcka.cz" src="http://www.studio51.se/blog/wp-content/uploads/2010/08/2.jpg" alt="" width="500" height="315" /></a></p>
<h2><a title="Getting Crazy" href="http://www.gettingcrazy.info/" target="_blank">Getting crazy</a></h2>
<p><a href="http://www.gettingcrazy.info/"><img class="alignnone size-full wp-image-516" title="Getting crazy" src="http://www.studio51.se/blog/wp-content/uploads/2010/08/3.jpg" alt="" width="500" height="315" /></a></p>
<h2><a title="PV.M Garage" href="http://www.pvmgarage.com/" target="_blank">PV.M Garage</a></h2>
<p><a href="http://www.pvmgarage.com/"><img class="alignnone size-full wp-image-517" title="PV.M Garage" src="http://www.studio51.se/blog/wp-content/uploads/2010/08/4.jpg" alt="" width="500" height="315" /></a></p>
<h2><a title="Gary Nock" href="http://www.garynock.com/" target="_blank">Gary Nock</a></h2>
<p><a href="http://www.garynock.com/"><img class="alignnone size-full wp-image-521" title="Gary Nock" src="http://www.studio51.se/blog/wp-content/uploads/2010/08/5.jpg" alt="" width="500" height="315" /></a></p>
<h2><a title="Gisele Jaguenod (&amp; birdie)" href="http://www.giselejaquenod.com.ar/blog/" target="_blank">Gisele Jaguenod (&amp; birdie)</a></h2>
<p><a href="http://www.giselejaquenod.com.ar/blog/"><img class="alignnone size-full wp-image-524" title="Gisele Jaguenod (&amp; birdie)" src="http://www.studio51.se/blog/wp-content/uploads/2010/08/6.jpg" alt="" width="500" height="315" /></a></p>
<h2><a title="Istok Pavlovic" href="http://www.istokpavlovic.com/blog/" target="_blank">Istok Pavlovic</a></h2>
<p><a href="http://www.istokpavlovic.com/blog/"><img class="alignnone size-full wp-image-526" title="Istok Pavlovic" src="http://www.studio51.se/blog/wp-content/uploads/2010/08/7.jpg" alt="" width="500" height="315" /></a></p>
<h2><a title="Productive Dreams" href="http://www.productivedreams.com/" target="_blank">Productive Dreams</a></h2>
<p><a href="http://www.productivedreams.com/"><img class="alignnone size-full wp-image-529" title="Productive Dreams" src="http://www.studio51.se/blog/wp-content/uploads/2010/08/8.jpg" alt="" width="500" height="315" /></a></p>
<h2><a title="Lady Omega" href="http://www.ladyomega.com/" target="_blank">Lady Omega</a></h2>
<p><a href="http://www.ladyomega.com/"><img class="alignnone size-full wp-image-531" title="Lady Omega" src="http://www.studio51.se/blog/wp-content/uploads/2010/08/9.jpg" alt="" width="500" height="315" /></a></p>
<h2><a title="Kevin Potts" href="http://www.kevinpottsdesign.com/" target="_blank">Kevin Potts</a></h2>
<p><a href="http://www.kevinpottsdesign.com/"><img class="alignnone size-full wp-image-534" title="Kevin Potts" src="http://www.studio51.se/blog/wp-content/uploads/2010/08/10.jpg" alt="" width="500" height="315" /></a></p>
<h3>Reflection</h3>
<p>One thing all of these sites have in common is that the designers have worked a <em>lot </em>on the little details which makes the entire site looks a lot more professional. Other than that, they&#8217;re all very different in styles. There are many ways to make a website!</p>
<p>The reason I listed those is that sometimes you need inspiration, both as a designer and as a programmer. Don&#8217;t stare at your screen for hours to no end, go out there and see what others are doing!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studio51.se/blog/top-10-beautiful-blogs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>6 reasons why you should use Google Analytics</title>
		<link>http://www.studio51.se/blog/6-reasons-google-analytics/</link>
		<comments>http://www.studio51.se/blog/6-reasons-google-analytics/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 17:45:49 +0000</pubDate>
		<dc:creator>Micke Hasselqvist</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google analytics]]></category>

		<guid isPermaLink="false">http://www.studio51.se/blog/?p=485</guid>
		<description><![CDATA[Google Analytics is a free service used by millions of people word-wide. Many of the clients I&#8217;ve worked with make use of it, both large and small businesses. It&#8217;s easy to set up, easy to use and provides really valuable information. But what the heck is it? Google Analytics is a tool for measuring your [...]]]></description>
			<content:encoded><![CDATA[<p>Google Analytics is a free service used by millions of people word-wide. Many of the clients I&#8217;ve worked with make use of it, both large and small businesses. It&#8217;s easy to set up, easy to use and provides really valuable information.</p>
<p><strong>But what the heck is it?</strong></p>
<p>Google Analytics is a tool for measuring your site visitors. You can find out how many visitors you have, unique visitors, pageviews, plus what browser, operating system and screen resolution they make us of. All of this is presented in nice-looking graphs, that you can customize to your hearts content. Google Analytics is, quite simply, one of the best web analytic services I&#8217;ve ever used, and here is my top 6 reasons why you should use it!<br />
<span id="more-485"></span></p>
<h3>6 <em>fabulous </em>reasons to use Google Analytics</h3>
<p>Oh yes, here it is. And here we go:</p>
<ol>
<li><strong>Keep track of visitors.</strong> Yes, I&#8217;m being captain obvious here, but unless you&#8217;re running a blog with a comment system, you have no way of knowing if you have any visitors at ALL if you don&#8217;t use a system like this.</li>
<li><strong>Watch your site growth over time.</strong> Google Analytics provides awesome customability to your graphs so you can compare different time periods and other stuff.</li>
<li><strong>Find out just <em>where </em>your visitors come from</strong>! This is an awesome feature &#8211; does your traffic come from search enginge&#8217;s, backlinks or simply by writing the URL in the address field?</li>
<li><strong>Track down your most popular page.</strong> Because everybody wants to get to know the popular kid, right? Then you can learn what makes him cool, and try to apply that same coolness on your other pages.</li>
<li><strong>It will help you make those design decisions.</strong> Tracking your users choice of browser and screen resolution will prove invaluable when you have to make design adjustments to your site.</li>
<li><strong>It&#8217;s all free!</strong> Can you think of any better reason? I can&#8217;t!</li>
</ol>
<h3>How to set it up</h3>
<p>Now, let&#8217;s talk about a little how to set it up. First of all, you need a Google account. You may already have one, a simple Gmail address will suffice. If you don&#8217;t have that, just surf over to <a title="Google Analytics" href="http://www.google.com/analytics" target="_blank">www.google.com/analytics</a> and get yourself an account.</p>
<p>Once you&#8217;re in, you need to set up a profile. You usually have one profile per website. You can actually have several websites connected to one Analytics-account, which is really nice.</p>
<p>Anyway, click on &#8220;Add Profile&#8221; and then choose to add a profile for a <strong>new </strong>domain.</p>
<p>After filling out your website&#8217;s address and time zone, you&#8217;re then given the JavaScript code that is to be pasted into every one of your pages. Just remember, it&#8217;s REALLY important that you:</p>
<ol>
<li><strong>Do not make any alterations to the code</strong>. If you want to tab out the code so it looks nice and clean, just be careful!</li>
<li><strong>Be sure to put the code just below the closing &lt;body&gt; tag</strong>. The reason for this is that it allows the entire page to load uninterrupted before Google starts analysing the visitor. However, I never had any problem with the code slowing the my websites.</li>
</ol>
<p>So now you&#8217;ve installed the code, now what? Now&#8230;you wait for 24 hours, to give Google time to start tracking your code. If you&#8217;re just as inpatient as me, that&#8217;s a pain in the ass. <img src='http://www.studio51.se/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>After those 24 hours, you are ready to go! You can start right away to track your visitors. Take your time to click around the different sections. And please notice that all the graphs you see can be customized.</p>
<p>Analyze away!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studio51.se/blog/6-reasons-google-analytics/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New techniques versus compatibility</title>
		<link>http://www.studio51.se/blog/techniques-compatibility/</link>
		<comments>http://www.studio51.se/blog/techniques-compatibility/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 08:07:54 +0000</pubDate>
		<dc:creator>Micke Hasselqvist</dc:creator>
				<category><![CDATA[Web design]]></category>
		<category><![CDATA[decisions]]></category>
		<category><![CDATA[demonstration]]></category>
		<category><![CDATA[developers]]></category>
		<category><![CDATA[latest technology]]></category>

		<guid isPermaLink="false">http://www.studio51.se/blog/?p=453</guid>
		<description><![CDATA[The other day, I was reading through blog posts and articles about HTML5, CSS3 and other new technology. One pattern that seemed to be repeating itself was this: Several persons comments how great it looks. Then, one person points out that it doesn&#8217;t work in all browsers, for example in Internet Explorer. Another person, often [...]]]></description>
			<content:encoded><![CDATA[<p>The other day, I was reading through blog posts and articles about HTML5, CSS3 and other new technology. One pattern that seemed to be repeating itself was this:</p>
<ol>
<li>Several persons comments how great it looks.</li>
<li>Then, one person points out that it doesn&#8217;t work in all browsers, for example in Internet Explorer.</li>
<li>Another person, often the blog author, chimes in and comments that this is only a demonstration.</li>
<li>And yet another person gives a comment like &#8220;who gives a fuck about Internet Explorer?&#8221;</li>
<li>All hell breaks loose&#8230;</li>
</ol>
<p>While I understand the importance and need for those demonstration blog posts, I feel that we, the developers, should be really careful in what tools we chose to use. I know we all love what we&#8217;re doing and most of us love to experiment with the latest technology. But behind every website, there&#8217;s a client who doesn&#8217;t care if we accomplish that fancy shadow effect with CSS3, jQuery or images. He just wants it there, preferably in the browsers that their user base make use of. He doesn&#8217;t care about validating code, proper semantics or which version of HTML you use!<br />
<span id="more-453"></span></p>
<p style="padding-left: 30px;"><em>Did you know that it was only recently that I stopped caring about Internet Explorer 6?</em></p>
<p>I think this is really important to remember &#8211; often, we don&#8217;t design and code for ourselves; we&#8217;re doing it for an audience. I don&#8217;t even think you should take the client into the equation, I think that&#8217;s the wrong approach. The one person you should care about is <em>the end user</em>!</p>
<h3>Decisions to take early on in a project</h3>
<p>First thing first. Every company has their own way of doing things. Some company&#8217;s make use of studies to determine what kind of users they believe are the website&#8217;s primary target. There are several reasons for doing these studies, but these are the main things that you may want to know:</p>
<ul>
<li>What are the age of the targeted audience? How computer-savvy are they?</li>
<li>What kind of computer do they use? PC, Mac, notebooks, iPads?</li>
<li>What browser do they mainly use?</li>
<li>And so on&#8230;</li>
</ul>
<p>But not all companies have the funds, or the time, to do these kind of studies. In these cases, it&#8217;s really good to have a clear communication with the client. What kind of customers do they have? Are these the same people that they want to target with the website?</p>
<p>The answers to those questions should help you make the decision as to what tools to use when you begin building the website.</p>
<h3>So&#8230;we&#8217;re stuck with the same tools as ever?</h3>
<p>You know, I really wouldn&#8217;t say that either. Some of these new technologies offer a way to fool-proof the design all the way back to Internet Explorer 6. You know, the browser I just told you I didn&#8217;t care about anymore. (And what a relief THAT was, let me tell you!)</p>
<p>So what tools CAN we use? When will I ever get to the point?! All right, here it is:</p>
<p><strong><a title="Blog post | Starting out with HTML5" href="http://www.studio51.se/blog/web-design/starting-html5/" target="_blank">Basic HTML5</a></strong><br />
Perhaps this one requires a bit of testing before I can fully commit to this statement. But marking up your document in proper HTML5 tags, such as &lt;header&gt;, &lt;section&gt;, &lt;footer&gt; and the like is not wrong! All the browsers in use of today support it; just treat them as regular &lt;div&gt; tags. (But don&#8217;t forget to put the display: block property in the CSS! That&#8217;s the only thing these new tags don&#8217;t share with regular &lt;div&gt; tags.)</p>
<p><strong>JQuery</strong><br />
Yes, one of the benefits behind this JavaScript library is the extended backwards support. This allows you to create really nice looking effects for your website, unhindered by what browser the end user might have.</p>
<p><strong>Google Font Directory</strong><br />
Yes, their list of fonts isn&#8217;t exactly big&#8230;but it&#8217;s <em>really </em>easy to use and most important of all &#8211; it works all the way down to Internet Explorer 6! But, as always, use a back-up font. However, I understand you may feel uncomfortable using a library on someone else&#8217;s server, even if it is the giants Google we&#8217;re talking about.</p>
<p><strong>Regular HTML4 and CSS2</strong><br />
I have only one simple thing to tell you, and here it is:</p>
<p style="padding-left: 30px;"><em>Only bad craftsmen blame their tools.</em></p>
<p>There&#8217;s <em>a lot</em> of things you can accomplish with these simple tools that you already know so well. Be creative! That&#8217;s your job, after all. <img src='http://www.studio51.se/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<h3>Exceptions to the rule</h3>
<p>You want to know something funny? I write this blog post about how it may be in your best interest to hold off on these new, fancy technologies just a little bit, but&#8230;look at this very website! Look at the rounded corner in the picture up there! Look at the shadow effect in the <a title="Studio51 portfolio" href="http://www.studio51.se/portfolio" target="_blank">portfolio section</a>. You don&#8217;t see it? That&#8217;s because you&#8217;re using Internet Explorer 8, 7 or 6.</p>
<p>Remember though &#8211; Studio51 is <em>not </em>for some client. This is my own playground where I get to arrange every part the way I see it fit. In here, where I am free from restrictions and can play around in every way I care to, in here I think it&#8217;s important to <strong>put those technology&#8217;s to use</strong>! If nobody ever uses HTML5 or CSS3, then no browser will ever see the need to implement it.</p>
<h3>Final words</h3>
<p>I love watching demonstration sites. I love to fantasize about what great things you can accomplish with all of these new tools. But you have to live in reality and give the client what he or she wants. In the end, we&#8217;re not doing what we&#8217;re doing only because we love it &#8211; we&#8217;re delivering products.</p>
<p>Always try to keep that in mind.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.studio51.se/blog/techniques-compatibility/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

