<?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"
	>

<channel>
	<title>deciacco.com blog</title>
	<atom:link href="http://www.deciacco.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.deciacco.com/blog</link>
	<description>programming, photography and other stuff</description>
	<pubDate>Wed, 05 Nov 2008 06:12:13 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>3D Desktop Manager For Windows</title>
		<link>http://www.deciacco.com/blog/software/3d-desktop-manager-for-windows</link>
		<comments>http://www.deciacco.com/blog/software/3d-desktop-manager-for-windows#comments</comments>
		<pubDate>Thu, 02 Oct 2008 18:56:11 +0000</pubDate>
		<dc:creator>deciacco</dc:creator>
		
		<category><![CDATA[Snippets]]></category>

		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.deciacco.com/blog/?p=268</guid>
		<description><![CDATA[If you have seriously played with Ubuntu lately, you might have seen the real fancy 3D desktop effect you can do. Here is a piece of software that does the same thing on Windows: DeskSpace And here is a free alternative:YODM.
]]></description>
			<content:encoded><![CDATA[<p>If you have <strong>seriously</strong> played with Ubuntu lately, you might have seen the real fancy 3D desktop effect you can do. Here is a piece of software that does the same thing on Windows: <a href="http://www.otakusoftware.com/deskspace/">DeskSpace</a> And here is a free alternative:<a href="http://rapidshare.com/files/26524705/yodm3D.zip.html">YODM</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deciacco.com/blog/software/3d-desktop-manager-for-windows/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Quick Tip - Dell Wireless 3300 Print Server</title>
		<link>http://www.deciacco.com/blog/hardware/quick-tip-dell-wireless-3300-print-server</link>
		<comments>http://www.deciacco.com/blog/hardware/quick-tip-dell-wireless-3300-print-server#comments</comments>
		<pubDate>Wed, 01 Oct 2008 14:05:36 +0000</pubDate>
		<dc:creator>deciacco</dc:creator>
		
		<category><![CDATA[Hardware]]></category>

		<category><![CDATA[Snippets]]></category>

		<guid isPermaLink="false">http://www.deciacco.com/blog/?p=264</guid>
		<description><![CDATA[After a few hours of frustration trying to get the Dell Wireless 3300 Print Server to hop onto my wireless network, I finally figured out the problem. I was using WPA-PSK in AES mode on my wireless router. Apparently, this little gem (if you have a compatible printer) only likes TKIP. After I made this [...]]]></description>
			<content:encoded><![CDATA[<p>After a few hours of frustration trying to get the Dell Wireless 3300 Print Server to hop onto my wireless network, I finally figured out the problem. I was using WPA-PSK in AES mode on my wireless router. Apparently, this little gem (if you have a compatible printer) only likes TKIP. After I made this change it connected without a problem.</p>
<p>This print server works very well, but you have to have a compatible printer. In fact, if you have one of the printers this was intended for, I would recommend using this to anything else. I know for a fact it works great on a Dell 1710 and a 962 (Photo All-in-One).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deciacco.com/blog/hardware/quick-tip-dell-wireless-3300-print-server/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WP-DBManager Backup DB Fix For Windows</title>
		<link>http://www.deciacco.com/blog/php/wp-dbmanager-backup-db-fix-for-windows</link>
		<comments>http://www.deciacco.com/blog/php/wp-dbmanager-backup-db-fix-for-windows#comments</comments>
		<pubDate>Tue, 30 Sep 2008 14:34:29 +0000</pubDate>
		<dc:creator>deciacco</dc:creator>
		
		<category><![CDATA[Php]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[stat]]></category>

		<category><![CDATA[warning]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.deciacco.com/blog/?p=246</guid>
		<description><![CDATA[For this blog I like to use a plugin called WP-DBManager. It's a great tool for easily maintaining your blog's database right from the administration console. Unfortunately, being on a Windows host, sometimes plugins don't work as intended, so you have to  make some adjustments.
For this plugin I kept getting this error whenever I [...]]]></description>
			<content:encoded><![CDATA[<p>For this blog I like to use a plugin called WP-DBManager. It's a great tool for easily maintaining your blog's database right from the administration console. Unfortunately, being on a Windows host, sometimes plugins don't work as intended, so you have to  make some adjustments.</p>
<p>For this plugin I kept getting this error whenever I tried to run the backup script:</p>
<p>Warning: filesize(): Stat failed for (blah, blah)<br />
Warning: unlink(blah, blah) no such file or directory</p>
<p>To fix it I had to do a few things:</p>
<p>1. The actual command to create the backup needs to be fixed, so it can run properly on the command prompt. Find the file named database-backup.php in the plugin's directory. Place double quotes around the path part of the command and remove all others. Lines 47 and 51.</p>
<div class="dean_ch" style="white-space: nowrap;"><span class="re0">$backup</span><span class="br0">&#91;</span><span class="st0">'command'</span><span class="br0">&#93;</span> = <span class="st0">'&quot;'</span> . <span class="re0">$backup</span><span class="br0">&#91;</span><span class="st0">'mysqldumppath'</span><span class="br0">&#93;</span>.<span class="st0">'&quot; --host='</span>.DB_HOST.<span class="st0">' --user='</span>.DB_USER.<span class="st0">' --password='</span>.DB_PASSWORD.<span class="st0">' --add-drop-table --skip-lock-tables '</span>.DB_NAME.<span class="st0">' | gzip &gt; '</span>.<span class="re0">$backup</span><span class="br0">&#91;</span><span class="st0">'filepath'</span><span class="br0">&#93;</span>;</p>
<p><span class="re0">$backup</span><span class="br0">&#91;</span><span class="st0">'command'</span><span class="br0">&#93;</span> = <span class="st0">'&quot;'</span> . <span class="re0">$backup</span><span class="br0">&#91;</span><span class="st0">'mysqldumppath'</span><span class="br0">&#93;</span> . <span class="st0">'&quot; --host='</span>.DB_HOST.<span class="st0">' --user='</span>.DB_USER.<span class="st0">' --password='</span>.DB_PASSWORD.<span class="st0">' --add-drop-table --skip-lock-tables '</span>.DB_NAME.<span class="st0">' &gt; '</span>.<span class="re0">$backup</span><span class="br0">&#91;</span><span class="st0">'filepath'</span><span class="br0">&#93;</span>;</div>
<p>2. The function that runs the command is called execute_packup(). This function is located in a file named wp-dbmanager.php in the plugin's directory. Find this function (line 205) and remove the if statement and leave only the passthru() command. Similar to this:</p>
<div class="dean_ch" style="white-space: nowrap;"><span class="kw2">function</span> execute_backup<span class="br0">&#40;</span><span class="re0">$command</span><span class="br0">&#41;</span> <span class="br0">&#123;</span><br />
&nbsp; &nbsp; <span class="re0">$backup_options</span> = get_option<span class="br0">&#40;</span><span class="st0">'dbmanager_options'</span><span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; check_backup_files<span class="br0">&#40;</span><span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; <span class="coMULTI">/*if(substr(PHP_OS, 0, 3) == 'WIN') {<br />
&nbsp; &nbsp; &nbsp; &nbsp; $writable_dir = $backup_options['path'];<br />
&nbsp; &nbsp; &nbsp; &nbsp; $tmpnam = $writable_dir.'/wp-dbmanager.bat';<br />
&nbsp; &nbsp; &nbsp; &nbsp; $fp = fopen($tmpnam, 'w');<br />
&nbsp; &nbsp; &nbsp; &nbsp; fwrite($fp, $command);<br />
&nbsp; &nbsp; &nbsp; &nbsp; fclose($fp);<br />
&nbsp; &nbsp; &nbsp; &nbsp; system($tmpnam.' &gt; NUL', $error);<br />
&nbsp; &nbsp; &nbsp; &nbsp; unlink($tmpnam);<br />
&nbsp; &nbsp; } else {*/</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.php.net/passthru"><span class="kw3">passthru</span></a><span class="br0">&#40;</span><span class="re0">$command</span>, <span class="re0">$error</span><span class="br0">&#41;</span>;<br />
&nbsp; &nbsp; <span class="co1">//}</span><br />
&nbsp; &nbsp; <span class="kw1">return</span> <span class="re0">$error</span>;<br />
<span class="br0">&#125;</span></div>
<p>3. If you want to have the gzip functionality you will need to download and place gzip.exe in the system32 folder of the server. You can download gzip from <a href="http://www.gzip.org/#exe">here</a>.</p>
<p>NOTES:</p>
<ul>
<li> Make sure the the Internet Guest Account has write permissions to the backup-db directory.</li>
<li>There is probably a better way to do this, perhaps using the exec() command in the if statement, but this one seems to work just fine.</li>
<li>Not necessary - On my server I had to put @ symbols in front of the filesize() and unlink() functions in the database-backup.php file, so that the they would not throw the php warning message and continue through to show the actual error message on the plugin page.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.deciacco.com/blog/php/wp-dbmanager-backup-db-fix-for-windows/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Windows Registry Tweaking Software</title>
		<link>http://www.deciacco.com/blog/windows/windows-registry-tweaking-software</link>
		<comments>http://www.deciacco.com/blog/windows/windows-registry-tweaking-software#comments</comments>
		<pubDate>Sat, 30 Aug 2008 13:38:54 +0000</pubDate>
		<dc:creator>deciacco</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.deciacco.com/blog/?p=240</guid>
		<description><![CDATA[RegToy is a free program for tweaking settings in Windows. It will pretty much let you change any setting there is to change. It works very well and the install is very straight forward and simple. I've only tested it on Windows XP, but it should also work with Vista and Windows Server 2003. It [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-medium wp-image-241 alignleft" title="regtoy" src="http://www.deciacco.com/blog/wp-content/uploads/regtoy-300x221.png" alt="" width="300" height="221" />RegToy is a free program for tweaking settings in Windows. It will pretty much let you change any setting there is to change. It works very well and the install is very straight forward and simple. I've only tested it on Windows XP, but it should also work with Vista and Windows Server 2003. It also comes with a bunch of other utilities like SecureDelete, MemoryCleaner, and FileEncryptor to name a few. (For a complete list <a href="http://www.deciacco.com/blog/wp-content/uploads/regtoyutilities.png" target="_blank">click here</a>.)</p>
<p><a href="http://k-n.co.cc/">Download Link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.deciacco.com/blog/windows/windows-registry-tweaking-software/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cloud Cover On Amelia Island</title>
		<link>http://www.deciacco.com/blog/photography/cloud-cover-on-amelia-island</link>
		<comments>http://www.deciacco.com/blog/photography/cloud-cover-on-amelia-island#comments</comments>
		<pubDate>Fri, 01 Aug 2008 15:52:52 +0000</pubDate>
		<dc:creator>deciacco</dc:creator>
		
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.deciacco.com/blog/?p=227</guid>
		<description><![CDATA[Last week we went down to Florida for a little R&#38;R. On the last day there, we got a good storm. This panoramic photo was taken a few hours before we left and was taken looking east over the Atlantic ocean. The clouds were moving over the beach from the west going east (top of [...]]]></description>
			<content:encoded><![CDATA[<p>Last week we went down to Florida for a little R&amp;R. On the last day there, we got a good storm. This panoramic photo was taken a few hours before we left and was taken looking east over the Atlantic ocean. The clouds were moving over the beach from the west going east (top of image moving down) and the rain appeared to be coming from the south going north (right of image going left towards us).</p>
<p><em>Click on the image below to see a larger view.</em></p>
<div id="attachment_338" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.deciacco.com/blog/wp-content/uploads/ameliapanostorms.jpg"><img class="size-medium wp-image-338" title="Cloud Cover On Amelia Island" src="http://www.deciacco.com/blog/wp-content/uploads/ameliapanostorms-500x166.jpg" alt="Cloud Cover On Amelia Island" width="500" height="166" /></a><p class="wp-caption-text">Cloud Cover On Amelia Island</p></div>
<p style="text-align: center;">
]]></content:encoded>
			<wfw:commentRss>http://www.deciacco.com/blog/photography/cloud-cover-on-amelia-island/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Canoeing On The Harpeth</title>
		<link>http://www.deciacco.com/blog/hiking/canoeing-on-the-harpeth</link>
		<comments>http://www.deciacco.com/blog/hiking/canoeing-on-the-harpeth#comments</comments>
		<pubDate>Wed, 04 Jun 2008 16:05:15 +0000</pubDate>
		<dc:creator>deciacco</dc:creator>
		
		<category><![CDATA[Hiking]]></category>

		<category><![CDATA[Photography]]></category>

		<category><![CDATA[Canoeing]]></category>

		<category><![CDATA[Foggy Bottoms]]></category>

		<category><![CDATA[Harpeth]]></category>

		<category><![CDATA[Montgomery Bell]]></category>

		<category><![CDATA[Pattison Forge]]></category>

		<category><![CDATA[river]]></category>

		<category><![CDATA[Tennessee]]></category>

		<category><![CDATA[tunnel]]></category>

		<guid isPermaLink="false">http://www.deciacco.com/blog/?p=218</guid>
		<description><![CDATA[Took a day of vacation yesterday to spend some time outdoors, so my brother-in-law and I went canoeing. Since we've had quite a rainy seasons this spring the water level of the river was great. One of the coolest places to stop along this particular river trip is Pattison Forge, otherwise known as the Montgomery [...]]]></description>
			<content:encoded><![CDATA[<p>Took a day of vacation yesterday to spend some time outdoors, so my brother-in-law and I went canoeing. Since we've had quite a rainy seasons this spring the water level of the river was great. One of the coolest places to stop along this particular river trip is <a href="http://www.google.com/search?hl=en&amp;q=Pattison+Forge&amp;btnG=Search">Pattison Forge</a>, otherwise known as the Montgomery Bell Tunnel...</p>
<p><em>Click on the image below to see a larger view. The larger view may take some time to download as the files are about 2MB each.</em></p>
<div id="attachment_342" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.deciacco.com/blog/wp-content/uploads/narrowstunnelpano.jpg"><img class="size-medium wp-image-342" title="Tunnel Panorama" src="http://www.deciacco.com/blog/wp-content/uploads/narrowstunnelpano-500x92.jpg" alt="Tunnel Panorama" width="500" height="92" /></a><p class="wp-caption-text">Tunnel Panorama</p></div><br />
<br />
<div id="attachment_343" class="wp-caption aligncenter" style="width: 509px"><a href="http://www.deciacco.com/blog/wp-content/uploads/narrowstunneltopviewpano.jpg"><img class="size-medium wp-image-343" title="Tunnel Top View Panorama" src="http://www.deciacco.com/blog/wp-content/uploads/narrowstunneltopviewpano-499x112.jpg" alt="Tunnel Top View Panorama" width="499" height="112" /></a><p class="wp-caption-text">Tunnel Top View Panorama</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.deciacco.com/blog/hiking/canoeing-on-the-harpeth/feed/</wfw:commentRss>
		</item>
		<item>
		<title>GI Cactus V2s Wireless (Ebay) Triggers Modification</title>
		<link>http://www.deciacco.com/blog/photography/gi-cactus-v2s-wireless-ebay-triggers-mod</link>
		<comments>http://www.deciacco.com/blog/photography/gi-cactus-v2s-wireless-ebay-triggers-mod#comments</comments>
		<pubDate>Thu, 22 May 2008 17:31:38 +0000</pubDate>
		<dc:creator>deciacco</dc:creator>
		
		<category><![CDATA[Photography]]></category>

		<category><![CDATA[Cactus]]></category>

		<category><![CDATA[ebay]]></category>

		<category><![CDATA[gadget]]></category>

		<category><![CDATA[infinity]]></category>

		<category><![CDATA[PT-04]]></category>

		<category><![CDATA[trigger]]></category>

		<category><![CDATA[triggers]]></category>

		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://www.deciacco.com/blog/?p=173</guid>
		<description><![CDATA[The "Holy Grail" of wireless flash triggers are the Pocket Wizards - they are fast, reliable, and have an amazing range. This of course comes a quite a heafty price and many new photographers simply can't afford them. For this reason many people use the Cactus V2's from Gadget Infinity, otherwise known as the "Ebay" [...]]]></description>
			<content:encoded><![CDATA[<p>The "Holy Grail" of wireless flash triggers are the Pocket Wizards - they are fast, reliable, and have an amazing range. This of course comes a quite a heafty price and many new photographers simply can't afford them. For this reason many people use the Cactus V2's from <a href="http://stores.ebay.com/Gadget-Infinity_W0QQcolZ4QQdirZ1QQfsubZQ2d33QQftidZ2QQtZkm">Gadget Infinity</a>, otherwise known as the "Ebay" triggers.</p>
<p>There are many features that the PW have that the V2's don't have, but as far as cheap wireless triggers go, the V2's are quite good. The main problem of the V2's is in their range, but with a small modification this can be remedied fairly easily. Basically, by adding an external antenna the signal is "louder and clearer" for the receivers to pick up.</p>
<p><span id="more-173"></span></p>
<p>(<em>The original article where I found this modification can be found here: </em><a href="http://jeremykuster.blogspot.com/2007/10/gi-cactus-v2s-modification-tutorial.html"><em>GI Cactus V2s Modification Tutoria</em></a>)</p>
<p>Here is my experience with this mod:</p>
<ol>
<li><strong>Tools</strong><br />
The first thing you need is some tools. Here is a list of what I used and recommend you have before getting started:</p>
<ol>
<li>Soldering Iron and Solder<br />
<em>You can get these from Radio Shack. I used a 25W iron and Rosin Core Solder for PC work.</em></li>
<li>Helping Hands<br />
<em>These are not required, but if you don't have someone helping you these are very useful, especially when you are trying to solder the wire to the connector and the board.</em></li>
<li>Drill and Drill Bits<br />
<em>Cutting the holes without these would be very difficult. I used a 5/64 bit for the starter hole and a 1/4 bit for the final hole.<br />
</em></li>
<li>Screw driver<br />
<em>I used a small philips head to remove the small screw on the bottom of the transmitter.</em></li>
<li>Wire Cutter<br />
<em>Pretty obvious here. Also a wire stripper is nice to have to strip the ends of the wire, but not necessary</em>.</li>
<li>Pliers and 5/16 Wrench<br />
<em>I used these to tighten the antenna connector to the top cover.</em></li>
</ol>
</li>
<li><strong>Trigger/Receiver Combo</strong><br />
I bought the wireless trigger/reciever kit from Gadget Infinity. I use Canon equipment, so I bought these: <a href="http://cgi.ebay.com/Wireless-Flash-Trigger-V2s-for-Canon-580EX-II-420EX_W0QQitemZ190223694371QQihZ009QQcategoryZ64354QQssPageNameZWDVWQQrdZ1QQcmdZViewItem">Wireless Flash Trigger V2s for Canon 580EX II 420EX</a><br />
I'm pretty sure they are all the same, but they have different titles to make it easier for people to find what they need. You can double check they will work with your equipment by looking at the list of compatible items in the description. Make sure they are the V2's and not the older models. ( I think the older models simply had "PT-04" on the front.)</li>
<li><strong>Antenna &amp; Connector</strong><br />
I bought the antenna and connector. You can buy both of these from Digi-Key (part numbers below), but you don't have to. Many people used antennas from other devices such as old cell phones, while others used simply a wire. I really like how clean it looks with the bought antenna. Also buying the antenna I knew it was for the 433Mhz wave length. Note: <em>There are <a href="http://www.csgnetwork.com/freqwavelengthcalc.html">calculators out there</a> for figuring the length of wire for a specific wavelength.</em></p>
<p>Digi-Key Part Numbers: Antenna: <a href="http://search.digikey.com/scripts/DkSearch/dksus.dll?Detail?name=ANT-433-CW-RH-ND">ANT-433-CW-RH</a> Connector: <a href="http://search.digikey.com/scripts/DkSearch/dksus.dll?Detail?name=CONREVSMA004-ND">CONREVSMA004</a></p>
<div id="attachment_359" class="wp-caption aligncenter" style="width: 510px"><img class="size-medium wp-image-359" title="Antenna &amp; Connector" src="http://www.deciacco.com/blog/wp-content/uploads/img_2503.jpg" alt="Antenna &amp; Connector" width="500" height="332" /><p class="wp-caption-text">Antenna &amp; Connector</p></div></li>
<li><strong>Opening the Transmitter</strong><br />
I started by taking the transmitter apart and taking the battery out. To open the transmitter remove the screw on the bottom and lift the cover from the front.</p>
<p><div id="attachment_358" class="wp-caption aligncenter" style="width: 510px"><img class="size-medium wp-image-358" title="Opening the Transmitter" src="http://www.deciacco.com/blog/wp-content/uploads/img_2500.jpg" alt="Opening the Transmitter" width="500" height="332" /><p class="wp-caption-text">Opening the Transmitter</p></div></li>
<li><strong>Drill Starter Hole</strong><br />
After opening the transmitter I needed to drill the hole for the antenna connector. I found the best way to figure out where to make the whole is to use the washer as a guide. I placed the guide up against the screw hole and the plastic piece next to it as shown below. (I've built two of these, and both had "the plastic piece") I drilled a small hole in the center of the washer to get started and insure the larger hole is in the proper place. If you don't have the plastic piece, use the close up image below to figure out where you need to place the washer.</p>
<p><div id="attachment_360" class="wp-caption aligncenter" style="width: 510px"><img class="size-medium wp-image-360" title="Drill Starter Hole" src="http://www.deciacco.com/blog/wp-content/uploads/img_2504.jpg" alt="Drill Starter Hole" width="500" height="332" /><p class="wp-caption-text">Drill Starter Hole</p></div>
<p>(Close up of the starter hole. I used a 5/64th drill bit here.)</p>
<div id="attachment_361" class="wp-caption aligncenter" style="width: 351px"><img class="size-medium wp-image-361" title="Close up of the starter hole" src="http://www.deciacco.com/blog/wp-content/uploads/img_2508-341x500.jpg" alt="Close up of the starter hole" width="341" height="500" /><p class="wp-caption-text">Close up of the starter hole</p></div></li>
<li><strong>Drill Actual Hole</strong><br />
Next I drilled the actual hole. I used a drill bit that fit inside the washer. I used a 1/4th drill bit for this, which was slightly smaller than the washer, but it worked perfectly.</p>
<p><div id="attachment_362" class="wp-caption aligncenter" style="width: 510px"><img class="size-medium wp-image-362" title="Drill Actual Hole" src="http://www.deciacco.com/blog/wp-content/uploads/img_2509.jpg" alt="Drill Actual Hole" width="500" height="332" /><p class="wp-caption-text">Drill Actual Hole</p></div></li>
<li><strong>Inserting the Connector</strong><br />
I attached the connector and used pliers and a 5/16th wrench to tighten it. I put the washer on the bottom because I liked the clean look on the outside.</p>
<p><div id="attachment_364" class="wp-caption aligncenter" style="width: 510px"><img class="size-medium wp-image-364" title="Inserting the Connector Bottom" src="http://www.deciacco.com/blog/wp-content/uploads/img_2511.jpg" alt="Inserting the Connector Bottom" width="500" height="332" /><p class="wp-caption-text">Inserting the Connector Bottom</p></div>
<div id="attachment_365" class="wp-caption aligncenter" style="width: 510px"><img class="size-medium wp-image-365" title="Inserting the Connector Top" src="http://www.deciacco.com/blog/wp-content/uploads/img_2512.jpg" alt="Inserting the Connector Top" width="500" height="332" /><p class="wp-caption-text">Inserting the Connector Top</p></div></li>
<li><strong>Soldering the Wire</strong><br />
I soldered the wire to the two parts. I chose a wire of about 6 inches. In the first one I moded, I used a slightly shorter wire and my tests between the two show that the longer wire works better. I also chose to put the wire on the right hole on the board, next to the TR2 label. Some poeple soldered the wire to the small hole near the 616 label. I think that if you use the TR2 hole then the length of the wire should be the full 1/4 wavelength of 433Mhz (6.82 inches), but if you use the 616 hole then you need to subtract the length from the TR2 hole to the 616 hole. I use a length in between and seems to work very well.</p>
<p><div id="attachment_367" class="wp-caption aligncenter" style="width: 510px"><img class="size-medium wp-image-367" title="Soldering the Wire" src="http://www.deciacco.com/blog/wp-content/uploads/img_2517.jpg" alt="Soldering the Wire" width="500" height="340" /><p class="wp-caption-text">Soldering the Wire</p></div></li>
<li><strong>Reassemble</strong><br />
The last part was to put the battery back in, close the enclosure, and screw on the antenna.</p>
<p><div id="attachment_366" class="wp-caption aligncenter" style="width: 510px"><img class="size-medium wp-image-366" title="Reassemble" src="http://www.deciacco.com/blog/wp-content/uploads/img_2516.jpg" alt="Reassemble" width="500" height="332" /><p class="wp-caption-text">Reassemble</p></div></li>
<li><strong>Conclusion &amp; Test Shots</strong><br />
The overall performance of the transmitter improved dramatically. Without the mod I was getting about 25 feet reliably with intermittent fires at 30 feet. After the mod I was getting much more...see images below.</p>
<p><div id="attachment_384" class="wp-caption aligncenter" style="width: 509px"><img class="size-medium wp-image-384" title="Maximum distance with Test Button Only" src="http://www.deciacco.com/blog/wp-content/uploads/img_2667-499x332.jpg" alt="Maximum distance with Test Button Only" width="499" height="332" /><p class="wp-caption-text">Maximum distance with Test Button Only</p></div>
<p><div id="attachment_385" class="wp-caption aligncenter" style="width: 509px"><img class="size-medium wp-image-385" title="Maximum distance with max sync speed 1/200th sec" src="http://www.deciacco.com/blog/wp-content/uploads/img_2677-499x332.jpg" alt="Maximum distance with max sync speed 1/200th sec" width="499" height="332" /><p class="wp-caption-text">Maximum distance with max sync speed 1/200th sec</p></div></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.deciacco.com/blog/photography/gi-cactus-v2s-wireless-ebay-triggers-mod/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Extended Your Desktop Onto Another Computer</title>
		<link>http://www.deciacco.com/blog/software/extended-your-desktop-onto-another-computer</link>
		<comments>http://www.deciacco.com/blog/software/extended-your-desktop-onto-another-computer#comments</comments>
		<pubDate>Wed, 23 Apr 2008 22:23:58 +0000</pubDate>
		<dc:creator>deciacco</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.deciacco.com/blog/?p=203</guid>
		<description><![CDATA[At my office I have three monitors on my desk. Two are for my pc and one is for my backup server. I was thinking about how convenient it would be to simply move the mouse over to the backup server like an extended desktop. I started searching around and found Maxivista.com. One can always [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal"><a href="http://www.deciacco.com/blog/wp-content/uploads/mv2_kvm_ani.gif"><img class="alignleft size-medium wp-image-204" title="Shows Remote Control" src="http://www.deciacco.com/blog/wp-content/uploads/mv2_kvm_ani-300x194.gif" alt="" width="300" height="194" /></a>At my office I have three monitors on my desk. Two are for my pc and one is for my backup server. I was thinking about how convenient it would be to simply move the mouse over to the backup server like an extended desktop. I started searching around and found <a href="http://www.maxivista.com/">Maxivista.com</a>. One can always use remote desktop, but this is good if you want to control multiple computers with one keyboard and mouse, and it also gives you more screen real estate since you are using the added monitor of the other computer.</p>
<p class="MsoNormal">The company's main thing is that you can use old notebooks as extended monitors, which is cool and a good marketing angle, but what I like is the ability to remote control as in a KVM setup. I can move the mouse over to the right of the screen on my desktop and it seamlessly moves into the other computer's desktop. The mouse on the remote screen isn’t as smooth as far as the refresh rate, probably because the mouse movement information is going through the network, but it is still very good.</p>
<p class="MsoNormal">Check out their page for more information!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deciacco.com/blog/software/extended-your-desktop-onto-another-computer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Remove Experts-Exchange From Search Results</title>
		<link>http://www.deciacco.com/blog/software/remove-experts-exchange-from-search-results</link>
		<comments>http://www.deciacco.com/blog/software/remove-experts-exchange-from-search-results#comments</comments>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<dc:creator>deciacco</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.deciacco.com/blog/?p=201</guid>
		<description><![CDATA[When I search the internet I very often get results from the popular site www.experts-exchange.com. This is a forum type site where you have to be a paying member to participate. While there is nothing wrong with this, the site is setup to allow anyone to read member questions, so that their site comes up [...]]]></description>
			<content:encoded><![CDATA[<p>When I search the internet I very often get results from the popular site <strong>www.experts-exchange.com</strong>. This is a forum type site where you have to be a paying member to participate. While there is nothing wrong with this, the site is setup to allow anyone to read member questions, so that their site comes up in your search results in the hopes that if you visit their site you will pay to see the answer.  I, for one, am not willing to pay, therefor search results that take me to their site are completely useless. </p>
<p>I've created a search provider for your browser that omits results that would take you to their site.</p>
<p>Click the link to install:<a onclick="window.external.AddSearchProvider('http://www.deciacco.com/blog/wp-content/uploads/googlenoexpts.xml')" href="#"><br />
Search Without Experts-Exchange</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.deciacco.com/blog/software/remove-experts-exchange-from-search-results/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Natchez Trace Arch Bridge</title>
		<link>http://www.deciacco.com/blog/photography/natchez-trace-arch-bridge</link>
		<comments>http://www.deciacco.com/blog/photography/natchez-trace-arch-bridge#comments</comments>
		<pubDate>Thu, 17 Apr 2008 16:13:06 +0000</pubDate>
		<dc:creator>deciacco</dc:creator>
		
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.deciacco.com/blog/?p=198</guid>
		<description><![CDATA[BojanM gave me a good idea for a photo I could use for my company's new website. In order to fit in the site's theme I needed the black and white image, so here is the original. Since the trees have not fully bloomed the color version is not very good, but the B&#38;W version [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://bojan.selfip.com/bmblog/">BojanM</a> gave me a good idea for a photo I could use for my company's new website. In order to fit in the site's theme I needed the black and white image, so here is the original. Since the trees have not fully bloomed the color version is not very good, but the B&amp;W version is more effective as it emphasizes the structure. I will have to go back and shoot this one again later this year.</p>
<div id="attachment_200" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.deciacco.com/blog/wp-content/uploads/natcheztracebridge1_resized.jpg"><img class="size-medium wp-image-200" title="Natchez Trace Arch Bridge in Color" src="http://www.deciacco.com/blog/wp-content/uploads/natcheztracebridge1_resized.jpg" alt="Natchez Trace Arch Bridge in Color" width="500" height="332" /></a><p class="wp-caption-text">Natchez Trace Arch Bridge in Color</p></div>
<p style="text-align: center;">
<div id="attachment_199" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.deciacco.com/blog/wp-content/uploads/natcheztracebridgebw1_small.jpg"><img class="size-medium wp-image-199" title="Natchez Trace Arch Bridge" src="http://www.deciacco.com/blog/wp-content/uploads/natcheztracebridgebw1_small.jpg" alt="Natchez Trace Arch Bridge" width="500" height="332" /></a><p class="wp-caption-text">Natchez Trace Arch Bridge</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.deciacco.com/blog/photography/natchez-trace-arch-bridge/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Always Show The Vertical Scrollbar In Firefox</title>
		<link>http://www.deciacco.com/blog/snippets/always-show-the-vertical-scrollbar-in-firefox</link>
		<comments>http://www.deciacco.com/blog/snippets/always-show-the-vertical-scrollbar-in-firefox#comments</comments>
		<pubDate>Tue, 08 Apr 2008 22:03:51 +0000</pubDate>
		<dc:creator>deciacco</dc:creator>
		
		<category><![CDATA[Snippets]]></category>

		<category><![CDATA[firefox]]></category>

		<category><![CDATA[scrollbar]]></category>

		<guid isPermaLink="false">http://www.deciacco.com/blog/?p=195</guid>
		<description><![CDATA[My good friend BojanM showed me this very cool hack for Firefox that makes the vertical scrollbar always visible in Firefox. I find it annoying when I'm surfing pages and the page shifts left to right when it goes from extending beyond the bottom of the screen to fitting in the screen or the other [...]]]></description>
			<content:encoded><![CDATA[<p>My good friend <a href="http://bojan.selfip.com/bmblog/">BojanM</a> showed me this <a href="http://bojan.selfip.com/bmblog/?p=21">very cool hack for Firefox</a> that makes the vertical scrollbar always visible in Firefox. I find it annoying when I'm surfing pages and the page shifts left to right when it goes from extending beyond the bottom of the screen to fitting in the screen or the other way around. This little hack makes the vertical scroll bar always present at the right of screen. If the page extends beyond the bottom, then the scrollbar is activated, otherwise it's not. Thanks BojanM!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.deciacco.com/blog/snippets/always-show-the-vertical-scrollbar-in-firefox/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A Better &#8220;Send to Mail Recipient&#8221; With Outlook</title>
		<link>http://www.deciacco.com/blog/outlook/a-better-send-to-mail-recipient-with-outlook</link>
		<comments>http://www.deciacco.com/blog/outlook/a-better-send-to-mail-recipient-with-outlook#comments</comments>
		<pubDate>Thu, 03 Apr 2008 17:29:58 +0000</pubDate>
		<dc:creator>deciacco</dc:creator>
		
		<category><![CDATA[Outlook]]></category>

		<guid isPermaLink="false">http://www.deciacco.com/blog/?p=188</guid>
		<description><![CDATA[Sometimes when sending files through email, you want to be able to simply right-click on the file and select "Send to mail recipient" form the context menu. If you are an Outlook 2003 or 2007 user, you might have noticed that when you do this Outlook generates a plain text email with your files conveniently [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright alignnone size-medium wp-image-189" title="Original send to mail recipient" src="http://www.deciacco.com/blog/wp-content/uploads/mailre1.gif" alt="" />Sometimes when sending files through email, you want to be able to simply right-click on the file and select "Send to mail recipient" form the context menu. If you are an Outlook 2003 or 2007 user, you might have noticed that when you do this Outlook generates a plain text email with your files conveniently attached. While a plain text email is nice, and probably the way<img class="alignright alignnone size-medium wp-image-190" title="Plain text email" src="http://www.deciacco.com/blog/wp-content/uploads/mailre2.gif" alt="" /><br />
all email should be, most of us have been spoiled with html email that allows fancy formatting and we want  to keep this functionality when we right-click to send attachments. Not only do we want this formatting ability, but we also want our signatures to be automatically appended to the end of the mail.Below are a few steps to create a new "Send To Mail Recipient" context menu shortcut that address these issues:</p>
<ol>
<li>Right-Click the START button and select Explore<br />
<img class="size-medium wp-image-191 alignnone" title="Go to the Sent To menu" src="http://www.deciacco.com/blog/wp-content/uploads/mailre3.gif" alt="" width="161" height="170" /></li>
<li>Make sure to select the <em>Sent To</em> folder from the folder list on the left.</li>
<li>Right-Click anywhere in the white space to the right and select New, then Shortcut<img class="alignright alignnone size-medium wp-image-192" title="Command to execute" src="http://www.deciacco.com/blog/wp-content/uploads/mailre4.gif" alt="" /></li>
<li>In the <em>Type the location of the item:</em> box type in the following lines based on the version of Outlook  you are using:Outlook 2003:<br />
"C:\Program Files\Microsoft Office\OFFICE11\OUTLOOK.EXE" /c ipm.note</p>
<p>Outlook 2007:<br />
"C:\Program Files\Microsoft Office\OFFICE12\OUTLOOK.EXE" /a</li>
<li>In the <em>Type a name for this shortcut:</em><br />
box type in:Outlook Mail Recipient<br />
<img class="size-medium wp-image-193 alignnone" title="Context menu title" src="http://www.deciacco.com/blog/wp-content/uploads/mailre5.gif" alt="" width="280" height="84" /></li>
<li>Now when you right click on items to send as attachments you will have a new option. By selecting Outlook Mail Recipient you will get your new email in the default email format you have selected in Outlook and, if you have configured your signature for a new email, you will have it as well.<img class="size-medium wp-image-194 alignnone" title="New send to mail recipient" src="http://www.deciacco.com/blog/wp-content/uploads/mailre6.gif" alt="" width="280" height="105" /></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.deciacco.com/blog/outlook/a-better-send-to-mail-recipient-with-outlook/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Carter House Cannon</title>
		<link>http://www.deciacco.com/blog/photography/carter-house-cannon</link>
		<comments>http://www.deciacco.com/blog/photography/carter-house-cannon#comments</comments>
		<pubDate>Tue, 01 Apr 2008 14:57:11 +0000</pubDate>
		<dc:creator>deciacco</dc:creator>
		
		<category><![CDATA[Photography]]></category>

		<category><![CDATA[cannon]]></category>

		<category><![CDATA[civil war]]></category>

		<guid isPermaLink="false">http://www.deciacco.com/blog/?p=185</guid>
		<description><![CDATA[This is a cannon that is on the Carter House grounds. I like the image because it appears the cannon is popping out of the screen. I wish I had put part of the left wheel in the frame to balance it out a little more.
]]></description>
			<content:encoded><![CDATA[<p>This is a cannon that is on the <a href="http://www.carter-house.org/">Carter House</a> grounds. I like the image because it appears the cannon is popping out of the screen. I wish I had put part of the left wheel in the frame to balance it out a little more.</p>
<div id="attachment_390" class="wp-caption aligncenter" style="width: 510px"><img class="size-medium wp-image-390" title="Canon At The Carter House" src="http://www.deciacco.com/blog/wp-content/uploads/canon1-500x333.jpg" alt="Canon At The Carter House" width="500" height="333" /><p class="wp-caption-text">Canon At The Carter House</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.deciacco.com/blog/photography/carter-house-cannon/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Walters&#8217;s Old Railway Station</title>
		<link>http://www.deciacco.com/blog/photography/walterss-house</link>
		<comments>http://www.deciacco.com/blog/photography/walterss-house#comments</comments>
		<pubDate>Tue, 25 Mar 2008 03:25:40 +0000</pubDate>
		<dc:creator>deciacco</dc:creator>
		
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.deciacco.com/blog/archives/179</guid>
		<description><![CDATA[The other day after much procrastination, I finally got myself to go out and take some photos. I started out wanting to get some shots of old barns, but I got an old, yellow railway station instead. The sign on the side door stated it was the private property of the Walters's.
]]></description>
			<content:encoded><![CDATA[<p>The other day after much procrastination, I finally got myself to go out and take some photos. I started out wanting to get some shots of old barns, but I got an old, yellow railway station instead. The sign on the side door stated it was the private property of the Walters's.</p>
<div id="attachment_393" class="wp-caption aligncenter" style="width: 510px"><img class="size-medium wp-image-393" title="Walter's Railway Station" src="http://www.deciacco.com/blog/wp-content/uploads/img_1820-500x333.jpg" alt="Walter's Railway Station" width="500" height="333" /><p class="wp-caption-text">Walter&#39;s Railway Station</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.deciacco.com/blog/photography/walterss-house/feed/</wfw:commentRss>
		</item>
		<item>
		<title>An Apple a Day&#8230;</title>
		<link>http://www.deciacco.com/blog/photography/an-apple-a-day</link>
		<comments>http://www.deciacco.com/blog/photography/an-apple-a-day#comments</comments>
		<pubDate>Sat, 15 Mar 2008 19:18:11 +0000</pubDate>
		<dc:creator>deciacco</dc:creator>
		
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://www.deciacco.com/blog/archives/178</guid>
		<description><![CDATA[I've been doing some indoor, still-life photography lately to try and learn some better lighting techniques. This was done with an off-camera, diffused flash at camera right. The back(left side) of the apple was lit by light bouncing off a white surface. I cannot remember the power of the flash, but I think it was [...]]]></description>
			<content:encoded><![CDATA[<p>I've been doing some indoor, still-life photography lately to try and learn some better lighting techniques. This was done with an off-camera, diffused flash at camera right. The back(left side) of the apple was lit by light bouncing off a white surface. I cannot remember the power of the flash, but I think it was set at 1/4 power.</p>
<div id="attachment_397" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.deciacco.com/blog/wp-content/uploads/apple.jpg"><img class="size-medium wp-image-397" title="Apple" src="http://www.deciacco.com/blog/wp-content/uploads/apple-500x333.jpg" alt="Apple" width="500" height="333" /></a><p class="wp-caption-text">Apple</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.deciacco.com/blog/photography/an-apple-a-day/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
