<?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:georss="http://www.georss.org/georss" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>Garbage In Garbage Out</title>
	<atom:link href="http://www.gigoblog.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gigoblog.com</link>
	<description>WTMB. WYSIWYG (YABB), but YKTD: GIGO.</description>
	<pubDate>Fri, 27 Jun 2008 13:45:29 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
		<!-- podcast_generator="podPress/8.8" -->
		<copyright>&#xA9; </copyright>
		<managingEditor>cb@binaryblind.com ()</managingEditor>
		<webMaster>cb@binaryblind.com()</webMaster>
		<category></category>
		<ttl>1440</ttl>
		<itunes:keywords></itunes:keywords>
		<itunes:subtitle></itunes:subtitle>
		<itunes:summary>WTMB. WYSIWYG (YABB), but YKTD: GIGO.</itunes:summary>
		<itunes:author></itunes:author>
		<itunes:category text="Society &amp; Culture"/>
		<itunes:owner>
			<itunes:name></itunes:name>
			<itunes:email>cb@binaryblind.com</itunes:email>
		</itunes:owner>
		<itunes:block>No</itunes:block>
		<itunes:explicit>no</itunes:explicit>
		<itunes:image href="http://www.gigoblog.com/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<image>
			<url>http://www.gigoblog.com/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
			<title>Garbage In Garbage Out</title>
			<link>http://www.gigoblog.com</link>
			<width>144</width>
			<height>144</height>
		</image>
		<item>
		<title>Set up Screen Sharing (VNC) via command line on Mac OS X remotely using SSH</title>
		<link>http://www.gigoblog.com/2008/04/08/set-up-screen-sharing-vnc-via-command-line-on-mac-os-x-remotely-using-ssh/</link>
		<comments>http://www.gigoblog.com/2008/04/08/set-up-screen-sharing-vnc-via-command-line-on-mac-os-x-remotely-using-ssh/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 15:40:44 +0000</pubDate>
		<dc:creator>Chris Brewer</dc:creator>
		
		<category><![CDATA[Front Page]]></category>

		<category><![CDATA[How-To]]></category>

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

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

		<category><![CDATA[Mac OS X]]></category>

		<category><![CDATA[remote access]]></category>

		<category><![CDATA[screen sharing]]></category>

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

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

		<guid isPermaLink="false">http://www.gigoblog.com/2008/04/08/set-up-vnc-via-command-line-on-mac-os-x-remotely-using-ssh/</guid>
		<description><![CDATA[Locked out of a Mac because Remote Desktop has suddenly taken a crap on you? Want to remotely enable Screen Sharing (Apple&#8217;s fancy name for VNC)? Well, as long as you have SSH active, you can enable Screen Sharing on Mac OS X 10.5 by following these easy instructions.
 SSH into the machine you want [...]]]></description>
			<content:encoded><![CDATA[<p>Locked out of a Mac because Remote Desktop has suddenly taken a crap on you? Want to remotely enable Screen Sharing (Apple&#8217;s fancy name for VNC)? Well, as long as you have SSH active, you can enable Screen Sharing on Mac OS X 10.5 by following these easy instructions.</p>
<p><span id="more-138"></span> SSH into the machine you want to enable VNC on.</p>
<p>First, we need to make sure that Remote Desktop is turned OFF. Issue the following command:</p>
<p><code>sudo /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -deactivate -stop</code></p>
<p>Enter your administrator password if requested.</p>
<p>Then, navigate to /Library/Preferences/</p>
<p><code>cd /Library/Preferences</code></p>
<p>We&#8217;re going to create three text files there, which set up the preferences for Remote Management and VNC.</p>
<p><code>sudo tee com.apple.RemoteManagement.plist</code></p>
<p>Enter your administrator password. Then, copy and paste the following text:</p>
<pre>&lt;!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"&gt;&lt;plist version="1.0"&gt;
&lt;dict&gt;
&lt;key&gt;ARD_AllLocalUsers&lt;/key&gt;
&lt;false/&gt;
&lt;key&gt;LoadRemoteManagementMenuExtra&lt;/key&gt;
&lt;true/&gt;
&lt;key&gt;ScreenSharingReqPermEnabled&lt;/key&gt;
&lt;true/&gt;
&lt;key&gt;VNCLegacyConnectionsEnabled&lt;/key&gt;
&lt;true/&gt;
&lt;/dict&gt;

&lt;/plist&gt;</pre>
<p>Press return, then press CTRL-d to close the file.</p>
<p><code>sudo tee com.apple.ScreenSharing.launchd</code></p>
<p>Enter your administrator password if prompted. Then, copy and paste the following text:</p>
<p><code>enabled</code></p>
<p>Press return, then press CTRL-d to close the file.</p>
<p>Set the default VNC password to &#8220;pass&#8221; by creating this file:</p>
<p><code>sudo tee com.apple.VNCSettings.txt</code></p>
<p>and copying and pasting the following text:</p>
<p><code>6755221D8BA8C5E2FF1C39567390ADCA</code></p>
<p>Press return, then press CTRL-d to close the file.</p>
<p>Let&#8217;s change the ownership and permissions on these files to their correct values:</p>
<p><code>sudo chmod 644 com.apple.RemoteManagement.plist</code><br />
<code>sudo chown root:admin com.apple.RemoteManagement.plist</code><br />
<code>sudo chmod 644 com.apple.ScreenSharing.launchd</code><br />
<code>sudo chown root:admin com.apple.ScreenSharing.launchd</code><br />
<code>sudo chown root:wheel com.apple.VNCSettings.txt</code><br />
<code>sudo chmod 400 com.apple.VNCSettings.txt</code></p>
<p>Let&#8217;s set up launchd to automatically launch Screen Sharing on startup:</p>
<p><code>sudo echo enabled &gt; /Library/Preferences/com.apple.ScreenSharing.launchd</code></p>
<p>Finally, let&#8217;s reboot the machine:</p>
<p><code>sudo reboot</code></p>
<p>You can now VNC into your Mac, using either Leopard&#8217;s built in screen sharing or a third party VNC utility. On Mac, I recommend Chicken of the VNC, available for free download at <a href="http://sourceforge.net/projects/cotvnc/">http://sourceforge.net/projects/cotvnc/</a>. Point your app of choice to your machine&#8217;s IP address or hostname. When prompted for a password, use the default one from above (pass).</p>
<p>Once you&#8217;re in, you need to go to System Preferences -&gt; Sharing -&gt; Screen Sharing, and click the &#8220;Computer Settings&#8221; button. There, enter in a new password to replace the default used at the beginning steps of this article.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gigoblog.com/2008/04/08/set-up-screen-sharing-vnc-via-command-line-on-mac-os-x-remotely-using-ssh/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Restore 30 second commercial skip to your Motorola DCT 6416 DVR</title>
		<link>http://www.gigoblog.com/2008/03/28/restore-30-second-commercial-skip-to-your-motorola-dct-6416-dvr/</link>
		<comments>http://www.gigoblog.com/2008/03/28/restore-30-second-commercial-skip-to-your-motorola-dct-6416-dvr/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 03:23:22 +0000</pubDate>
		<dc:creator>Chris Brewer</dc:creator>
		
		<category><![CDATA[Front Page]]></category>

		<category><![CDATA[How-To]]></category>

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

		<category><![CDATA[Commercial skip]]></category>

		<category><![CDATA[DCT 6416]]></category>

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

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

		<guid isPermaLink="false">http://www.gigoblog.com/2008/03/28/restore-30-second-commercial-skip-to-your-motorola-dct-6416-dvr/</guid>
		<description><![CDATA[Want to fast forward 30 seconds at a time (commercial skip) on your Motorola 6416, 6412, or 6408 DVR? I&#8217;ve got a Motorola DCT 6416 DVR, which is used by Insight Cable here in Northern Kentucky and elsewhere, and by Comcast elsewhere. Both cable companies have kowtowed to the networks on this issue, disabling the [...]]]></description>
			<content:encoded><![CDATA[<p>Want to fast forward 30 seconds at a time (commercial skip) on your Motorola 6416, 6412, or 6408 DVR? I&#8217;ve got a Motorola DCT 6416 DVR, which is used by Insight Cable here in Northern Kentucky and elsewhere, and by Comcast elsewhere. Both cable companies have kowtowed to the networks on this issue, disabling the feature. Fear not! The days those annoying ads that interrupt the TV shows <em><strong>you&#8217;ve already paid for</strong></em> are over!<span id="more-139"></span></p>
<p>If you have the silver remote you can do it yourself. But, keep in mind that I don&#8217;t guarantee any results. YOU MIGHT JUST JACK UP YOUR REMOTE:</p>
<ol>
<li>Press &#8216;CABLE&#8217;</li>
<li>Press and hold &#8216;SETUP&#8217; until the light flashes twice</li>
<li>Enter &#8216;994&#8242;</li>
<li>Press &#8216;SETUP&#8217; once again </li>
<li>Enter &#8216;00173&#8242; (or just 173 if that doesn&#8217;t work)</li>
<li>Press the unused button you want it mapped, such as the LOCK button just below the 10 second back button</li>
</ol>
<p>If you jack up your remote, don&#8217;t blame me. You can restore the original function to your reassigned button by following these steps:</p>
<ol>
<li>Press and hold the &#8220;Setup&#8221; key until the a device button blinks twice.</li>
<li>Type in the code 994. The light will blink twice.</li>
<li>Press the device key you are restoring twice.</li>
</ol>
<p>Reportedly, this works on all 64xx series DVRs, as well as the 34XX series. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.gigoblog.com/2008/03/28/restore-30-second-commercial-skip-to-your-motorola-dct-6416-dvr/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Using wii&#8217;s controller as an advanced computer input device</title>
		<link>http://www.gigoblog.com/2008/01/20/wii_remote_computer_input/</link>
		<comments>http://www.gigoblog.com/2008/01/20/wii_remote_computer_input/#comments</comments>
		<pubDate>Sun, 20 Jan 2008 12:55:48 +0000</pubDate>
		<dc:creator>Chris Brewer</dc:creator>
		
		<category><![CDATA[Front Page]]></category>

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

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

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

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

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

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

		<guid isPermaLink="false">http://www.gigoblog.com/2008/01/20/137/</guid>
		<description><![CDATA[Wii is currently one of the world&#8217;s best selling gaming platform, having sold 6.3 million units in 2007 and a cumulative 7.38 million units. The unique nature of its input devices makes it so. The motion-sensitive wireless hand held controller and sensor bar combine for a unique combination of twisting, turning, pushing and pulling game [...]]]></description>
			<content:encoded><![CDATA[<p>Wii is currently one of the world&#8217;s best selling gaming platform, having sold 6.3 million units in 2007 and a cumulative 7.38 million units. The unique nature of its input devices makes it so. The motion-sensitive wireless hand held controller and sensor bar combine for a unique combination of twisting, turning, pushing and pulling game play that lets players mimic movements for bowling, tennis or sword-fighting.<span id="more-137"></span></p>
<p><img src="http://www.gigoblog.com/wp-content/uploads/2008/01/wiimote.jpg" alt="Wiimote" /></p>
<p>What you might not know is that the Wiimote is one of the most powerful computer input devices ever created. It contains a Bluetooth transceiver, a 1024&#215;768 infrared camera with the capability of tracking up to four light points, a 3-axis accelerometer, and an expansion port. Packed in amongst all this goodness is a speaker and a rumbler (a motor with an off-center weight attached).</p>
<p>When you consider that most of those 7+ million Wiis have multiple Wiimotes, it becomes apparent that this is the most common advanced interface device out there. And at <a href="http://www.amazon.com/Nintendo-Wii-Remote-Controller/dp/B000IMWK2G">$40 US</a>, they&#8217;re inexpensive to boot.</p>
<p>The remote uses the same Bluetooth HID protocol as devices like wireless mice, which means it can be seen as a standard interface device by any computer with Bluetooth. If that doesn&#8217;t get you to thinking, you may want to check your mental connections.</p>
<p>The standard Wii set up includes a &#8220;sensor&#8221; bar, which is placed above or below your television. You then point your Wiimote at the sensor bar, and the game responds accordingly.</p>
<p>But, the &#8220;sensor&#8221; bar really isn&#8217;t a sensor. It&#8217;s simply a grouping of four infrared LEDs. What you&#8217;re holding in your hand, the Wiimote, is really doing all the sensing.</p>
<p>So, what would happen if you mounted the Wiimote on a tripod, and then moved the sensor bar around. Yep, you guessed it. The game would respond accordingly.</p>
<p>But that begs the questions, &#8220;what if I started pointing infrared light sources at a Wiimote? And what if I wrote a driver for Windows or Mac OS?&#8221;</p>
<p>Johnny Chung Lee has an answer, and it&#8217;s pretty intriguing:<br />
<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/5s5EvhHy7eQ"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/5s5EvhHy7eQ" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p><strong>Sources:</strong><br />
Wii sales figures: <a href="http://blogs.pcworld.com/gameon/archives/006324.html" target="_blank">http://blogs.pcworld.com/gameon/archives/006324.html</a><br />
Wiimote technical data: <a href="http://wiibrew.org/index.php?title=Wiimote" target="_blank">http://wiibrew.org/index.php?title=Wiimote</a><br />
Johny Chung Lee&#8217;s website: <a href="http://www.cs.cmu.edu/~johnny/projects/wii/" target="_blank">http://www.cs.cmu.edu/~johnny/projects/wii/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gigoblog.com/2008/01/20/wii_remote_computer_input/feed/</wfw:commentRss>
		</item>
		<item>
		<title>A multi-touch world awaits&#8230;</title>
		<link>http://www.gigoblog.com/2007/12/02/a-multi-touch-world-awaits/</link>
		<comments>http://www.gigoblog.com/2007/12/02/a-multi-touch-world-awaits/#comments</comments>
		<pubDate>Sun, 02 Dec 2007 13:41:34 +0000</pubDate>
		<dc:creator>Chris Brewer</dc:creator>
		
		<category><![CDATA[Front Page]]></category>

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

		<guid isPermaLink="false">http://www.gigoblog.com/2007/12/03/a-multi-touch-world-awaits/</guid>
		<description><![CDATA[Multi-touch interfaces are taking the computing world by storm. While not completely new (multi-touch research has been around since the 80&#8217;s), researchers such as Jeff Han are hard at work bringing it to the forefront of computing interfaces.
Traditional touch screens allow only one point of contact at a time. Apple&#8217;s iPhone utilizes a technique that [...]]]></description>
			<content:encoded><![CDATA[<p>Multi-touch interfaces are taking the computing world by storm. While not completely new (multi-touch research has been around since the 80&#8217;s), researchers such as <a href="http://cs.nyu.edu/~jhan/">Jeff Han</a> are hard at work bringing it to the forefront of computing interfaces.</p>
<p>Traditional touch screens allow only one point of contact at a time. Apple&#8217;s iPhone utilizes a technique that allows for two. Han&#8217;s technology allows for multiple *people* to use all their fingers, simultaneously. Multi-touch computer screens may herald the end of the point-and-click mouse.<span id="more-135"></span><br />
Demos of Han&#8217;s technology tends to result in spontaneous applause and audible gasps from the audience. His work hit the public eye in a YouTube video where he demonstrates the fluid simplicity of flat surface touch interface whereby you use your hands in intuitive fashion.</p>
<p><object height="355" width="425"><param name="movie" value="http://www.youtube.com/v/89sz8ExZndc&amp;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/89sz8ExZndc&amp;rel=1" type="application/x-shockwave-flash" wmode="transparent" height="355" width="425"></embed></object></p>
<p>Then at TED 2006, in Monterey, CA, Han provided an interesting insight into the technology behind multi-touch, using a 26&#8243; drafting table equipped with a multi-touch surface. Han begins with a simple lava lamp, then turns into a virtual photo-editing tabletop, where he flicks photos across the screen as if they were paper snapshots. While the video is mesmerizing, Han&#8217;s speech reveals his thoughts about physical versus virtual computing interfaces such as keyboards. Good stuff.</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/tr_RgOTum3M&#038;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/tr_RgOTum3M&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p>Han has spun off his NYU research into a company, <a href="http://www.perceptivepixel.com">Perceptive Pixel</a>. In this demo video from the company, a very large surface reveals the obvious applications in education, communication, and visualization:</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/9zGDNFpOMcA&#038;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/9zGDNFpOMcA&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p>Here&#8217;s Han using an 8 foot display, where more details of the interface and gestures used to access menus are revealed:</p>
<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/he-j1BbZf58&#038;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/he-j1BbZf58&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gigoblog.com/2007/12/02/a-multi-touch-world-awaits/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Crash (and I don&#8217;t mean cymbals)!</title>
		<link>http://www.gigoblog.com/2007/11/29/crash/</link>
		<comments>http://www.gigoblog.com/2007/11/29/crash/#comments</comments>
		<pubDate>Thu, 29 Nov 2007 18:25:59 +0000</pubDate>
		<dc:creator>Chris Brewer</dc:creator>
		
		<category><![CDATA[Front Page]]></category>

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

		<guid isPermaLink="false">http://www.gigoblog.com/2007/11/29/crash/</guid>
		<description><![CDATA[I&#8217;m sitting at my Mac this morning, facing a window that looks out onto the street in front of my house, working on a web site.
I hear the throaty growl of an accelerating engine, and look up just in time to see the smear of a black car flying past. Simultaneously, I hear an enormous [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sitting at my Mac this morning, facing a window that looks out onto the street in front of my house, working on a web site.</p>
<p>I hear the throaty growl of an accelerating engine, and look up just in time to see the smear of a black car flying past. Simultaneously, I hear an enormous BOOM, and see pieces of my car showering all around.<span id="more-133"></span></p>
<p>The short story: guy passed out, hit the accelerator, and smashed into my car.</p>
<p>Cadillac STS 1, Toyota Corolla 0. Both cars non drivable. My car: probably totaled, since the rear quarter panel is crunched, the rim is destroyed, it and the tire are pushed up into the wheel well (bent axle), pieces of the bumper are in the road, and what&#8217;s left of the brake lights are somewhere up the street.</p>
<p>So I run outside (I&#8217;m working at home, barefoot&#8230;brrrrr), glancing at the mangled remains of my car. I ask a neighbor raking leaves across the street &#8220;Did you see that?&#8221;</p>
<p>&#8220;No, but it made a whale of a racket. I think that may be the guy who hit it,&#8221; he says, motioning up the street. There, three houses away, is a black Cadillac, angled into the front yard of an innocent neighbor.</p>
<p>I sprint (more like hop, skip, and a jump due to the frost-covered cement) up to the car. The driver&#8217;s an older guy, scared, but unhurt. I ask if he needs medical help, then chat with him a bit after he declines emergency service. Now thoroughly chilled, I excuse myself, then tippy-toe my way back home for shoes, a coat, a pen, paper and cell phone.</p>
<p>Armed with the requisite technology to get paid half what my car is worth and far less than what I&#8217;ve paid so far to the insurance racket, I return to his car and ask for his insurance paperwork.</p>
<p>He hands me his insurance card. The name printed thereon: <a href="http://en.wikipedia.org/wiki/John_Philip_Sousa">J. Philip Sousa</a> III.</p>
<p>Yes, my car was totaled by a man named after a 19th century marching band composer; My ride obliterated by a fellow named after the father of the instrument I played in marching band.</p>
<p><img src="http://www.gigoblog.com/wp-content/uploads/2007/11/180px-santaclaus2007_sousaphone_dsc112.jpg" /></p>
<p>Assuming the obvious, I ask the guy if he&#8217;s related to the composer.</p>
<p>&#8220;No,&#8221; he says. He just happens to be the third in a line of guys named John Philip Sousa.</p>
<p>The cops have arrived. Well, driven past, actually. Seems that parking on one&#8217;s lawn doesn&#8217;t warrant the sufficient awareness of peace officers in this here neck of the woods. I turn to wave them back to the conductor of this mayhem, and glancing back at his Cadillac, I&#8217;m struck by his license plate. Seems our JP Sousa, like his namesake, is a marine. You know, that group of combatants who&#8217;s rousing anthem is &#8220;Semper Fidelis,&#8221; written by none other than John Philip Sousa.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gigoblog.com/2007/11/29/crash/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mute system audio when increasing/decreasing volume</title>
		<link>http://www.gigoblog.com/2007/11/26/mute-system-audio-when-increasingdecreasing-volume/</link>
		<comments>http://www.gigoblog.com/2007/11/26/mute-system-audio-when-increasingdecreasing-volume/#comments</comments>
		<pubDate>Mon, 26 Nov 2007 16:42:10 +0000</pubDate>
		<dc:creator>Chris Brewer</dc:creator>
		
		<category><![CDATA[Front Page]]></category>

		<category><![CDATA[How-To]]></category>

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

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

		<category><![CDATA[Mac OS]]></category>

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

		<guid isPermaLink="false">http://www.gigoblog.com/2007/11/26/mute-system-audio-when-increasingdecreasing-volume/</guid>
		<description><![CDATA[Here&#8217;s a cool tip from The Distant Librarian on how to silence the audio feedback you get when using the keyboard to increase or decrease the volume in Mac OS X.

Hold down the shift key while depressing the volume keys will silence the auditory feedback while raising and lowering the volume, but still show the [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a cool tip from <a href="http://distlib.blogs.com">The Distant Librarian</a> on how to silence the audio feedback you get when using the keyboard to increase or decrease the volume in Mac OS X.</p>
<p><img src="http://www.gigoblog.com/wp-content/uploads/2007/11/keyboard_sound_keys1.jpg" height="77" width="192" /></p>
<p>Hold down the shift key while depressing the volume keys will silence the auditory feedback while raising and lowering the volume, but still show the visual cue.</p>
<h2>Other cool tricks:</h2>
<p>Hold down option while clicking one of the sound keys to access the Sound system preferences.</p>
<p>Get more granular volume control by holding down shift-option while clicking one of the sound keys to increase/decrease volume in 1/4 the normal increments. Normal, the Mac provides 16 volume levels. Holding down shift-option gives you 64 increments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gigoblog.com/2007/11/26/mute-system-audio-when-increasingdecreasing-volume/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Screencasting on Mac OS X: What you need to get the job done</title>
		<link>http://www.gigoblog.com/2007/11/13/screencasting-on-mac-os-x-what-you-need-to-get-the-job-done/</link>
		<comments>http://www.gigoblog.com/2007/11/13/screencasting-on-mac-os-x-what-you-need-to-get-the-job-done/#comments</comments>
		<pubDate>Tue, 13 Nov 2007 16:37:45 +0000</pubDate>
		<dc:creator>Chris Brewer</dc:creator>
		
		<category><![CDATA[Front Page]]></category>

		<category><![CDATA[How-To]]></category>

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

		<category><![CDATA[distance courses]]></category>

		<category><![CDATA[screen capture]]></category>

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

		<guid isPermaLink="false">http://www.gigoblog.com/2007/11/13/screencasting-on-mac-os-x-what-you-need-to-get-the-job-done/</guid>
		<description><![CDATA[Your choices for screen capture on Mac OS X are increasing, both in quantity and quality. Screen capture and screen casting is cake using these low-cost (and sometimes free) applications:
Mac OS X veterans Ambrosia Software produce SnapzProX. They&#8217;ve recently updated it to overcome a nasty bug that wreaked havoc with displaying the mouse cursor due [...]]]></description>
			<content:encoded><![CDATA[<p>Your choices for screen capture on Mac OS X are increasing, both in quantity and quality. Screen capture and screen casting is cake using these low-cost (and sometimes free) applications:</p>
<p><span id="more-126"></span>Mac OS X veterans Ambrosia Software produce SnapzProX. They&#8217;ve recently updated it to overcome a nasty bug that wreaked havoc with displaying the mouse cursor due to the x86 architecture. It&#8217;s slow and pricey. <a href="http://www.ambrosiasw.com/utilities/snapzprox/">http://www.ambrosiasw.com/utilities/snapzprox/</a>.</p>
<p>Copernicus from Danicsoft provides a free capture utility that it claims will  allow you to easily</p>
<li>manage your screenshots. Check it out at <a href="http://danicsoft.com/projects/copernicus/">http://danicsoft.com/projects/copernicus/</a>.ShinyWhiteBox&#8217;s iShowU is a solid tool for capturing screen output. It&#8217;s reasonably priced at $20. It&#8217;s the tool I currently use (after ditching SnapzProX. Check it out at <a href="http://www.shinywhitebox.com/home/home.html">http://www.shinywhitebox.com/home/home.html</a>.
<p>ScreenMimic allows screen capture to Flash video, SWF, or QuickTime, supports visual clicking, and has other nice features. It&#8217;s a bit pricey compared to the competition, though. <a href="http://www.polarian.com/products/ScreenMimic.php">http://www.polarian.com/products/ScreenMimic.php</a>.</p>
<h2>ScreenCasting/Screen Capture on a Severe Budget</h2>
<p>I built my Mac OS X screen capture/screencasting tool set on 20 bucks. It has visual mouse clicks, captures webcam video and screen shots, and outputs keyboard entries to the screen as well. Pretty slick for 20 bones.</p>
<p>You can add visual clicking (whereby mouse clicks are visually highlighted) to those screen capture utilities that don&#8217;t natively support it by downloading and installing 2Points5Fish.com has a great preference panel that allows you to turn on visual clicking, called MouseLocator. It&#8217;s free! Get it at <a href="http://www.2point5fish.com/download.html">http://www.2point5fish.com/download.html</a>.</p>
<p>If you need to display what keys are being depressed on your keyboard, try:</p>
<ul>
<li>Apple&#8217;s Keyboard Viewer, formerly called KeyCaps. To activate it, open the System Preferences, then select International and click on the Input Menu tab. Check the &#8220;Show Input Menu&#8221; box at the bottom of the dialog, and check the Keyboard Viewer option box in the list. Keyboard Viewer is now available on the flag menu.</li>
<li> If you want a bit more functionality (like a scrolling transcript of what is being typed), check out KeyCastr: <a href="http://stephendeken.net/wiki/software/keycastr/">http://stephendeken.net/wiki/software/keycastr/</a>.</li>
</ul>
<p>A common request is the ability to record desktop and video from a web cam. No problem. Simply use iChat AV and preview your webcam output.  Put the video window in your screen capture location and you&#8217;ve got instant desktop capture and video.</p>
<p>Here&#8217;s an example of my screencasting setup for Mac OS X:</li>
]]></content:encoded>
			<wfw:commentRss>http://www.gigoblog.com/2007/11/13/screencasting-on-mac-os-x-what-you-need-to-get-the-job-done/feed/</wfw:commentRss>
<enclosure url="http://www.gigoblog.com/wp-content/uploads/2007/11/screencasting.mov" length="284" type="video/quicktime" />
<enclosure url="http://www.gigoblog.com/wp-content/uploads/2007/11/screencasting_720.mov" length="2424051" type="video/quicktime" />
			<enclosure url="http://www.gigoblog.com/wp-content/uploads/2007/11/screencasting_720.mov" length="1" type="video/quicktime"/>
<itunes:duration>00:01:01</itunes:duration>
		<itunes:subtitle>Your choices for screen capture on Mac OS X are increasing, both in quantity and quality. Screen capture and screen casting is cake using these ...</itunes:subtitle>
		<itunes:summary>Your choices for screen capture on Mac OS X are increasing, both in quantity and quality. Screen capture and screen casting is cake using these low-cost (and sometimes free) applications:

Mac OS X veterans Ambrosia Software produce SnapzProX. They've recently updated it to overcome a nasty bug that wreaked havoc with displaying the mouse cursor due to the x86 architecture. It's slow and pricey. http://www.ambrosiasw.com/utilities/snapzprox/.

Copernicus from Danicsoft provides a free capture utility that it claims will  allow you to easily
	manage your screenshots. Check it out at http://danicsoft.com/projects/copernicus/.ShinyWhiteBox's iShowU is a solid tool for capturing screen output. It's reasonably priced at $20. It's the tool I currently use (after ditching SnapzProX. Check it out at http://www.shinywhitebox.com/home/home.html.

ScreenMimic allows screen capture to Flash video, SWF, or QuickTime, supports visual clicking, and has other nice features. It's a bit pricey compared to the competition, though. http://www.polarian.com/products/ScreenMimic.php.
ScreenCasting/Screen Capture on a Severe Budget
I built my Mac OS X screen capture/screencasting tool set on 20 bucks. It has visual mouse clicks, captures webcam video and screen shots, and outputs keyboard entries to the screen as well. Pretty slick for 20 bones.

You can add visual clicking (whereby mouse clicks are visually highlighted) to those screen capture utilities that don't natively support it by downloading and installing 2Points5Fish.com has a great preference panel that allows you to turn on visual clicking, called MouseLocator. It's free! Get it at http://www.2point5fish.com/download.html.

If you need to display what keys are being depressed on your keyboard, try:

	Apple's Keyboard Viewer, formerly called KeyCaps. To activate it, open the System Preferences, then select International and click on the Input Menu tab. Check the "Show Input Menu" box at the bottom of the dialog, and check the Keyboard Viewer option box in the list. Keyboard Viewer is now available on the flag menu.
	 If you want a bit more functionality (like a scrolling transcript of what is being typed), check out KeyCastr: http://stephendeken.net/wiki/software/keycastr/.

A common request is the ability to record desktop and video from a web cam. No problem. Simply use iChat AV and preview your webcam output.  Put the video window in your screen capture location and you've got instant desktop capture and video.

Here's an example of my screencasting setup for Mac OS X:</itunes:summary>
		<itunes:keywords>Front,Page,,How-To,,Technology</itunes:keywords>
		<itunes:author>cb@binaryblind.com</itunes:author>
		<itunes:explicit>no</itunes:explicit>
		<itunes:block>No</itunes:block>
	</item>
		<item>
		<title>Configure Apache Web Sharing for user accounts in Mac OS X 10.5 Leopard</title>
		<link>http://www.gigoblog.com/2007/11/08/configure-apache-web-sharing-for-user-accounts-in-mac-os-x-105-leopard/</link>
		<comments>http://www.gigoblog.com/2007/11/08/configure-apache-web-sharing-for-user-accounts-in-mac-os-x-105-leopard/#comments</comments>
		<pubDate>Thu, 08 Nov 2007 18:39:28 +0000</pubDate>
		<dc:creator>Chris Brewer</dc:creator>
		
		<category><![CDATA[Front Page]]></category>

		<category><![CDATA[How-To]]></category>

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

		<guid isPermaLink="false">http://www.gigoblog.com/2007/11/08/configure-apache-web-sharing-for-user-accounts-in-mac-os-x-105-leopard/</guid>
		<description><![CDATA[Apple&#8217;s new Mac OS X 10.5 (Leopard) changes how web sharing is set up. Thankfully, they&#8217;ve moved us all to Apache 2 codebase (a good thing™). But in doing so, they&#8217;ve disabled the ability to serve web pages contained in your home Site directory.
If you turn on Web Sharing from the System Preferences panel, it [...]]]></description>
			<content:encoded><![CDATA[<p>Apple&#8217;s new Mac OS X 10.5 (Leopard) changes how web sharing is set up. Thankfully, they&#8217;ve moved us all to Apache 2 codebase (a good thing™). But in doing so, they&#8217;ve disabled the ability to serve web pages contained in your home Site directory.</p>
<p>If you turn on Web Sharing from the System Preferences panel, it works for the main computer (http://localhost) but not for user accounts (http://localhost/~username/). Most perplexing is that Apple&#8217;s graphical interface confirms that web sharing is turned on for your personal account, but it doesn&#8217;t work. This is *very* un-Apple.</p>
<p>Even if you turn on web sharing from the System Preferences panel, you&#8217;ll still receive the dreaded <code>403 Forbidden. You don't have permission to access /~username/ on this server.</code></p>
<p>Thankfully, it&#8217;s a simple oversight on Apple&#8217;s part. Your options are two-fold. You can either set it up to activate the Sites directory in all your user accounts, or just for individual ones. I&#8217;ll cover both.<span id="more-125"></span></p>
<h2>Activate Single User Account</h2>
<p>Get your short username by opening a terminal, and typing:</p>
<p><code>whoami</code></p>
<p>Navigate to the Apache2 user configuration directory:</p>
<p><code>cd /private/etc/apache2/users</code></p>
<p>Now, we&#8217;ll open a new document with <code>tee</code>. Make sure to replace &#8216;username&#8217; below with your short username. You will be prompted for a password when using sudo. Use your root or administrator password:</p>
<p><code>sudo tee username.conf</code></p>
<p>Then, copy and paste the following into terminal (replacing username with your short username):</p>
<p><code>#<br />
# Allow access to this user's Sites directory for web clients.<br />
#<br />
&lt;Directory "/Users/username/Sites/"&gt;<br />
Options Indexes MultiViews<br />
AllowOverride None<br />
Order allow,deny<br />
Allow from all<br />
&lt;/Directory&gt;</code></p>
<p>Then press Control-D to close the <code>tee</code> session.</p>
<p>Restart the Apache daemon:</p>
<p><code>sudo apachectl restart</code></p>
<p>That&#8217;s it; your user account should now have web sharing enabled.</p>
<p>If you want to activate web sharing for all current and future accounts, use this method instead:</p>
<h2>Activate All User Accounts</h2>
<p>Navigate to the Apache2 user configuration directory:</p>
<p><code>cd /private/etc/apache2/users</code></p>
<p>Now, we&#8217;ll open a new document:</p>
<p><code>sudo tee local.conf</code></p>
<p>Then, copy and paste the following into terminal:</p>
<p><code>#<br />
# Allow access to all users' Sites directory for web clients.<br />
#<br />
&lt;Directory "/Users/*/Sites/"&gt;<br />
</code><code> Options Indexes MultiViews<br />
AllowOverride None<br />
Order allow,deny<br />
Allow from all</code><br />
<code> &lt;/Directory&gt;</code></p>
<p>Then press Control-D to close the <code>tee</code> session.</p>
<p>Restart the Apache daemon:</p>
<p><code>sudo apachectl restart</code></p>
<h2>Enable PHP</h2>
<p>If you want to enable PHP5 which is built into Leopard, simply edit a single file, save it, and restart the Apache daemon:</p>
<p>Open terminal, and issue the following command:</p>
<p><code>cd /private/etc/apache2/</code></p>
<p>Then edit the file:</p>
<p><code>sudo pico httpd.conf</code></p>
<p>Search for php5 by pressing Control-W, and typing in php5, then pressing return.</p>
<p>You will find a line that reads:</p>
<p><code>#LoadModule php5_module        libexec/apache2/libphp5.so</code></p>
<p>Delete the &#8216;#&#8217; character, and save (Control-X) the file.</p>
<p>Restart the Apache daemon:</p>
<p><code>sudo apachectl restart</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gigoblog.com/2007/11/08/configure-apache-web-sharing-for-user-accounts-in-mac-os-x-105-leopard/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to own that pesky telemarketer</title>
		<link>http://www.gigoblog.com/2007/10/23/telemarketer_payback/</link>
		<comments>http://www.gigoblog.com/2007/10/23/telemarketer_payback/#comments</comments>
		<pubDate>Tue, 23 Oct 2007 20:05:31 +0000</pubDate>
		<dc:creator>Chris Brewer</dc:creator>
		
		<category><![CDATA[Front Page]]></category>

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

		<guid isPermaLink="false">http://www.gigoblog.com/2007/10/23/telemarketer_payback/</guid>
		<description><![CDATA[Next time a telemarketer calls, use this slick routine to teach him/her a lesson:

]]></description>
			<content:encoded><![CDATA[<p>Next time a telemarketer calls, use this slick routine to teach him/her a lesson:</p>
<p><object width="425" height="366"><param name="movie" value="http://www.youtube.com/v/un_PjRXV5l8&#038;rel=1&#038;border=0"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/un_PjRXV5l8&#038;rel=1&#038;border=0" type="application/x-shockwave-flash" wmode="transparent" width="425" height="366"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.gigoblog.com/2007/10/23/telemarketer_payback/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Apple bug breaks 3rd party USB web cams; no fix from Cupertino</title>
		<link>http://www.gigoblog.com/2007/09/23/apple-breaks-usb-webcams/</link>
		<comments>http://www.gigoblog.com/2007/09/23/apple-breaks-usb-webcams/#comments</comments>
		<pubDate>Sun, 23 Sep 2007 16:29:47 +0000</pubDate>
		<dc:creator>Chris Brewer</dc:creator>
		
		<category><![CDATA[Consumer Activism]]></category>

		<category><![CDATA[Front Page]]></category>

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

		<guid isPermaLink="false">http://www.gigoblog.com/2007/09/23/apple-bug-disables-3rd-party-usb-web-cams-no-fixes-from-cupertino/</guid>
		<description><![CDATA[Since the release of Apple&#8217;s 10.4.10 update, users (including me) have been complaining to Apple that their third-party USB web cams have lost audio capabilities. Although a bug report was issued and acknowledged (ID #5285354) by Apple, no fix has been forthcoming. In fact, Apple has stranded a large number of users in a void [...]]]></description>
			<content:encoded><![CDATA[<p>Since the release of Apple&#8217;s 10.4.10 update, users (including me) have been complaining to Apple that their third-party USB web cams have lost audio capabilities. Although a bug report was issued and acknowledged (ID #5285354) by Apple, no fix has been forthcoming. In fact, Apple has stranded a large number of users in a void where iChat AV no longer has audio and video chat functionality.<span id="more-123"></span></p>
<p>This has wreaked havoc with communication in my workplace as well as social life.</p>
<p>The current workaround that is being proposed by, erm, helpful Mac addicts is to replace a kernel extension in 10.4.10 with the one from 10.4.10. Hardly a solution for production machines.</p>
<p>I, for one, <em>expect a lot more</em> from Apple. Apple&#8217;s left us stranded since June 20th! Perhaps this begs the question: Is Apple&#8217;s focus on becoming a consumer electronics firm causing it to overlook Mac OS X? If this is what we can expect from the new Apple Inc., I&#8217;d prefer to go back to Apple Computer, Inc.</p>
<p>Or maybe I should adjust my mindset and Think Different.</p>
<p>Even though the bug has been reported, I strongly encourage Mac users to <a href="http://developer.apple.com/bugreporter/">file a bug report</a> as it raises awareness within the company that this is an important issue.</p>
<p>Apple <a href="http://discussions.apple.com/thread.jspa?threadID=1009957&#038;start=0&#038;tstart=0">forum discussion</a> on this bug.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gigoblog.com/2007/09/23/apple-breaks-usb-webcams/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 1.142 seconds -->
<!-- Cached page served by WP-Cache -->
