<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments for Tech Blog</title>
	<atom:link href="http://sg20.com/techblog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://sg20.com/techblog</link>
	<description>Phil's tech blog</description>
	<pubDate>Sun, 20 May 2012 23:23:04 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>Comment on Wallpaper Changer Command Line Utility by phong</title>
		<link>http://sg20.com/techblog/2011/06/23/wallpaper-changer-command-line-utility/#comment-119</link>
		<dc:creator>phong</dc:creator>
		<pubDate>Sat, 12 May 2012 13:53:13 +0000</pubDate>
		<guid isPermaLink="false">http://sg20.com/techblog/?p=15#comment-119</guid>
		<description>Sorry for the long delay! I downloaded the latest build today. All works fine! I really appreciate it. I use it with nircmd to hide command prompt window (nircmd.exe exec hide WallpaperChanger.exe …), just for your information.</description>
		<content:encoded><![CDATA[<p>Sorry for the long delay! I downloaded the latest build today. All works fine! I really appreciate it. I use it with nircmd to hide command prompt window (nircmd.exe exec hide WallpaperChanger.exe …), just for your information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wallpaper Changer Command Line Utility by phil</title>
		<link>http://sg20.com/techblog/2011/06/23/wallpaper-changer-command-line-utility/#comment-115</link>
		<dc:creator>phil</dc:creator>
		<pubDate>Wed, 29 Feb 2012 09:00:08 +0000</pubDate>
		<guid isPermaLink="false">http://sg20.com/techblog/?p=15#comment-115</guid>
		<description>phong, I have received that request before and finally got around to adding that functionality!  You can now specify a third parameter which should be a complete path to a directory for storing the generated bmp file.  If you don't specify that parameter it defaults to the temp folder.</description>
		<content:encoded><![CDATA[<p>phong, I have received that request before and finally got around to adding that functionality!  You can now specify a third parameter which should be a complete path to a directory for storing the generated bmp file.  If you don&#8217;t specify that parameter it defaults to the temp folder.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wallpaper Changer Command Line Utility by phong</title>
		<link>http://sg20.com/techblog/2011/06/23/wallpaper-changer-command-line-utility/#comment-108</link>
		<dc:creator>phong</dc:creator>
		<pubDate>Sun, 29 Jan 2012 06:29:48 +0000</pubDate>
		<guid isPermaLink="false">http://sg20.com/techblog/?p=15#comment-108</guid>
		<description>This is the one that I have been looking for. But one thing.... I personaly set my temp folder on a RAM disk volume so that the temp folder is all cleared at boot time. Could you add an option to locate the converted bmp file to another place, or make an alternative build?</description>
		<content:encoded><![CDATA[<p>This is the one that I have been looking for. But one thing&#8230;. I personaly set my temp folder on a RAM disk volume so that the temp folder is all cleared at boot time. Could you add an option to locate the converted bmp file to another place, or make an alternative build?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wallpaper Changer Command Line Utility by Justin Swanson</title>
		<link>http://sg20.com/techblog/2011/06/23/wallpaper-changer-command-line-utility/#comment-106</link>
		<dc:creator>Justin Swanson</dc:creator>
		<pubDate>Fri, 13 Jan 2012 19:41:25 +0000</pubDate>
		<guid isPermaLink="false">http://sg20.com/techblog/?p=15#comment-106</guid>
		<description>Just wanted to stop by and say thanks!  I had a Java Program in mind to change wallpapers and I stumbled upon your article.  Thanks for sharing your work, as it is going to make my life much easier. 8)</description>
		<content:encoded><![CDATA[<p>Just wanted to stop by and say thanks!  I had a Java Program in mind to change wallpapers and I stumbled upon your article.  Thanks for sharing your work, as it is going to make my life much easier. <img src='http://sg20.com/techblog/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wallpaper Changer Command Line Utility by phil</title>
		<link>http://sg20.com/techblog/2011/06/23/wallpaper-changer-command-line-utility/#comment-98</link>
		<dc:creator>phil</dc:creator>
		<pubDate>Mon, 05 Dec 2011 10:31:11 +0000</pubDate>
		<guid isPermaLink="false">http://sg20.com/techblog/?p=15#comment-98</guid>
		<description>You can set it as a scheduled task in windows, but it is annoying how command line programs pop up a little program window when run from the scheduler.

The best solution for keeping the window hidden seems to be using a VB script.  Check out this page for more info http://gallery.technet.microsoft.com/ScriptCenter/8bbed56f-a7aa-491f-a296-687dd96098a3/

I put that code into a file with a .vbs extension (this makes it a vb script file which windows can execute).  For the main line I used this:

errReturn = objProcess.Create("C:\wallpapers\WallpaperChanger.exe c:\wallpapers", null, objConfig, intProcessID)

You have to include the command line argument which would work ok if you are using a directory containing wallpapers.  When I used the vbs file with Windows task scheduler it remained hidden and did not flash any window on the screen.</description>
		<content:encoded><![CDATA[<p>You can set it as a scheduled task in windows, but it is annoying how command line programs pop up a little program window when run from the scheduler.</p>
<p>The best solution for keeping the window hidden seems to be using a VB script.  Check out this page for more info <a href="http://gallery.technet.microsoft.com/ScriptCenter/8bbed56f-a7aa-491f-a296-687dd96098a3/" rel="nofollow">http://gallery.technet.microsoft.com/ScriptCenter/8bbed56f-a7aa-491f-a296-687dd96098a3/</a></p>
<p>I put that code into a file with a .vbs extension (this makes it a vb script file which windows can execute).  For the main line I used this:</p>
<p>errReturn = objProcess.Create(&#8221;C:\wallpapers\WallpaperChanger.exe c:\wallpapers&#8221;, null, objConfig, intProcessID)</p>
<p>You have to include the command line argument which would work ok if you are using a directory containing wallpapers.  When I used the vbs file with Windows task scheduler it remained hidden and did not flash any window on the screen.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wallpaper Changer Command Line Utility by ddf</title>
		<link>http://sg20.com/techblog/2011/06/23/wallpaper-changer-command-line-utility/#comment-97</link>
		<dc:creator>ddf</dc:creator>
		<pubDate>Sun, 04 Dec 2011 03:34:02 +0000</pubDate>
		<guid isPermaLink="false">http://sg20.com/techblog/?p=15#comment-97</guid>
		<description>I cant make it work as scheduled task</description>
		<content:encoded><![CDATA[<p>I cant make it work as scheduled task</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wallpaper Changer Command Line Utility by Dmitry</title>
		<link>http://sg20.com/techblog/2011/06/23/wallpaper-changer-command-line-utility/#comment-92</link>
		<dc:creator>Dmitry</dc:creator>
		<pubDate>Fri, 21 Oct 2011 14:55:42 +0000</pubDate>
		<guid isPermaLink="false">http://sg20.com/techblog/?p=15#comment-92</guid>
		<description>Thanks for awesome utility dawg! Been looking for something like that for ages.</description>
		<content:encoded><![CDATA[<p>Thanks for awesome utility dawg! Been looking for something like that for ages.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Add and remove email aliases (forwards) from CPanel with php (specifically on bluehost) by Teddi B</title>
		<link>http://sg20.com/techblog/2010/03/05/add-and-remove-email-aliases-forwards-from-cpanel-with-php-specifically-on-bluehost/#comment-78</link>
		<dc:creator>Teddi B</dc:creator>
		<pubDate>Mon, 17 Jan 2011 00:28:09 +0000</pubDate>
		<guid isPermaLink="false">http://sg20.com/techblog/?p=7#comment-78</guid>
		<description>Hi,

This page was really helpful. I did want to add something I found about the fwdopt option. It's used in the advanced options to do something extra with the email. I'm using it to forward my emails to a script, which then uses them to post a new blog to my db. The values for that are:

fwdopt=pipe
pipefwd=relativepathtoscript.php

-Teddi B</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>This page was really helpful. I did want to add something I found about the fwdopt option. It&#8217;s used in the advanced options to do something extra with the email. I&#8217;m using it to forward my emails to a script, which then uses them to post a new blog to my db. The values for that are:</p>
<p>fwdopt=pipe<br />
pipefwd=relativepathtoscript.php</p>
<p>-Teddi B</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Seagate hard drive makes weird noise and stalls by phil</title>
		<link>http://sg20.com/techblog/2008/06/12/seagate-hard-drive-makes-weird-noise-and-stalls/#comment-76</link>
		<dc:creator>phil</dc:creator>
		<pubDate>Thu, 23 Dec 2010 09:13:17 +0000</pubDate>
		<guid isPermaLink="false">http://sg20.com/techblog/?p=5#comment-76</guid>
		<description>Jacobo, thanks for sharing about your experience and I'm glad I could be of some help!  My guess is that power supply problems occur more often than people realize.

In my current computer I decided to spend more and get a nice name-brand power supply.  I didn't get as many watts as I could with a cheap no-name brand, but I decided I would rather have a 550 watt unit from a reputable company.  I've heard people say that for a no-name brand power supply you need to subtract 100 watts and figure that's what the power supply will actually perform as.  So if you're buying a cheap 650 watt unit, it may perform the same as a nice 550 watt power supply.</description>
		<content:encoded><![CDATA[<p>Jacobo, thanks for sharing about your experience and I&#8217;m glad I could be of some help!  My guess is that power supply problems occur more often than people realize.</p>
<p>In my current computer I decided to spend more and get a nice name-brand power supply.  I didn&#8217;t get as many watts as I could with a cheap no-name brand, but I decided I would rather have a 550 watt unit from a reputable company.  I&#8217;ve heard people say that for a no-name brand power supply you need to subtract 100 watts and figure that&#8217;s what the power supply will actually perform as.  So if you&#8217;re buying a cheap 650 watt unit, it may perform the same as a nice 550 watt power supply.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Seagate hard drive makes weird noise and stalls by Jacobo</title>
		<link>http://sg20.com/techblog/2008/06/12/seagate-hard-drive-makes-weird-noise-and-stalls/#comment-75</link>
		<dc:creator>Jacobo</dc:creator>
		<pubDate>Thu, 23 Dec 2010 03:23:27 +0000</pubDate>
		<guid isPermaLink="false">http://sg20.com/techblog/?p=5#comment-75</guid>
		<description>My friend: I was about to assume that my ST325031 hard drive was dead (mechanical issues, I supposed) and that I had lost all my files when I gave Google a try... when I found your site. Thank you very much for sharing your research with the Internet! I was having the exact same symptoms: two hard drives -although they were different- and suddenly, after years of use, the second one (the ST325031) began to make some strange noises and to not work properly (no access to files and O.S. freezing), although my O.S. seemed to detecte the hard drive correctly. So I disconnected every other important device (the primary hard drive and the two DVD readers), rebooted with a system disk and... no more strange noise; there they were my files!

Thank you once again. For sure I'll be buying a new PSU tomorrow in the morning...</description>
		<content:encoded><![CDATA[<p>My friend: I was about to assume that my ST325031 hard drive was dead (mechanical issues, I supposed) and that I had lost all my files when I gave Google a try&#8230; when I found your site. Thank you very much for sharing your research with the Internet! I was having the exact same symptoms: two hard drives -although they were different- and suddenly, after years of use, the second one (the ST325031) began to make some strange noises and to not work properly (no access to files and O.S. freezing), although my O.S. seemed to detecte the hard drive correctly. So I disconnected every other important device (the primary hard drive and the two DVD readers), rebooted with a system disk and&#8230; no more strange noise; there they were my files!</p>
<p>Thank you once again. For sure I&#8217;ll be buying a new PSU tomorrow in the morning&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

