<?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>Lighthater.com</title>
	<atom:link href="http://www.lighthater.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.lighthater.com</link>
	<description></description>
	<lastBuildDate>Sat, 04 Jul 2009 17:25:20 +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>convertFLV 2.0</title>
		<link>http://www.lighthater.com/?p=35</link>
		<comments>http://www.lighthater.com/?p=35#comments</comments>
		<pubDate>Sat, 04 Jul 2009 17:08:50 +0000</pubDate>
		<dc:creator>cbarrett</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[convertFLV]]></category>

		<guid isPermaLink="false">http://www.lighthater.com/?p=35</guid>
		<description><![CDATA[I&#8217;ve updated my script to convert AVI to flv. It&#8217;s free to use. All I ask is that you give credit to the author, which is me. Click HERE to download convertFLV]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve updated my script to convert AVI to flv. It&#8217;s free to use. All I ask is that you give credit to the author, which is me. <img src='http://www.lighthater.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Click <a href="http://www.lighthater.com/?page_id=39">HERE</a> to download convertFLV</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lighthater.com/?feed=rss2&amp;p=35</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting AVI to flv in Ubuntu 8.10/9.04</title>
		<link>http://www.lighthater.com/?p=26</link>
		<comments>http://www.lighthater.com/?p=26#comments</comments>
		<pubDate>Sun, 23 Nov 2008 01:52:10 +0000</pubDate>
		<dc:creator>cbarrett</dc:creator>
				<category><![CDATA[convertFLV]]></category>

		<guid isPermaLink="false">http://www.lighthater.com/?p=26</guid>
		<description><![CDATA[I routinely upload flv videos into Gallery2 to post videos of my family. Flash Video is smaller and easier to stream than the AVI files my camera makes. So I thought I&#8217;d share my process with others who may be looking to do the same. For this, I use ffmpeg to do the conversion. Here [...]]]></description>
			<content:encoded><![CDATA[<p>I routinely upload flv videos into Gallery2 to post videos of my family. Flash Video is smaller and easier to stream than the AVI files my camera makes. So I thought I&#8217;d share my process with others who may be looking to do the same. For this, I use ffmpeg to do the conversion.</p>
<p>Here is the command I typically use:</p>
<p>ffmpeg -i file.AVI -ar 22050 -ab 32 -f flv -s 640&#215;480 file.flv</p>
<p>You can tweak the settings to your liking, these just happen to work for what I do.</p>
<p>This can be a bit tedious when you have a lot to convert, so I wrote a simple script to do batch processing. Copy and paste this one line into a file (I call mine convertFLV.sh) and make it executable (chmod 755 convertFLV.sh).</p>
<blockquote><p>for i in `ls -l`; do ffmpeg -i &#8220;$i&#8221; -ar 22050 -ab 32 -f flv -s 640&#215;480 &#8220;$i.flv&#8221;; done</p></blockquote>
<p>Maybe this will help someone else out there save some effort with conversion as it has me.</p>
<p><strong>UPDATE:</strong></p>
<p>I&#8217;m now using Ubuntu 9.04. I&#8217;ve switched my script to use qscale now. It seems to give much better results.</p>
<blockquote><p>for i in `ls -l`; do ffmpeg -i &#8220;$i&#8221; -ar 22050 -qscale 13 -ab 32 -f flv -s 640&#215;480 &#8220;$i.flv&#8221;; done</p></blockquote>
<p>I use a qscale of 9 for my personal site, but I would recommend nothing below 13 if you care about quality. I went for loading time over high quality.<strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lighthater.com/?feed=rss2&amp;p=26</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making an Intel 3945 Wireless card work in Ubuntu 8.04</title>
		<link>http://www.lighthater.com/?p=17</link>
		<comments>http://www.lighthater.com/?p=17#comments</comments>
		<pubDate>Fri, 04 Jul 2008 20:39:07 +0000</pubDate>
		<dc:creator>cbarrett</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.lighthater.com/?p=17</guid>
		<description><![CDATA[I found this on the Dell linux wiki and it did the charm. These are the steps I took, your results may be different. First, I disabled the wireless via the switch on the side before loading Ubuntu. Next, I did the follow step: Create a file called /etc/modprobe.d/blacklist-ipw3945 and add: blacklist ipw3945 Add to [...]]]></description>
			<content:encoded><![CDATA[<p>I found this on the Dell linux wiki and it did the charm. These are the steps I took, your results may be different.</p>
<ul>
<li>First, I disabled the wireless via the switch on the side before loading Ubuntu.</li>
<li>Next, I did the follow step:</li>
</ul>
<p style="padding-left: 30px;">Create a file called /etc/modprobe.d/blacklist-ipw3945 and add:</p>
<blockquote>
<pre>blacklist ipw3945</pre>
</blockquote>
<p style="padding-left: 30px;">Add to /etc/modules:</p>
<blockquote><p>iwl3945</p></blockquote>
<ul>
<li>Then, I enabled the wireless card and enabled the restricted driver.</li>
</ul>
<p>After that, I was finally able to connect to my wireless router.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lighthater.com/?feed=rss2&amp;p=17</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to clear stored network passwords</title>
		<link>http://www.lighthater.com/?p=16</link>
		<comments>http://www.lighthater.com/?p=16#comments</comments>
		<pubDate>Thu, 19 Jun 2008 13:23:10 +0000</pubDate>
		<dc:creator>cbarrett</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.lighthater.com/?p=16</guid>
		<description><![CDATA[In the start menu, select Run (or Windows + R) In the Run dialog box, type: rundll32.exe keymgr.dll, KRShowKeyMgr Browse the stored passwords, remove the offending password.]]></description>
			<content:encoded><![CDATA[<ol>
<li>In the start menu, select Run (or Windows + R)</li>
<li>In the Run dialog box, type: <em><strong>rundll32.exe keymgr.dll, KRShowKeyMgr </strong></em></li>
<li>Browse the stored passwords, remove the offending password.<em><strong><br />
</strong></em></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.lighthater.com/?feed=rss2&amp;p=16</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fixing a REALLY slow Windows Picture and Fax Viewer</title>
		<link>http://www.lighthater.com/?p=15</link>
		<comments>http://www.lighthater.com/?p=15#comments</comments>
		<pubDate>Thu, 20 Mar 2008 12:36:22 +0000</pubDate>
		<dc:creator>cbarrett</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.lighthater.com/?p=15</guid>
		<description><![CDATA[I was having trouble with Windows Picture and Fax Viewer taking upwards of 1 minute to open. I noticed that this was only happening when I tried to open an image from the Desktop. I googled around a bit, but didn&#8217;t really find anything concrete (must have been my excellent search skills). I tried running [...]]]></description>
			<content:encoded><![CDATA[<p>I was having trouble with Windows Picture and Fax Viewer taking upwards of 1 minute to open. I noticed that this was only happening when I tried to open an image from the Desktop. I googled around a bit, but didn&#8217;t really find anything concrete (must have been my excellent search skills). I tried running the Desktop Cleanup tool and amazingly, it resolved the problem. I did some more searching and I discovered that dead links to programs/shortcuts in the same directory as the image, will cause the Viewer to hang until it times out on that link. Simply removing the dead shortcut will resolve the problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lighthater.com/?feed=rss2&amp;p=15</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to run a script at login</title>
		<link>http://www.lighthater.com/?p=14</link>
		<comments>http://www.lighthater.com/?p=14#comments</comments>
		<pubDate>Sat, 01 Mar 2008 19:57:51 +0000</pubDate>
		<dc:creator>cbarrett</dc:creator>
				<category><![CDATA[OSX]]></category>

		<guid isPermaLink="false">http://www.lighthater.com/?p=14</guid>
		<description><![CDATA[I use synergy to control multiple computers with a single keyboard and mouse. I recently built a hackintosh and wanted to run the synergy server on it and connect my linux box to it. I had already set Vista up to be a server, so the linux configuration didn&#8217;t need to change much. The problem [...]]]></description>
			<content:encoded><![CDATA[<p>I use synergy to control multiple computers with a single keyboard and mouse. I recently built a hackintosh and wanted to run the synergy server on it and connect my linux box to it. I had already set Vista up to be a server, so the linux configuration didn&#8217;t need to change much. The problem is that synergy on OSX didn&#8217;t have a gui like in windows and I didn&#8217;t know how to autorun it like I did in linux. So I began digging in. I&#8217;ll use synergy as the example, but this should work with just about any script.</p>
<p>First, I created file called synergy.command with my command to start the synergy server. The contents of the file are:</p>
<blockquote><p>nohup /Applications/synergy-1.3.1/synergys -f &#8211;config /Applications/synergy-1.3.1/synergy.conf &amp;</p></blockquote>
<p>Now I have a way to start synergy up, but how would I get it to start when I logged in. A quick google found exactly what I was looking for.</p>
<blockquote>
<ul>
<li>Open System Preferences</li>
<li>Then open Accounts</li>
<li>Select your account, then click on Login Items</li>
<li>Click the + at the bottom of the window.</li>
<li>Browse to your synergy.command and click on Add.</li>
</ul>
</blockquote>
<p>That is really all there is to it. Next time you login, Synergy will be started. If the terminal window comes up, you can close it, since the nohup command is there.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lighthater.com/?feed=rss2&amp;p=14</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backing up Putty Settings in Windows</title>
		<link>http://www.lighthater.com/?p=13</link>
		<comments>http://www.lighthater.com/?p=13#comments</comments>
		<pubDate>Fri, 30 Nov 2007 14:33:58 +0000</pubDate>
		<dc:creator>cbarrett</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.lighthater.com/?p=13</guid>
		<description><![CDATA[To Export: regedit /e putty.reg HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions To Import: regedit /s putty.reg]]></description>
			<content:encoded><![CDATA[<p><strong>To Export:</strong><br />
regedit /e putty.reg HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions</p>
<p><strong>To Import:</strong><br />
regedit /s putty.reg</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lighthater.com/?feed=rss2&amp;p=13</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clearing Remote Desktop History</title>
		<link>http://www.lighthater.com/?p=12</link>
		<comments>http://www.lighthater.com/?p=12#comments</comments>
		<pubDate>Thu, 25 Oct 2007 13:32:55 +0000</pubDate>
		<dc:creator>cbarrett</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.lighthater.com/?p=12</guid>
		<description><![CDATA[Clearing Remote Desktop History 1. Open My Documents and delete default.rdp 2. Open the registry editor (regedit): Clear (delete) the MRU&#8217;s in the following key (these are the hosts): HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\Default Clear (delete) the username hints in the following key: HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\UsernameHint]]></description>
			<content:encoded><![CDATA[<p>Clearing Remote Desktop History</p>
<p>1. Open My Documents and delete default.rdp<br />
2. Open the registry editor (regedit):<br />
Clear (delete) the MRU&#8217;s in the following key (these are the hosts):<br />
HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\Default</p>
<p>Clear (delete) the username hints in the following key:<br />
HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\UsernameHint</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lighthater.com/?feed=rss2&amp;p=12</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Replace wget with Prozilla</title>
		<link>http://www.lighthater.com/?p=8</link>
		<comments>http://www.lighthater.com/?p=8#comments</comments>
		<pubDate>Sat, 23 Jun 2007 04:00:10 +0000</pubDate>
		<dc:creator>cbarrett</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.lighthater.com/?p=8</guid>
		<description><![CDATA[A quick and simple wget replacement to speed your downloads. wget has long been a great tool for downloading from the commandline. Its quick, easy to script and very simple. But if you&#8217;ve noticed that it can be really slow, you aren&#8217;t alone. Here&#8217;s how to get all the greatness of wget, with a little [...]]]></description>
			<content:encoded><![CDATA[<p>A quick and simple wget replacement to speed your downloads.<br />
wget has long been a great tool for downloading from the commandline. Its quick, easy to script and very simple. But if you&#8217;ve noticed that it can be really slow, you aren&#8217;t alone. Here&#8217;s how to get all the greatness of wget, with a little added speed.<span id="more-8"></span></p>
<p>First, you will need to install prozilla (proz). If you have yum or apt, this should be really easy. I won&#8217;t get into the gritty details, but in Fedora Core 5, its in the extras repo.</p>
<blockquote>
<p class="indent"> $ yum -y install proz</p>
<p class="indent"> $ proz http://ubuntu-releases.cs.umn.edu//6.06/ubuntu-6.06.1-desktop-i386.iso</p>
</blockquote>
<p>All Done: Download Successful!</p>
<p>As you can see, it couldn&#8217;t be more simple to use this app.</p>
<p>What about scripting it? I won&#8217;t get into all the possibilities, but here&#8217;s a quick bash trick to download multiple items.</p>
<blockquote>
<p class="indent">for i in `seq 1 5`<br />
do<br />
proz http://download.opensuse.org/distribution/openSUSE-10.2-Alpha3/iso/openSUSE-10.2-Alpha3-ppc-CD$i.iso<br />
done</p></blockquote>
<p>It&#8217;ll look similar to this when its downloading:</p>
<blockquote>
<p class="indent"> Connection           Status                   Received<br />
1              Downloading            3452.0K of 160425.0K<br />
2              Downloading            3987.8K of 160425.0K<br />
3              Downloading            3426.8K of 160425.0K<br />
4              Downloading            2781.0K of 160425.0K</p>
<p>http://suse.mirrors.tds.net/pub/opensuse/distribution/SL-10.2-Alpha2/iso/SUSE-Li</p>
<p>nux-10.2-Alpha2-i386-CD1.iso<br />
File Size = 641700K<br />
Total bytes received = 13647.6K (2.13%)<br />
Current speed = 1184.27Kb/s, Average D/L speed = 1049.82Kb/s<br />
Time remaining 9 minutes 58 seconds</p>
<p>Resume Supported</p>
<p>Ctrl-R to exit and resume later<br />
Ctrl-X to exit without resuming later<br />
Ctrl-L to repaint the screen</p>
<p>Connect OK!</p></blockquote>
<p>Whats best, proz supports resume, which to my knowledge, wget does not (don&#8217;t scream if I&#8217;m wrong here).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lighthater.com/?feed=rss2&amp;p=8</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPB Skins</title>
		<link>http://www.lighthater.com/?p=6</link>
		<comments>http://www.lighthater.com/?p=6#comments</comments>
		<pubDate>Tue, 19 Jun 2007 18:53:52 +0000</pubDate>
		<dc:creator>cbarrett</dc:creator>
				<category><![CDATA[IPB]]></category>

		<guid isPermaLink="false">http://www.lighthater.com/?p=6</guid>
		<description><![CDATA[I&#8217;ve posted one of the skins that I did for IPB. You can find it by clicking on IPB Skins at the top. I hope to post more soon.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve posted one of the skins that I did for IPB. You can find it by clicking on IPB Skins at the top. I hope to post more soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lighthater.com/?feed=rss2&amp;p=6</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
