<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>up and down, round and round.</title>
	<atom:link href="http://hippieflip.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://hippieflip.wordpress.com</link>
	<description>Another page on the internet.</description>
	<lastBuildDate>Fri, 26 Aug 2011 19:29:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='hippieflip.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>up and down, round and round.</title>
		<link>http://hippieflip.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://hippieflip.wordpress.com/osd.xml" title="up and down, round and round." />
	<atom:link rel='hub' href='http://hippieflip.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Retrieve RSS Feed and publish to webpage as HTML UL list.</title>
		<link>http://hippieflip.wordpress.com/2011/08/23/retrieve-rss-feed-and-publish-to-webpage-as-html-ul-list/</link>
		<comments>http://hippieflip.wordpress.com/2011/08/23/retrieve-rss-feed-and-publish-to-webpage-as-html-ul-list/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 08:39:54 +0000</pubDate>
		<dc:creator>scheien</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://hippieflip.wordpress.com/?p=188</guid>
		<description><![CDATA[A simple method for retrieving an RSS feed and convert it to an HTML unordered list. Some feeds may differ in the xpath used, so change the XmlNodeList rssNodeList = rss.DocumentElement.SelectNodes(&#8220;channel/item&#8221;); and string itemTitle = rssItem.SelectSingleNode(&#8220;title&#8221;).InnerText; string itemLink = rssItem.SelectSingleNode(&#8220;link&#8221;).InnerText; to get it tailored like you want it :-)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hippieflip.wordpress.com&amp;blog=6200891&amp;post=188&amp;subd=hippieflip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A simple method for retrieving an RSS feed and convert it to an HTML unordered list. Some feeds may differ in the xpath used, so change the<br />
<em>XmlNodeList rssNodeList = rss.DocumentElement.SelectNodes(&#8220;channel/item&#8221;);</em><br />
and<br />
<em>string itemTitle = rssItem.SelectSingleNode(&#8220;title&#8221;).InnerText;<br />
string itemLink = rssItem.SelectSingleNode(&#8220;link&#8221;).InnerText;</em><br />
to get it tailored like you want it :-)</p>
<pre class="brush: csharp;">
/// &lt;summary&gt;
/// Converts an RSS feed to an HTML UL list with title and links to the article, blogpost etc.
/// &lt;/summary&gt;
/// &lt;param name=&quot;pRssFeedToLoad&quot;&gt;The RSS feeds URI. (Either from disk, or url)&lt;/param&gt;
/// &lt;returns&gt;A fully XHTML formatted unordered list with css class &quot;RssFeed&quot;&lt;/returns&gt;
protected string ShowRSSFeed(string pRssFeedToLoad)
{
// setup initial stringbuilder, for creating an HTML UL list.
StringBuilder sb = new StringBuilder();
sb.AppendLine(&quot;&lt;ul class=\&quot;RssFeed\&quot;&gt;&quot;);

// create a new xml document used for parsing
XmlDocument rss = new XmlDocument();

// load the rss feed either from disk or url.
rss.Load(pRssFeedToLoad);

// select the items
XmlNodeList rssNodeList = rss.DocumentElement.SelectNodes(&quot;channel/item&quot;);

// traverse the items in the feed.
foreach (XmlNode rssItem in rssNodeList)
{
// get the needed data from the item.
string itemTitle = rssItem.SelectSingleNode(&quot;title&quot;).InnerText;
string itemLink = rssItem.SelectSingleNode(&quot;link&quot;).InnerText;

// create HTML LI element.
sb.AppendLine(&quot;&lt;li&gt;&quot;);
sb.AppendLine(string.Format(&quot;&lt;a href=\&quot;{0}\&quot;&gt;{1}&lt;/a&gt;&quot;, itemLink, itemTitle));
sb.AppendLine(&quot;&lt;/li&gt;&quot;);
}

// close the HTML UL list.
sb.AppendLine(&quot;&lt;/ul&gt;&quot;);

// return the HTML UL list.
return sb.ToString();
}
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hippieflip.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hippieflip.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hippieflip.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hippieflip.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hippieflip.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hippieflip.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hippieflip.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hippieflip.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hippieflip.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hippieflip.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hippieflip.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hippieflip.wordpress.com/188/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hippieflip.wordpress.com/188/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hippieflip.wordpress.com/188/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hippieflip.wordpress.com&amp;blog=6200891&amp;post=188&amp;subd=hippieflip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hippieflip.wordpress.com/2011/08/23/retrieve-rss-feed-and-publish-to-webpage-as-html-ul-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b935bc3cb2a22c5ffb0b4d6efbfd2f4a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scheien</media:title>
		</media:content>
	</item>
		<item>
		<title>Forgot your password aye?</title>
		<link>http://hippieflip.wordpress.com/2010/10/06/forgot-your-password-aye/</link>
		<comments>http://hippieflip.wordpress.com/2010/10/06/forgot-your-password-aye/#comments</comments>
		<pubDate>Wed, 06 Oct 2010 10:32:36 +0000</pubDate>
		<dc:creator>scheien</dc:creator>
				<category><![CDATA[Problems & solutions]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://hippieflip.wordpress.com/?p=186</guid>
		<description><![CDATA[Sometimes people tend to forget their password for the user account on their pc, and they just _NEED_ to get access to their files. Well, what now you may think, how do I solve this? The solution is not so hard, but it requires you to clash your fingers on the keyboard and try to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hippieflip.wordpress.com&amp;blog=6200891&amp;post=186&amp;subd=hippieflip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sometimes people tend to forget their password for the user account on their pc, and they just _NEED_ to get access to their files. Well, what now you may think, how do I solve this? The solution is not so hard, but it requires you to clash your fingers on the keyboard and try to type some letters. This is a quick and painless fix for Windows users.</p>
<p>1. First up, you&#8217;ll need to fetch a copy of the ultimate I-got-all-the-tools-u-need linuxdistro called BackTrack. You can visit their download section by pressing <a href="http://www.backtrack-linux.org/downloads/">this link</a> and view a bunch of different versions and select the one that fits your taste or use <a href="http://www.backtrack-linux.org/download.php?fname=bt4f">this link to do a direct download of BackTrack4 Final</a>.</p>
<p>2. Ok, here we are. We have downloaded a fresh cool copy of BT4, and are ready to reset some passwords! Hey wait a bit! Didnt we forget something? Oh yea.. First off you&#8217;ll need to burn the ISO to a DVD, since we have to boot from that DVD later on. For your ISO burning, you could use an application called <a href="http://www.imgburn.com/">ImgBurn</a> &lt;- clicky clicky.</p>
<p>3. Burn it, and stuff that DVD into the computer you wish to reset a password on.</p>
<p>4. Next up is that you need to ensure that the computer we want to boot, has booting from cd/dvdrom-drive enabled. Since there are five million different ways to check this on all brands, I&#8217;ll just leave you up to check it yourself. See if there is a message when you turn on your computer that says &#8220;One time boot order&#8221;, &#8220;Boot order&#8221; or something in that direction. (Dell users can probably just hit F12, and Lenovo users can hit Enter or ESC to interrupt normal boot order).</p>
<p>5. Things going great so far, but we haven&#8217;t touched the fun part yet. Once you booted from the DVD, you&#8217;ll get a menu where you have a bunch of different options for which settings you would like to run BT4 with. For simplicity just choose the BackTrack 4 with Frambuffer (1024&#215;768) or choose some other option if you want that, you decide.</p>
<p>6. Let the magical linuxdistro boot up and wait for a line that has some green text saying <span style="color:#00ff00;">root@bt4~</span>:<br />
We are now ready for the interesting part (and the part that we actually do something).</p>
<p>7. First off, we&#8217;ll need to mount our Windows drive so we can access it and locate our favourite file called SAM. Now, we need to find out which disk drive to use. Your disks would be called either hd or sd, depending on the type (IDE or SATA) and which driver that are in use. Dont pay too much attention to this right now, we want to find our correct disk and partition.</p>
<p>On the commandline type &#8220;ls -la /dev/sd*&#8221; if that dont return any results looking like /dev/sda1, /dev/sda2 or similar, try to run this command instead &#8220;ls -la /dev/hd*&#8221; and follow the same procedure looking for /dev/hda1, /dev/hda2 or something similar. Both those two can have an other letter like /dev/sdb1, /dev/sdc2 and so on.</p>
<p>We have hopefully located our correct disk, if not repeat the procedure mentioned like 2 seconds ago. In this example I will use my computer as reference, and my disk is located at /dev/sda and my partition with M$ Windows is on the first partition /dev/sda1 .</p>
<p>8. Now I&#8217;m going to make a folder called /mnt/mydisk where I will mount my partition using this command : mkdir /mnt/mydisk<br />
(the /mnt folder already exists in every linux distro, so you&#8217;ll just have to make the mydisk folder, if /mnt for some reasons dont exist, use this command first &#8220;mkdir /mnt&#8221;)</p>
<p>Then we&#8217;ll mount our partition to that newly created folder using this command: mount /dev/sda1 /mnt/mydisk</p>
<p>Now we got our partition mounted, and it&#8217;s ready for access. If for some reason it doesnt list Windows when you do a &#8220;ls -la /mnt/mydisk&#8221; then you probably have the wrong disk and/or partition. Follow the step where we mounted the partition, and try with another like /dev/sda2, or /dev/hdb3 (re-read section 7 again).</p>
<p>9. Okay, here we are, ready to finally reset our password. Run this command: chntpw -i /mnt/mydisk/Windows/system32/config/SAM (if it says that it cannot open the file, please check the foldernames as they are casesensitive.)</p>
<p>10. We now got a sweet little menu with a few options, you should select option number 1 &#8220;Edit user data and passwords&#8221;. Moving on.</p>
<p>11. Next up you will be prompted for which user you would like to change password on, you&#8217;ll get a list of all the users. Type in the username and hit Enter.</p>
<p>12. Now you got the &#8220;User edit menu&#8221; with 5 possible options. On option number 4, you can unlock the useraccount if it has been locked due to a number of failed login attempts. If it&#8217;s not locked it would say something similar to &#8220;seems unlocked already&#8221;. Then skip this step.</p>
<p>13. We have unlocked our account if it was needed, and are ready to reset the password. Retype your desired username and hit Enter, and then type 1 and hit Enter. Your password will now be reset to blank (no password needed at login).</p>
<p>14. Now we want to quit and save. Type ! and hit Enter. You will now be sent back to the main menu, type q and hit Enter again. When asked to save you choose yes (type y) and hit Enter.</p>
<p>15. Password are reset, and we&#8217;re ready to boot back into Windows and retrieve our long lost files! Type reboot and hit Enter. You will be prompted to remove the DVD.</p>
<p>That&#8217;s it! Once you boot into Windows, just type administrator as username (in my example) and nothing in the password field, and click OK. You will now be logged in :-)</p>
<p>That kicks ass! And yeah, you can use this method on any pc which you have physical access to and able to boot from a DVD :-) </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hippieflip.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hippieflip.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hippieflip.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hippieflip.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hippieflip.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hippieflip.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hippieflip.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hippieflip.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hippieflip.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hippieflip.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hippieflip.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hippieflip.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hippieflip.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hippieflip.wordpress.com/186/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hippieflip.wordpress.com&amp;blog=6200891&amp;post=186&amp;subd=hippieflip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hippieflip.wordpress.com/2010/10/06/forgot-your-password-aye/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b935bc3cb2a22c5ffb0b4d6efbfd2f4a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scheien</media:title>
		</media:content>
	</item>
		<item>
		<title>Necro blog, well hopefully not anymore!</title>
		<link>http://hippieflip.wordpress.com/2010/10/06/necro-blog-well-hopefully-not-anymore/</link>
		<comments>http://hippieflip.wordpress.com/2010/10/06/necro-blog-well-hopefully-not-anymore/#comments</comments>
		<pubDate>Wed, 06 Oct 2010 09:30:08 +0000</pubDate>
		<dc:creator>scheien</dc:creator>
				<category><![CDATA[Generelt]]></category>

		<guid isPermaLink="false">http://hippieflip.wordpress.com/?p=184</guid>
		<description><![CDATA[Due to changes in my life (and lazyness) this blog hasnt been updated for quite a while, but interesting things may happen in the future :-) Hopefully someone have had good use of the few articles I&#8217;ve posted here earlier, and I&#8217;m looking forward to posting some new cool stuff here with fixes for different [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hippieflip.wordpress.com&amp;blog=6200891&amp;post=184&amp;subd=hippieflip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Due to changes in my life (and lazyness) this blog hasnt been updated for quite a while, but interesting things may happen in the future :-) </p>
<p>Hopefully someone have had good use of the few articles I&#8217;ve posted here earlier, and I&#8217;m looking forward to posting some new cool stuff here with fixes for different problems and some tutorials maybe. If you have a problem that you can&#8217;t fix, give me a heads up and I&#8217;ll see if I can manage to fix it, and maybe post an article for reference to others who may have the same/similar problem (computerstuff please, if you have a personal problem, go see your doctor/psychiatrist). :-) </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hippieflip.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hippieflip.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hippieflip.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hippieflip.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hippieflip.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hippieflip.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hippieflip.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hippieflip.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hippieflip.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hippieflip.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hippieflip.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hippieflip.wordpress.com/184/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hippieflip.wordpress.com/184/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hippieflip.wordpress.com/184/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hippieflip.wordpress.com&amp;blog=6200891&amp;post=184&amp;subd=hippieflip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hippieflip.wordpress.com/2010/10/06/necro-blog-well-hopefully-not-anymore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b935bc3cb2a22c5ffb0b4d6efbfd2f4a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scheien</media:title>
		</media:content>
	</item>
		<item>
		<title>Spotify, error 110 (Firewall/Proxy problem)</title>
		<link>http://hippieflip.wordpress.com/2009/07/25/spotify-error-110-firewallproxy-problem/</link>
		<comments>http://hippieflip.wordpress.com/2009/07/25/spotify-error-110-firewallproxy-problem/#comments</comments>
		<pubDate>Sat, 25 Jul 2009 15:49:13 +0000</pubDate>
		<dc:creator>scheien</dc:creator>
				<category><![CDATA[Generelt]]></category>

		<guid isPermaLink="false">http://hippieflip.wordpress.com/?p=166</guid>
		<description><![CDATA[Today I experienced some problems with Spotify. The problem was that I could not log on to Spotify, and it returned an error stating that there was some problems with the firewall settings, also known as Error 110. After checking the firewalls, and confirmed that there was no problem with the rules, I was stuck. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hippieflip.wordpress.com&amp;blog=6200891&amp;post=166&amp;subd=hippieflip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today I experienced some problems with Spotify. The problem was that I could not log on to Spotify, and it returned an error stating that there was some problems with the firewall settings, also known as Error 110. After checking the firewalls, and confirmed that there was no problem with the rules, I was stuck. After searching and surfing for solutions on the net, I found other people experiencing the same problems that I had. </p>
<p>The problem seemed to be with the &#8220;Remember me&#8221; option. Other people that had the same problem just disabled the remember me option, and logged in as usual with their own password. The same solution worked for me. :-)</p>
<p>Just got to love the power of Google :-)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hippieflip.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hippieflip.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hippieflip.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hippieflip.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hippieflip.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hippieflip.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hippieflip.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hippieflip.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hippieflip.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hippieflip.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hippieflip.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hippieflip.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hippieflip.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hippieflip.wordpress.com/166/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hippieflip.wordpress.com&amp;blog=6200891&amp;post=166&amp;subd=hippieflip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hippieflip.wordpress.com/2009/07/25/spotify-error-110-firewallproxy-problem/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b935bc3cb2a22c5ffb0b4d6efbfd2f4a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scheien</media:title>
		</media:content>
	</item>
		<item>
		<title>wlcomm.exe, using excessive amount of resources.</title>
		<link>http://hippieflip.wordpress.com/2009/05/12/wlcomm-exe-using-excessive-amount-of-resources/</link>
		<comments>http://hippieflip.wordpress.com/2009/05/12/wlcomm-exe-using-excessive-amount-of-resources/#comments</comments>
		<pubDate>Tue, 12 May 2009 10:59:56 +0000</pubDate>
		<dc:creator>scheien</dc:creator>
				<category><![CDATA[Problems & solutions]]></category>
		<category><![CDATA[amsn]]></category>
		<category><![CDATA[crash]]></category>
		<category><![CDATA[excessive resources]]></category>
		<category><![CDATA[pidgin]]></category>
		<category><![CDATA[windows live messenger]]></category>
		<category><![CDATA[wlcomm.exe]]></category>
		<category><![CDATA[wlm]]></category>
		<category><![CDATA[wlm contacts server]]></category>

		<guid isPermaLink="false">http://hippieflip.wordpress.com/?p=152</guid>
		<description><![CDATA[I&#8217;ve used the newest version of Windows Live Messenger for some time now, and I&#8217;ve noticed there&#8217;s a bug which is really annoying. What happens is that the WLM Contacts Server (wlcomm.exe) uses excessive amounts of resouces, which eventually leads to a total hang-up for all the applications running. This happens randomly, atleast in my [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hippieflip.wordpress.com&amp;blog=6200891&amp;post=152&amp;subd=hippieflip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve used the newest version of Windows Live Messenger for some time now, and I&#8217;ve noticed there&#8217;s a bug which is really annoying. What happens is that the WLM Contacts Server (wlcomm.exe) uses excessive amounts of resouces, which eventually leads to a total hang-up for all the applications running. This happens randomly, atleast in my case. What happens is that the wlcomm.exe process tend to use from about 15 to 60% of the CPU, and makes the computer run slow, and in worst case a hang-up or a system crash. It may also use excessive amounts of memory, but this hasn&#8217;t happened on my computer.</p>
<p>If you try to kill the wlcomm.exe process from within task manager, you will be logged off WLM. wlcomm.exe will start again when you log in the next time.</p>
<p>After a bit of searching around the net, I found a solution, it&#8217;s not perfect, but atleast it works. You will have two (2) options. The first is to downgrade to an older version of WLM/MSNmessenger, or the second, which is to install a different MSN client like pidgin or amsn. (There are other open source msn clients, just google it :-) )</p>
<p>Note: <em>If you choose to downgrade to an older version of WLM / messenger, you will have to run the Microsoft Install Cleaner after the uninstall of WLM. Otherwise you will get an error while trying to install the older version, with the message that there is a newer version installed. Open the CleanUp Utility and highlight the Windows Live (WL) and Windows Live Messenger (WLM) files. Kudos to the user Bobbye from the techspot forum for this information, see techspot url under sources for more information.<br />
</em></p>
<p>If you have a solution for this error, without downgrading or installing another client, please post the solution in a comment, and I&#8217;ll update this article and include the solution.</p>
<p>Comments appreciated :-)</p>
<p><strong>Sources:</strong></p>
<ul>
<li><a href="http://www.whatsrunning.net/whatsrunning/QueryProcessID.aspx?Process=16377">Information about the wlcomm.exe process</a> (from whatsrunning.com)</li>
<li><a href="http://www.techspot.com/vb/all/windows/t-27478-Bat...%3C/t-125191-Error-80040154-when-signing-in-to-live-messenger-2009.html">Information from a forum thread at techspot.com</a></li>
<li><a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;290301">Windows Installer CleanUp Utility</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hippieflip.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hippieflip.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hippieflip.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hippieflip.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hippieflip.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hippieflip.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hippieflip.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hippieflip.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hippieflip.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hippieflip.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hippieflip.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hippieflip.wordpress.com/152/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hippieflip.wordpress.com/152/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hippieflip.wordpress.com/152/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hippieflip.wordpress.com&amp;blog=6200891&amp;post=152&amp;subd=hippieflip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hippieflip.wordpress.com/2009/05/12/wlcomm-exe-using-excessive-amount-of-resources/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b935bc3cb2a22c5ffb0b4d6efbfd2f4a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scheien</media:title>
		</media:content>
	</item>
		<item>
		<title>Spotify this!</title>
		<link>http://hippieflip.wordpress.com/2009/03/21/spotify-this/</link>
		<comments>http://hippieflip.wordpress.com/2009/03/21/spotify-this/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 15:50:58 +0000</pubDate>
		<dc:creator>scheien</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[channel]]></category>
		<category><![CDATA[invite]]></category>
		<category><![CDATA[irc]]></category>
		<category><![CDATA[playlist]]></category>
		<category><![CDATA[quakenet]]></category>
		<category><![CDATA[share]]></category>
		<category><![CDATA[spotify]]></category>

		<guid isPermaLink="false">http://hippieflip.wordpress.com/?p=144</guid>
		<description><![CDATA[Spotify is a really genius streaming music service, which is invite-only if you don&#8217;t want to pay a monthly fee. You can&#8217;t get an invite you say? Well, you may be able to get an invite through a friend, or by logging on to the Quakenet IRC network and joining the #spotify channel.  Instructions are [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hippieflip.wordpress.com&amp;blog=6200891&amp;post=144&amp;subd=hippieflip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Spotify is a really genius streaming music service, which is invite-only if you don&#8217;t want to pay a monthly fee. You can&#8217;t get an invite you say? Well, you may be able to get an invite through a friend, or by logging on to the Quakenet IRC network and joining the #spotify channel.  Instructions are provided in the topic of the channel. :-)</p>
<p>Go get the invite you want! :D</p>
<p>Got a fresh and funky playlist? Share the URL in a comment :-</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hippieflip.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hippieflip.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hippieflip.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hippieflip.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hippieflip.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hippieflip.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hippieflip.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hippieflip.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hippieflip.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hippieflip.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hippieflip.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hippieflip.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hippieflip.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hippieflip.wordpress.com/144/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hippieflip.wordpress.com&amp;blog=6200891&amp;post=144&amp;subd=hippieflip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hippieflip.wordpress.com/2009/03/21/spotify-this/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b935bc3cb2a22c5ffb0b4d6efbfd2f4a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scheien</media:title>
		</media:content>
	</item>
		<item>
		<title>Symbian &#8220;must have&#8221; apps</title>
		<link>http://hippieflip.wordpress.com/2009/02/18/symbian-must-have-apps/</link>
		<comments>http://hippieflip.wordpress.com/2009/02/18/symbian-must-have-apps/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 11:39:42 +0000</pubDate>
		<dc:creator>scheien</dc:creator>
				<category><![CDATA[Symbian]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[blacklist]]></category>
		<category><![CDATA[location]]></category>
		<category><![CDATA[pyS60]]></category>
		<category><![CDATA[sports tracker]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[step counter]]></category>
		<category><![CDATA[tagger]]></category>
		<category><![CDATA[useful]]></category>
		<category><![CDATA[wellness diary]]></category>

		<guid isPermaLink="false">http://hippieflip.wordpress.com/?p=75</guid>
		<description><![CDATA[A compilation of applications that would be useful for your smartphone. Networking: MidpSSH (SSH1/2 and telnet client) Mobile Web Server Fitness: Step counter (Nokia E66 is not supported, yet..) Sports Tracker Wellness Diary (Data from Sports Tracker and Step Counter can be imported to this app) Utilities: pyS60 [Post @ this blogg] Media: Location Tagger [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hippieflip.wordpress.com&amp;blog=6200891&amp;post=75&amp;subd=hippieflip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A compilation of applications that would be useful for your smartphone.<br />
<strong></strong></p>
<p><strong>Networking:</strong></p>
<ul>
<li><a href="http://www.xk72.com/midpssh/">MidpSSH (SSH1/2 and telnet client)</a></li>
<li><a href="http://opensource.nokia.com/projects/mobile-web-server/">Mobile Web Server</a></li>
</ul>
<p><strong>Fitness:</strong></p>
<ul>
<li><a href="http://betalabs.nokia.com/betas/view/nokia-step-counter">Step counter</a> (Nokia E66 is not supported, yet..)</li>
<li><a href="http://betalabs.nokia.com/betas/view/sports-tracker">Sports Tracker</a></li>
<li><a href="http://betalabs.nokia.com/betas/view/wellness-diary">Wellness Diary</a> (Data from Sports Tracker and Step Counter can be imported to this app)</li>
</ul>
<p><strong>Utilities:</strong></p>
<ul>
<li><a href="http://www.mobilenin.com/pys60/menu.htm">pyS60</a> <a href="http://hippieflip.wordpress.com/2009/02/16/using-python-with-s60/">[Post @ this blogg]</a></li>
</ul>
<p><strong>Media:</strong></p>
<ul>
<li><a href="http://betalabs.nokia.com/betas/view/location-tagger">Location Tagger</a></li>
<li><a href="http://www.twibble.de/">Twibble </a>(twitter app)</li>
</ul>
<p>Useful applications will be added to the list. If you have an application that you would like to add to this list, post a comment.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hippieflip.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hippieflip.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hippieflip.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hippieflip.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hippieflip.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hippieflip.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hippieflip.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hippieflip.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hippieflip.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hippieflip.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hippieflip.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hippieflip.wordpress.com/75/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hippieflip.wordpress.com/75/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hippieflip.wordpress.com/75/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hippieflip.wordpress.com&amp;blog=6200891&amp;post=75&amp;subd=hippieflip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hippieflip.wordpress.com/2009/02/18/symbian-must-have-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b935bc3cb2a22c5ffb0b4d6efbfd2f4a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scheien</media:title>
		</media:content>
	</item>
		<item>
		<title>Using Python with S60.</title>
		<link>http://hippieflip.wordpress.com/2009/02/16/using-python-with-s60/</link>
		<comments>http://hippieflip.wordpress.com/2009/02/16/using-python-with-s60/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 11:31:03 +0000</pubDate>
		<dc:creator>scheien</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[School]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[mobilenin]]></category>
		<category><![CDATA[Nokia]]></category>
		<category><![CDATA[pyS60]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[S60]]></category>
		<category><![CDATA[Sourceforge.net]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://hippieflip.wordpress.com/?p=50</guid>
		<description><![CDATA[Want to write an application for your smartphone but don&#8217;t have the C++ knowledge required or want to write in another language (or perhaps you know Python already and want to utilitize your knowledge)? Why not use Python? For all Series 60 (S60)  enabled smartphones Nokia has released a runtime and shell interpreter for Python [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hippieflip.wordpress.com&amp;blog=6200891&amp;post=50&amp;subd=hippieflip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Want to write an application for your smartphone but don&#8217;t have the C++ knowledge required or want to write in another language (or perhaps you know Python already and want to utilitize your knowledge)? Why not use Python? For all Series 60 (S60)  enabled smartphones Nokia has released a runtime and shell interpreter for Python that let&#8217;s you write your own Python scripts / applications with a bit more ease than writing it in C++.</p>
<p>The Python package for the S60 are called &#8220;PyS60&#8243; and this can be downloaded from Sourceforge.net <a href="http://sourceforge.net/projects/pys60">[Link]</a></p>
<p>Look at this page called <a href="http://www.mobilenin.com/">Mobilenin</a> for some pyS60 tutorials. <a href="http://www.mobilenin.com/pys60/menu.htm">[Link]</a><br />
The pyS60 tutorials are written by Jurgen Scheible and are easy to follow to create some nice python application examples.</p>
<p>Jurgen Scheible had a presentation at my university about a year ago, where he talked about Python for the Series 60 phones. He also showed some examples and let the attendants write some simple test applications. It&#8217;s worth to take a look at, if you would like to write a program in a different language than C++ or Java :-)</p>
<p>Have fun!</p>
<p>&#8220;If it moves, compile it.&#8221; -GentooLinux</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hippieflip.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hippieflip.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hippieflip.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hippieflip.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hippieflip.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hippieflip.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hippieflip.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hippieflip.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hippieflip.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hippieflip.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hippieflip.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hippieflip.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hippieflip.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hippieflip.wordpress.com/50/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hippieflip.wordpress.com&amp;blog=6200891&amp;post=50&amp;subd=hippieflip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hippieflip.wordpress.com/2009/02/16/using-python-with-s60/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b935bc3cb2a22c5ffb0b4d6efbfd2f4a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scheien</media:title>
		</media:content>
	</item>
		<item>
		<title>YouTube &#8211; &#8216;disorganized fun&#8217; on a REALLY REALLY fun beat!!</title>
		<link>http://hippieflip.wordpress.com/2009/02/10/youtube-disorganized-fun-on-a-really-really-fun-beat/</link>
		<comments>http://hippieflip.wordpress.com/2009/02/10/youtube-disorganized-fun-on-a-really-really-fun-beat/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 22:50:55 +0000</pubDate>
		<dc:creator>scheien</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Youtube]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[movieclip]]></category>

		<guid isPermaLink="false">http://hippieflip.wordpress.com/?p=56</guid>
		<description><![CDATA[Youtube url This guy is really good at playing keyboard :D<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hippieflip.wordpress.com&amp;blog=6200891&amp;post=56&amp;subd=hippieflip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<span style="text-align:center; display: block;"><a href="http://hippieflip.wordpress.com/2009/02/10/youtube-disorganized-fun-on-a-really-really-fun-beat/"><img src="http://img.youtube.com/vi/LoFurLevE28/2.jpg" alt="" /></a></span>
<p><a href="http://www.youtube.com/watch?v=LoFurLevE28">Youtube url</a></p>
<p>This guy is really good at playing keyboard :D</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hippieflip.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hippieflip.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hippieflip.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hippieflip.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hippieflip.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hippieflip.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hippieflip.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hippieflip.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hippieflip.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hippieflip.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hippieflip.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hippieflip.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hippieflip.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hippieflip.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hippieflip.wordpress.com&amp;blog=6200891&amp;post=56&amp;subd=hippieflip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hippieflip.wordpress.com/2009/02/10/youtube-disorganized-fun-on-a-really-really-fun-beat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b935bc3cb2a22c5ffb0b4d6efbfd2f4a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scheien</media:title>
		</media:content>
	</item>
		<item>
		<title>Hooking up GH:WT drums for Reason.</title>
		<link>http://hippieflip.wordpress.com/2009/02/02/hooking-up-ghwt-drums-for-reason/</link>
		<comments>http://hippieflip.wordpress.com/2009/02/02/hooking-up-ghwt-drums-for-reason/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 22:52:29 +0000</pubDate>
		<dc:creator>scheien</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[drumkit]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[MIDI]]></category>
		<category><![CDATA[Playstation 3]]></category>
		<category><![CDATA[Reason]]></category>
		<category><![CDATA[virtual]]></category>
		<category><![CDATA[xpadder]]></category>

		<guid isPermaLink="false">http://hippieflip.wordpress.com/?p=13</guid>
		<description><![CDATA[Just a simple tutorial of how to use the GH:WT drumkit with Propellerheads Reason music software.  You don&#8217;t have to use Reason, as you can use any music application that support listening to the computer keyboard, interpret letters and play the right sound/tangent or whatever :-) (Also excuse me for any typos, grammatical errors  and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hippieflip.wordpress.com&amp;blog=6200891&amp;post=13&amp;subd=hippieflip&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Just a simple tutorial of how to use the GH:WT drumkit with Propellerheads Reason music software.  You don&#8217;t have to use Reason, as you can use any music application that support listening to the computer keyboard, interpret letters and play the right sound/tangent or whatever :-) <span id="more-13"></span> (Also excuse me for any typos, grammatical errors  and so on. Give me feedback and I&#8217;ll fix it asap.)</p>
<p><em>If this tutorial helped you in some way or another, be nice and give me some feedback :-)</em></p>
<p>Let&#8217;s just start from the top. The requirements for this tutorial is:</p>
<ul>
<li>A computer. (of course ;-) )</li>
<li>Propellerheads Reason installed. (tested with v3.0, would probably work with newer/newest version.)</li>
<li>Guitar Hero: World Tour drumkit. (Rock Band drumkit would probably work too)</li>
<li>Xpadder. <a title="Xpadder download." href="http://fileforum.betanews.com/sendfile/1148671810/1/1233609427.4b4c0812ea4f1e0938f6cddf480a25a4dae63ad7/xpadder_gamepad_profiler.exe" target="_blank">Download Xpadder.</a></li>
<li>A virtual keyboard. <a title="Virtual MIDI keyboard." href="http://downloads.sourceforge.net/vmpk/vmpk-0.2.2-setup.exe?modtime=1224425983&amp;big_mirror=0" target="_blank">Download Virtual MIDI keyboard.</a> (You can use another virtual keyboard software if you like. This one doesn&#8217;t have a &#8220;always on top&#8221; function, which could be very neat to have.)</li>
<li>A virtual MIDI port. <a title="Virtual MIDI router." href="http://www.sonymediasoftware.com/download/link?id=2856.0" target="_blank">Download Virtual MIDI router</a> (If you&#8217;re running a 64 bit OS, you should consider using another Virtual MIDI driver.  LoopBe30 v1.5 is a possible alternative, I havent tried this since I run a 32bit OS. If you try this, please give me feedback so I can update this tutorial with it. ty :-) )</li>
</ul>
<p>The first thing you would have to do, is connect the usb dongle for the drumkit to a free usbslot on your computer. Turn on the drumkit and let Windows autoinstall the drumkit.</p>
<p>When the drumkit is set up, continue to install the virtual MIDI port. For this installation, you&#8217;ll need to extract the downloaded file to a folder of your choice. Then head on to &#8220;Add Hardware&#8221; wizard in Control Panel.</p>
<p>Start the Wizard by double clicking it. In the first window, choose &#8220;Next&#8221; to proceed.<br />
<img class="alignnone size-full wp-image-31" title="pic1" src="http://hippieflip.files.wordpress.com/2009/02/pic1.jpg?w=420&#038;h=327" alt="pic1" width="420" height="327" /></p>
<p>Choose &#8220;Yes, I have already connected the hardware&#8221; and click &#8220;Next&#8221;.<br />
<img class="alignnone size-full wp-image-31" title="pic2" src="http://hippieflip.files.wordpress.com/2009/02/pic2.jpg?w=420&#038;h=327" alt="pic2" width="420" height="327" /></p>
<p>Browse down to the bottom and select &#8220;Add a new hardware device&#8221; and click &#8220;Next&#8221;.<br />
<img class="alignnone size-full wp-image-31" title="pic3" src="http://hippieflip.files.wordpress.com/2009/02/pic3.jpg?w=420&#038;h=327" alt="pic3" width="420" height="327" /></p>
<p>Select the &#8220;Install the hardware that I manually select from a list (Advanced)&#8221; option and click &#8220;Next&#8221;.<br />
<img class="alignnone size-full wp-image-31" title="pic4" src="http://hippieflip.files.wordpress.com/2009/02/pic4.jpg?w=420&#038;h=327" alt="pic4" width="420" height="327" /></p>
<p>Browse the list and find &#8220;Sound, video and game controllers&#8221; option, select that and click &#8220;Next&#8221;.<br />
<img class="alignnone size-full wp-image-31" title="pic1" src="http://hippieflip.files.wordpress.com/2009/02/pic5.jpg?w=420&#038;h=327" alt="pic1" width="420" height="327" /></p>
<p>Click the &#8220;Have disk&#8230;&#8221; button.<br />
<img class="alignnone size-full wp-image-31" title="pic1" src="http://hippieflip.files.wordpress.com/2009/02/pic6.jpg?w=420&#038;h=327" alt="pic1" width="420" height="327" /></p>
<p>Click the &#8220;Browse&#8221; button.<br />
<img class="alignnone size-full wp-image-31" title="pic1" src="http://hippieflip.files.wordpress.com/2009/02/pic7.jpg?w=420&#038;h=327" alt="pic7" width="420" height="327" /></p>
<p>Browse to the folder where you extracted the downloaded archive.<br />
<img class="alignnone size-full wp-image-31" title="pic8" src="http://hippieflip.files.wordpress.com/2009/02/pic82.jpg?w=420&#038;h=327" alt="pic8" width="420" height="327" /></p>
<p>You may get an warning that the software hasn&#8217;t passed Windows Logo testing. Click &#8220;Continue anyway&#8221;.<br />
<img class="alignnone size-full wp-image-31" title="pic1" src="http://hippieflip.files.wordpress.com/2009/02/pic9.jpg?w=420&#038;h=327" alt="pic1" width="420" height="327" /></p>
<p>Select the &#8220;Sonic Foundry Virtual MIDI router (x86)&#8221; and click &#8220;Next&#8221;.<br />
<img class="alignnone size-full wp-image-31" title="pic1" src="http://hippieflip.files.wordpress.com/2009/02/pic10.jpg?w=420&#038;h=327" alt="pic1" width="420" height="327" /></p>
<p>Click &#8220;Next&#8221;.<br />
<img class="alignnone size-full wp-image-31" title="pic1" src="http://hippieflip.files.wordpress.com/2009/02/pic11.jpg?w=420&#038;h=327" alt="pic1" width="420" height="327" /></p>
<p>Another warning about software that hasn&#8217;t passed Windows Logo testing. Click &#8220;Continue anyway&#8221; and let the installation begin.<br />
<img class="alignnone size-full wp-image-31" title="pic1" src="http://hippieflip.files.wordpress.com/2009/02/pic12.jpg?w=420&#038;h=327" alt="pic1" width="420" height="327" /></p>
<p>Choose how many virtual midi ports you&#8217;d like. Ranging from 1 (minimum) and 4 (maximum) and click &#8220;Ok&#8221;.<br />
<img class="alignnone size-full wp-image-31" title="pic1" src="http://hippieflip.files.wordpress.com/2009/02/pic13.jpg?w=420&#038;h=327" alt="pic1" width="420" height="327" /></p>
<p>Click &#8220;Finish&#8221; to close the window. If asked to reboot, do so.<br />
<img class="alignnone size-full wp-image-31" title="pic1" src="http://hippieflip.files.wordpress.com/2009/02/pic14.jpg?w=420&#038;h=327" alt="pic1" width="420" height="327" /></p>
<p>Well well, all good so far. Now well install a virtual MIDI keyboard that let&#8217;s you map keyboard buttons to specific tangents. For this purpose, I used an application called Virtual MIDI Keyboard. First out, browse to the folder you downloaded the file to. Start the installation wizard, and just click through it.</p>
<p>If everything is going according to the plan, we&#8217;re now ready to set up the drums with xpadder. Fire up Xpadder by double clicking the Xpadder.exe file in the folder where you extracted the files. Once Xpadder are running, click the &#8220;Game controller&#8221; button on the left side and choose &#8220;New&#8221;. This will create a new empty controller layout with a new preferences window where you are presented with a couple of options. Click the &#8220;Button&#8221; tab, and power on the drumkit. Hit the different drums to add them to the layout. Use the mousepointer to arrange the buttons as you like. I placed mine like this:</p>
<p>Yellow      Orange</p>
<p>Red    Blue     Green</p>
<p>Pedal</p>
<p>Click the &#8220;Finish&#8221; tab, and click the &#8220;Close&#8221; button in the bottom left corner. You are now all set. The drumkit buttons are now represented in the Xpadder window. Click each button to select which keyboard key to map the drum to.<br />
Example layout: A = Pedal, S = Red, D = Blue, F =  Green, G = Yellow, H = Orange.</p>
<p>By doing these steps, we have mapped each drum to a specific key on the keyboard.</p>
<p>Let&#8217;s fire up the Virtual MIDI keyboard and assign the drumkeys to the tangents we wish to use. As for the ReDrum drum computer in Reason, which can hold one sound for each slot where as there are 10 slots in total. The first tangent on the left are mapped to the first redrum slot and so on to the 10th slot and tangent. This is equal to a real MIDI keyboard connected to the computer. The first 10 tangents from the left are possible to use with ReDrum, whereas you can use all the tangents with different devices, as with the NN-19 digital sampler. But since the GH drumkit just have 6 &#8220;buttons&#8221;, we will just use the 6 first tangents from the left on the Virtual MIDI keyboard.</p>
<p>The main interface in Virtual MIDI keyboard is, yes you guessed right, a keyboard. Go to &#8220;Edit&#8221; on the filemenu, and choose &#8220;Connection&#8221;. On &#8220;Output MIDI connection&#8221; select &#8220;1: Sonic Foundry MIDI router&#8221;. Now our virtual keyboard will output all midi to Sonic Foundry Router slot 1.</p>
<p>Now we&#8217;ll map the appropriate keys on the keyboard to their on specific tangent on the virtual keyboard. Go to &#8220;Edit&#8221; on the filemenu, select &#8220;Keyboard map &gt;&#8221; and then &#8220;Edit..&#8221;. As you can see in the new window, it has a table with 2 columns. The left column represents the tangents, from left to right (0 to 59), and the right column represents the key associated with the tangent. We&#8217;ll start with 0 in the left column, which we will map to the letter &#8220;A&#8221;, as we mapped the pedal on the drumkit to and so on.<br />
Example:<br />
0 &#8211; A (Pedal)<br />
1 &#8211; S (Red drum)<br />
2 &#8211; D (Blue drum)<br />
3 &#8211; F (Green drum)<br />
4 &#8211; G (Yellow drum)<br />
5 &#8211; H (Orange drum)</p>
<p>You can of course map your keys as you like. As I mentioned earlier, the ReDrum drum computer has a total of ten slots which you can use. The tangent on the left (zero) will be a bass drum, and so on. Map your keys so they match the appropriate slot in the drum computer. You&#8217;ll figure it out :-)</p>
<p>Now we&#8217;re ready to make some noise! Fire up Reason with a new empty track. The first thing we have to do before we can make some noise is to tell Reason to listen to the right MIDI port. Click the &#8220;Edit&#8221; item on the filemenu, and select &#8220;Preferences&#8221; on the bottom. In the preferences window, select &#8220;Control surfaces and Keyboards&#8221; on the top. Then you click the &#8220;Add&#8221; button down to the left. On &#8220;Manufacturer&#8221; select &#8220;&lt;Other&gt;&#8221;. The model you should select is &#8220;Basic MIDI keyboard&#8221;. You can name this keyboard whatever you want, for example &#8220;My virtual keyboard&#8221;. The most important thing here, is to get the MIDI input port right. Select &#8220;1: Sonic Foundry MIDI Router&#8221;. Because this is the one we selected to use in the Virtual MIDI keyboard software. They have to match, otherwise it won&#8217;t work. Click &#8220;OK&#8221; to save the new keyboard and click the red &#8220;X&#8221; in the top right corner of the preferences window to close it.</p>
<p>Now we&#8217;re ready to make some noise! Add a new ReDrum device by clicking &#8220;Create&#8221; on the filemenu and then selecting ReDrum drum computer from the list. Load up a set of songs to the drum computer and try tapping the drums a bit. Cool eh?</p>
<p>I guess you won&#8217;t read this since you are making so much noise right now, but I&#8217;ll write it anyway. There are some technical problems with this solution. The drums seem to be a bit delayed. I&#8217;ve searched the web for this, and found out that you can adjust this by using a usb-midi cable and a specific application provided by redoctane. Read <a title="WT drumkit" href="http://www.evilavatar.com/forums/showthread.php?s=b7afae9d2641573988a41b882dc55626&amp;p=1677781#post1677781" target="_blank">this thread</a> for more information. Also there are some problems with the Virtual MIDI keyboard, which is that it has no option for keeping it on top or to prevent it from losing focus. When it lose focus it won&#8217;t recieve the signals from Xpadder.</p>
<p>I lay it out, for you to play it out. ;D</p>
<p>Give some feedback if you want to. All feedback are appreciated, doesn&#8217;t matter if it&#8217;s comments, criticism, tips or just plain chatting :-)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hippieflip.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hippieflip.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hippieflip.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hippieflip.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/hippieflip.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/hippieflip.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/hippieflip.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/hippieflip.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hippieflip.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hippieflip.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hippieflip.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hippieflip.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hippieflip.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hippieflip.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hippieflip.wordpress.com&amp;blog=6200891&amp;post=13&amp;subd=hippieflip&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://hippieflip.wordpress.com/2009/02/02/hooking-up-ghwt-drums-for-reason/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b935bc3cb2a22c5ffb0b4d6efbfd2f4a?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">scheien</media:title>
		</media:content>

		<media:content url="http://hippieflip.files.wordpress.com/2009/02/pic1.jpg" medium="image">
			<media:title type="html">pic1</media:title>
		</media:content>

		<media:content url="http://hippieflip.files.wordpress.com/2009/02/pic2.jpg" medium="image">
			<media:title type="html">pic2</media:title>
		</media:content>

		<media:content url="http://hippieflip.files.wordpress.com/2009/02/pic3.jpg" medium="image">
			<media:title type="html">pic3</media:title>
		</media:content>

		<media:content url="http://hippieflip.files.wordpress.com/2009/02/pic4.jpg" medium="image">
			<media:title type="html">pic4</media:title>
		</media:content>

		<media:content url="http://hippieflip.files.wordpress.com/2009/02/pic5.jpg" medium="image">
			<media:title type="html">pic1</media:title>
		</media:content>

		<media:content url="http://hippieflip.files.wordpress.com/2009/02/pic6.jpg" medium="image">
			<media:title type="html">pic1</media:title>
		</media:content>

		<media:content url="http://hippieflip.files.wordpress.com/2009/02/pic7.jpg" medium="image">
			<media:title type="html">pic1</media:title>
		</media:content>

		<media:content url="http://hippieflip.files.wordpress.com/2009/02/pic82.jpg" medium="image">
			<media:title type="html">pic8</media:title>
		</media:content>

		<media:content url="http://hippieflip.files.wordpress.com/2009/02/pic9.jpg" medium="image">
			<media:title type="html">pic1</media:title>
		</media:content>

		<media:content url="http://hippieflip.files.wordpress.com/2009/02/pic10.jpg" medium="image">
			<media:title type="html">pic1</media:title>
		</media:content>

		<media:content url="http://hippieflip.files.wordpress.com/2009/02/pic11.jpg" medium="image">
			<media:title type="html">pic1</media:title>
		</media:content>

		<media:content url="http://hippieflip.files.wordpress.com/2009/02/pic12.jpg" medium="image">
			<media:title type="html">pic1</media:title>
		</media:content>

		<media:content url="http://hippieflip.files.wordpress.com/2009/02/pic13.jpg" medium="image">
			<media:title type="html">pic1</media:title>
		</media:content>

		<media:content url="http://hippieflip.files.wordpress.com/2009/02/pic14.jpg" medium="image">
			<media:title type="html">pic1</media:title>
		</media:content>
	</item>
	</channel>
</rss>
