<?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>Andreas Heiberg&#039;s blog</title>
	<atom:link href="http://www.andreas-heiberg.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.andreas-heiberg.com/blog</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Thu, 17 May 2012 20:16:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Is &#8220;perfect&#8221; flexible grid systems even possible?</title>
		<link>http://www.andreas-heiberg.com/blog/2012/is-perfect-flexible-grid-systems-even-possible/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=is-perfect-flexible-grid-systems-even-possible</link>
		<comments>http://www.andreas-heiberg.com/blog/2012/is-perfect-flexible-grid-systems-even-possible/#comments</comments>
		<pubDate>Thu, 17 May 2012 18:05:43 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.andreas-heiberg.com/blog/?p=407</guid>
		<description><![CDATA[Grid systems are a great way manage layouts and make sure things are properly alligned. Fix-width grid systems have dominated the web for a long time, but times are changing and the new responsive webdesigns are demanding fluid-width grids. You &#8230; <a href="http://www.andreas-heiberg.com/blog/2012/is-perfect-flexible-grid-systems-even-possible/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Grid systems are a great way manage layouts and make sure things are properly alligned. Fix-width grid systems have dominated the web for a long time, but times are changing and the new responsive webdesigns are demanding fluid-width grids.</p>
<p>You would think that we could simply replace pixels with percentages and call it a day, but things get complicated when you switch your good old static pixels with percentages. I&#8217;ve recently run into these problems and though I don&#8217;t have a solution yet, I would like to share my experiances with you. I&#8217;m doing this for two reason, firstly to make sure you don&#8217;t have to waste as much time as I did discovering the same as me and secondly to create a debate that might foster a solution.<br />
<span id="more-407"></span></p>
<h2>The pixel rounding problem</h2>
<p>This problem at it&#8217;s core is that 10 percent might translate into 96,7729 pixels and your desplay can&#8217;t show 96,7729 pixels without blurring the edge. This obviously has to be worked around somehow by your browser, the problem is the way to do this havn&#8217;t been difined in any specifiaction so every browser has it&#8217;s own approach.</p>
<p>If you would like to read more about the problem heres some links to more knowledgable people.</p>
<ul>
<li><a href="http://ejohn.org/blog/sub-pixel-problems-in-css/">&#8220;Sub-Pixel Problems in CSS&#8221; &#8211; John Resig</a></li>
</ul>
<h3>Example</h3>
<p>Here are 4 divs with a width of 25%. If you resize you browser window you will see the yellow container showing through. This &#8220;bug&#8221; is fixed in Firefox but it should be their in all other browsers.</p>
<p><code></p>
<div class="example rounding">
<div class="demo-row clearfix">
<div class="demo-col four"></div>
<div class="demo-col four"></div>
<div class="demo-col four"></div>
<div class="demo-col four"></div>
</p></div>
</p></div>
<p></code></p>
<div class="example rounding"></div>
<h2>The floating point rounding problem</h2>
<p>The second problem is that browser rounds floating points differently. The reason for this is much the same as for rounding of pixels, the specification simply doesn&#8217;t say how this should be implemented. Some browsers might not round at all, others might round up and some might round down it&#8217;s all up to them. This means you can&#8217;t use floating point widths in you grid if you wan&#8217;t your site to be cross-browser compatible.</p>
<p>If you would like to read more about the problem heres some links to more knowledgable people.</p>
<ul>
<li><a href="http://www.webmonkey.com/2010/12/why-percentage-based-designs-dont-work-in-every-browser/">&#8220;Why Percentage-Based Designs Don’t Work in Every Browser&#8221; &#8211; Wired</a></li>
</ul>
<h3>Example</h3>
<p>I have the same four columns from the last example, but this time I&#8217;ve added a second row of 12,5% wide columns. Some browsers will first of all round 12,5% to another value creating a gab or rouining the layout and the on top of that handle the pixel rounding creating even larger change for differnces between browsers.</p>
<p><code>
<div class="example rounding">
<div class="demo-row clearfix">
<div class="demo-col four"></div>
<div class="demo-col four"></div>
<div class="demo-col four"></div>
<div class="demo-col four"></div>
</p></div>
<div class="demo-row clearfix">
<div class="demo-col eight"></div>
<div class="demo-col eight"></div>
<div class="demo-col eight"></div>
<div class="demo-col eight"></div>
<div class="demo-col eight"></div>
<div class="demo-col eight"></div>
<div class="demo-col eight"></div>
<div class="demo-col eight"></div>
</p></div>
</p></div>
<p></code></p>
<h2>The problems with margin</h2>
<p>Okay so exept for Firefox browsers isn&#8217;t exactly good at displaying procentage widths, but you can make the problem exponentially complicated by adding margins into the mix.</p>
<h3>Example</h3>
<p>Here is the same basic structure except I&#8217;ve added 1% margin of the left and right side of every div. (And subtracted the marign from the widths so the divs don&#8217;t overflow).</p>
<p><code>
<div class="example margins">
<div class="demo-row clearfix margins">
<div class="demo-col four"></div>
<div class="demo-col four"></div>
<div class="demo-col four"></div>
<div class="demo-col four"></div>
</p></div>
<div class="demo-row clearfix margins">
<div class="demo-col eight"></div>
<div class="demo-col eight"></div>
<div class="demo-col eight"></div>
<div class="demo-col eight"></div>
<div class="demo-col eight"></div>
<div class="demo-col eight"></div>
<div class="demo-col eight"></div>
<div class="demo-col eight"></div>
</p></div>
</p></div>
<p></code></p>
<h2>The solution</h2>
<p>The floating point rounding is easy to circumvent, all you have to do is to only use integers as widths. This <a href="http://elliotjaystocks.com/blog/a-better-photoshop-grid-for-responsive-web-design/" title="A better Photoshop grid for responsive web design" target="_blank">1000px grid</a> is a good example of how this can be done.</p>
<p>Another solution would be to write a js script that would set the get the width of elements and resize and then convert it into pixels and set that to be the width. This however might be slow.</p>
<p>If you know of a solution to this problem please let me know by writing the solution in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andreas-heiberg.com/blog/2012/is-perfect-flexible-grid-systems-even-possible/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Growl: GrowlingLion &#8211; Lion inspired growl theme</title>
		<link>http://www.andreas-heiberg.com/blog/2011/growl-growlinglion-lion-inspired-growl-theme/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=growl-growlinglion-lion-inspired-growl-theme</link>
		<comments>http://www.andreas-heiberg.com/blog/2011/growl-growlinglion-lion-inspired-growl-theme/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 23:07:45 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.www.blog.andreas-heiberg.com/?p=350</guid>
		<description><![CDATA[Lion has been released, and I wanted to make a theme that felt native to the new system, So I created Growling Lion based on the Safari 5.1 downloads window. You can download it here! A big thanks to the &#8230; <a href="http://www.andreas-heiberg.com/blog/2011/growl-growlinglion-lion-inspired-growl-theme/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.andreas-heiberg.com/blog/wp-content/uploads/2011/07/GrowlingLion.png"><img class="alignnone size-full wp-image-399" title="GrowlingLion" src="http://www.andreas-heiberg.com/blog/wp-content/uploads/2011/07/GrowlingLion.png" alt="" width="454" height="256" /></a></p>
<p>Lion has been released, and I wanted to make a theme that felt native to the new system, So I created Growling Lion based on the Safari 5.1 downloads window.</p>
<p>You can <a href="http://www.andreas-heiberg.com/blog/wp-content/uploads/2011/07/GrowlingLion.growlStyle.zip">download it here!</a></p>
<p>A big thanks to the creater of Mono &#8211; Christopher Lobay. I used his theme as the foundation for mine, so this is more of a remix than a completely new theme.</p>
<p>There is a little bug in Growl however, so I couldn&#8217;t quite get the animation I wanted. You see if I choose to animate stuff, the shadows goes away, and using css shadows in Growl style simply isn&#8217;t a good idea.</p>
<p>UPDATE #1<br />
I have added priorities colouring to version 1.1 &#8211; thanks to <a href="http://quickcalapp.com/">Christian</a> for making the code</p>
<p>I know a lot of people want&#8217;s me to change the font size, however I have chosen not to since I like it this way. You can however do it your self by right clicking the style (in Finder) and choose &#8220;Show Package Content&#8221;. Afterwards open the default.css (GrowlingLion.growlStyle/Contents/Resources/default.css) and edit the last couple of lines.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andreas-heiberg.com/blog/2011/growl-growlinglion-lion-inspired-growl-theme/feed/</wfw:commentRss>
		<slash:comments>34</slash:comments>
		</item>
		<item>
		<title>Magento: Moving topMenu from the header to the main body</title>
		<link>http://www.andreas-heiberg.com/blog/2011/magento-moving-topmenu-from-the-header-to-the-main-body/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=magento-moving-topmenu-from-the-header-to-the-main-body</link>
		<comments>http://www.andreas-heiberg.com/blog/2011/magento-moving-topmenu-from-the-header-to-the-main-body/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 11:54:04 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.www.blog.andreas-heiberg.com/?p=331</guid>
		<description><![CDATA[If you have ever tried moving elements in Magento themes, you would know that it&#8217;s just the matter of moving a line of code. However sometimes you will run in to an element that simply won&#8217;t show up any place &#8230; <a href="http://www.andreas-heiberg.com/blog/2011/magento-moving-topmenu-from-the-header-to-the-main-body/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you have ever tried moving elements in Magento themes, you would know that it&#8217;s just the matter of moving a line of code. However sometimes you will run in to an element that simply won&#8217;t show up any place other than it&#8217;s original wrapping div. One of these elements is the topMenu which usually resides in the header.<span id="more-331"></span><br />
I tried to move that very element yesterday, but with no luck, so I took a break and got back to it today.<br />
I found a solution on <a href="http://magentist.com/magento_help/move-elements-in-magento-templates/">this site</a>, you can read a more detailed solution there, but basicly all you need to do is to place top.menu where he has top.links.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andreas-heiberg.com/blog/2011/magento-moving-topmenu-from-the-header-to-the-main-body/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alfred Tip: Convert files to an Apple Tv compatible format</title>
		<link>http://www.andreas-heiberg.com/blog/2011/alfred-convert-files-to-an-apple-tv-compatible-format/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=alfred-convert-files-to-an-apple-tv-compatible-format</link>
		<comments>http://www.andreas-heiberg.com/blog/2011/alfred-convert-files-to-an-apple-tv-compatible-format/#comments</comments>
		<pubDate>Thu, 02 Jun 2011 17:25:45 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[Alfred]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://www.www.blog.andreas-heiberg.com/2011/06/02/alfred-convert-files-to-an-apple-tv-compatible-format/</guid>
		<description><![CDATA[Don from dirtdon.com recently lured my interest in shell scripts that makes sense to use from Alfreds actions menu. He did so by writing an amazing article with some of favorite bash scripts, that he had made specifically for Alfred. &#8230; <a href="http://www.andreas-heiberg.com/blog/2011/alfred-convert-files-to-an-apple-tv-compatible-format/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Don from <a href="http://dirtdon.com">dirtdon.com</a> recently lured my interest in shell scripts that makes sense to use from Alfreds actions menu. He did so by writing an <a href="http://www.dirtdon.com/?p=886">amazing article with some of favorite bash scripts</a>, that he had made specifically for Alfred. He had a fantastic script for converting video files to an Apple Tv friendly format, that I saw great potential in. I therefore tried to get the script up and running on my own machine, and in the process of doing so, I found a bug in his script. I fixed it and told him about my fix.</p>
<p><span id="more-287"></span></p>
<p>I have been adding some functionality to script since then, but it really took of when I contacted Don the second time. I contacted him in the search of help, I had an idea for a way to implement a progress indicator right in to Alfred, and I knew how I would implement it, but I didn&#8217;t know how to write the code. Don helped me out, and wrote the code for me. And by the help of our combined efforts we have made a working script, that in my opinion works quite well.</p>
<p>The script has the following feature set:</p>
<ul>
<li>Growl notifications</li>
<li>Status updater (it shows queue data, ETA&#8217;s and percentage of completion).</li>
<li>Queue support</li>
<li>And removal of the old files</li>
</ul>
<p>I&#8217;m posting this version of the script on my own site, since Don and I don&#8217;t share the need for the same feature set, so mine has some added functionality.</p>
<p>I hope I will inspire you as much as Don inspired me!</p>
<p><strong>#Update </strong>Alfred has added support for a new extension format called&#8230; oh you guessed it .alfredextension so I thought I would update the script. As i bonus all you have to get this working on you machine now is to <a title="Convert files to an Apple Tv compatible format script" href="http://www.andreas-heiberg.com/blog/wp-content/uploads/2011/06/TranscodeforAppleTv.alfredextension.zip">downlaod the script</a> and double click it:-)</p>
<p><span class="Apple-style-span" style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Nimbus Sans L', sans-serif;"><img class="alignnone size-full wp-image-395" style="color: inherit; font: normal normal normal 15px/normal 'Helvetica Neue', Helvetica, Arial, sans-serif; font-style: inherit; font-weight: inherit; line-height: 1.625; border-style: solid; border-color: #dddddd; margin-top: 0.4em; height: auto; max-width: 97.5%; width: auto; border-width: 1px; padding: 6px;" title="Alfred-progress-updater" src="http://www.andreas-heiberg.com/blog/wp-content/uploads/2011/06/Alfred-progress-updater.png" alt="" width="648" height="190" /></span></p>
<p><em>If you haven&#8217;t heard of Alfred before, <a href="http://www.alfredapp.com/">go checkout his website</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.andreas-heiberg.com/blog/2011/alfred-convert-files-to-an-apple-tv-compatible-format/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Alfred Tip: Show/Hide hidden files in finder</title>
		<link>http://www.andreas-heiberg.com/blog/2011/alfred-showhide-hidden-files-in-finder/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=alfred-showhide-hidden-files-in-finder</link>
		<comments>http://www.andreas-heiberg.com/blog/2011/alfred-showhide-hidden-files-in-finder/#comments</comments>
		<pubDate>Tue, 24 May 2011 15:26:09 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[Alfred]]></category>
		<category><![CDATA[Freebies]]></category>

		<guid isPermaLink="false">http://www.www.blog.andreas-heiberg.com/2011/05/24/alfred-showhide-hidden-files-in-finder/</guid>
		<description><![CDATA[If you ever have to view the hidden files on your mac, you will know that it can be quite cumbersome to remember and then use the terminal commands for showing these files. I do this all the time, so &#8230; <a href="http://www.andreas-heiberg.com/blog/2011/alfred-showhide-hidden-files-in-finder/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you ever have to view the hidden files on your mac, you will know that it can be quite cumbersome to remember and then use the terminal commands for showing these files. I do this all the time, so I thought I would make a shell script that could do it for me. The nice thing about shell scripts is that they can be nicely integrated with alfred. The way I have it setup, lets me simply type &#8220;show hidden files&#8221; in alfred when ever I need to see them, and if I do it again they will magically be hidden again.</p>
<p>You can get the same setup by <a title="Alfred: Show/Hide hidden files in finder script" href="http://www.www.blog.andreas-heiberg.com/wp-content/uploads/2011/05/HiddenFiles.zip">downloading my script</a>, and make a shortcut to it in the alfred preferencepane.as shown below.</p>
<p><a href="http://www.andreas-heiberg.com/blog/wp-content/uploads/2011/05/Alfred-ShowHide-hidden-files-in-finder.png"><img class="alignnone size-full wp-image-389" title="Alfred-ShowHide-hidden-files-in-finder" src="http://www.andreas-heiberg.com/blog/wp-content/uploads/2011/05/Alfred-ShowHide-hidden-files-in-finder.png" alt="" width="774" height="586" /></a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andreas-heiberg.com/blog/2011/alfred-showhide-hidden-files-in-finder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alfred Tip: Google Browse by Name</title>
		<link>http://www.andreas-heiberg.com/blog/2011/alfred-google-browse-by-name/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=alfred-google-browse-by-name</link>
		<comments>http://www.andreas-heiberg.com/blog/2011/alfred-google-browse-by-name/#comments</comments>
		<pubDate>Wed, 06 Apr 2011 14:08:37 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[Alfred]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://www.www.blog.andreas-heiberg.com/2011/04/06/alfred-google-browse-by-name/</guid>
		<description><![CDATA[I discovered one of those amazing google services today. It&#8217;s called &#8220;Browse by Name&#8221;, and it&#8217;s basically an improved &#8220;I&#8217;m feeling lucky&#8221;. If you don&#8217;t know what &#8220;I&#8217;m feeling lucky&#8221; is, it&#8217;s a button on www.google.com that will redirect you &#8230; <a href="http://www.andreas-heiberg.com/blog/2011/alfred-google-browse-by-name/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="clear: both">I discovered one of those amazing google services today. It&#8217;s called &#8220;Browse by Name&#8221;, and it&#8217;s basically an improved &#8220;I&#8217;m feeling lucky&#8221;. If you don&#8217;t know what &#8220;I&#8217;m feeling lucky&#8221; is, it&#8217;s a button on www.google.com that will redirect you to the first hit on what ever you have googled. This is a great time saver, however using the &#8220;I&#8217;m feeling lucky&#8221; button does not always direct you to the site you wanted. So what &#8220;Browse by Name&#8221; does is to try and improve that with some google mojo. &#8220;Browse by Name&#8221; will only redirect you to a site if it is certain that the first hit is correct, otherwise it will simply return a regular search.</p>
<p><span id="more-257"></span>
<p style="clear: both">Either way I created a custom search for alfred that searches &#8220;Browse by Name&#8221;.</p>
<p style="clear: both"><a href="alfredapp://customsearch/Browse By Name/bbn/ascii/url=http://www.google.com/search?sourceid=navclient&#038;gfns=1&#038;q={query}">alfredapp://customsearch/Browse By Name/bbn/ascii/url=http://www.google.com/search?sourceid=navclient&#038;gfns=1&#038;q={query}</a></p>
<p><br class="final-break" style="clear: both" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.andreas-heiberg.com/blog/2011/alfred-google-browse-by-name/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to make any on TV brower useful</title>
		<link>http://www.andreas-heiberg.com/blog/2010/how-to-make-any-on-tv-brower-useful/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-make-any-on-tv-brower-useful</link>
		<comments>http://www.andreas-heiberg.com/blog/2010/how-to-make-any-on-tv-brower-useful/#comments</comments>
		<pubDate>Mon, 13 Dec 2010 16:58:02 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Dropbox]]></category>
		<category><![CDATA[TV]]></category>

		<guid isPermaLink="false">http://www.www.blog.andreas-heiberg.com/2010/12/13/how-to-make-any-on-tv-brower-useful/</guid>
		<description><![CDATA[The idea of having a browser on your tv is great, you can watch all the content of the web on the best screen in your home. In reality though a browser on the tv is one of the worst &#8230; <a href="http://www.andreas-heiberg.com/blog/2010/how-to-make-any-on-tv-brower-useful/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p style="clear: both;">The idea of having a browser on your tv is great, you can watch all the content of the web on the best screen in your home. In reality though a browser on the tv is one of the worst ideas ever, the web simply isn’t made to interaction in a 10 foot capacity. However this annoyance is about to disappear, keep reading and learn how to beam any url onto your tv with one click.</p>
<p><span id="more-250"></span></p>
<p style="clear: both;">The concept of my clever hack is in fact quite simple. I have made a automator service that takes a url, makes a html page with the link in it, and then saves that link to a dropboxfolder. I can then get to that page through a bookmark on every device I own.</p>
<p style="clear: both;">The interface is optimized for a tv, but you could basicly use it for any device.</p>
<p style="clear: both;"><strong>Installation</strong><br />
Step 1: <a href="http://www.andreas-heiberg.com/blog/wp-content/uploads/2010/12/Make-HTML-Tags.action.zip">Download the automator service</a></p>
<p style="clear: both;"><a href="http://www.andreas-heiberg.com/blog/wp-content/uploads/2010/12/Beam_to_TV1.png"><img class="alignnone size-large wp-image-384" title="Beam_to_TV1" src="http://www.andreas-heiberg.com/blog/wp-content/uploads/2010/12/Beam_to_TV1-1024x892.png" alt="" width="584" height="508" /></a></p>
<p style="clear: both;">Step 2: Set it up</p>
<p style="clear: both;">Open and install the file you just downloaded. Then choose “Service” from the template chooser. Then search for “Make HTML Tags” drag that to the right pane, then search for “New Text File”. You then have to change the settings for the “New Tex File”, so they match the ones in the picture above (“Where:” has to point to your dropbox folder). At last save the automator service as “Beam to Tv”.</p>
<p>Step 3: Bookmark it<br />
Open the link on your tv and bookmark it!</p>
<p style="clear: both;">Well thats it, you know have a great way of beaming links onto your tv, without the need of a keyboard. You can send any link from any application by right-clicking it and choosing “Beam to Tv.</p>
<p style="clear: both;">Demo Page and Credits<br />
I would like to give credit to Peter Dekker who made the code on which I based my script. I made a <a href="http://dl.dropbox.com/u/3167065/link.html">demo page</a> that look like the one you would see on your tv that links to his page.</p>
<p style="clear: both;"><strong>Update:</strong></p>
<p style="clear: both;">I have made a new version of Peter Dekkers automator action, so you don&#8217;t have to click any bottuns any more. If you choose do <a title="Make-HTML-Tags2.action.zip" href="http://www.blog.andreas-heiberg.com/wp-content/uploads/2010/12/Make-HTML-Tags2.action.zip">download this new script</a>, it will simply redirect you to the site you have beamed as soon as you load the link. I didn&#8217;t replace my original instructions since this script has a flaw in my opinion, though it&#8217;s nicer when you have it set up, it&#8217;s a little harder to get it working. Why might you ask, well how do you bookmark a page that keeps redirecting you to a new one? The solution I have found is to run the script, then delete line number 6 (the one that redirects the site) and then load the the file in your tvs browser and then finally bookmark it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andreas-heiberg.com/blog/2010/how-to-make-any-on-tv-brower-useful/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Freebie: The Complete Suave Pack V4</title>
		<link>http://www.andreas-heiberg.com/blog/2010/freebie-the-complete-suave-pack-v4/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=freebie-the-complete-suave-pack-v4</link>
		<comments>http://www.andreas-heiberg.com/blog/2010/freebie-the-complete-suave-pack-v4/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 09:26:55 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Freebies]]></category>

		<guid isPermaLink="false">http://www.www.blog.andreas-heiberg.com/2010/06/25/freebie-the-complete-suave-pack-v4/</guid>
		<description><![CDATA[Version 5 will be out soon, however the latest version can be downloaded here. UPDATE: Version 4.2 700 icons UPDATE: Version 4.1 6 Docks 6 Wallpapers 200 icons iOS4 fix tutorial A new release of the pack is out! I &#8230; <a href="http://www.andreas-heiberg.com/blog/2010/freebie-the-complete-suave-pack-v4/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Version 5 will be out soon, however the latest version can be downloaded <a title="Suave.zip" href="http://www.mediafire.com/file/67m7e94z9b44oyp/Suave.zip">here.</a></p>
<p>UPDATE: Version 4.2</p>
<ul>
<li>700 icons</li>
</ul>
<p>UPDATE: Version 4.1</p>
<ul>
<li>6 Docks</li>
<li>6 Wallpapers</li>
<li>200 icons</li>
<li>iOS4 fix tutorial</li>
</ul>
<p>A new release of the pack is out! I have added the following:</p>
<ul>
<li>1 Dock</li>
<li>5 Wallpapers</li>
<li>3 App Splash Screens</li>
<li>1 Color choosing template</li>
<li>And mind blowing 400 new icons.</li>
</ul>
<p>&nbsp;</p>
<p><a href="http://www.andreas-heiberg.com/blog/wp-content/uploads/2010/06/Suave-ThemeV4.jpg"><img class="alignnone size-large wp-image-382" title="iPhone PSD" src="http://www.andreas-heiberg.com/blog/wp-content/uploads/2010/06/Suave-ThemeV4-1024x741.jpg" alt="" width="584" height="422" /></a></p>
<p>Update: It has been brought to my attention that I forgot to pay tribute to Thyraz. It is and have never been my meaning to dishonor this great artist by the name Thyraz who made this theme, I simply wanted to spread the word and contribute to the great theme.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andreas-heiberg.com/blog/2010/freebie-the-complete-suave-pack-v4/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Pogoplug Share Service</title>
		<link>http://www.andreas-heiberg.com/blog/2010/pogoplug-share-service/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=pogoplug-share-service</link>
		<comments>http://www.andreas-heiberg.com/blog/2010/pogoplug-share-service/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 17:59:49 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Pogoplug]]></category>

		<guid isPermaLink="false">http://www.www.blog.andreas-heiberg.com/2010/06/24/pogoplug-share-service/</guid>
		<description><![CDATA[Have you ever been tired of doing the same task again and again? I know I have, however I also know that there is a solution. My solution is part of Mac OS X 10.6 – its called services. I’m &#8230; <a href="http://www.andreas-heiberg.com/blog/2010/pogoplug-share-service/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Have you ever been tired of doing the same task again and again? I know I have, however I also know that there is a solution. My solution is part of Mac OS X 10.6 – its called services. I’m loving the ability to simply and quickly make a program by dragging and dropping elements. Normally my services is to specialized to my way of working to be interesting for the rest of the world, however thought I would share this one.</p>
<p><span id="more-171"></span></p>
<p>It’s a simple way of sharing you files using the your pogoplug. This is what it does, it asks you to name a new folder that will automatically be created, it then copies the selected files to this newly created folder. Then it’s simply set to open the my.pogoplug website, and all there’s back for you to do is click the “Share” button in the web interface.The only thing you have to do, to make this work on your computer, is to open the files in Automator, change the folder in witch all the new subfolders will be created and move the files to “username”/Library/Services. I have it set to a folder called “Shareed”, but you can do what ever you like with it. It may seem a little overkill to have make a folder every time you share a file, but I like to have structure. By the way this service has both a iPhoto and a Finder version. Hope you enjoy!</p>
<p style="clear: both;"><a href="http://www.andreas-heiberg.com/blog/wp-content/uploads/2010/06/Automator.jpg"><img class="alignnone size-full wp-image-377" title="Automator" src="http://www.andreas-heiberg.com/blog/wp-content/uploads/2010/06/Automator.jpg" alt="Pogoplug share service" width="480" height="176" /></a><br />
<br style="clear: both;" /> <span style="font-size: 13px;"><br />
<a title="Finder Version" href="http://www.andreas-heiberg.com/blog/wp-content/uploads/2010/06/Upload-to-Pogoplug.workflow.zip">Download the finder version</a></span></p>
<p style="clear: both;"><span style="font-size: 13px;"><br />
<a title="Download the iPhoto version" href="http://www.andreas-heiberg.com/blog/wp-content/uploads/2010/06/Upload-to-Pogoplug-iPhoto.workflow.zip">Download the iPhoto version</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.andreas-heiberg.com/blog/2010/pogoplug-share-service/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Freebie: The Complete Suave Pack V3</title>
		<link>http://www.andreas-heiberg.com/blog/2010/freebie-the-complete-suave-pack-v3/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=freebie-the-complete-suave-pack-v3</link>
		<comments>http://www.andreas-heiberg.com/blog/2010/freebie-the-complete-suave-pack-v3/#comments</comments>
		<pubDate>Sun, 13 Jun 2010 14:44:11 +0000</pubDate>
		<dc:creator>Andreas</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Freebies]]></category>

		<guid isPermaLink="false">http://www.www.blog.andreas-heiberg.com/2010/06/13/freebie-the-complete-suave-pack-v3/</guid>
		<description><![CDATA[I haven&#8217;t updated the pack in some a while, and thought it was about time. The third version of The Complete Suave Pack is now officially released. I have added over 300 icons, 3 dock and 4 wallpapers. Download &#160;]]></description>
			<content:encoded><![CDATA[<p style="clear: both;">I haven&#8217;t updated the pack in some a while, and thought it was about time. The third version of The Complete Suave Pack is now officially released. I have added over 300 icons, 3 dock and 4 wallpapers.</p>
<p style="clear: both;"><a href="http://www.andreas-heiberg.com/blog/wp-content/uploads/2010/06/Suave-ThemeV3.jpg"><img class="alignnone size-large wp-image-375" title="iPhone PSD" src="http://www.andreas-heiberg.com/blog/wp-content/uploads/2010/06/Suave-ThemeV3-1024x741.jpg" alt="" width="584" height="422" /></a></p>
<p style="clear: both;"><a title="The Complete Suave Pack 4.1" href="http://www.mediafire.com/file/nzd2mn5dzd2/Suave.zip">Download</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andreas-heiberg.com/blog/2010/freebie-the-complete-suave-pack-v3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

