<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" xml:lang="en" xml:base="http://dan.hersam.com/wp-atom.php">
	<title type="text">Amidst a tangled web</title>
	<subtitle type="text">A computer programmer's commentary on news, Linux, programming, music, web design, trivia, humor, usability and whatever else strikes his fancy at the time.</subtitle>

	<updated>2009-10-29T16:31:27Z</updated>
	<generator uri="http://wordpress.org/" version="2.8.6">WordPress</generator>

	<link rel="alternate" type="text/html" href="http://dan.hersam.com" />
	<id>http://dan.hersam.com/feed/atom/</id>
	

			<link rel="self" href="http://feeds.feedburner.com/AmidstATangledWeb" type="application/atom+xml" /><feedburner:emailServiceId>AmidstATangledWeb</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><feedburner:browserFriendly>This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site.</feedburner:browserFriendly><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><entry>
		<author>
			<name>Dan</name>
						<uri>http://dan.hersam.com/</uri>
					</author>
		<title type="html"><![CDATA[How to adjust the volume with a keyboard shortcut]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AmidstATangledWeb/~3/LdSIqq2MLvM/" />
		<id>http://dan.hersam.com/?p=2920</id>
		<updated>2009-10-29T16:31:27Z</updated>
		<published>2009-10-29T06:10:26Z</published>
		<category scheme="http://dan.hersam.com" term="Screencasts" />		<summary type="html"><![CDATA[This is the first of a series of instructional screencasts I&#8217;ll be creating.  I was inspired by Mouser&#8217;s 30 days of screencasts to create a few of my own.
This one teaches you how to create a global keyboard shortcut to turn the volume up or down, toggle mute, minimize a window, shutdown, restart, log [...]]]></summary>
		<content type="html" xml:base="http://dan.hersam.com/2009/10/28/how-to-adjust-the-volume-with-a-keyboard-shortcut/">&lt;p&gt;This is the first of a series of instructional screencasts I&amp;#8217;ll be creating.  I was inspired by &lt;a href="http://www.donationcoder.com/Forums/bb/index.php?topic=19046"&gt;Mouser&amp;#8217;s&lt;/a&gt; &lt;a href="http://www.donationcoder.com/3ds/"&gt;30 days of screencasts&lt;/a&gt; to create a few of my own.&lt;/p&gt;
&lt;p&gt;This one teaches you how to create a global keyboard shortcut to turn the volume up or down, toggle mute, minimize a window, shutdown, restart, log off, make the computer say the text in the clipboard and empty the recycle bin.&lt;/p&gt;
&lt;p&gt;Your keyboard may have buttons for this purpose, but these shortcuts are portable to any computer (XP/Vista and Windows 7), including my laptop.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.freewaregenius.com/2008/10/02/3rvx-stylish-hotkey-enabled-volume-control/"&gt;Freeware genius&lt;/a&gt; wrote about a few utilities to change the volume, but I prefer AutoHotkey because I already use it for shortcuts and &lt;a href="http://lifehacker.com/159785/hack-attack-knock-down-repetitive-email-with-autohotkey"&gt;text completion&lt;/a&gt;.  My resident Autohotkey script uses about 4MB of RAM and adding a few extra shortcuts doesn&amp;#8217;t change that.  Running a new utility would.&lt;/p&gt;
&lt;p&gt;&lt;strike&gt;I realize the text in the video is a bit hard to read.   I&amp;#8217;ll work on making it easier to read for future screencasts.&lt;/strike&gt; The version I uploaded to &lt;a href="http://www.youtube.com/watch?v=zPlZyvcV5LQ"&gt;YouTube &lt;/a&gt; was hard to read, but the same video uploaded to Vimeo (which is now below) looks great.&lt;/p&gt;
&lt;p&gt;&lt;object width="640" height="472"&gt;&lt;param name="allowfullscreen" value="true" /&gt;&lt;param name="allowscriptaccess" value="always" /&gt;&lt;param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=7323728&amp;amp;server=vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=00ADEF&amp;amp;fullscreen=1" /&gt;&lt;embed src="http://vimeo.com/moogaloop.swf?clip_id=7323728&amp;amp;server=vimeo.com&amp;amp;show_title=1&amp;amp;show_byline=1&amp;amp;show_portrait=0&amp;amp;color=00ADEF&amp;amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="640" height="472"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;Here&amp;#8217;s the AutoHotkey script I used.&lt;/p&gt;
&lt;pre style='color:#000000;background:#ffffff;'&gt;&lt;span style='color:#808030; '&gt;;&lt;/span&gt; Minimize active window with Ctrl&lt;span style='color:#808030; '&gt;-&lt;/span&gt;Alt&lt;span style='color:#808030; '&gt;-&lt;/span&gt;m
&lt;span style='color:#808030; '&gt;^&lt;/span&gt;&lt;span style='color:#808030; '&gt;!&lt;/span&gt;m&lt;span style='color:#808030; '&gt;:&lt;/span&gt;&lt;span style='color:#808030; '&gt;:&lt;/span&gt;WinMinimize&lt;span style='color:#808030; '&gt;,&lt;/span&gt;A

&lt;span style='color:#808030; '&gt;;&lt;/span&gt; Send command to nircmd
runNircmd&lt;span style='color:#808030; '&gt;(&lt;/span&gt;args&lt;span style='color:#808030; '&gt;)&lt;/span&gt;
&lt;span style='color:#800080; '&gt;{&lt;/span&gt;
  Run &lt;span style='color:#808030; '&gt;%&lt;/span&gt;A_WorkingDir&lt;span style='color:#808030; '&gt;%&lt;/span&gt;\&lt;span style='color:#808030; '&gt;.&lt;/span&gt;&lt;span style='color:#808030; '&gt;.&lt;/span&gt;\&lt;span style='color:#808030; '&gt;.&lt;/span&gt;&lt;span style='color:#808030; '&gt;.&lt;/span&gt;\utils\nircmd\nircmd&lt;span style='color:#808030; '&gt;.&lt;/span&gt;exe &lt;span style='color:#808030; '&gt;%&lt;/span&gt;args&lt;span style='color:#808030; '&gt;%&lt;/span&gt;
&lt;span style='color:#800080; '&gt;}&lt;/span&gt;

&lt;span style='color:#808030; '&gt;;&lt;/span&gt; Volume control &lt;span style='color:#808030; '&gt;(&lt;/span&gt;turn volume up &lt;span style='color:#800000; font-weight:bold; '&gt;and&lt;/span&gt; down &lt;span style='color:#800000; font-weight:bold; '&gt;and&lt;/span&gt; toggle mute&lt;span style='color:#808030; '&gt;)&lt;/span&gt;
&lt;span style='color:#808030; '&gt;^&lt;/span&gt;&lt;span style='color:#808030; '&gt;!&lt;/span&gt;Up&lt;span style='color:#808030; '&gt;:&lt;/span&gt;&lt;span style='color:#808030; '&gt;:&lt;/span&gt;runNircmd&lt;span style='color:#808030; '&gt;(&lt;/span&gt;&lt;span style='color:#800000; '&gt;"&lt;/span&gt;&lt;span style='color:#0000e6; '&gt;changesysvolume 5000&lt;/span&gt;&lt;span style='color:#800000; '&gt;"&lt;/span&gt;&lt;span style='color:#808030; '&gt;)&lt;/span&gt;
&lt;span style='color:#808030; '&gt;^&lt;/span&gt;&lt;span style='color:#808030; '&gt;!&lt;/span&gt;Down&lt;span style='color:#808030; '&gt;:&lt;/span&gt;&lt;span style='color:#808030; '&gt;:&lt;/span&gt;runNircmd&lt;span style='color:#808030; '&gt;(&lt;/span&gt;&lt;span style='color:#800000; '&gt;"&lt;/span&gt;&lt;span style='color:#0000e6; '&gt;changesysvolume -5000&lt;/span&gt;&lt;span style='color:#800000; '&gt;"&lt;/span&gt;&lt;span style='color:#808030; '&gt;)&lt;/span&gt;
&lt;span style='color:#808030; '&gt;^&lt;/span&gt;&lt;span style='color:#808030; '&gt;!&lt;/span&gt;&lt;span style='color:#808030; '&gt;.&lt;/span&gt;&lt;span style='color:#808030; '&gt;:&lt;/span&gt;&lt;span style='color:#808030; '&gt;:&lt;/span&gt;runNircmd&lt;span style='color:#808030; '&gt;(&lt;/span&gt;&lt;span style='color:#800000; '&gt;"&lt;/span&gt;&lt;span style='color:#0000e6; '&gt;mutesysvolume 2&lt;/span&gt;&lt;span style='color:#800000; '&gt;"&lt;/span&gt;&lt;span style='color:#808030; '&gt;)&lt;/span&gt;

&lt;span style='color:#808030; '&gt;;&lt;/span&gt; Say what's &lt;span style='color:#800000; font-weight:bold; '&gt;in&lt;/span&gt; the clipboard
&lt;span style='color:#808030; '&gt;^&lt;/span&gt;&lt;span style='color:#808030; '&gt;!&lt;/span&gt;&lt;span style='color:#808030; '&gt;]&lt;/span&gt;&lt;span style='color:#808030; '&gt;:&lt;/span&gt;&lt;span style='color:#808030; '&gt;:&lt;/span&gt;runNircmd&lt;span style='color:#808030; '&gt;(&lt;/span&gt;&lt;span style='color:#800000; '&gt;"&lt;/span&gt;&lt;span style='color:#0000e6; '&gt;speak text ~$clipboard$&lt;/span&gt;&lt;span style='color:#800000; '&gt;"&lt;/span&gt;&lt;span style='color:#808030; '&gt;)&lt;/span&gt;

&lt;span style='color:#808030; '&gt;;&lt;/span&gt; Power commands
&lt;span style='color:#808030; '&gt;^&lt;/span&gt;&lt;span style='color:#808030; '&gt;!&lt;/span&gt;&lt;span style='color:#808030; '&gt;+&lt;/span&gt;r&lt;span style='color:#808030; '&gt;:&lt;/span&gt;&lt;span style='color:#808030; '&gt;:&lt;/span&gt;runNircmd&lt;span style='color:#808030; '&gt;(&lt;/span&gt;&lt;span style='color:#800000; '&gt;"&lt;/span&gt;&lt;span style='color:#0000e6; '&gt;initshutdown &lt;/span&gt;&lt;span style='color:#800000; '&gt;"&lt;/span&gt;&lt;span style='color:#800000; '&gt;"&lt;/span&gt;&lt;span style='color:#0000e6; '&gt;Rebooting in 10 seconds&lt;/span&gt;&lt;span style='color:#800000; '&gt;"&lt;/span&gt;&lt;span style='color:#800000; '&gt;"&lt;/span&gt;&lt;span style='color:#0000e6; '&gt; 10 reboot&lt;/span&gt;&lt;span style='color:#800000; '&gt;"&lt;/span&gt;&lt;span style='color:#808030; '&gt;)&lt;/span&gt;
&lt;span style='color:#808030; '&gt;^&lt;/span&gt;&lt;span style='color:#808030; '&gt;!&lt;/span&gt;&lt;span style='color:#808030; '&gt;+&lt;/span&gt;s&lt;span style='color:#808030; '&gt;:&lt;/span&gt;&lt;span style='color:#808030; '&gt;:&lt;/span&gt;runNircmd&lt;span style='color:#808030; '&gt;(&lt;/span&gt;&lt;span style='color:#800000; '&gt;"&lt;/span&gt;&lt;span style='color:#0000e6; '&gt;initshutdown &lt;/span&gt;&lt;span style='color:#800000; '&gt;"&lt;/span&gt;&lt;span style='color:#800000; '&gt;"&lt;/span&gt;&lt;span style='color:#0000e6; '&gt;Shutting down in 10 seconds&lt;/span&gt;&lt;span style='color:#800000; '&gt;"&lt;/span&gt;&lt;span style='color:#800000; '&gt;"&lt;/span&gt;&lt;span style='color:#0000e6; '&gt; 10&lt;/span&gt;&lt;span style='color:#800000; '&gt;"&lt;/span&gt;&lt;span style='color:#808030; '&gt;)&lt;/span&gt;
&lt;span style='color:#808030; '&gt;^&lt;/span&gt;&lt;span style='color:#808030; '&gt;!&lt;/span&gt;&lt;span style='color:#808030; '&gt;+&lt;/span&gt;q&lt;span style='color:#808030; '&gt;:&lt;/span&gt;&lt;span style='color:#808030; '&gt;:&lt;/span&gt;runNircmd&lt;span style='color:#808030; '&gt;(&lt;/span&gt;&lt;span style='color:#800000; '&gt;"&lt;/span&gt;&lt;span style='color:#0000e6; '&gt;abortshutdown&lt;/span&gt;&lt;span style='color:#800000; '&gt;"&lt;/span&gt;&lt;span style='color:#808030; '&gt;)&lt;/span&gt;
&lt;span style='color:#808030; '&gt;^&lt;/span&gt;&lt;span style='color:#808030; '&gt;!&lt;/span&gt;&lt;span style='color:#808030; '&gt;+&lt;/span&gt;l&lt;span style='color:#808030; '&gt;:&lt;/span&gt;&lt;span style='color:#808030; '&gt;:&lt;/span&gt;runNircmd&lt;span style='color:#808030; '&gt;(&lt;/span&gt;&lt;span style='color:#800000; '&gt;"&lt;/span&gt;&lt;span style='color:#0000e6; '&gt;exitwin logoff&lt;/span&gt;&lt;span style='color:#800000; '&gt;"&lt;/span&gt;&lt;span style='color:#808030; '&gt;)&lt;/span&gt;

&lt;span style='color:#808030; '&gt;;&lt;/span&gt; Empty the recycle bin
&lt;span style='color:#808030; '&gt;^&lt;/span&gt;&lt;span style='color:#808030; '&gt;!&lt;/span&gt;&lt;span style='color:#808030; '&gt;+&lt;/span&gt;b&lt;span style='color:#808030; '&gt;:&lt;/span&gt;&lt;span style='color:#808030; '&gt;:&lt;/span&gt;runNircmd&lt;span style='color:#808030; '&gt;(&lt;/span&gt;&lt;span style='color:#800000; '&gt;"&lt;/span&gt;&lt;span style='color:#0000e6; '&gt;emptybin&lt;/span&gt;&lt;span style='color:#800000; '&gt;"&lt;/span&gt;&lt;span style='color:#808030; '&gt;)&lt;/span&gt;
&lt;/pre&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AmidstATangledWeb?a=LdSIqq2MLvM:eAK6G0S4Py0:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AmidstATangledWeb?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AmidstATangledWeb?a=LdSIqq2MLvM:eAK6G0S4Py0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AmidstATangledWeb?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<link rel="replies" type="text/html" href="http://dan.hersam.com/2009/10/28/how-to-adjust-the-volume-with-a-keyboard-shortcut/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://dan.hersam.com/2009/10/28/how-to-adjust-the-volume-with-a-keyboard-shortcut/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://dan.hersam.com/2009/10/28/how-to-adjust-the-volume-with-a-keyboard-shortcut/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Dan</name>
						<uri>http://dan.hersam.com/</uri>
					</author>
		<title type="html"><![CDATA[How much TV do you watch?]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AmidstATangledWeb/~3/c1zQ7jD5hKg/" />
		<id>http://dan.hersam.com/?p=2918</id>
		<updated>2009-09-24T16:20:31Z</updated>
		<published>2009-09-24T16:20:31Z</published>
		<category scheme="http://dan.hersam.com" term="Productivity" />		<summary type="html"><![CDATA[According to the Economist, the average American household watches over 8 hours of TV.

This is one area where we don&#8217;t want to be #1.
]]></summary>
		<content type="html" xml:base="http://dan.hersam.com/2009/09/24/how-much-tv-do-you-watch/">&lt;p&gt;According to the &lt;a href="http://www.economist.com/blogs/freeexchange/2009/09/the_idiot_box.cfm"&gt;Economist&lt;/a&gt;, the average American household watches over 8 hours of TV.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://media.economist.com/images/na/2009w34/TV.jpg" border="0" alt="TV watching by country" /&gt;&lt;/p&gt;
&lt;p&gt;This is one area where we don&amp;#8217;t want to be #1.&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AmidstATangledWeb?a=c1zQ7jD5hKg:QDVuJKzdnJI:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AmidstATangledWeb?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AmidstATangledWeb?a=c1zQ7jD5hKg:QDVuJKzdnJI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AmidstATangledWeb?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<link rel="replies" type="text/html" href="http://dan.hersam.com/2009/09/24/how-much-tv-do-you-watch/#comments" thr:count="6" />
		<link rel="replies" type="application/atom+xml" href="http://dan.hersam.com/2009/09/24/how-much-tv-do-you-watch/feed/atom/" thr:count="6" />
		<thr:total>6</thr:total>
	<feedburner:origLink>http://dan.hersam.com/2009/09/24/how-much-tv-do-you-watch/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Dan</name>
						<uri>http://dan.hersam.com/</uri>
					</author>
		<title type="html"><![CDATA[Is an NFL QB or World-class archer more accurate?]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AmidstATangledWeb/~3/EHGL1zKY7as/" />
		<id>http://dan.hersam.com/?p=2906</id>
		<updated>2009-08-11T18:59:08Z</updated>
		<published>2009-08-11T18:59:08Z</published>
		<category scheme="http://dan.hersam.com" term="Trivia and tidbits" />		<summary type="html"><![CDATA[If you had to guess, would you say a world-class archer or an NFL quarterback is more accurate?
My bet was on the archer.  As you probably surmised, I was dead wrong.  To see just how accurate Drew Brees is, take a look at this video.  I made the video jump past the [...]]]></summary>
		<content type="html" xml:base="http://dan.hersam.com/2009/08/11/is-an-nfl-qb-or-world-class-archer-more-accurate/">&lt;p&gt;If you had to guess, would you say a world-class archer or an NFL quarterback is more accurate?&lt;/p&gt;
&lt;p&gt;My bet was on the archer.  As you probably surmised, I was dead wrong.  To see just how accurate Drew Brees is, take a look at this video.  I made the video jump past the boring intro directly to the good stuff.&lt;/p&gt;
&lt;p&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/tVoqA-LKGb4&amp;#038;hl=en&amp;#038;fs=1&amp;#038;start=250"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/tVoqA-LKGb4&amp;#038;hl=en&amp;#038;fs=1&amp;#038;start=250" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;(via &lt;a href="http://smartfootball.blogspot.com/2009/08/drew-brees-is-scary-accurate.html"&gt;Smart Football&lt;/a&gt;)&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AmidstATangledWeb?a=EHGL1zKY7as:S-mpVrrWJrg:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AmidstATangledWeb?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AmidstATangledWeb?a=EHGL1zKY7as:S-mpVrrWJrg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AmidstATangledWeb?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<link rel="replies" type="text/html" href="http://dan.hersam.com/2009/08/11/is-an-nfl-qb-or-world-class-archer-more-accurate/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://dan.hersam.com/2009/08/11/is-an-nfl-qb-or-world-class-archer-more-accurate/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://dan.hersam.com/2009/08/11/is-an-nfl-qb-or-world-class-archer-more-accurate/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Dan</name>
						<uri>http://dan.hersam.com/</uri>
					</author>
		<title type="html"><![CDATA[Bypass Voicemail Instructions]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AmidstATangledWeb/~3/EWFEsvgnEl8/" />
		<id>http://dan.hersam.com/?p=2902</id>
		<updated>2009-07-31T16:43:45Z</updated>
		<published>2009-07-31T16:39:01Z</published>
		<category scheme="http://dan.hersam.com" term="Useful" />		<summary type="html"><![CDATA[Like the preflight seatbelt fastening instructions, you don&#8217;t need to hear how to leave a voicemail each time you leave one.
I left my wife a voicemail the other day and was frustrated at how long it took to get to the beep where I could leave my 3-second response.  I wondered if there was [...]]]></summary>
		<content type="html" xml:base="http://dan.hersam.com/2009/07/31/bypass-voicemail-instructions/">&lt;p&gt;Like the preflight seatbelt fastening instructions, you don&amp;#8217;t need to hear how to leave a voicemail each time you leave one.&lt;/p&gt;
&lt;p&gt;I left my wife a voicemail the other day and was frustrated at how long it took to get to the beep where I could leave my 3-second response.  I wondered if there was a way to skip by that.&lt;/p&gt;
&lt;p&gt;Lifehacker&amp;#8217;s uncanny prescience strikes again with instructions on how to &lt;a href="http://lifehacker.com/5326511/bypass-cellphone-voicemail-instructions-with-one-star-pound"&gt;skip right to leaving the message&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The executive summary is to hit &lt;b&gt;one star pound (1*#)&lt;/b&gt;, which covers all major carriers.  The link has more details.&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AmidstATangledWeb?a=EWFEsvgnEl8:3uAvMz2bgms:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AmidstATangledWeb?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AmidstATangledWeb?a=EWFEsvgnEl8:3uAvMz2bgms:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AmidstATangledWeb?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<link rel="replies" type="text/html" href="http://dan.hersam.com/2009/07/31/bypass-voicemail-instructions/#comments" thr:count="2" />
		<link rel="replies" type="application/atom+xml" href="http://dan.hersam.com/2009/07/31/bypass-voicemail-instructions/feed/atom/" thr:count="2" />
		<thr:total>2</thr:total>
	<feedburner:origLink>http://dan.hersam.com/2009/07/31/bypass-voicemail-instructions/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Dan</name>
						<uri>http://dan.hersam.com/</uri>
					</author>
		<title type="html"><![CDATA[Incredible 3D Murals]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AmidstATangledWeb/~3/2XCpLoUI6oM/" />
		<id>http://dan.hersam.com/?p=2897</id>
		<updated>2009-07-30T04:30:35Z</updated>
		<published>2009-07-30T04:29:36Z</published>
		<category scheme="http://dan.hersam.com" term="Entertaining" />		<summary type="html"><![CDATA[
This article has several other examples of John Pugh&#8217;s work.  He&#8217;s a mural artist who has created an impressive array of realistic-looking murals.  He often adds people to the mural to heighten to the 3D effect.
Pugh is quoted as saying, &#8220;It seems almost universal that people take delight in being visually tricked.&#8221;
He&#8217;s right.
]]></summary>
		<content type="html" xml:base="http://dan.hersam.com/2009/07/29/incredible-3d-murals/">&lt;p&gt;&lt;a href="http://www.illusion-art.com/enlargement.asp?pt=Taylor%20Hall,%20Chico%20State%20University,%20Chico%20CA&amp;#038;im=taylor/TaylorHallM.jpg"&gt;&lt;img src="http://www.illusion-art.com/taylor/TaylorHallM.jpg" border="0" alt="John Pugh's mural" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.dailymail.co.uk/news/worldnews/article-1187338/Off-wall-The-astonishing-3D-murals-painted-sides-buildings-trompe-loeil-artist.html"&gt;This article&lt;/a&gt; has several other examples of John Pugh&amp;#8217;s work.  He&amp;#8217;s a mural artist who has created an impressive array of realistic-looking murals.  He often adds people to the mural to heighten to the 3D effect.&lt;/p&gt;
&lt;p&gt;Pugh is quoted as saying, &amp;#8220;It seems almost universal that people take delight in being visually tricked.&amp;#8221;&lt;/p&gt;
&lt;p&gt;He&amp;#8217;s right.&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AmidstATangledWeb?a=2XCpLoUI6oM:joU3p3imnKE:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AmidstATangledWeb?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AmidstATangledWeb?a=2XCpLoUI6oM:joU3p3imnKE:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AmidstATangledWeb?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<link rel="replies" type="text/html" href="http://dan.hersam.com/2009/07/29/incredible-3d-murals/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://dan.hersam.com/2009/07/29/incredible-3d-murals/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://dan.hersam.com/2009/07/29/incredible-3d-murals/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Dan</name>
						<uri>http://dan.hersam.com/</uri>
					</author>
		<title type="html"><![CDATA[Estimation]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AmidstATangledWeb/~3/C7c2DDzX6ks/" />
		<id>http://dan.hersam.com/?p=2894</id>
		<updated>2009-07-20T18:01:54Z</updated>
		<published>2009-07-20T18:01:22Z</published>
		<category scheme="http://dan.hersam.com" term="Humor" />		<summary type="html"><![CDATA[This made me literally LOL.

]]></summary>
		<content type="html" xml:base="http://dan.hersam.com/2009/07/20/estimation/">&lt;p&gt;This made me literally LOL.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://xkcd.com/612/"&gt;&lt;img src="http://imgs.xkcd.com/comics/estimation.png" border="0" alt="XKCD" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AmidstATangledWeb?a=C7c2DDzX6ks:eebQNrUiTLo:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AmidstATangledWeb?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AmidstATangledWeb?a=C7c2DDzX6ks:eebQNrUiTLo:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AmidstATangledWeb?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<link rel="replies" type="text/html" href="http://dan.hersam.com/2009/07/20/estimation/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://dan.hersam.com/2009/07/20/estimation/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://dan.hersam.com/2009/07/20/estimation/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Dan</name>
						<uri>http://dan.hersam.com/</uri>
					</author>
		<title type="html"><![CDATA[Ping Pong Table Door]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AmidstATangledWeb/~3/eXvLJcliZRA/" />
		<id>http://dan.hersam.com/?p=2884</id>
		<updated>2009-07-10T00:16:41Z</updated>
		<published>2009-07-10T13:16:29Z</published>
		<category scheme="http://dan.hersam.com" term="Entertaining" />		<summary type="html"><![CDATA[In the &#8220;Why Didn&#8217;t I Think of That&#8221; category, here&#8217;s a novel idea for game rooms or bedrooms, or maybe even kitchens or bathrooms if you&#8217;re eccentric.
A door that doubles as a ping pong table.

]]></summary>
		<content type="html" xml:base="http://dan.hersam.com/2009/07/10/ping-pong-table-door/">&lt;p&gt;In the &amp;#8220;Why Didn&amp;#8217;t I Think of That&amp;#8221; category, here&amp;#8217;s a novel idea for game rooms or bedrooms, or maybe even kitchens or bathrooms if you&amp;#8217;re eccentric.&lt;/p&gt;
&lt;p&gt;A door that &lt;a href="http://www.techeblog.com/index.php/tech-gadget/ping-pong-door-hands-on"&gt;doubles as a ping pong table&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://dan.hersam.com/images/pingpongdoor.jpg" border="1" alt="Ping Pong Door" /&gt;&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AmidstATangledWeb?a=eXvLJcliZRA:i1BRgy-38Ok:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AmidstATangledWeb?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AmidstATangledWeb?a=eXvLJcliZRA:i1BRgy-38Ok:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AmidstATangledWeb?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<link rel="replies" type="text/html" href="http://dan.hersam.com/2009/07/10/ping-pong-table-door/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://dan.hersam.com/2009/07/10/ping-pong-table-door/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://dan.hersam.com/2009/07/10/ping-pong-table-door/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Dan</name>
						<uri>http://dan.hersam.com/</uri>
					</author>
		<title type="html"><![CDATA[Man + Baby = Hilarity]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AmidstATangledWeb/~3/4qpN_VyshtY/" />
		<id>http://dan.hersam.com/?p=2869</id>
		<updated>2009-06-23T06:23:45Z</updated>
		<published>2009-06-23T06:22:52Z</published>
		<category scheme="http://dan.hersam.com" term="Entertaining" />		<summary type="html"><![CDATA[This is one of the funniest things I&#8217;ve seen in a long time.
Man Babies has pictures of a man and a baby with swapped heads.  From the textual description you might think it&#8217;s disturbing and wrong, but man are some of them funny.
Here are a few examples.



(via Techcrunch)
]]></summary>
		<content type="html" xml:base="http://dan.hersam.com/2009/06/22/man-baby-hilarity/">&lt;p&gt;This is one of the funniest things I&amp;#8217;ve seen in a long time.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://manbabies.com/popular"&gt;Man Babies&lt;/a&gt; has pictures of a man and a baby with swapped heads.  From the textual description you might think it&amp;#8217;s disturbing and wrong, but man are some of them funny.&lt;/p&gt;
&lt;p&gt;Here are a few examples.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://manbabies.com/content/306"&gt;&lt;img alt="ManBabies.com - Dad?" src="http://manbabies.com/images/306.jpg" border=0 /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://manbabies.com/content/301"&gt;&lt;img alt="ManBabies.com - Dad?" src="http://manbabies.com/images/301.jpg" border=0 /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://manbabies.com/content/14"&gt;&lt;img alt="ManBabies.com - Dad?" src="http://manbabies.com/images/14.jpg" border=0 /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;(via &lt;a href="http://www.techcrunch.com/2009/06/19/i-have-a-crush-on-manbabiescom/"&gt;Techcrunch&lt;/a&gt;)&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AmidstATangledWeb?a=4qpN_VyshtY:X0yhkjUsapE:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AmidstATangledWeb?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AmidstATangledWeb?a=4qpN_VyshtY:X0yhkjUsapE:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AmidstATangledWeb?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<link rel="replies" type="text/html" href="http://dan.hersam.com/2009/06/22/man-baby-hilarity/#comments" thr:count="4" />
		<link rel="replies" type="application/atom+xml" href="http://dan.hersam.com/2009/06/22/man-baby-hilarity/feed/atom/" thr:count="4" />
		<thr:total>4</thr:total>
	<feedburner:origLink>http://dan.hersam.com/2009/06/22/man-baby-hilarity/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Dan</name>
						<uri>http://dan.hersam.com/</uri>
					</author>
		<title type="html"><![CDATA[Shortcut to Create a New Folder in XP]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AmidstATangledWeb/~3/6MTbWXfmr7M/" />
		<id>http://dan.hersam.com/?p=2862</id>
		<updated>2009-06-19T08:00:35Z</updated>
		<published>2009-06-19T07:59:05Z</published>
		<category scheme="http://dan.hersam.com" term="Computers" />		<summary type="html"><![CDATA[Lifehacker posted about a tiny but useful feature of Windows 7 &#8211; a keyboard shortcut to create a new folder.
On Windows XP, it&#8217;s still missing.  In the past I&#8217;ve always used a right click with wf.  It gets the job done but it uses the mouse, which is slow.  Now that Microsoft [...]]]></summary>
		<content type="html" xml:base="http://dan.hersam.com/2009/06/19/shortcut-to-create-a-new-folder-in-xp/">&lt;p&gt;Lifehacker posted about a tiny but useful feature of Windows 7 &amp;#8211; &lt;a href="http://lifehacker.com/5294468/windows-7-creates-new-folders-with-a-hotkey"&gt;a keyboard shortcut to create a new folder&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;On Windows XP, it&amp;#8217;s still missing.  In the past I&amp;#8217;ve always used a right click with wf.  It gets the job done but it uses the mouse, which is slow.  Now that Microsoft has given this a more or less official shortcut, I decided to emulate it on XP with &lt;a href="http://dan.hersam.com/2008/06/28/increase-your-productivity-with-text-shortcuts/"&gt;AutoHotKey&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;It&amp;#8217;s extremely simple and after using it I wonder why I didn&amp;#8217;t do it sooner.&lt;/p&gt;
&lt;p&gt;Here&amp;#8217;s the AutoHotKey code to make the magic happen.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;^+n::send +{F10}wf&lt;/code&gt;&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AmidstATangledWeb?a=6MTbWXfmr7M:3MMTIbBj18U:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AmidstATangledWeb?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AmidstATangledWeb?a=6MTbWXfmr7M:3MMTIbBj18U:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AmidstATangledWeb?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<link rel="replies" type="text/html" href="http://dan.hersam.com/2009/06/19/shortcut-to-create-a-new-folder-in-xp/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://dan.hersam.com/2009/06/19/shortcut-to-create-a-new-folder-in-xp/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://dan.hersam.com/2009/06/19/shortcut-to-create-a-new-folder-in-xp/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Dan</name>
						<uri>http://dan.hersam.com/</uri>
					</author>
		<title type="html"><![CDATA[Firefox 3.5 Almost Ready]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/AmidstATangledWeb/~3/wdgfAVROCaw/" />
		<id>http://dan.hersam.com/?p=2849</id>
		<updated>2009-06-11T17:22:11Z</updated>
		<published>2009-06-14T16:06:22Z</published>
		<category scheme="http://dan.hersam.com" term="Web browsers" />		<summary type="html"><![CDATA[I&#8217;ve been running a portable version of Firefox 3.5 b99 (a preview release) to see what the excitement was about.  I was a little disappointed.  Aside from a few very minor cosmetic changes, it looks the same as 3.0.x.
I didn&#8217;t do a formal speed analysis, but it felt like it loaded pages a [...]]]></summary>
		<content type="html" xml:base="http://dan.hersam.com/2009/06/14/firefox-3-5-almost-ready/">&lt;p&gt;I&amp;#8217;ve been running a &lt;a href="http://portableapps.com/apps/internet/firefox_portable/test"&gt;portable version&lt;/a&gt; of &lt;a href="http://www.mozilla.com/en-US/firefox/3.5b99/releasenotes/"&gt;Firefox 3.5 b99&lt;/a&gt; (a preview release) to see what the excitement was about.  I was a little disappointed.  Aside from a few very minor cosmetic changes, it looks the same as 3.0.x.&lt;/p&gt;
&lt;p&gt;I didn&amp;#8217;t do a formal speed analysis, but it felt like it loaded pages a little faster, especially Google&amp;#8217;s AJAX-heavy sites like Google Calendar, Gmail and Google Maps.  RAM consumption was about the same as 3.0.x and there aren&amp;#8217;t any immediately obvious new features.  The majority of the changes are under the hood, as illustrated by &lt;a href="http://www.techcrunch.com/2009/06/09/demo-firefox-35-treats-videos-like-web-pages-why-cant-flash-do-that/"&gt;this demo&lt;/a&gt; given to the Techcrunch folks.  The demo has a great wow-factor, but it doesn&amp;#8217;t affect my day to day use of Firefox.&lt;/p&gt;
&lt;p&gt;I installed the &lt;a href="https://addons.mozilla.org/en-US/firefox/addon/6543"&gt;nightly tester tools&lt;/a&gt; in order to install a few add-ons, but the core ones I use (mainly &lt;a href="http://adblockplus.org/en/"&gt;Adblock Plus&lt;/a&gt; and &lt;a href="http://www.xmarks.com/"&gt;XMarks&lt;/a&gt;) were already compatible.&lt;/p&gt;
&lt;p&gt;After a few days of running 3.5, I&amp;#8217;m not inclined to jump onto this release early.  The new features aren&amp;#8217;t enough to warrant dealing with bugs and instability.&lt;/p&gt;
&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/AmidstATangledWeb?a=wdgfAVROCaw:hQA08O4Rxh8:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AmidstATangledWeb?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/AmidstATangledWeb?a=wdgfAVROCaw:hQA08O4Rxh8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/AmidstATangledWeb?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content>
		<link rel="replies" type="text/html" href="http://dan.hersam.com/2009/06/14/firefox-3-5-almost-ready/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://dan.hersam.com/2009/06/14/firefox-3-5-almost-ready/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://dan.hersam.com/2009/06/14/firefox-3-5-almost-ready/</feedburner:origLink></entry>
	</feed><!-- Dynamic page generated in 0.177 seconds. --><!-- Cached page generated by WP-Super-Cache on 2009-11-13 08:06:53 --><!-- Compression = gzip -->
