<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/1.5.1.2" -->
<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/"
>

<channel>
	<title>Bitfodder</title>
	<link>http://www.bitfodder.com</link>
	<description>Just a lab book. Bits for search engines. Bit fodder.</description>
	<pubDate>Sun, 02 Dec 2007 00:21:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=1.5.1.2</generator>
	<language>en</language>

		<item>
		<title>Removing installer limitations</title>
		<link>http://www.bitfodder.com/2007/12/01/removing-installer-limitations/</link>
		<comments>http://www.bitfodder.com/2007/12/01/removing-installer-limitations/#comments</comments>
		<pubDate>Sun, 02 Dec 2007 00:16:20 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>Uncategorized</category>
		<guid>http://www.bitfodder.com/2007/12/01/removing-installer-limitations/</guid>
		<description><![CDATA[	I am running Windows 2003 on my desktop and unfortunately many installers refuse to even start on this platform - even though most XP and 2000 binaries will run without any issue. It is possible to circumvent these checks using a tool called Orca (a free download that you can get from Microsoft). Open the [...]]]></description>
			<content:encoded><![CDATA[	<p>I am running Windows 2003 on my desktop and unfortunately many installers refuse to even start on this platform - even though most XP and 2000 binaries will run without any issue. It is possible to circumvent these checks using a tool called Orca (a free download that you can get from <a href="http://download.microsoft.com">Microsoft</a>). Open the .msi file in Orca and look for the &#8220;LaunchCondition&#8221; property. You will typically find something there that looks like:<br />
<code><br />
((VersionNT=500 AND ServicePackLevel>3) OR (VersionNT=501 AND ServicePackLevel>1) OR VersionNT=600) AND (NOT VersionNT64)<br />
</code></p>
	<p>You will need to modify the above condition to include your current OS (in my case Windows 2003). Use the below table to find out what is the versionNT for your OS.</p>
	<table>
<tbody>
<tr>
<th>System</th>
	<th>
VersionNT</th>
	<th>
	<p>WindowsBuild</th>
	<th>
ServicePackLevel</th>
 </tr>
	<tr>
<td>Windows&nbsp;2000</td>
	<td>500</td>
	<td>2195</td>
	<td><!----></td>
 </tr>
	<tr>
<td>Windows&nbsp;2000 + Service Pack 1</td>
	<td>500</td>
	<td>2195</td>
	<td>1</td>
 </tr>
	<tr>
<td>Windows&nbsp;2000 + Service Pack 2</td>
	<td>500</td>
	<td>2195</td>
	<td>2</td>
 </tr>
	<tr>
<td>Windows&nbsp;2000 + Service Pack 3</td>
	<td>500</td>
	<td>2195</td>
	<td>3</td>
 </tr>
	<tr>
<td>Windows&nbsp;2000 + Service Pack 4</td>
	<td>500</td>
	<td>2195</td>
	<td>4</td>
 </tr>
	<tr>
<td>Windows&nbsp;XP</td>
	<td>501</td>
	<td>2600</td>
	<td><!----></td>
 </tr>
	<tr>
<td>Windows&nbsp;XP SP1</td>
	<td>501</td>
	<td>2600</td>
	<td>1</td>
 </tr>
	<tr>
<td>Windows&nbsp;XP SP2</td>
	<td>501</td>
	<td>2600</td>
	<td>2</td>
 </tr>
	<tr>
<td>Windows Server&nbsp;2003 family</td>
	<td>502</td>
	<td>3790</td>
	<td><!----></td>
 </tr>
	<tr>
<td>Windows Server&nbsp;2003 SP1</td>
	<td>502</td>
	<td>3790</td>
	<td>1</td>
 </tr>
	<tr>
<td>Windows Server&nbsp;2003 SP2</td>
	<td>502</td>
	<td>3790</td>
	<td>2</td>
 </tr>
	<tr>
<td>Windows&nbsp;Vista</td>
	<td>600</td>
	<td>6000</td>
	<td><!----></td>
 </tr>
	<tr>
<td>Windows&nbsp;Vista SP1</td>
	<td>600</td>
	<td>6001</td>
	<td>1</td>
 </tr>
	<tr>
<td>Windows Server&nbsp;2008</td>
	<td>600</td>
	<td>6001</td>
	<td><!----></td>
 </tr>
 </tbody>
</table>
	<p>If that doesn&#8217;t do the trick, search for other occurences of the versionNT property using Orca&#8217;s Edit/Find.</p>
	<p>It goes without saying that bypassing the installer OS checks doesn&#8217;t mean that the software you are installing will eventually work. As a matter of fact you could even potentially mess up your system. So use with caution and at your own risks&#8230;</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.bitfodder.com/2007/12/01/removing-installer-limitations/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>How to enable/disable devices in Windows from the command-line?</title>
		<link>http://www.bitfodder.com/2006/01/10/how-to-enabledisable-devices-in-windows-from-the-command-line/</link>
		<comments>http://www.bitfodder.com/2006/01/10/how-to-enabledisable-devices-in-windows-from-the-command-line/#comments</comments>
		<pubDate>Tue, 10 Jan 2006 23:00:22 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>Uncategorized</category>
		<guid>http://www.bitfodder.com/2006/01/10/how-to-enabledisable-devices-in-windows-from-the-command-line/</guid>
		<description><![CDATA[	Download DevCon from Microsoft.
	Find the  instance ID of your CD-ROM drive:
	devcon find *CDROM*
	Now, use this instance ID (everything before the : sign) to disable the drive:

devcon disable "@IDE\CDROMMATSHITA_UJDA755ZDVD/CDRW_______________1.2
0____\5&#038;3CCF215&#038;0&#038;0.0.0"
IDE\CDROMMATSHITA_UJDA755ZDVD/CDRW_______________1.20____\5&#038;3CCF215&#038;0&#038;0.0.0: Disabled
1 device(s) disabled.
	devcon enable "@IDE\CDROMMATSHITA_UJDA755ZDVD/CDRW_______________1.20
____\5&#038;3CCF215&#038;0&#038;0.0.0"
IDE\CDROMMATSHITA_UJDA755ZDVD/CDRW_______________1.20____\5&#038;3CCF215&#038;0&#038;0.0.0: Enabled
1 device(s) enabled.
	Do not forget to add the @ sign before the device ID.  Haven&#8217;t seen any mention of this [...]]]></description>
			<content:encoded><![CDATA[	<p><a href="http://support.microsoft.com/?kbid=311272">Download DevCon</a> from Microsoft.</p>
	<p>Find the  instance ID of your CD-ROM drive:</p>
	<p><code>devcon find *CDROM*</code></p>
	<p>Now, use this instance ID (everything before the : sign) to disable the drive:<br />
<code><br />
devcon disable "@IDE\CDROMMATSHITA_UJDA755ZDVD/CDRW_______________1.2<br />
0____\5&#038;3CCF215&#038;0&#038;0.0.0"<br />
IDE\CDROMMATSHITA_UJDA755ZDVD/CDRW_______________1.20____\5&#038;3CCF215&#038;0&#038;0.0.0: Disabled<br />
1 device(s) disabled.</p>
	<p>devcon enable "@IDE\CDROMMATSHITA_UJDA755ZDVD/CDRW_______________1.20<br />
____\5&#038;3CCF215&#038;0&#038;0.0.0"<br />
IDE\CDROMMATSHITA_UJDA755ZDVD/CDRW_______________1.20____\5&#038;3CCF215&#038;0&#038;0.0.0: Enabled<br />
1 device(s) enabled.</code></p>
	<p><strong>Do not forget to add the @ sign before the device ID</strong>.  Haven&#8217;t seen any mention of this in help (found it in examples).<br />
And unfortunately if you don&#8217;t put it you will not get any error message - it will just not do anything, as if you didn&#8217;t have enough permission.<br />
You will also need to enclose the device ID in quotes.</p>
	<p>More examples <a href="http://www.microsoft.com/technet/prodtechnol/windowsserver2003/library/TechRef/0b077318-2bac-4399-8230-461d5d2a055f.mspx">here</a>.</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.bitfodder.com/2006/01/10/how-to-enabledisable-devices-in-windows-from-the-command-line/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Minitel 2.0</title>
		<link>http://www.bitfodder.com/2005/10/06/minitel-20/</link>
		<comments>http://www.bitfodder.com/2005/10/06/minitel-20/#comments</comments>
		<pubDate>Fri, 07 Oct 2005 05:54:16 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>Uncategorized</category>
		<guid>http://www.bitfodder.com/2005/10/06/minitel-20/</guid>
		<description><![CDATA[	Forget about Web 2.0; that&#8217;s already old news. Google is planning something much bigger: Minitel 2.0!
	&#8230; ok, comparing this to the French Minitel is stretching things a little bit. But think about it: when was the last time that one single entity owned the terminal, the pipes and the services?
]]></description>
			<content:encoded><![CDATA[	<p>Forget about <a href="http://www.kozoru.com/archives/2005/10/video_kozoru_on.html">Web 2.0</a>; that&#8217;s already old news. Google is planning something much bigger: <a href="http://richardbrandt.blogs.com/richard_brandt_on_google/2005/10/google_vs_micro.html">Minitel 2.0</a>!</p>
	<p>&#8230; ok, comparing this to the French <a href="http://en.wikipedia.org/wiki/Minitel">Minitel</a> is stretching things a little bit. But think about it: when was the last time that one single entity owned the terminal, the pipes and the services?</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.bitfodder.com/2005/10/06/minitel-20/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Blog layout was broken in IE</title>
		<link>http://www.bitfodder.com/2005/09/28/blog-layout-was-broken-in-ie/</link>
		<comments>http://www.bitfodder.com/2005/09/28/blog-layout-was-broken-in-ie/#comments</comments>
		<pubDate>Wed, 28 Sep 2005 18:25:28 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>Uncategorized</category>
		<guid>http://www.bitfodder.com/2005/09/28/blog-layout-was-broken-in-ie/</guid>
		<description><![CDATA[	Note to self: do not use italics or emphasis tags in posts. It breaks the site layout in IE (and since I use Firefox or Opera it took me a while to even realize it).
(and now using Flock too - testing authoring tool here. Cool. Missing the &#8220;del&#8221; button. More details later.)
]]></description>
			<content:encoded><![CDATA[	<p>Note to self: do not use italics or emphasis tags in posts. It breaks the site layout in IE (and since I use <a href="http://www.getfirefox.com">Firefox</a> or <a href="http%20://www.opera.com">Opera</a> it took me a while to even realize it).
<p>(and now using <a href="http://www.flock.com">Flock</a> too - testing authoring tool here. Cool. Missing the &#8220;del&#8221; button. More details later.)</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.bitfodder.com/2005/09/28/blog-layout-was-broken-in-ie/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Pandora (again)</title>
		<link>http://www.bitfodder.com/2005/09/10/pandora-again/</link>
		<comments>http://www.bitfodder.com/2005/09/10/pandora-again/#comments</comments>
		<pubDate>Sun, 11 Sep 2005 06:07:04 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>Gadgets</category>
	<category>Music</category>
		<guid>http://www.bitfodder.com/2005/09/10/pandora-again/</guid>
		<description><![CDATA[	I described in an earlier post the basics of Pandora. I realize that I had barely scratched the surface&#8230; Creating one station based on one artist works great, and most people might just stop there since Pandora does such a nice job at suggesting other tunes - but it is just the beginning. Not only [...]]]></description>
			<content:encoded><![CDATA[	<p>I described in <a href="http://www.bitfodder.com/2005/09/08/pandora-and-the-music-genome-project/">an earlier post</a> the basics of <a href="http://www.pandora.com">Pandora</a>. I realize that I had barely scratched the surface&#8230; Creating <strong>one station</strong> based on <strong>one artist</strong> works great, and most people might just stop there since Pandora does such a nice job at suggesting other tunes - but it is just the beginning. Not only can you vote (like/dislike) on what you hear to help the engine narrow your selections, you can also refine (or on the contrary diversify) your station by adding more artists to the mix! For instance, my <a href="http://www.amazon.com/exec/obidos/redirect?tag=eichlerremod-20%26link_code=xm2%26camp=2025%26creative=165953%26path=http://www.amazon.com/gp/redirect.html%253fASIN=B00005BC2Z%2526tag=eichlerremod-20%2526lcode=xm2%2526cID=2025%2526ccmID=165953%2526location=/o/ASIN/B00005BC2Z%25253FSubscriptionId=0EMV44A9A5YT1RVDGZ82" title="View product details at Amazon">Placebo</a> station was full of trendy MTV posers such as Good Charlotte and Blink 82 - certainly not what I wanted to hear. Placebo is dark, subversive, ambiguous (try <a href="http://www.amazon.com/exec/obidos/redirect?tag=eichlerremod-20%26link_code=xm2%26camp=2025%26creative=165953%26path=http://www.amazon.com/gp/redirect.html%253fASIN=B00004WPZY%2526tag=eichlerremod-20%2526lcode=xm2%2526cID=2025%2526ccmID=165953%2526location=/o/ASIN/B00004WPZY%25253FSubscriptionId=0EMV44A9A5YT1RVDGZ82" title="View product details at Amazon">Pure Morning</a> or <a href="http://www.amazon.com/exec/obidos/redirect?tag=eichlerremod-20%26link_code=xm2%26camp=2025%26creative=165953%26path=http://www.amazon.com/gp/redirect.html%253fASIN=B00000J7KM%2526tag=eichlerremod-20%2526lcode=xm2%2526cID=2025%2526ccmID=165953%2526location=/o/ASIN/B00000J7KM%25253FSubscriptionId=0EMV44A9A5YT1RVDGZ82" title="View product details at Amazon">Nancy Boy</a>). I had to &#8220;drag down&#8221; the mood of the station, add some depression to the mix: what about some Bauhaus, New Order and Bush (the band - I don&#8217;t want to get <a href="http://today.reuters.com/news/newsArticle.aspx?type=domesticNews&#038;storyID=2005-09-06T061713Z_01_ROB560734_RTRIDST_0_USREPORT-BUSH-DC.XML">that</a> depressed!)? Yes, a little dated, but it helped. You can listen to it <a href="http://www.pandora.com/?sc=sh70361">here</a>.</p>
	<p>Kind of reminds me of my high-school days, trading obscure vinyls, making compilation tapes for friends and DJ-ing on college radios! Fun.</p>
	<p>By the way, you can read more about Pandora on <a href="http://www.techcrunch.com/wp-trackback.php?p=167">TechCrunch</a>.<br />
And here are the links to the stations described in my previous post (and slightly tweaked since):</p>
	<ul>
	<li><a href="http://www.pandora.com/?sc=sh70361">The Placebo</a></li>
	<li><a href="http://www.pandora.com/?sc=sh81071">Kruder The Thief</a></li>
	<li><a href="http://www.pandora.com/?sc=sh70361">The Keren Orton Connection</a></li>
	</ul>
]]></content:encoded>
			<wfw:commentRSS>http://www.bitfodder.com/2005/09/10/pandora-again/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>SFO  - political aftermath</title>
		<link>http://www.bitfodder.com/2005/09/10/sfo/</link>
		<comments>http://www.bitfodder.com/2005/09/10/sfo/#comments</comments>
		<pubDate>Sun, 11 Sep 2005 05:01:13 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>Uncategorized</category>
		<guid>http://www.bitfodder.com/2005/09/10/sfo/</guid>
		<description><![CDATA[	Took this pic while waiting for someone at SFO&#8230; I realize I don&#8217;t even have the name of the artist(s)&#8230;
Check the middle left square: &#8220;political aftermath&#8221; - the one we&#8217;re about to enter is not going to be pretty. I just hope it&#8217;ll be as ugly as the event that triggered it.
	


]]></description>
			<content:encoded><![CDATA[	<p>Took this pic while waiting for someone at <a href="http://www.flysfo.com/">SFO</a>&#8230; I realize I don&#8217;t even have the name of the artist(s)&#8230;<br />
Check the middle left square: &#8220;political aftermath&#8221; - the one we&#8217;re about to enter is not going to be pretty. I just hope it&#8217;ll be as ugly as <a href="http://news.yahoo.com/fc/World/Hurricanes_and_Tropical_Storms;_ylt=AlDRf3Aoe_RE9Wmg6GMCYclvzwcF;_ylu=X3oDMTBiMW04NW9mBHNlYwMlJVRPUCUl">the event that triggered it</a>.</p>
	<p><center><br />
<a href="/wp-content/photos/sfo_DSC_2486.jpg"><img src="/wp-content/photos/sfo_small_DSC_2486.jpg"/></a><br />
</center></p>
]]></content:encoded>
			<wfw:commentRSS>http://www.bitfodder.com/2005/09/10/sfo/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Pandora and the Music Genome Project</title>
		<link>http://www.bitfodder.com/2005/09/08/pandora-and-the-music-genome-project/</link>
		<comments>http://www.bitfodder.com/2005/09/08/pandora-and-the-music-genome-project/#comments</comments>
		<pubDate>Fri, 09 Sep 2005 03:47:19 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>Gadgets</category>
	<category>Music</category>
		<guid>http://www.bitfodder.com/2005/09/08/pandora-and-the-music-genome-project/</guid>
		<description><![CDATA[	
	Don&#8217;t pigeonhole me please
	I remember that the first time I stumbled onto the Music Genome Project and Pandora I was very skeptical and didn&#8217;t even bother trying the service. I guess I was being a little arrogant (dude, I&#8217;ve got over 600 CD&#8217;s in my collection; not counting vinyls; do you really think you have [...]]]></description>
			<content:encoded><![CDATA[	<p></p>
	<h3>Don&#8217;t pigeonhole me please</h3>
	<p>I remember that the first time I stumbled onto the <a href="http://www.pandora.com/mgp.shtml">Music Genome Project</a> and <a href="http://www.pandora.com/">Pandora</a> I was very skeptical and didn&#8217;t even bother trying the service. I guess I was being a little arrogant (dude, I&#8217;ve got over 600 CD&#8217;s in my collection; not counting vinyls; do you really think you have anything to show me that I don&#8217;t already know?!). In addition, I have a fierce aversion for services that try to pigeonhole consumers and then feed them with what they &#8220;want&#8221; over and over again; where is the spice in life when everything just tastes the same? There are tons of streaming services out there with specialized music channels - they all get very boring after 30mn, roughly playing the same song over and over again.</p>
	<p>I eventually gave in after yet more <a href="http://www.horsepigcow.com/">raving comments on Pandora on HorsePigCow</a>. It was time to try it out.</p>
	<h3>It all starts with a simple question&#8230;</h3>
	<p>I&#8217;ve never been able to answer the simple &#8220;what is your favorite band/book/movie&#8221; question. So when Pandora prompted me for my favorite singer, I was a little uncertain for a few seconds. Finally I entered Beth Orton, whose <a href="http://www.amazon.com/exec/obidos/redirect?tag=eichlerremod-20%26link_code=xm2%26camp=2025%26creative=165953%26path=http://www.amazon.com/gp/redirect.html%253fASIN=B00000I73X%2526tag=eichlerremod-20%2526lcode=xm2%2526cID=2025%2526ccmID=165953%2526location=/o/ASIN/B00000I73X%25253FSubscriptionId=0EMV44A9A5YT1RVDGZ82" title="View product details at Amazon">Central Reservation</a> album is probably one of the most memorable record I&#8217;ve heard in this past decade.</p>
	<p><a href="http://www.amazon.com/exec/obidos/redirect?tag=eichlerremod-20%26link_code=xm2%26camp=2025%26creative=165953%26path=http://www.amazon.com/gp/redirect.html%253fASIN=B00000I73X%2526tag=eichlerremod-20%2526lcode=xm2%2526cID=2025%2526ccmID=165953%2526location=/o/ASIN/B00000I73X%25253FSubscriptionId=0EMV44A9A5YT1RVDGZ82" title="View product details at Amazon"><img src="http://images.amazon.com/images/P/B00000I73X.01._SCTHUMBZZZ_.jpg" alt="Central Reservation" /></a></p>
	<p>Here&#8217;s what Pandora gave me in return:</p>
	<ol>
	<li>Fifty five falls - Marissa Nadler</li>
	<li>Keren Ann - Nolita (*)</li>
	<li>Sunday Morning - Ana DiFranco</li>
	<li>Beloved Wife - Natalie Merchant</li>
	<li>Sweet Unknown - The Hope Blister</li>
	<li>Lion&#8217;s Mane - iron &#038; Wine</li>
	<li>There For You - Sara Paxton</li>
	<li>The Good Old Days - Eels (*)</li>
	<li>One Thing - Finger Eleven (+)</li>
	<li>Sorry - Pat Benatar (&#8230;)</li>
	<li>Surrounded - Chantal Kreviazuk (-)</li>
	<li>Sorry to Myself - Alanis Morrissette</li>
	<li>Tomorrow - Avril Lavigne (&#8230;)</li>
	<li>Annabelle Lee - Marissa Nadler (+)</li>
	<li>Dragon Fly - Yann Tiersen &#038; Shannon Wright (+)</li>
	<li>To This Earth - Nick Castro &#038; The Poison Tree</li>
	<li>Sno Cat - Kristin Hersh (*)</li>
	<li>Fan Dance - Sam Phillips (&#8230;)</li>
	<li>Chest Of Drawers - Wovenhand</li>
	<li>Hall Of Fire - Hall Of Fame</li>
	<li>Behind Her Smiling Eyes - Cyann &#038; Ben</li>
	<li>Mermaid - Lily Holbrook</li>
	<li>Snow - Emiliana Torrini (*)</li>
	<li>Landslide (live) - Fleetwood Mac</li>
	<li>Big Brother - The Out Crowd (-)</li>
	<li>For the Roses - Joni Mitchell</li>
	<li>Wild Deer At Dawn - Diane Cluck (-)</li>
	</ol>
	<p>Wow! I was stunned to hear Keren Ann and Yann Tiersen, two other artists I really like but who are definitely less-known, and whose relationship to Beth Orton is not that obvious. More importantly, I <b>discovered</b> quite a few new interesting artists (+) that I need to investigate. Overall, all the songs were decent, with only a few ones that I didn&#8217;t like (-). Some choices (&#8230;) were a bit surprising but to be fair they were not as bad as one might have thought.</p>
	<h3>What&#8217;s missing?</h3>
	<p>The fact that Pandora streams music (128kbps) in a Flash widget is a little annoying. Ultimately, for Pandora to grow from its current status of toy for geeks it will need to leave the laptop and either enter your living room through some media center, or your mobile life through your iPod - and for this, Flash will not cut it.</p>
	<h3>Is it really that good?.. or was I just lucky?</h3>
	<p>When was the last time I discovered 5 to 10 new artists I wanted to hear more of while listening to a 2 hour program? So far, I&#8217;m tempted to classify Pandora among the best things that have happened to online music since the Groove Salad of <a href="soma.fm">Soma FM</a>!</p>
	<p>Was I simply lucky, hitting Pandora with artists and styles that the folks at the Music Genome Project know well? Or is the quality of their &#8220;predictions&#8221; consistent across the whole spectrum of pop music (unfortunately they do not cover classical nor world music yet)? In any case, <strong>it looks very promising.</strong></p>
	<p>The first 10 hours are free and then it&#8217;s $36 a year. Try it out for yourself and let me know!</p>
	<h3>My other Pandora stations</h3>
	<p><code><br />
Keren Ann station<br />
------------------<br />
Midi dans le salon de la duchesse - Keren Ann (*)<br />
Simple Kind of Life - No Doubt (*)<br />
Chelsea Burns - Keren Ann (*)<br />
None - Erin McKeown (+)<br />
Afraid Of My Heart - Universal Honey<br />
Undertaker - Marissa Nadler<br />
Story Of My Life - Kristian Leontiou (+)<br />
Road Bin - Keren Ann (*)<br />
While My Guitar Gently Weeps - Damon &#038; Naomi (+)<br />
Chemical Drive - Gosling (++)<br />
Be With - Koushik<br />
My Only Enemy - Meredith Bragg and the Terminals (++)<br />
Mockingbirg - Papercuts<br />
</code></p>
	<p><code><br />
Thievery Corporation Station<br />
------------------------------<br />
Lebanese Blonde - TC (*)<br />
Blackbird (feat. Nina Simone) - Mocean Worker (+)<br />
Remember Me - Blue Boy<br />
Breathe - Telepopmusik (+)<br />
Beautiful Things (Gabriel &#038; Dresden Unplugged Mix) - Andain<br />
To This World - Soei<br />
The gentle rain (RJD2 remix) - Astrud Gilberto (++)<br />
Numero Deux - The Dining Rooms<br />
Sofa Rockers - Kruder &#038; Dorfmeister (*)<br />
No Problem - The Dining rooms<br />
Flowers - Fauna Flash (+)<br />
Perfume (feat. Adriana Varela) - Bajofondo Tango Club (+)<br />
Clear Cut (feat. Bomb The Bass) - Lali Puna (+)<br />
</code></p>
]]></content:encoded>
			<wfw:commentRSS>http://www.bitfodder.com/2005/09/08/pandora-and-the-music-genome-project/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>GM 0.5.1 is out</title>
		<link>http://www.bitfodder.com/2005/09/02/gm-051-is-out/</link>
		<comments>http://www.bitfodder.com/2005/09/02/gm-051-is-out/#comments</comments>
		<pubDate>Fri, 02 Sep 2005 18:20:52 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>GreaseMonkey</category>
		<guid>http://www.bitfodder.com/2005/09/02/gm-051-is-out/</guid>
		<description><![CDATA[	I&#8217;m a bit late to post this but GreaseMonkey 0.5.1 is out, so no need to tinker with the beta any longer.
	MyLocations still work fine. And you might want to check the cool Google Maps tools on Matt King&#8217;s GNIKville wiki. His gmap_extras is more flexible than MyLocations, since it requires no web server and [...]]]></description>
			<content:encoded><![CDATA[	<p>I&#8217;m a bit late to post this but <a href="http://greasemonkey.mozdev.org/changes/0.5.1.html">GreaseMonkey 0.5.1 is out</a>, so no need to tinker with the beta any longer.</p>
	<p><a href="http://www.bitfodder.com/2005/07/17/greasemonkey-script-mylocations-for-google-maps/">MyLocations</a> still work fine. And you might want to check the cool Google Maps tools on <a href="http://www.gnik.com/wiki/GoogleMaps">Matt King&#8217;s GNIKville wiki</a>. His <a href="http://www.gnik.com/gmaps/gmap_extras.user.js">gmap_extras</a> is more flexible than <a href="http://www.bitfodder.com/2005/07/17/greasemonkey-script-mylocations-for-google-maps/">MyLocations</a>, since it requires no web server and save/delete of locations on the fly. I might modify it to add the drop-down menus from MyLocations to the &#8220;directions&#8221; form - at which point I should be able to drop <a href="http://www.bitfodder.com/2005/07/17/greasemonkey-script-mylocations-for-google-maps/">MyLocations</a>.</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.bitfodder.com/2005/09/02/gm-051-is-out/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>GreaseMonkey 0.5 beta is out</title>
		<link>http://www.bitfodder.com/2005/08/02/greasemonkey-05-beta-is-out/</link>
		<comments>http://www.bitfodder.com/2005/08/02/greasemonkey-05-beta-is-out/#comments</comments>
		<pubDate>Tue, 02 Aug 2005 09:19:02 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>Uncategorized</category>
		<guid>http://www.bitfodder.com/2005/08/02/greasemonkey-05-beta-is-out/</guid>
		<description><![CDATA[	Check out GreaseMonkey 0.5 beta. I&#8217;ve tested it with Firefox 1.0.6. This new GM build restores the GM_* functions that were required by MyLocations for Google maps. It works again!
]]></description>
			<content:encoded><![CDATA[	<p>Check out <a href="http://greasemonkey.mozdev.org/changes/0.5.html">GreaseMonkey 0.5 beta</a>. I&#8217;ve tested it with Firefox 1.0.6. This new GM build restores the GM_* functions that were required by <a href="http://www.bitfodder.com/2005/07/17/greasemonkey-script-mylocations-for-google-maps/">MyLocations for Google maps</a>. It works again!</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.bitfodder.com/2005/08/02/greasemonkey-05-beta-is-out/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Forget Diane Sawyer and Katie Couric - Amanda Congdon is the new media sex symbol</title>
		<link>http://www.bitfodder.com/2005/08/01/forget-diane-sawyer-and-katie-couric-amanda-congdon-is-the-new-media-sex-symbol/</link>
		<comments>http://www.bitfodder.com/2005/08/01/forget-diane-sawyer-and-katie-couric-amanda-congdon-is-the-new-media-sex-symbol/#comments</comments>
		<pubDate>Mon, 01 Aug 2005 18:04:20 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>Uncategorized</category>
		<guid>http://www.bitfodder.com/2005/08/01/forget-diane-sawyer-and-katie-couric-amanda-congdon-is-the-new-media-sex-symbol/</guid>
		<description><![CDATA[	The Katie Couric vs Diane Sawyer duel leaves you cold? Skip it, it&#8217;s quickly becoming irrelevant anyway. Amanda Congdon, from Rocket Boom is working hard at obsoleting TV as we know it. Best of all: Amanda is free - I mean, free as in &#8220;commercials free&#8221;.
	Yeah, yeah, I know. I just used a technique worth [...]]]></description>
			<content:encoded><![CDATA[	<p>The Katie Couric vs Diane Sawyer duel leaves you cold? Skip it, it&#8217;s quickly becoming irrelevant anyway. <a href="http://www.rocketboom.com/">Amanda Congdon</a>, from <a href="http://www.rocketboom.com/">Rocket Boom</a> is working hard at obsoleting TV as we know it. Best of all: Amanda is free - I mean, free as in &#8220;commercials free&#8221;.</p>
	<p>Yeah, yeah, I know. I just used a technique worth of these TV networks that I loathe so much: bring up a few names that sell well, a hint of politically-correct sex, outrageous headlines remotely connected to your story, build up expectations, and finally deliver superficial and tasteless content in a vast sea of commercials. I have to admit: Amanda hasn&#8217;t much in common with Katie or Diane. But I figured that their names would fare better in search engines than any closer comparison (say Jon Stewart). Shameless. I am shameless.</p>
	<p>But hold on&#8230; Amanda is blonde too. Oh, and she&#8217;s also based in New-York. And damn attractive too! Well, sounds like I&#8217;ll keep my headlines as is after all!</p>
	<p>A few more shows like this one (anything to recommend? something a little more consistent than the other typical vlogs out there? leave a comment!), <a href="http://www.amazon.com/exec/obidos/redirect?tag=eichlerremod-20%26link_code=xm2%26camp=2025%26creative=165953%26path=http://www.amazon.com/gp/redirect.html%253fASIN=B0009B0N2U%2526tag=eichlerremod-20%2526lcode=xm2%2526cID=2025%2526ccmID=165953%2526location=/o/ASIN/B0009B0N2U%25253FSubscriptionId=0EMV44A9A5YT1RVDGZ82" title="View product details at Amazon">an easy-to-use media center</a> and my TV might start seeing me staring at her (it&#8217;s a she) again.</p>
	<p>Keep an eye on <a href="http://www.current.tv/">Current TV</a> as well.</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.bitfodder.com/2005/08/01/forget-diane-sawyer-and-katie-couric-amanda-congdon-is-the-new-media-sex-symbol/feed/</wfw:commentRSS>
	</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.408 seconds -->
