<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>PCR&#039;s notepad &#187; Windows</title>
	<atom:link href="http://notepad.patheticcockroach.com/category/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://notepad.patheticcockroach.com</link>
	<description>The area in patheticcockroach.com where the EEG isn&#039;t isoelectric</description>
	<lastBuildDate>Fri, 30 Jul 2010 11:13:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Some 7-Zip command line examples</title>
		<link>http://notepad.patheticcockroach.com/857/some-7-zip-command-line-examples/</link>
		<comments>http://notepad.patheticcockroach.com/857/some-7-zip-command-line-examples/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 10:29:12 +0000</pubDate>
		<dc:creator>David Dernoncourt</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://notepad.patheticcockroach.com/?p=857</guid>
		<description><![CDATA[As mentioned in the previous post, 7-Zip is a great piece of open-source compression software. Although you&#8217;ll most likely want to use the GUI version for daily use, power users may find the command line version useful for batch jobs. The command line version is bundled in the global installation package, so as far as [...]]]></description>
			<content:encoded><![CDATA[<p>As mentioned in the <a href="http://notepad.patheticcockroach.com/842/7-zip-9-15-beta-portable/">previous post</a>, 7-Zip is a great piece of open-source compression software. Although you&#8217;ll most likely want to use the GUI version for daily use, power users may find the command line version useful for batch jobs. The command line version is bundled in the global installation package, so as far as you installed 7-Zip you do have the command line version installed, too.<br />
Since the 9.x versions have been around for quite a while now and the 4.65 version is getting old, we&#8217;ll only cover the 9.x versions (at the time of writing, the 9.15 beta offered as a portable application in the above-mentioned post). If you want to stick with the 4.65 version I suggest you have a look as <a href="http://dotnetperls.com/7-zip-examples">those examples</a> or at the documentation (the Windows batch commands are of course the same but the 7-Zip parameters are a bit different, and also the executable itself has a different name: <em>7za.exe</em> instead of <em>7z.exe</em>).</p>
<p>For all those examples, we&#8217;ll assume that 7-Zip is installed in <em>G:\UTILITIES\7-Zip\</em>. Also, note that if you want to launch those commands from within a batch file instead of directly from the command line, you need to add an additional &#8216;%&#8217; in front of &#8216;%A&#8217; in the <em>for</em> commands. Finally, we are using LZMA2 with the maximum compression level. If you want LZMA, well, obviously just replace <em>-m9=LZMA2</em> with <em>-m9=LZMA</em>. It&#8217;s actually easy to do a lot more customization, just check out 7-zip.chm in your 7-Zip installation folder.</p>
<h2>Batch compressing individual files (non recursive)</h2>
<p>This one will compress every file located within the current directory (one archive per file) and which have a bmp or txt extension:<br />
<code><a href="http://ss64.com/nt/for2.html">for </a> %A in (*.png *.txt) do "G:\UTILITIES\7-Zip\7z.exe" a -t7z -m9=LZMA2 "%A.7z" "%A"</code></p>
<h2>Batch compressing individual files (recursive)</h2>
<p>This one will individually (one archive per file) compress all files located within <em>L:\My\Folder\</em> (and all sub-folders) and which have a txt or doc extension:<br />
<code><a href="http://ss64.com/nt/for_r.html">for /R</a> "L:\My\Folder\" %A in (*.txt *.doc) do "G:\UTILITIES\7-Zip\7z.exe" a -t7z -m9=LZMA2 "%A.7z" "%A"</code><br />
Also, note that all archives will be placed in the same folder as the file the contain (so there will be archives all around all sub-folders).</p>
<h2>Batch compressing all folders of the current directory</h2>
<p>This one will compress every folder of the current directory (one archive per first sub-level folder):<br />
<code><a href="http://ss64.com/nt/for_d.html">for /D</a> %A in (*) do "G:\UTILITIES\7-Zip\7z.exe" a -t7z -m9=LZMA2 "%A.7z" "%A"</code></p>
<h2>Source</h2>
<p>To write those commands the following pages were useful:</p>
<ul>
<li><a href="http://ss64.com/nt/for.html">FOR looping command</a> at SS64.com Command line reference</li>
<li><a href="http://stackoverflow.com/questions/280969/windows-batch-loop-over-folder-string-and-parse-out-last-folder-name">Windows batch &#8211; loop over folder string and parse out last folder name</a> at stackoverflow</li>
<li><a href="http://sourceforge.net/projects/sevenzip/forums/forum/45797/topic/3703877">7-zip multiple files into multiple .zip</a> and <a href="http://sourceforge.net/projects/sevenzip/forums/forum/45797/topic/3776094">Batch compressing help</a> on SourceForge.net 7-Zip forums</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://notepad.patheticcockroach.com/857/some-7-zip-command-line-examples/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A few Windows 7 customization tips</title>
		<link>http://notepad.patheticcockroach.com/535/a-few-windows-7-customization-tips/</link>
		<comments>http://notepad.patheticcockroach.com/535/a-few-windows-7-customization-tips/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 09:31:47 +0000</pubDate>
		<dc:creator>David Dernoncourt</dc:creator>
				<category><![CDATA[Windows Se7en]]></category>

		<guid isPermaLink="false">http://notepad.patheticcockroach.com/?p=535</guid>
		<description><![CDATA[This week-end I had to set up Windows 7 on my new computer, since Windows XP is getting abandoned by Microsoft (as far as I know, notably MSIE 9 won&#8217;t make it to XP) Creating an extended partition under Windows 7 Yeah, that was one of the first surprises: the over simplified Windows partitioner wouldn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>This week-end I had to set up Windows 7 on my new computer, since Windows XP is getting abandoned by Microsoft (as far as I know, notably MSIE 9 won&#8217;t make it to XP)</p>
<h2>Creating an extended partition under Windows 7</h2>
<p>Yeah, that was one of the first surprises: the over simplified Windows partitioner wouldn&#8217;t let me create an extended partition. It turned out that it can indeed create an extended partition, but it will only offer you to do so if you already have 3 primary partitions. An alternative would be to get a third party partitioning tool: that&#8217;s a bit expensive for a one-time partitioning. I finally discovered that Windows 7 features a command line partitioning utility, diskpart, which can create an extended partition. The complete procedure is quite simple:</p>
<ul>
<li>open the run menu (windows key+R), type <code>diskpart</code>, then enter. You might get one of those annoying security popups, click yes.</li>
<li>Then select the drive you want to partition (its name is indicated in the GUI Windows partitioning tool, usually it should be disk 0 unless you have several hard drives): <code>select disk 0</code>.</li>
<li> Then create the extended partition (it will use all the remaining space): <code>create partition extended</code></li>
</ul>
<h2>Resuscitating the Quick Launch bar</h2>
<p>The Quick Launch bar was one of those really useful features from Windows XP that got stupidly removed from Se7en. It was replaced by the ability to &#8220;pin&#8221; a program to the taskbar, which doesn&#8217;t sound too bad&#8230; except that it&#8217;s much BIGGER. I think a pinned program icon takes around twice as much space as a program icon in the Quick Launch bar. Additionally, the Quick Launch bar can be partially displayed, with the extra icons getting packed in a one-click reachable menu. This is not possible with the pinned programs (I think the &#8220;equivalent&#8221; would be to pin them to the Start Menu, which isn&#8217;t nearly as practical as the Quick Launch bar in my opinion). So, for those reasons I tried to find a way to get this bar back. I eventually found some detailed tutorials on <a href="http://www.sevenforums.com/tutorials/888-quick-launch-enable-disable.html">SevenForums</a> and on <a href="http://www.howtogeek.com/howto/windows-7/add-the-quick-launch-bar-to-the-taskbar-in-windows-7/">How-To Geek</a>. Here is a summary of them:</p>
<ul>
<li>Right-click on the taskbar, then go to <em>Toolbars &rarr; New Toolbar&#8230;</em></li>
<li>Navigate to <em>C:\Users\Admin\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch</em> and click on <em>Select Folder</em>. The Quick Launch bar appears.</li>
<li>Right-click on the Quick Launch and deselect <em>Show Title</em> and <em>Show Text</em>. Still in the same menu, go to <em>View</em> to select the size you want for the icons.</li>
<li>Finally, to place the Quick Launch bar on the left, you need to move what&#8217;s on its left to the right (moving something to the left extends it while moving something to the right first shrinks it but eventually moves it to the right of the next object): grab the movement line of the taskbar (the dotted line which should be next to the start menu icon) and move it to the right.</li>
</ul>
<p>That&#8217;s it, you now have your good old Quick Launch bar <img src='http://notepad.patheticcockroach.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://notepad.patheticcockroach.com/535/a-few-windows-7-customization-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fatal error: Call to undefined function: curl_init()</title>
		<link>http://notepad.patheticcockroach.com/397/fatal-error-call-to-undefined-function-curl_init/</link>
		<comments>http://notepad.patheticcockroach.com/397/fatal-error-call-to-undefined-function-curl_init/#comments</comments>
		<pubDate>Sun, 15 Nov 2009 11:08:01 +0000</pubDate>
		<dc:creator>David Dernoncourt</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[servers]]></category>

		<guid isPermaLink="false">http://notepad.patheticcockroach.com/?p=397</guid>
		<description><![CDATA[I encountered this message when we enabled upload from URL on Wiki4Games. To solve the problem, you just need to enable curl support in PHP. For Windows, this is done by uncommenting extension=php_curl.dll in php.ini. For Linux (at least in Ubuntu), this is done by installing php5-curl (apt-get install php-curl). Don&#8217;t forget to restart Apache [...]]]></description>
			<content:encoded><![CDATA[<p>I encountered this message when we enabled upload from URL on Wiki4Games. To solve the problem, you just need to enable curl support in PHP. For Windows, this is done by uncommenting <code>extension=php_curl.dll</code> in php.ini. For Linux (at least in Ubuntu), this is done by installing php5-curl (<code>apt-get install php-curl</code>). Don&#8217;t forget to restart Apache (or just &#8220;apply changes&#8221; in Webmin).</p>
]]></content:encoded>
			<wfw:commentRss>http://notepad.patheticcockroach.com/397/fatal-error-call-to-undefined-function-curl_init/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What drivers for the GeForce 9650M GT?</title>
		<link>http://notepad.patheticcockroach.com/390/what-drivers-for-the-geforce-9650m-gt/</link>
		<comments>http://notepad.patheticcockroach.com/390/what-drivers-for-the-geforce-9650m-gt/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 07:37:29 +0000</pubDate>
		<dc:creator>David Dernoncourt</dc:creator>
				<category><![CDATA[Asus M50Vn]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[graphic cards]]></category>
		<category><![CDATA[nVidia]]></category>

		<guid isPermaLink="false">http://notepad.patheticcockroach.com/?p=390</guid>
		<description><![CDATA[Update: solution found! => here On my laptop (Adus M50Vn), I&#8217;ve had a lot of trouble with Linux (both Fedora 11 and Ubuntu 9.10) lately. After trying to update my NVIDIA graphics drivers on Windows XP, it turned out that the same problems starting to occur their too. So I was able to conclude that [...]]]></description>
			<content:encoded><![CDATA[<p><em>Update: solution found! => <a href="http://notepad.patheticcockroach.com/497/the-final-solution-to-nvidias-geforce-9650m-gt-drivers-problems/">here</a></em></p>
<p>On my laptop (Adus M50Vn), I&#8217;ve had a lot of trouble with Linux (both Fedora 11 and Ubuntu 9.10) lately. After trying to update my NVIDIA graphics drivers on Windows XP, it turned out that the same problems starting to occur their too. So I was able to conclude that these issues were probably caused by the NVIDIA drivers and not by the OS itself. For Windows, I reverted back to the latest version I had installed without problem, <a href="http://www.laptopvideo2go.com/drivers/xp/180.70">version 180.70</a> (18 Nov 2008). For Linux, Ubuntu let me downgrade to 173 from the hardware drivers control panel (which at the moment seems to apply only to graphics drivers), and at first I didn&#8217;t understand why there wasn&#8217;t any other old version available (there were 2 choices only: 173 and 185). Then I did Fedora, but for this I had to go to NVIDIA&#8217;s website since Fedora doesn&#8217;t offer automatic installation for proprietary software. I eventually managed to find the legacy drivers page, which explained why Ubuntu let me only pick 173 as an old driver: it&#8217;s the latest legacy driver. Here is the Linux/FreeBSD/Solaris driver download page: <a href="http://www.nvidia.com/object/unix.html">http://www.nvidia.com/object/unix.html</a>. Just pick the 173.14.20 and it should work fine. And actually, I just tried the 190.42 and it <del datetime="2009-11-16T22:33:13+00:00">seems to work okay too on Fedora so you may want to try that one instead</del> nvm it&#8217;s buggy too (NB: the 195.39 doesn&#8217;t work well on Windows XP: performances are much better but there are some important glitches).<br />
Don&#8217;t forget that for Fedora (or any Linux installation which implies using NVIDIA&#8217;s official installer), with every kernel update you&#8217;ll need to re-run the NVIDIA driver installer&#8230; so keep it somewhere easy to find. Full installation procedure on Fedora 11:</p>
<ol>
<li><strong>CTRL+ALT+F2</strong> to go to a text console</li>
<li><strong>su</strong> to connect as root (of course you can also use sudo)</li>
<li><strong>init 3</strong> to shutdown X</li>
<li>run the installer (<strong>cd /directory</strong> then <strong>./installer.sh</strong>). During the process it should be able to successfully update Xorg.conf.</li>
<li><strong>init 5</strong> to restart X without restarting the whole computer</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://notepad.patheticcockroach.com/390/what-drivers-for-the-geforce-9650m-gt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open source IZarc equivalent</title>
		<link>http://notepad.patheticcockroach.com/215/open-source-izarc-equivalent/</link>
		<comments>http://notepad.patheticcockroach.com/215/open-source-izarc-equivalent/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 08:49:00 +0000</pubDate>
		<dc:creator>David Dernoncourt</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://notepad.patheticcockroach.com/?p=215</guid>
		<description><![CDATA[In my quest for always more open source software, I used to be a little disappointed on the side of compression/uncompression software. Sure, there is 7-Zip, but it doesn&#8217;t support shitloads of format, whereas on the freeware side I had found this IZarc that could open like every compression format I could met. Well, I [...]]]></description>
			<content:encoded><![CDATA[<p>In my quest for always more open source software, I used to be a little disappointed on the side of compression/uncompression software. Sure, there is <a href="http://www.7-zip.org/">7-Zip</a>, but it doesn&#8217;t support shitloads of format, whereas on the freeware side I had found this IZarc that could open like every compression format I could met. Well, I finally found out, quite randomly while browsing PortableApps, that there is an open source equivalent for IZarc: <a href="http://peazip.sourceforge.net/">PeaZip</a>. The source isn&#8217;t very obvious to find, thus here is the link I dug out for you <img src='http://notepad.patheticcockroach.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> : <a href="http://sourceforge.net/project/showfiles.php?group_id=178996&#038;package_id=234639">PeaZip source packages on SourceForge</a><br />Ok, I still use 7-Zip because all the formats it supports are enough for me. But if I ever need more, now I&#8217;ll now where to look&#8230;<br />NB: it works on Linux too.</p>
]]></content:encoded>
			<wfw:commentRss>http://notepad.patheticcockroach.com/215/open-source-izarc-equivalent/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The 5 sins of Vista</title>
		<link>http://notepad.patheticcockroach.com/132/the-5-sins-of-vista/</link>
		<comments>http://notepad.patheticcockroach.com/132/the-5-sins-of-vista/#comments</comments>
		<pubDate>Mon, 22 Jan 2007 22:35:00 +0000</pubDate>
		<dc:creator>David Dernoncourt</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://notepad.patheticcockroach.com/?p=132</guid>
		<description><![CDATA[From a fan of Microsoft : the top 5 reasons why Vista is a step backward from previous versions of Windows. Read on]]></description>
			<content:encoded><![CDATA[<p>From a fan of Microsoft : the top 5 reasons why Vista is a step backward from previous versions of Windows.</p>
<p><a href="http://www.intelliadmin.com/blog/2007/01/5-sins-of-vista.html">Read on</a></p>
]]></content:encoded>
			<wfw:commentRss>http://notepad.patheticcockroach.com/132/the-5-sins-of-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Analysis of Microsoft&#8217;s Suicide Note (part 1)</title>
		<link>http://notepad.patheticcockroach.com/125/analysis-of-microsofts-suicide-note-part-1/</link>
		<comments>http://notepad.patheticcockroach.com/125/analysis-of-microsofts-suicide-note-part-1/#comments</comments>
		<pubDate>Thu, 11 Jan 2007 23:10:00 +0000</pubDate>
		<dc:creator>David Dernoncourt</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[digital rights and DRMs]]></category>

		<guid isPermaLink="false">http://notepad.patheticcockroach.com/?p=125</guid>
		<description><![CDATA[If Windows XP was Microsoft’s attempt to embed a browser into the operating system then Vista is the attempt to embed DRM.Vista&#8217;s target market is content producers and the underlying philosophy of the user experience will be far different than what many consumers expect it will be. Microsoft has attempted to plug the infamous &#8220;analog [...]]]></description>
			<content:encoded><![CDATA[<p>If Windows XP was Microsoft’s attempt to embed a browser into the operating system then Vista is the attempt to embed DRM.<br />Vista&#8217;s target market is content producers and the underlying philosophy of the user experience will be far different than what many consumers expect it will be. Microsoft has attempted to plug the infamous &#8220;analog hole&#8221; as much as is possible by forcing all data through encryption algorithms. For those unaware of the costs of encryption it is sufficiently high. Pushing HD audio and video content through encryption/decryption routines is a tremendous strain on any system currently available and in the near future.</p>
<p><a href="http://badvista.fsf.org/blog/analysis-of-microsofts-suicide-note-part-1">Read on</a></p>
]]></content:encoded>
			<wfw:commentRss>http://notepad.patheticcockroach.com/125/analysis-of-microsofts-suicide-note-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BadVista.org: FSF launches campaign against Microsoft Vista</title>
		<link>http://notepad.patheticcockroach.com/113/badvistaorg-fsf-launches-campaign-against-microsoft-vista/</link>
		<comments>http://notepad.patheticcockroach.com/113/badvistaorg-fsf-launches-campaign-against-microsoft-vista/#comments</comments>
		<pubDate>Sat, 16 Dec 2006 06:42:00 +0000</pubDate>
		<dc:creator>David Dernoncourt</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[digital rights and DRMs]]></category>

		<guid isPermaLink="false">http://notepad.patheticcockroach.com/?p=113</guid>
		<description><![CDATA[From badvista.org Vista is an upsell masquerading as an upgrade. It is an overall regression when you look at the most important aspect of owning and using a computer: your control over what it does. Obviously MS Windows is already proprietary and very restrictive, and well worth rejecting. But the new &#8216;features&#8217; in Vista are [...]]]></description>
			<content:encoded><![CDATA[<p>From badvista.org<br />
<blockquote>Vista is an upsell masquerading as an upgrade. It is an overall regression when you look at the most important aspect of owning and using a computer: your control over what it does. Obviously MS Windows is already proprietary and very restrictive, and well worth rejecting. But the new &#8216;features&#8217; in Vista are a Trojan Horse to smuggle in even more restrictions. We&#8217;ll be focusing attention on detailing how they work, how to resist them, and why people should care”, said FSF program administrator John Sullivan.</p></blockquote>
<p><a href="http://badvista.fsf.org/blog/launch-press-release">Read on</a> | <a href="http://digg.com/software/BadVista_org_FSF_launches_campaign_against_Microsoft_Vista">Digg it</a></p>
]]></content:encoded>
			<wfw:commentRss>http://notepad.patheticcockroach.com/113/badvistaorg-fsf-launches-campaign-against-microsoft-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Vista Lets Microsoft Lock Users In</title>
		<link>http://notepad.patheticcockroach.com/112/how-vista-lets-microsoft-lock-users-in/</link>
		<comments>http://notepad.patheticcockroach.com/112/how-vista-lets-microsoft-lock-users-in/#comments</comments>
		<pubDate>Thu, 07 Dec 2006 15:56:00 +0000</pubDate>
		<dc:creator>David Dernoncourt</dc:creator>
				<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[digital rights and DRMs]]></category>

		<guid isPermaLink="false">http://notepad.patheticcockroach.com/?p=112</guid>
		<description><![CDATA[Technology called &#8220;Information Rights Management,&#8221; combined with copyright law and Windows Vista, give Microsoft the tools to hold users&#8217; data hostage in Office, says Cory Doctorow. Read more]]></description>
			<content:encoded><![CDATA[<p>Technology called &#8220;Information Rights Management,&#8221; combined with copyright law and Windows Vista, give Microsoft the tools to hold users&#8217; data hostage in Office, says Cory Doctorow.</p>
<p><a href="http://www.informationweek.com/story/showArticle.jhtml?articleID=196601781&#038;cid=RSSfeed_IWK_All">Read more</a></p>
]]></content:encoded>
			<wfw:commentRss>http://notepad.patheticcockroach.com/112/how-vista-lets-microsoft-lock-users-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>37signals shows how ridiculous it is to install something in Windows Vista</title>
		<link>http://notepad.patheticcockroach.com/105/37signals-shows-how-ridiculous-it-is-to-install-something-in-windows-vista/</link>
		<comments>http://notepad.patheticcockroach.com/105/37signals-shows-how-ridiculous-it-is-to-install-something-in-windows-vista/#comments</comments>
		<pubDate>Sun, 29 Oct 2006 06:48:00 +0000</pubDate>
		<dc:creator>David Dernoncourt</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://notepad.patheticcockroach.com/?p=105</guid>
		<description><![CDATA[Clocking in at a stunning 35 clicks, the video shows that installing a script debugger in the new operating system is not only not made any easier, but it still takes a series of hoop jumps. They offer the same process in OS X for comparison. Read more &#124; Digg it]]></description>
			<content:encoded><![CDATA[<p>Clocking in at a stunning 35 clicks, the video shows that installing a script debugger in the new operating system is not only not made any easier, but it still takes a series of hoop jumps. They offer the same process in OS X for comparison.</p>
<p><a href="http://www.37signals.com/svn/posts/84-web-developers-microsoft-has-no-idea-whats-going-on">Read more</a> | <a href="http://digg.com/programming/37signals_shows_how_ridiculous_it_is_to_install_something_in_Windows_Vista">Digg it</a></p>
]]></content:encoded>
			<wfw:commentRss>http://notepad.patheticcockroach.com/105/37signals-shows-how-ridiculous-it-is-to-install-something-in-windows-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
