<?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>Marcus Hellberg &#187; Software</title>
	<atom:link href="http://www.marcushellberg.com/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.marcushellberg.com</link>
	<description>blog.</description>
	<lastBuildDate>Sat, 20 Mar 2010 12:39:50 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Textile to XHTML converter</title>
		<link>http://www.marcushellberg.com/2010/01/22/textile-to-xhtml-converter/</link>
		<comments>http://www.marcushellberg.com/2010/01/22/textile-to-xhtml-converter/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 11:42:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://www.marcushellberg.com/?p=225</guid>
		<description><![CDATA[A while back, I needed to quickly write some documentation that needed to be in XHTML format. Writing in plain XHTML is a pain, so I decided to write the documentation in Textile and then convert it to XHTML before publishing.
The problem I found was that all Textile converters were made for use in blogs [...]]]></description>
			<content:encoded><![CDATA[<p>A while back, I needed to quickly write some documentation that needed to be in XHTML format. Writing in plain XHTML is a pain, so I decided to write the documentation in Textile and then convert it to XHTML before publishing.</p>
<p>The problem I found was that all Textile converters were made for use in blogs and other online tools. What I needed was a good old-fashioned command line program to convert a given textile file into XHTML.</p>
<p>Fortunately, using Ruby and the excellent RedCloth gem, I could write a small script to accomplish this in a few minutes.</p>
<p>If you have any similar needs, copy the source into a file named textile2html, make it executable (chmod +x) and place it somewhere in your path. Then all you have to do is call textile2html with the textile file as an argument:</p>
<pre>$ textile2html documentation.textile</pre>
<pre class="brush:ruby">#!/usr/bin/env ruby -wKU
require "rubygems"
require "RedCloth"

if ARGV.size != 1
puts "Usage: textile2html file.textile"
exit
end

# Read input file
textile_string = ""
begin
  input_file = File.new(ARGV[0], "r")
  input_file.each do |line|
    textile_string+=line
  end
  input_file.close
rescue
  puts "Could not read input file."
  exit
end

# Create output file
filename = ARGV[0].gsub(/\.\w+$/, "")
begin
  output_file = File.new("#{filename}.html", "w")
rescue
  puts "Could not create output file."
  exit
end

html_header = &lt;&lt;DOC
&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"&gt;
&lt;head&gt;
&lt;title&gt;
DOC

html_header += filename;
html_header += &lt;&lt;DOC
&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
DOC

html_footer = &lt;&lt;DOC
&lt;/body&gt;
&lt;/html&gt;
DOC

html_output = RedCloth.new(textile_string).to_html
output_file.puts(html_header)
output_file.puts(html_output)
output_file.puts(html_footer)
output_file.close

puts "Done."
</pre>
<p>Questions? Comments? Post them below.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.marcushellberg.com/2010/01/22/textile-to-xhtml-converter/&amp;title=Textile+to+XHTML+converter" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.marcushellberg.com/2010/01/22/textile-to-xhtml-converter/&amp;title=Textile+to+XHTML+converter" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.marcushellberg.com/2010/01/22/textile-to-xhtml-converter/&amp;t=Textile+to+XHTML+converter" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Textile+to+XHTML+converter+-+http://b2l.me/ede5D+(via+@marcushellberg)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.marcushellberg.com/2010/01/22/textile-to-xhtml-converter/&amp;title=Textile+to+XHTML+converter&amp;summary=A%20while%20back%2C%20I%20needed%20to%20quickly%20write%20some%20documentation%20that%20needed%20to%20be%20in%20XHTML%20format.%20Writing%20in%20plain%20XHTML%20is%20a%20pain%2C%20so%20I%20decided%20to%20write%20the%20documentation%20in%20Textile%20and%20then%20convert%20it%20to%20XHTML%20before%20publishing.%0D%0A%0D%0AThe%20problem%20I%20found%20was%20that%20all%20Textile%20converters%20were%20made%20for%20use%20&amp;source=Marcus Hellberg" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.marcushellberg.com/2010/01/22/textile-to-xhtml-converter/&amp;title=Textile+to+XHTML+converter" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.marcushellberg.com/2010/01/22/textile-to-xhtml-converter/&amp;t=Textile+to+XHTML+converter" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.marcushellberg.com/2010/01/22/textile-to-xhtml-converter/&amp;n=Textile+to+XHTML+converter&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.marcushellberg.com/2010/01/22/textile-to-xhtml-converter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting MKV files for the Xbox 360 or PS3 on a Mac</title>
		<link>http://www.marcushellberg.com/2010/01/03/converting-mkv-files-for-the-xbox-360-or-ps3-on-a-mac/</link>
		<comments>http://www.marcushellberg.com/2010/01/03/converting-mkv-files-for-the-xbox-360-or-ps3-on-a-mac/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 17:52:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[ps3]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[xbox 360]]></category>

		<guid isPermaLink="false">http://www.marcushellberg.com/?p=161</guid>
		<description><![CDATA[I use my Xbox 360 for most of my media viewing in the living room. This can sometimes be a hassle since I&#8217;m using a Mac, and Microsoft hasn&#8217;t exactly made it easy to share media from a mac to an Xbox 306. I use a third party program, Connect360, that easily allows me share media [...]]]></description>
			<content:encoded><![CDATA[<p>I use my Xbox 360 for most of my media viewing in the living room. This can sometimes be a hassle since I&#8217;m using a Mac, and Microsoft hasn&#8217;t exactly made it easy to share media from a mac to an Xbox 306. I use a third party program, Connect360, that easily allows me share media from my computer to my Xbox. In reality, though, the Xbox fails to find my Mac about 75% of the time.</p>
<p>What is more annoying, is that the Xbox 360 doesn&#8217;t play Matroska Video containers, even though the video itself is encoded in h.264 or MPEG-4. There are several ways of playing the videos on the Xbox, but unfortunately all of them require converting the video.</p>
<p><a href="http://handbrake.fr/" target="_blank">HandBrake</a>, previously only a DVD ripper, is an easy tool for converting videos. Unfortunately, HandBrake always transcodes the video, even though the video itself is in a format that is playable by the Xbox 360. This method will work, but the process is very time-consuming. On an upside, the program is free and works very well. Hopefully, they&#8217;ll add support for passing through the original video from the MKV container to a MPEG-4 video (m4v) container.</p>
<p>A better solution would be to only package the video in a new container that the Xbox 360 can understand. This process can be done with several tools. Using QuickTime Pro 7, you can export the file to another format passing though the video. You only need to re-encode the audio track, which makes this a much faster process than the Handbrake method. The QuickTime Player X bundled with Snow Leopard seems to have lost this functionality. It should be possible to install the older version of QuickTime, but the Pro license is pretty expensive if this is the only use you&#8217;ll have for it.</p>
<p>The easiest way I have found to do the conversion is by using <a href="http://www.emmgunn.com/mokgvm2dvd/mokgvmhome.html" target="_blank">MKVtools</a>. This is a small program, specifically designed to do this task as easy as possible. It uses several open source tools to extract and re-encode the file and comes with presets both for the Xbox 360 and PlayStation 3. While it is possible to use the tools directly, MKVtools really takes the hassle out of the process. The best part is that the program is only $5 and has a fully functional trial.</p>
<p>The resulting mp4 or m4v file should play on the Xbox 360 or PS3 without a problem. The only downside is that you lose the multichannel soundtrack, and have to settle for stereo. For most programs, this really isn&#8217;t a big problem in my opinion.</p>
<p>Do you have any better ways of viewing MKV files on a Xbox 360 that I&#8217;m unaware of? Please post them in the comments!</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.marcushellberg.com/2010/01/03/converting-mkv-files-for-the-xbox-360-or-ps3-on-a-mac/&amp;title=Converting+MKV+files+for+the+Xbox+360+or+PS3+on+a+Mac" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.marcushellberg.com/2010/01/03/converting-mkv-files-for-the-xbox-360-or-ps3-on-a-mac/&amp;title=Converting+MKV+files+for+the+Xbox+360+or+PS3+on+a+Mac" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.marcushellberg.com/2010/01/03/converting-mkv-files-for-the-xbox-360-or-ps3-on-a-mac/&amp;t=Converting+MKV+files+for+the+Xbox+360+or+PS3+on+a+Mac" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Converting+MKV+files+for+the+Xbox+360+or+PS3+on+a+Mac+-+http://b2l.me/cu3at+(via+@marcushellberg)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.marcushellberg.com/2010/01/03/converting-mkv-files-for-the-xbox-360-or-ps3-on-a-mac/&amp;title=Converting+MKV+files+for+the+Xbox+360+or+PS3+on+a+Mac&amp;summary=I%20use%20my%20Xbox%20360%20for%20most%20of%20my%20media%20viewing%20in%20the%20living%20room.%20This%20can%20sometimes%20be%20a%20hassle%20since%20I%27m%20using%20a%20Mac%2C%20and%20Microsoft%20hasn%27t%20exactly%20made%20it%20easy%20to%20share%20media%20from%20a%20mac%20to%20an%20Xbox%20306.%20I%20use%20a%20third%20party%20program%2C%C2%A0Connect360%2C%20that%20easily%20allows%20me%20share%20media%20from%20my%20computer%20to&amp;source=Marcus Hellberg" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.marcushellberg.com/2010/01/03/converting-mkv-files-for-the-xbox-360-or-ps3-on-a-mac/&amp;title=Converting+MKV+files+for+the+Xbox+360+or+PS3+on+a+Mac" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.marcushellberg.com/2010/01/03/converting-mkv-files-for-the-xbox-360-or-ps3-on-a-mac/&amp;t=Converting+MKV+files+for+the+Xbox+360+or+PS3+on+a+Mac" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.marcushellberg.com/2010/01/03/converting-mkv-files-for-the-xbox-360-or-ps3-on-a-mac/&amp;n=Converting+MKV+files+for+the+Xbox+360+or+PS3+on+a+Mac&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.marcushellberg.com/2010/01/03/converting-mkv-files-for-the-xbox-360-or-ps3-on-a-mac/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My top free apps for Android</title>
		<link>http://www.marcushellberg.com/2009/12/30/my-top-free-apps-for-android/</link>
		<comments>http://www.marcushellberg.com/2009/12/30/my-top-free-apps-for-android/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 13:38:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Phones]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[apps]]></category>

		<guid isPermaLink="false">http://www.marcushellberg.com/?p=27</guid>
		<description><![CDATA[Sure, there are a lot of top lists for Android applications. But there is not yet one for my top Android apps. So here are my top 5 (or so) applications for Android:
1. MyTracks

MyTracks is Google&#8217;s sports tracking software for Android, much like Nokia Sports Tracker is for S60 devices. With this application you can [...]]]></description>
			<content:encoded><![CDATA[<p>Sure, there are a lot of top lists for Android applications. But there is not yet one for my top Android apps. So here are my top 5 (or so) applications for Android:</p>
<h2>1. MyTracks</h2>
<p><a href="http://www.marcushellberg.com/wp-content/uploads/2009/12/phones_with_all_views.png"><img class="alignright size-full wp-image-138" title="Google MyTracks" src="http://www.marcushellberg.com/wp-content/uploads/2009/12/phones_with_all_views.png" alt="" width="400" height="299" /></a></p>
<p>MyTracks is Google&#8217;s sports tracking software for Android, much like Nokia Sports Tracker is for S60 devices. With this application you can track your sporting (or other) routes and see statistics over your performance. The application lets you upload routes to Google maps and statistics to a Google Docs spreadsheet for easy analysis.</p>
<p>I really like this application as I bicycle a lot. Being able to measure routes and see average speeds, resting time vs moving time and other statistics really make working out more interesting (and geeky).  It allows you to concentrate on the sports performance without having to worry about pausing the application every time you take a break for instance.</p>
<p>[Image courtesy of <a href="http://mytracks.appspot.com/features" target="_blank">Google</a>]</p>
<h2>2. Fring</h2>
<p><a href="http://www.marcushellberg.com/wp-content/uploads/2009/12/android.gif"><img class="size-full wp-image-139 alignright" title="fring for android" src="http://www.marcushellberg.com/wp-content/uploads/2009/12/android.gif" alt="" width="92" height="230" /></a>Even though I mostly use Google Talk on my HTC Hero, I occasionally need to contact people without Google Talk accounts. Fring is by far the best application I have found to do this on the Android platform. Fring lets you access contacts on pretty much any imaginable instant messaging network, like MSN, AOL, Yahoo, Skype, as well as its own Fring protocol. To make things even better, the application has support for making Skype calls over 3G and WLAN, which has come in handy while traveling.</p>
<p>[Image courtesy of <a href="http://www.fring.com/android/" target="_blank">Fring</a>]</p>
<h2>3. Google Maps</h2>
<p>I want to mention Google Maps even though it comes with the phone. I use the application almost daily, looking up nearby services or routes to places. The Maps application on the HTC Hero lacks navigation, which would definitely place this application at the top of the list. Once you have gotten used to having a GPS in your pocket, there is no going back.</p>
<h2>4. handyCalc</h2>
<p>This is probably the best calculator I have found for Android. It allows you to do simple calculations easily, but also supports much more. For instance, it supports solving equations, plotting graphs and converting currency. This application is a must-have for anyone that has to do some more advanced math once in a while and doesn&#8217;t like lugging around a Texas Instruments calculator all the time.<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/5wjLfImVf2U&amp;hl=en_US&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/5wjLfImVf2U&amp;hl=en_US&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<h2>5. ConnectBot</h2>
<p>ConnectBot is a very handy SSH client for Android. It allows you to easily connect to SSH servers and perform maintenance tasks without having to bring along your laptop everywhere. Combined with the large screen of the Hero, this application is really useful.</p>
<p><img class="size-full wp-image-141 aligncenter" title="Connectbot android" src="http://www.marcushellberg.com/wp-content/uploads/2009/12/ssh2.png" alt="" width="480" height="320" /></p>
<p>[Image courtesy of <a href="http://code.google.com/p/connectbot/wiki/UserInterface" target="_blank">ConnectBot</a>]</p>
<h2>6. Bebbled</h2>
<p>The final application on this list is a game. The game is much like Bejewled, and easily as addicting. The major difference is that it supports turning around the device have the blocks move to the &#8220;ceiling.&#8221; This brings a new dimension to the game and makes it really addictive.</p>
<p style="text-align: center;"><img class="size-full wp-image-142 aligncenter" title="Bebbled for android" src="http://www.marcushellberg.com/wp-content/uploads/2009/12/scr1.jpg" alt="" width="250" height="167" /></p>
<p>[Image courtesy of <a href="http://bebbled.com/about-android/" target="_blank">Bebbled</a>]</p>
<p>What are your favorite Android Apps? Please share any apps that you have found useful in the comments.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.marcushellberg.com/2009/12/30/my-top-free-apps-for-android/&amp;title=My+top+free+apps+for+Android" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.marcushellberg.com/2009/12/30/my-top-free-apps-for-android/&amp;title=My+top+free+apps+for+Android" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.marcushellberg.com/2009/12/30/my-top-free-apps-for-android/&amp;t=My+top+free+apps+for+Android" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=My+top+free+apps+for+Android+-+http://b2l.me/cjmu5+(via+@marcushellberg)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.marcushellberg.com/2009/12/30/my-top-free-apps-for-android/&amp;title=My+top+free+apps+for+Android&amp;summary=Sure%2C%20there%20are%20a%20lot%20of%20top%20lists%20for%20Android%20applications.%20But%20there%20is%20not%20yet%20one%20for%20my%20top%20Android%20apps.%20So%20here%20are%20my%20top%205%20%28or%20so%29%20applications%20for%20Android%3A%0D%0A1.%20MyTracks%0D%0A%0D%0A%0D%0AMyTracks%20is%20Google%27s%20sports%20tracking%20software%20for%20Android%2C%20much%20like%20Nokia%20Sports%20Tracker%20is%20for%20S60%20devices.%20With%20t&amp;source=Marcus Hellberg" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.marcushellberg.com/2009/12/30/my-top-free-apps-for-android/&amp;title=My+top+free+apps+for+Android" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.marcushellberg.com/2009/12/30/my-top-free-apps-for-android/&amp;t=My+top+free+apps+for+Android" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.marcushellberg.com/2009/12/30/my-top-free-apps-for-android/&amp;n=My+top+free+apps+for+Android&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.marcushellberg.com/2009/12/30/my-top-free-apps-for-android/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Google wave invitation giveaway</title>
		<link>http://www.marcushellberg.com/2009/12/23/google-wave-invitation-giveaway/</link>
		<comments>http://www.marcushellberg.com/2009/12/23/google-wave-invitation-giveaway/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 18:57:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[wave]]></category>

		<guid isPermaLink="false">http://www.marcushellberg.com/?p=99</guid>
		<description><![CDATA[As a present to all readers, I&#8217;m handing out 17 invitations to Google Wave. All you have to do to get your invitation is to be among the 17 first non-spambot commenters in this post.
Update: There are still 11 invites left.





		
			Digg this!
		
		
			Share this on Reddit
		
		
			Share this on Facebook
		
		
			Tweet This!
		
		
			Share this on Linkedin
		
		
			Share this on del.icio.us
		
		
			Post [...]]]></description>
			<content:encoded><![CDATA[<p>As a present to all readers, I&#8217;m handing out 17 invitations to Google Wave. All you have to do to get your invitation is to be among the 17 first non-spambot commenters in this post.</p>
<p><strong>Update: </strong>There are still 11 invites left.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.marcushellberg.com/2009/12/23/google-wave-invitation-giveaway/&amp;title=Google+wave+invitation+giveaway" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.marcushellberg.com/2009/12/23/google-wave-invitation-giveaway/&amp;title=Google+wave+invitation+giveaway" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.marcushellberg.com/2009/12/23/google-wave-invitation-giveaway/&amp;t=Google+wave+invitation+giveaway" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Google+wave+invitation+giveaway+-+http://b2l.me/b4cx6+(via+@marcushellberg)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.marcushellberg.com/2009/12/23/google-wave-invitation-giveaway/&amp;title=Google+wave+invitation+giveaway&amp;summary=As%20a%20present%20to%20all%20readers%2C%20I%27m%20handing%20out%2017%20invitations%20to%20Google%20Wave.%20All%20you%20have%20to%20do%20to%20get%20your%20invitation%20is%20to%20be%20among%20the%2017%20first%20non-spambot%20commenters%20in%20this%20post.%0D%0A%0D%0AUpdate%3A%20There%20are%20still%2011%20invites%20left.&amp;source=Marcus Hellberg" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.marcushellberg.com/2009/12/23/google-wave-invitation-giveaway/&amp;title=Google+wave+invitation+giveaway" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.marcushellberg.com/2009/12/23/google-wave-invitation-giveaway/&amp;t=Google+wave+invitation+giveaway" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.marcushellberg.com/2009/12/23/google-wave-invitation-giveaway/&amp;n=Google+wave+invitation+giveaway&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.marcushellberg.com/2009/12/23/google-wave-invitation-giveaway/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Digital TV in Linux</title>
		<link>http://www.marcushellberg.com/2009/12/23/digital-tv-in-linux/</link>
		<comments>http://www.marcushellberg.com/2009/12/23/digital-tv-in-linux/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 18:23:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[dvb-t]]></category>
		<category><![CDATA[tv]]></category>

		<guid isPermaLink="false">http://www.marcushellberg.com/?p=94</guid>
		<description><![CDATA[Watching digital tv in Linux with em2880 devices
Note: This post is from my earlier site. I moved it over here because I see that a lot of people are trying to access it without finding it. It is written in 2007, so all content may not be up to date. You can report successes/failures in [...]]]></description>
			<content:encoded><![CDATA[<h2>Watching digital tv in Linux with em2880 devices</h2>
<p><strong><em>Note: </em></strong><em>This post is from my earlier site. I moved it over here because I see that a lot of people are trying to access it without finding it. It is written in 2007, so all content may not be up to date. You can report successes/failures in the comments so I know if it needs to be updated. </em></p>
<p>I found a really cheap refurbished Pinnacle PCTV USB DVB-T receiver in my local computer store and after googling to make sure it supported Linux I bought it. Here&#8217;s how I made it work in Linux.</p>
<p>The USB stick itself is fairly small, although it is just wide enough to block the other USB port on my laptop. It came with a small antenna with a magnetic stand and a tiny remote. The antenna is connected to the USB stick with a regular antenna connector, you can easily connect it to a better antenna if needed.</p>
<p>In this article I&#8217;ll show you how I first set up the drivers for the tuner, then setting up kaffeine for viewing TV and lastly configuring the remote. The steps should be fairly easy to follow if you&#8217;ve used the console before &#8211; if not, just copy n paste and you should be fine.</p>
<p>This article is about the Pinnacle PCTV USB Stick DVB-T receiver, but the same steps should work for any device using the em2880 driver. According to the em28xx wiki, these devices should also work:</p>
<p><strong>Digital devices:</strong></p>
<ul>
<li>Pinnacle/800e|Pinnacle HD Pro Stick (North American version, NTSC/ATSC)</li>
<li>Kworld 350 U DVB-T</li>
<li>Kworld 310 U</li>
<li>MSI DigiVox A/D (USB2.0)</li>
<li>Hauppauge HVR 950 (NTSC/ATSC)</li>
<li>Hauppauge WinTV HVR 900 M/R: 65008/A1C0</li>
<li>Terratec Cinergy Hybrid T XS &#8211; ZL10353</li>
<li>Terratec Cinergy Hybrid T XS &#8211; MT352</li>
<li>Terratec Cinergy Hybrid T XS France</li>
<li>Terratec Prodigy Hybrid T XS</li>
<li>Terratec Cinergy T XS &#8211; xc3028</li>
<li>Terratec Cinergy T XS &#8211; mt2060</li>
<li>Pinnacle PCTV USB Stick</li>
<li>DNT DA2 Hybrid</li>
<li>Pinnacle PCTV Hybrid Pro Stick</li>
<li>Empire USB 2.0 Pen Dual TV</li>
<li>BestBuy Easy TV USB hybrid</li>
</ul>
<p><strong>Analog devices:</strong></p>
<ul>
<li>Usbgear VD204v9</li>
<li>Leadtek Winfast USB II deluxe</li>
<li>SIIG AVTuner-PVR</li>
<li>Prolink PlayTV USB 2.0</li>
<li>Terratec Cinergy 250 USB</li>
<li>Pinnacle PCTV USB 2</li>
<li>Hauppauge WinTV USB 2</li>
<li>MSI VOX USB 2.0</li>
<li>Pinnacle Dazzle DVC 90</li>
<li>Kworld PVR TV 2800 RF</li>
<li>Hercules Smart TV USB 2.0</li>
<li>MSI Movie Vox</li>
<li>D-Link DUB-T210 TV Tuner</li>
<li>Gadmei UTV 330</li>
<li>Gadmei UTV 310</li>
<li>Supertronindia Supercomp TV USB 2.0</li>
</ul>
<h3>Programs needed</h3>
<p>You will need the following programs for this to work, we&#8217;ll install everything up front so we can concentrate on the more interesting stuff later.</p>
<ul>
<li>a recent kernel with sources, 2.6.15 and newer should be fine (install kernel-sources in SuSE)</li>
<li>Hg from <a href="http://www.selenic.com/mercurial/">http://www.selenic.com/mercurial/</a> (in SuSE you should find a package named mercurial)</li>
<li><a href="http://kaffeine.sourceforge.net/">kaffeine</a> with the <a href="http://xinehq.de/">xine</a> engine (in SuSE, <a href="http://www.marcushellberg.com/pages/projects/suse-on-vaio.php">add packman and guru repositories</a> and install kaffeine, libxine and libxine-dvb)</li>
<li><a href="http://lineak.sourceforge.net/">lineak</a> with kde plugin (on SuSE, install lineakd, lineakd_kde and lineak_defaultplugin)</li>
<li>gcc compiler, is included on most distros by default</li>
<li>dvb package (dvb in SuSE)</li>
</ul>
<p><strong>For Ubuntu (Edgy) you&#8217;ll need the following packages:</strong></p>
<p>All should be available from the default repositories, make sure to have the &#8220;Universe&#8221; repositories enabled (under System&gt;Administration&gt;Software Sources).</p>
<ul>
<li>mercurial</li>
<li>gcc</li>
<li>build-essential</li>
<li>linux-source</li>
<li>linux-headers-`uname -r` (the linux headers for your specific kernel version)</li>
<li>kaffeine (version 0.8 or above. Other dvb watching applications will work as well but only kaffeine will be covered here)</li>
</ul>
<p>Otherwise the install works the same as for SuSE.</p>
<h3>Downloading and compiling the driver</h3>
<p><span style="font-weight: bold;"> </span>Some users will need a firmware file to make their devices work, if you see your device listed here follow the directions, if not continue on to installing the driver.</p>
<p>These devices need firmware version 1:</p>
<ul>
<li>Terratec Cinergy Hybrid T XS (french edition)</li>
<li>Terratec Cinergy T XS</li>
<li>DNT DA2 Hybrid</li>
<li>Kworld 350U</li>
</ul>
<p>These devices need firmware version 2:</p>
<ul>
<li>MSI DigiVox A/D</li>
<li>Kworld 310U</li>
<li>Terratec Cinergy Hybrid T XS (USB ID=0ccd:005e)</li>
</ul>
<p>These devices need firmware version 3:</p>
<ul>
<li>HVR 900 B2C0(sticker on the dev.)</li>
<li>HVR 900 A1C0</li>
<li>Terratec Cinergy Hybrid T XS</li>
<li>Pinnacle PCTV Hybrid Pro</li>
<li>Pinnacle PCTV Hybrid Pro Stick (320e) (USB ID=eb1a:2881)</li>
</ul>
<p>These devices need firmware version 4:</p>
<ul>
<li>Pinnacle HD Pro Stick (North American version, NTSC/ATSC)</li>
</ul>
<p><a href="http://konstantin.filtschew.de/v4l-firmware/">These firmware files can be obtained from here.</a></p>
<p><strong>IMPORTANT:</strong> Download the file into /lib/firmware, then extract them with &#8220;sudo tar zxvf filename.tar.gz&#8221;<br />
<strong>Getting and installing the driver</strong></p>
<p>Create a folder somewhere convenient.</p>
<pre>mkdir driver</pre>
<p>Now, go into that directory and type</p>
<pre>hg clone http://mcentral.de/hg/~mrec/v4l-dvb-kernel</pre>
<p>Which will download a copy of the driver sources to your directory.</p>
<p>Compiling the driver varies a bit depending on if you had to download the firmware or not. If you had to download it keep reading here, if not skip on to part b.</p>
<p>Compiling:</p>
<pre>
<pre>cd v4l-dvb-kernel/v4l
make
sudo make install</pre>
</pre>
<p><strong> You now need to reboot </strong>(bookmark this page so you&#8217;ll find it again).</p>
<h3>The fun part</h3>
<p>Hi and welcome back, I hope the boot didn&#8217;t take too long.</p>
<p>If everything has gone well you should be a few short steps away from viewing tv on your computer.</p>
<p>We still need to load the driver we compiled earlier, as root type in the following.</p>
<pre>modprobe em28xx</pre>
<p>You shouldn&#8217;t get any messages, just be returned to the prompt.</p>
<p>Open up kaffeine either from the menu, or from the console by typing &#8216;kaffeine&#8217;. It should recognize that you</p>
<p>have a dvb adapter and ask you for some additional info.</p>
<p>Select your location and check that everything else is in order and then continue.</p>
<p>In kaffeine you have in the menu bar a DVB menu, select channels from that. Now just press scan and hope. If all went well you&#8217;ll soon start seeing all the channels that have been found. If you can&#8217;t find any channels its most likely because of the tiny little antenna that came with the tuner, either try going to some place with better reception, or plug the antenna cable to a roof-top antenna.</p>
<p>If you&#8217;re happy controlling your viewing with a mouse and keyboard, you&#8217;re done. If you want to get the remote to work as well stay with me for a little while longer.</p>
<h3>Setting up the remote</h3>
<p>The remote is just another input device to the system, just like the extra buttons on newer keyboards, so I decided to use lineak for the task.</p>
<p>I used xev to get the different key codes the buttons on the remote are sending, unfortunately not all of them sent anything. I don&#8217;t know if this is just something that&#8217;s wrong with my remote, or a &#8220;feature&#8221;.</p>
<p>Anyway, here is the section to that I added to /etc/lineakkb.def:</p>
<pre>#### Pinnacle PCTV USB Stick Remote ####

[PCTV]

  brandname = "Pinnacle"

  modelname = "PCTV USB Stick Remote Control"

  [KEYS]

    Mute             = 160

    Record           = 177

    Power            = 222

    Rewind           = 152

    Stop             = 232

    Play|Pause       = 110

    Forward          = 233

    VolumeUp         = 176

    VolumeDown       = 174

  [END KEYS]

[END PCTV]

#### END Pinnacle PCTV USB Stick Remote ####</pre>
<p>If you find the missing key codes, please leave a comment and I&#8217;ll update this.</p>
<p>Save the lineakkb.def file and as a regular user type:</p>
<pre>lineakd -c PCTV</pre>
<p>It will create a configuration file for your keyboard in ~/.lineak/ named lineakd.conf</p>
<p>In this file you can set up what you want all the buttons to do, below is a mine as a sample:</p>
<pre> # LinEAK - Linux support for Easy Access and Internet Keyboards

#  Copyright (c) 2001,2002, 2003

#     Sheldon Lee Wen &lt;leewsb@hotmail.com&gt; (Current Maintainer)

#      and Mark Smulders &lt;Mark@PIRnet.nl&gt;

#  http://lineak.sourceforge.net

#

# lineakd configuration file

#

# example key configuration:

#     play    = "xmms --play-pause"

#     eject    = EAK_EJECT

#

# Lineakd supports the following modifier keys:

#    control alt shift mod2 mod3 mod4 mod5

CdromDevice = /dev/cdrom

Display_align = center

Display_color = 0aff00

Display_font = -adobe-helvetica-bold-r-normal-*-*-240-*-*-p-*-*-*

Display_hoffset = 0

Display_plugin = internal

Display_pos = bottom

Display_soffset = 1

Display_timeout = 3

Display_voffset = 50

KeyboardType = PCTV

MixerDevice = /dev/mixer

RAWCommands = 

Screensaver = 

conffilename = /home/marcus/.lineak/lineakd.conf

keystate_capslock = 

keystate_numlock = 

keystate_scrolllock = 

Forward = "dcop kaffeine KaffeineIface posPlus"

Mute = "KMIX_MUTE"

Play|Pause = "dcop kaffeine KaffeineIface pause"

Power = "kaffeine DVB"

Record = "dcop kaffeine KaffeineIface fullscreen"

Rewind = "dcop kaffeine KaffeineIface posMinus"

Stop = "dcop kaffeine KaffeineIface stop"

VolumeDown = "KMIX_VOLDOWN"

VolumeUp = "KMIX_VOLUP"</pre>
<p>As you see, I had to put the record button to control full screen toggling, as I couldn&#8217;t get the key code for the real full screen button. Please check the <a href="http://lineak.sourceforge.net/index.php?nav=docs">lineak documentation</a> for additional commands, as well as typing &#8216;dcop kaffeine KaffeineIface&#8217; to get a list of all the commands you can send to kaffeine.</p>
<p>To start type</p>
<pre> lineakd&amp;</pre>
<p>To start lineak automatically with KDE make a symbolic link like this:</p>
<pre> ln -s /usr/bin/lineakd /home/marcus/.kde/Autostart/</pre>
<p>So that&#8217;s it, now you should be able to enjoy your favorite tv shows on your computer and control it with the remote (although the effective distance on the remote is probably less than the length of your arm <img src='http://www.marcushellberg.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3>References</h3>
<p><a href="http://wiki.ubuntu.com/em28xx">The em28xx wiki</a> check this wiki if you have any problems, they are probably solved there.</p>
<p><a href="http://lineak.sourceforge.net/index.php?nav=docs">Lineak documentation</a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.marcushellberg.com/2009/12/23/digital-tv-in-linux/&amp;title=Digital+TV+in+Linux" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.marcushellberg.com/2009/12/23/digital-tv-in-linux/&amp;title=Digital+TV+in+Linux" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.marcushellberg.com/2009/12/23/digital-tv-in-linux/&amp;t=Digital+TV+in+Linux" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Digital+TV+in+Linux+-+http://b2l.me/b4bj5+(via+@marcushellberg)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.marcushellberg.com/2009/12/23/digital-tv-in-linux/&amp;title=Digital+TV+in+Linux&amp;summary=Watching%20digital%20tv%20in%20Linux%20with%20em2880%20devices%0D%0ANote%3A%20This%20post%20is%20from%20my%20earlier%20site.%20I%20moved%20it%20over%20here%20because%20I%20see%20that%20a%20lot%20of%20people%20are%20trying%20to%20access%20it%20without%20finding%20it.%20It%20is%20written%20in%202007%2C%20so%20all%20content%20may%20not%20be%20up%20to%20date.%20You%20can%20report%20successes%2Ffailures%20in%20the%20comment&amp;source=Marcus Hellberg" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.marcushellberg.com/2009/12/23/digital-tv-in-linux/&amp;title=Digital+TV+in+Linux" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.marcushellberg.com/2009/12/23/digital-tv-in-linux/&amp;t=Digital+TV+in+Linux" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.marcushellberg.com/2009/12/23/digital-tv-in-linux/&amp;n=Digital+TV+in+Linux&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.marcushellberg.com/2009/12/23/digital-tv-in-linux/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Google Nexus One rumors and walkthough</title>
		<link>http://www.marcushellberg.com/2009/12/23/google-nexus-one-rumors-and-walkthough/</link>
		<comments>http://www.marcushellberg.com/2009/12/23/google-nexus-one-rumors-and-walkthough/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 11:02:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Phones]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://www.marcushellberg.com/?p=83</guid>
		<description><![CDATA[Lately, there have been a huge buzz around the internet about Google starting to sell their own Android-based handset.  Apparently, Google has given out phones, called Nexus One,  to Google employees for internal testing before the launch. This has resulted in a lot of blurry pictures and descriptions of the new mystery device.
If this is [...]]]></description>
			<content:encoded><![CDATA[<p>Lately, there have been a huge buzz around the internet about Google starting to sell their own Android-based handset.  Apparently, Google has given out phones, called Nexus One,  to Google employees for internal testing before the launch. This has resulted in a lot of blurry pictures and descriptions of the new mystery device.</p>
<p>If this is a marketing stunt by Google, which I think it is, its very effective. The device certainly looks good.</p>
<p><a href="http://www.marcushellberg.com/wp-content/uploads/2009/12/bgrgn-2.jpg"><img class="alignnone size-full wp-image-84" title="bgrgn-2" src="http://www.marcushellberg.com/wp-content/uploads/2009/12/bgrgn-2.jpg" alt="" width="453" height="604" /></a></p>
<p>Engadget had managed to <a href="http://gizmodo.com/5432678/google-nexus-one-hands-on" target="_blank">get their hands on one of the devices</a> and seemed to be very impressed. They noted that the Nexus One has: &#8220;&#8230; probably the best screen we&#8217;ve seen on a smartphone so far.&#8221; They were also impressed by the speed of the device, something that has been a major issue for most Android devices so far. Comparing browsing speeds they noted:</p>
<blockquote><p> When comparing the three phones in loading a webpage over Wi-Fi, the Nexus One loaded first, the iPhone 3GS came in a few seconds later, and the Droid came in a little while after that. This was constant throughout many webpage loads, so it&#8217;s indicative of <em>something</em> going on inside with the hardware.</blockquote >
<p>A video walkthough of the interface looks very promising. The interface moves quickly, and the screen seems very spacious compared to my HTC Hero.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/1CJFdG-MARw&amp;hl=en_US&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/1CJFdG-MARw&amp;hl=en_US&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>The Nexus One <a href="http://www.reuters.com/article/idUSTRE5BD49220091214?type=technologyNews" target="_blank">is rumored</a> to be sold without contract, for $199 or $99 for existing Google account holders. If this is true and Google sells the phone to Finland, I&#8217;m definitely getting one. The low price point seems too low to be true. If it is true, I&#8217;m sure that Google will have some ads and/or usage monitoring to recoup the hardware costs.</p>
<p>Reuters reported that the phone should go on sale directly from Google on January 5th. We&#8217;ll just have to wait until then and see which rumors are true.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.marcushellberg.com/2009/12/23/google-nexus-one-rumors-and-walkthough/&amp;title=Google+Nexus+One+rumors+and+walkthough" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.marcushellberg.com/2009/12/23/google-nexus-one-rumors-and-walkthough/&amp;title=Google+Nexus+One+rumors+and+walkthough" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.marcushellberg.com/2009/12/23/google-nexus-one-rumors-and-walkthough/&amp;t=Google+Nexus+One+rumors+and+walkthough" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Google+Nexus+One+rumors+and+walkthough+-+http://b2l.me/b3ku8+(via+@marcushellberg)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.marcushellberg.com/2009/12/23/google-nexus-one-rumors-and-walkthough/&amp;title=Google+Nexus+One+rumors+and+walkthough&amp;summary=Lately%2C%20there%20have%20been%20a%20huge%20buzz%20around%20the%20internet%20about%20Google%20starting%20to%20sell%20their%20own%20Android-based%20handset.%20%C2%A0Apparently%2C%20Google%20has%20given%20out%20phones%2C%20called%20Nexus%20One%2C%20%C2%A0to%20Google%20employees%20for%20internal%20testing%20before%20the%20launch.%20This%20has%20resulted%20in%20a%20lot%20of%20blurry%20pictures%20and%20descript&amp;source=Marcus Hellberg" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.marcushellberg.com/2009/12/23/google-nexus-one-rumors-and-walkthough/&amp;title=Google+Nexus+One+rumors+and+walkthough" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.marcushellberg.com/2009/12/23/google-nexus-one-rumors-and-walkthough/&amp;t=Google+Nexus+One+rumors+and+walkthough" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.marcushellberg.com/2009/12/23/google-nexus-one-rumors-and-walkthough/&amp;n=Google+Nexus+One+rumors+and+walkthough&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.marcushellberg.com/2009/12/23/google-nexus-one-rumors-and-walkthough/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress LaTeX plugin</title>
		<link>http://www.marcushellberg.com/2009/12/21/wordpress-latex-plugin/</link>
		<comments>http://www.marcushellberg.com/2009/12/21/wordpress-latex-plugin/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 09:25:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[latex]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.marcushellberg.com/?p=71</guid>
		<description><![CDATA[Now that I have code highlighting working, I thought that I should still look into getting some easy way to display mathematical notation. Turns out that WordPress once again delivered, there are in fact several different LaTeX plugins available.
The plugin I settled for is WP LaTeX, since it allowed me to use  wordpress.com&#8217;s LaTeX server. This was an [...]]]></description>
			<content:encoded><![CDATA[<p>Now that I have code highlighting working, I thought that I should still look into getting some easy way to display mathematical notation. Turns out that WordPress once again delivered, there are in fact several different LaTeX plugins available.</p>
<p>The plugin I settled for is <a href="http://wordpress.org/extend/plugins/wp-latex/" target="_blank">WP LaTeX</a>, since it allowed me to use  <a href="http://wordpress.com" target="_blank">wordpress.com</a>&#8217;s LaTeX server. This was an easier alternative, as Dreamhost does not have dvipng installed. On a side note, I&#8217;m impressed that they have LaTeX installed by default.</p>
<p>Now I only have to insert the following to create a nice looking equation:</p>
<pre>
H(z) = \frac{1}{1-2 cos(2 \pi k / N) z^{-1} + z^{-2}}
</pre>
<img src='http://s.wordpress.com/latex.php?latex=H%28z%29%20%3D%20%5Cfrac%7B1%7D%7B1-2%20cos%282%20%5Cpi%20k%20%2F%20N%29%20z%5E%7B-1%7D%20%2B%20z%5E%7B-2%7D%7D&#038;bg=T&#038;fg=000000&#038;s=1' alt='H(z) = \frac{1}{1-2 cos(2 \pi k / N) z^{-1} + z^{-2}}' title='H(z) = \frac{1}{1-2 cos(2 \pi k / N) z^{-1} + z^{-2}}' class='latex' />
<p>Bonus points for anyone who can identify the transfer function <img src='http://www.marcushellberg.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.marcushellberg.com/2009/12/21/wordpress-latex-plugin/&amp;title=WordPress+LaTeX+plugin" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.marcushellberg.com/2009/12/21/wordpress-latex-plugin/&amp;title=WordPress+LaTeX+plugin" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.marcushellberg.com/2009/12/21/wordpress-latex-plugin/&amp;t=WordPress+LaTeX+plugin" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=WordPress+LaTeX+plugin+-+http://b2l.me/bxf3m+(via+@marcushellberg)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.marcushellberg.com/2009/12/21/wordpress-latex-plugin/&amp;title=WordPress+LaTeX+plugin&amp;summary=Now%20that%20I%20have%20code%C2%A0highlighting%C2%A0working%2C%20I%20thought%20that%20I%20should%20still%20look%20into%20getting%20some%20easy%20way%20to%20display%20mathematical%20notation.%20Turns%20out%20that%20WordPress%20once%20again%20delivered%2C%20there%20are%20in%20fact%20several%20different%20LaTeX%20plugins%20available.%0D%0A%0D%0AThe%20plugin%20I%20settled%20for%20is%20WP%20LaTeX%2C%20since%20it%20a&amp;source=Marcus Hellberg" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.marcushellberg.com/2009/12/21/wordpress-latex-plugin/&amp;title=WordPress+LaTeX+plugin" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.marcushellberg.com/2009/12/21/wordpress-latex-plugin/&amp;t=WordPress+LaTeX+plugin" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.marcushellberg.com/2009/12/21/wordpress-latex-plugin/&amp;n=WordPress+LaTeX+plugin&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.marcushellberg.com/2009/12/21/wordpress-latex-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Transferring Gmail to Google Apps with own domain</title>
		<link>http://www.marcushellberg.com/2009/12/20/transferring-gmail-to-google-apps-with-own-domain/</link>
		<comments>http://www.marcushellberg.com/2009/12/20/transferring-gmail-to-google-apps-with-own-domain/#comments</comments>
		<pubDate>Sun, 20 Dec 2009 15:24:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.marcushellberg.com/?p=24</guid>
		<description><![CDATA[My hosting plan with Dreamhost had an option of using Google Apps with my own domain. In practice, what I wanted was using Gmail, only with my own domain in the address.
The process of setting up Google Apps with an own domain was straight forward. All I had to do was enable Google Apps for [...]]]></description>
			<content:encoded><![CDATA[<p>My hosting plan with Dreamhost had an option of using Google Apps with my own domain. In practice, what I wanted was using Gmail, only with my own domain in the address.</p>
<p>The process of setting up Google Apps with an own domain was straight forward. All I had to do was enable Google Apps for my domain in the Dreamhost admin interface and then sign up for a Google Apps account. I had to upload a HTML-file to the root of my domain to assure that I in fact own the domain.</p>
<p>The big problem I had was that I currently have a Google account that I use both for my HTC Hero and for Gmail. What I really wanted was to be able to migrate that account to my own domain. This was unfortunately not possible as the two accounts are entirely separate.</p>
<p>I could import all of my previous mails from Gmail to the new Gmail through POP, even though it was a big pain. I could also set my old Gmail to forward any new messages automatically to the new address.</p>
<p>I still decided to keep using my Gmail as my primary email address because it is most convenient. The new address will, at least for the time being, stay as a secondary email mainly for this site. It is still very convenient to have an email address with an own domain and still be able to use it from anywhere using the Gmail interface and 7+ GB of storage.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.marcushellberg.com/2009/12/20/transferring-gmail-to-google-apps-with-own-domain/&amp;title=Transferring+Gmail+to+Google+Apps+with+own+domain" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.marcushellberg.com/2009/12/20/transferring-gmail-to-google-apps-with-own-domain/&amp;title=Transferring+Gmail+to+Google+Apps+with+own+domain" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.marcushellberg.com/2009/12/20/transferring-gmail-to-google-apps-with-own-domain/&amp;t=Transferring+Gmail+to+Google+Apps+with+own+domain" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Transferring+Gmail+to+Google+Apps+with+own+domain+-+http://b2l.me/bv7nx+(via+@marcushellberg)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.marcushellberg.com/2009/12/20/transferring-gmail-to-google-apps-with-own-domain/&amp;title=Transferring+Gmail+to+Google+Apps+with+own+domain&amp;summary=My%20hosting%20plan%20with%20Dreamhost%20had%20an%20option%20of%20using%20Google%20Apps%20with%20my%20own%20domain.%20In%20practice%2C%20what%20I%20wanted%20was%20using%20Gmail%2C%20only%20with%20my%20own%20domain%20in%20the%20address.%0D%0A%0D%0AThe%20process%20of%20setting%20up%20Google%20Apps%20with%20an%20own%20domain%20was%20straight%20forward.%20All%20I%20had%20to%20do%20was%20enable%20Google%20Apps%20for%20my%20do&amp;source=Marcus Hellberg" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.marcushellberg.com/2009/12/20/transferring-gmail-to-google-apps-with-own-domain/&amp;title=Transferring+Gmail+to+Google+Apps+with+own+domain" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.marcushellberg.com/2009/12/20/transferring-gmail-to-google-apps-with-own-domain/&amp;t=Transferring+Gmail+to+Google+Apps+with+own+domain" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.marcushellberg.com/2009/12/20/transferring-gmail-to-google-apps-with-own-domain/&amp;n=Transferring+Gmail+to+Google+Apps+with+own+domain&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.marcushellberg.com/2009/12/20/transferring-gmail-to-google-apps-with-own-domain/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Short review of the Grooveshark Android application</title>
		<link>http://www.marcushellberg.com/2009/12/19/short-review-of-the-grooveshark-android-application/</link>
		<comments>http://www.marcushellberg.com/2009/12/19/short-review-of-the-grooveshark-android-application/#comments</comments>
		<pubDate>Sat, 19 Dec 2009 16:37:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[grooveshark]]></category>

		<guid isPermaLink="false">http://www.marcushellberg.com/?p=26</guid>
		<description><![CDATA[Grooveshark recently released a &#8220;sneak peak&#8221; of their Android app. The application had already been shown in the Android Developer Challenge, but it got finally released for the general public to use.
The application is still a &#8220;sneak peak,&#8221; so many of the bugs I found are surely already being worked on. The application only works [...]]]></description>
			<content:encoded><![CDATA[<p>Grooveshark recently released a &#8220;sneak peak&#8221; of their Android app. The application had already been shown in the Android Developer Challenge, but it got finally released for the general public to use.</p>
<p>The application is still a &#8220;sneak peak,&#8221; so many of the bugs I found are surely already being worked on. The application only works for VIP Grooveshark users, so if you want to try it out, you have to pay $3 a month.</p>
<p>The app opens up with a splash screen with the same yellow-blue background as the Grooveshark flash player has by default. The splash screen lasts for quite a while, making sure that you notice that the application is still in alpha.</p>
<p>I have to admit that I like the interface of the app. I don&#8217;t have a rooted Android device, so I couldn&#8217;t take real screen shots, these will have to do for now:</p>
<p><a href="http://www.marcushellberg.com/wp-content/uploads/2009/12/grooveshark_android_1.jpg"><img class="alignnone size-medium wp-image-41" title="grooveshark_android_1" src="http://www.marcushellberg.com/wp-content/uploads/2009/12/grooveshark_android_1-225x300.jpg" alt="" width="225" height="300" /></a></p>
<p><a href="http://www.marcushellberg.com/wp-content/uploads/2009/12/grooveshark_android_2.jpg"><img class="alignnone size-medium wp-image-42" title="grooveshark_android_2" src="http://www.marcushellberg.com/wp-content/uploads/2009/12/grooveshark_android_2-225x300.jpg" alt="" width="225" height="300" /></a></p>
<p><a href="http://www.marcushellberg.com/wp-content/uploads/2009/12/grooveshark_android_3.jpg"><img class="alignnone size-medium wp-image-43" title="grooveshark_android_3" src="http://www.marcushellberg.com/wp-content/uploads/2009/12/grooveshark_android_3-225x300.jpg" alt="" width="225" height="300" /></a></p>
<p><a href="http://www.marcushellberg.com/wp-content/uploads/2009/12/grooveshark_android_4.jpg"><img class="alignnone size-medium wp-image-44" title="grooveshark_android_4" src="http://www.marcushellberg.com/wp-content/uploads/2009/12/grooveshark_android_4-225x300.jpg" alt="" width="225" height="300" /></a></p>
<p><a href="http://www.marcushellberg.com/wp-content/uploads/2009/12/grooveshark_android_5.jpg"><img class="alignnone size-medium wp-image-45" title="grooveshark_android_5" src="http://www.marcushellberg.com/wp-content/uploads/2009/12/grooveshark_android_5-225x300.jpg" alt="" width="225" height="300" /></a></p>
<p>As you can see, the interface is dark and, at least in my opinion, quite nice. The application is very rough still. The parsing of the search results seems to take very long. Also, since the first day I used the app, I haven&#8217;t been actually able to listen to music with it. This seems like a big problem still. The application has also other issues, like the splash screen being displayed every time the application is taken into the  foreground. The application does not seem to start buffering the following track while playing the previous, so there is a long gap between songs.</p>
<p>So, it&#8217;s quite evident that the application is indeed a &#8220;sneak peek,&#8221; not a finished application. It does, however, show great potential for future versions. Like Spotify, it supports offline playlists. It also has the radio feature from the flash application enabled by default, which makes it ideal for just choosing a couple of songs and leaving in the pocket to play.</p>
<p>I&#8217;m eagerly awaiting an updates to the app, and will update this post with new impressions as the application is developed.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.marcushellberg.com/2009/12/19/short-review-of-the-grooveshark-android-application/&amp;title=Short+review+of+the+Grooveshark+Android+application" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.marcushellberg.com/2009/12/19/short-review-of-the-grooveshark-android-application/&amp;title=Short+review+of+the+Grooveshark+Android+application" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.marcushellberg.com/2009/12/19/short-review-of-the-grooveshark-android-application/&amp;t=Short+review+of+the+Grooveshark+Android+application" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Short+review+of+the+Grooveshark+Android+application+-+http://b2l.me/bumrw+(via+@marcushellberg)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.marcushellberg.com/2009/12/19/short-review-of-the-grooveshark-android-application/&amp;title=Short+review+of+the+Grooveshark+Android+application&amp;summary=Grooveshark%20recently%20released%20a%20%22sneak%20peak%22%20of%20their%20Android%20app.%20The%20application%20had%20already%20been%20shown%20in%20the%20Android%20Developer%20Challenge%2C%20but%20it%20got%20finally%20released%20for%20the%20general%20public%20to%20use.%0D%0A%0D%0AThe%20application%20is%20still%20a%20%22sneak%20peak%2C%22%20so%20many%20of%20the%20bugs%20I%20found%20are%20surely%20already%20being%20wo&amp;source=Marcus Hellberg" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.marcushellberg.com/2009/12/19/short-review-of-the-grooveshark-android-application/&amp;title=Short+review+of+the+Grooveshark+Android+application" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.marcushellberg.com/2009/12/19/short-review-of-the-grooveshark-android-application/&amp;t=Short+review+of+the+Grooveshark+Android+application" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.marcushellberg.com/2009/12/19/short-review-of-the-grooveshark-android-application/&amp;n=Short+review+of+the+Grooveshark+Android+application&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.marcushellberg.com/2009/12/19/short-review-of-the-grooveshark-android-application/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Why i moved from Spotify to Grooveshark</title>
		<link>http://www.marcushellberg.com/2009/12/19/why-i-moved-from-spotify-to-grooveshark/</link>
		<comments>http://www.marcushellberg.com/2009/12/19/why-i-moved-from-spotify-to-grooveshark/#comments</comments>
		<pubDate>Sat, 19 Dec 2009 14:56:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Rants]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[grooveshark]]></category>
		<category><![CDATA[spotify]]></category>

		<guid isPermaLink="false">http://www.marcushellberg.com/?p=25</guid>
		<description><![CDATA[I recently switched from using Spotify for Grooveshark.&#8221;Why?,&#8221; you may ask. Well let me tell you.
I have been using Spotify for quite a while, I got an invitation back in October of 2008. At first, I was very happy. The promise of cloud computing seemed to come to life, I had access to all the [...]]]></description>
			<content:encoded><![CDATA[<p>I recently switched from using <a href="http://spotify.com" target="_blank">Spotify</a> for <a href="http://grooveshark.com" target="_blank">Grooveshark</a>.&#8221;Why?,&#8221; you may ask. Well let me tell you.</p>
<p>I have been using Spotify for quite a while, I got an invitation back in October of 2008. At first, I was very happy. The promise of cloud computing seemed to come to life, I had access to all the music I could ever hope to listen to. But gradually the service started degrading. Finally, last month I had enough and canceled my premium subscription and moved to grooveshark.</p>
<p>The thing that I liked most about Spotify in the beginning was the ability to easily access any music I wanted at a particular moment. If I was feeling indecisive, I could always choose a top-list and listen to that. Slowly the country restrictions started rolling in. At one moment I remember closing Spotify with an artist&#8217;s listing open. When I opened Spotify the following morning, all but one album had disappeared from the list.</p>
<p>To make matters worse, top lists would show all songs that I couldn&#8217;t listen to in pink. The real problem was, however, that the songs that weren&#8217;t allowed to be played in Finland seemed to be chosen arbitrarily from different versions of a song. For instance, if I clicked on an artist&#8217;s name in the list, I could choose another version of the song to listen to without problems.</p>
<p>So, not only did not Spotify&#8217;s country restrictions not work, but they also made my experience worse.</p>
<p>This fall I was happy that Spotify released an Android app, I immediately purchased Spotify premium to try it out. The first big hurdle was that the Spotify app wasn&#8217;t anywhere to be found in the Android market. As it turned out, Finland didn&#8217;t have, and still doesn&#8217;t have,  an official Android Market. This isn&#8217;t in any way Spotify&#8217;s fault, it&#8217;s Google being slow in realizing that the world extends beyond the United States.</p>
<p>Sorry, got a bit sidetracked there. Anyway, the Android app was alright, but not really worth the 10€ a month it cost. The offline playlists were a welcome addition, as I often listen to music while bicycling and at times I&#8217;m not within HSPA coverage. The app was a bit buggy, stopping between tracks until the app was taken to the foreground again. This made it impractical while doing anything else since I had to take out the phone every once and again to resume the music.</p>
<p>When I decided that the Android app wasn&#8217;t worth paying for, I canceled my Spotify premium subscription. To my horror, I found out that during the two months I had been premium the amount of ads had exploded. Not only had the banners grown larger and more obnoxious, but the audio ads had introduced a bug that caused the next song to start from the time that the previous song had ended on. This meant that if I listened to a long song, Spotify would skip through half of my playlist until it started a commercial.</p>
<p><a href="http://www.marcushellberg.com/wp-content/uploads/2009/12/Screen-shot-2009-12-19-at-16.33.02-.png"><img class="alignnone size-medium wp-image-31" title="Screen shot 2009-12-19 at 16.33.02" src="http://www.marcushellberg.com/wp-content/uploads/2009/12/Screen-shot-2009-12-19-at-16.33.02--300x201.png" alt="" width="300" height="201" /></a></p>
<p>I finally had enough and decided to check out <a href="http://grooveshark.com" target="_self">Grooveshark</a>, a service I&#8217;d used on occasion before. The interface had gotten a radical improvement since my last try and I really liked it.</p>
<p><a href="http://www.marcushellberg.com/wp-content/uploads/2009/12/Screen-shot-2009-12-19-at-16.18.09-.png"><img class="alignnone size-medium wp-image-29" title="Screen shot 2009-12-19 at 16.18.09" src="http://www.marcushellberg.com/wp-content/uploads/2009/12/Screen-shot-2009-12-19-at-16.18.09--300x251.png" alt="" width="300" height="251" /></a></p>
<p>If you clicked the Grooveshark link, you probably already noticed the first advantage that Grooveshark holds against Spotify: a web-based interface. Now I could listen to my playlists anywhere, without having to install any software.</p>
<p>The player interface on Grooveshark is different than on Spotify. When searching for songs you can click on any song to start playing it. But instead of continuing with the next song in the list, you can drag and drop songs into the play queue on the bottom of the screen. The queue remains there across searches and is in my opinion a very nice way to organize my listening. When I&#8217;m satisfied with a queue, I can save it as a playlist.</p>
<p>Even better, if you get tired of selecting songs for your self, you can press the &#8220;radio&#8221; button and let Grooveshark continue your list with similar music. You can then like/dislike the suggested songs to teach Grooveshark what you like.</p>
<p>Grooveshark also released an Android application recently. But as this post is starting to get way too long already, I&#8217;ll do another post about that shortly. Stay tuned.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand">
<ul class="socials">
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.marcushellberg.com/2009/12/19/why-i-moved-from-spotify-to-grooveshark/&amp;title=Why+i+moved+from+Spotify+to+Grooveshark" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.marcushellberg.com/2009/12/19/why-i-moved-from-spotify-to-grooveshark/&amp;title=Why+i+moved+from+Spotify+to+Grooveshark" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.marcushellberg.com/2009/12/19/why-i-moved-from-spotify-to-grooveshark/&amp;t=Why+i+moved+from+Spotify+to+Grooveshark" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Why+i+moved+from+Spotify+to+Grooveshark+-+http://b2l.me/bugs7+(via+@marcushellberg)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.marcushellberg.com/2009/12/19/why-i-moved-from-spotify-to-grooveshark/&amp;title=Why+i+moved+from+Spotify+to+Grooveshark&amp;summary=I%20recently%20switched%20from%20using%20Spotify%20for%20Grooveshark.%22Why%3F%2C%22%20you%20may%20ask.%20Well%20let%20me%20tell%20you.%0D%0A%0D%0AI%20have%20been%20using%20Spotify%20for%20quite%20a%20while%2C%20I%20got%20an%20invitation%20back%20in%20October%20of%202008.%20At%20first%2C%20I%20was%20very%20happy.%20The%20promise%20of%20cloud%20computing%20seemed%20to%20come%20to%20life%2C%20I%20had%20access%20to%20all%20the%20mu&amp;source=Marcus Hellberg" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.marcushellberg.com/2009/12/19/why-i-moved-from-spotify-to-grooveshark/&amp;title=Why+i+moved+from+Spotify+to+Grooveshark" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.marcushellberg.com/2009/12/19/why-i-moved-from-spotify-to-grooveshark/&amp;t=Why+i+moved+from+Spotify+to+Grooveshark" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://www.marcushellberg.com/2009/12/19/why-i-moved-from-spotify-to-grooveshark/&amp;n=Why+i+moved+from+Spotify+to+Grooveshark&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.marcushellberg.com/2009/12/19/why-i-moved-from-spotify-to-grooveshark/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
