<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>That Pixel Geek</title>
	
	<link>http://thatpixelgeek.com</link>
	<description>Geekery, often including pixels</description>
	<pubDate>Thu, 02 Jul 2009 19:32:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license><image><link>http://creativecommons.org/licenses/by-nc-sa/3.0/</link><url>http://creativecommons.org/images/public/somerights20.gif</url><title>Some Rights Reserved</title></image><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/ThatPixelGeek" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Elgato Turbo.264 HD - My Thoughts</title>
		<link>http://feedproxy.google.com/~r/ThatPixelGeek/~3/ZKlNEV6HW7g/</link>
		<comments>http://thatpixelgeek.com/2009/06/elgato-turbo264-hd-review/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 18:49:05 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
		
		<category><![CDATA[Gadgets]]></category>

		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://thatpixelgeek.com/?p=648</guid>
		<description><![CDATA[I recently had the opportunity to try out the Elgato Turbo.264 HD encoder/accelerator.

The device does what it claims&#8230; it transcodes most any type of video file and produces an H.264 file formatted for your device (iPhone, iPod, AppleTV, BeyondTV, etc.). The processing time is (more or less) equal to the length of the video. e.g. [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had the opportunity to try out the <a href="http://www.elgato.com/elgato/na/mainmenu/products/Turbo264HD/product1.en.html">Elgato Turbo.264 HD</a> encoder/accelerator.</p>
<p><img src="http://thatpixelgeek.com/wp-content/uploads/2009/06/20090622-rcr_3157.jpg" alt="" title="Elgato Turbo.264 HD" border="1" class="alignnone size-full wp-image-647" /></p>
<p>The device does what it claims&#8230; it transcodes most any type of video file and produces an H.264 file formatted for your device (iPhone, iPod, AppleTV, BeyondTV, etc.). The processing time is (more or less) equal to the length of the video. e.g. A 60 minute video takes around 60 minutes to transcode.</p>
<p>My only complaint is that <strong>it uses 100% of my machine&#8217;s CPU while processing</strong>. I recall seeing a blurb about this somewhere in the documentation, but I thought it said it used &#8220;some&#8221; of the CPU. On my Macbook Pro 2.16Ghz, it spiked out the entire time. Obviously, that causes the internal fan to kick into overdrive, generating a good bit of noise.</p>
<p>The older non-HD version did NOT use the host CPU, so the transcode time was longer. But on a laptop I would gladly sacrifice the longer time in lieu of the fan noise. On a desktop, it would be a non-issue for me. A perfect solution would be to have a setting in the software that allowed you to choose how much of the CPU was used.</p>
<p>Some folks in various forums have complained about (and demonstrated) very dark videos from the device, but none of my tests were dark.</p>
<p>Overall, it&#8217;s a neat gadget. My only complaint is the CPU issue.</p>
<img src="http://feeds.feedburner.com/~r/ThatPixelGeek/~4/ZKlNEV6HW7g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thatpixelgeek.com/2009/06/elgato-turbo264-hd-review/feed/</wfw:commentRss>
		<feedburner:origLink>http://thatpixelgeek.com/2009/06/elgato-turbo264-hd-review/</feedburner:origLink></item>
		<item>
		<title>Create Multipart Zip Files In Linux</title>
		<link>http://feedproxy.google.com/~r/ThatPixelGeek/~3/QtRgFImaGqU/</link>
		<comments>http://thatpixelgeek.com/2009/05/create-multipart-zip-files-in-linux/#comments</comments>
		<pubDate>Tue, 12 May 2009 15:05:02 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://thatpixelgeek.com/?p=626</guid>
		<description><![CDATA[Need to transfer a really large file but are worried that it will fail before completing?
Create a multi-part file using the split command, then join it on the remote server after it transfers. Example: Start with a zipped file (somefile.zip), then run&#8230;
split -b 10m somefile.zip someprefix-
That will take somefile.zip, chop it into 10MB pieces and [...]]]></description>
			<content:encoded><![CDATA[<p>Need to transfer a really large file but are worried that it will fail before completing?</p>
<p><strong>Create a multi-part file</strong> using the split command, then join it on the remote server after it transfers. Example: Start with a zipped file (somefile.zip), then run&#8230;</p>
<p><code>split -b 10m somefile.zip someprefix-</code></p>
<p>That will take somefile.zip, chop it into 10MB pieces and name them &#8220;someprefix-aa, someprefix-ab, etc.&#8221; Run &#8220;man split&#8221; for all the options:</p>
<p><code>split -b number[ k|m ] [-a suffixlength] [filename [prefix] ]</code></p>
<p>If your file will be split into more than 52 pieces, you&#8217;ll need to change the number of suffix length. The default is 2 (a-z, twice).</p>
<p><strong>After transferring</strong> the pieces to the remote server, re-assemble them with cat&#8230;</p>
<p><code>cat someprefix-aa someprefix-ab ... > somefile.zip</code></p>
<img src="http://feeds.feedburner.com/~r/ThatPixelGeek/~4/QtRgFImaGqU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thatpixelgeek.com/2009/05/create-multipart-zip-files-in-linux/feed/</wfw:commentRss>
		<feedburner:origLink>http://thatpixelgeek.com/2009/05/create-multipart-zip-files-in-linux/</feedburner:origLink></item>
		<item>
		<title>ESXi &amp; MD3000i: No LUNs after adding VMkernel switch for iSCSI</title>
		<link>http://feedproxy.google.com/~r/ThatPixelGeek/~3/szEmcxGG0y4/</link>
		<comments>http://thatpixelgeek.com/2009/05/md3000i-esxi-luns-vmkernel-iscsi/#comments</comments>
		<pubDate>Mon, 11 May 2009 16:40:15 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://thatpixelgeek.com/?p=622</guid>
		<description><![CDATA[
Having problems getting iSCSI LUNs to appear in ESXi after enabling a second VMkernel switch on a separate subnet? Make sure you disable/re-enable the ESXi iSCSI Initiator AFTER adding the new vSwitch on the isolated network. I think iSCSI discovery only occurs on the Vswitches enabled at the time the initiator is enabled. Here is [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://thatpixelgeek.com/wp-content/uploads/2009/05/20090512-dsc_1621.jpg" alt="" title="20090512-dsc_1621" class="alignnone size-full wp-image-634" /></p>
<p>Having problems getting iSCSI LUNs to appear in ESXi after enabling a second VMkernel switch on a separate subnet? <strong>Make sure you disable/re-enable the ESXi iSCSI Initiator AFTER adding the new vSwitch on the isolated network.</strong> I think iSCSI discovery only occurs on the Vswitches enabled at the time the initiator is enabled. Here is my scenario:</p>
<p>I recently setup an <a href="http://www.dell.com/MD3000i">MD3000i SAN</a> to connect to our <a href="http://www.vmware.com/products/esxi/">VMware ESXi</a> hosts via iSCSI on our internal LAN. My test server only has two NICs, but I only enabled eth0 with an IP of and left eth1 unused. I enabled iSCSI on the host, set send targets, config&#8217;d host access, created host-to-virt disk map, etc. and rescanned HBA. The test worked fine. After scan completed, I was able to see the LUNs in ESXi.</p>
<p>Next, I wanted to enable eth1 and move the iSCSI traffic off to dedicated, isolated, switches.</p>
<p>So I physically moved the MD iSCSI cables to 2 standalone switches, edited the MD Host Ports, setting them back to the defaults (192.168.130.x &amp; 131.x). I left the two MD management ports in the LAN.</p>
<p>I enabled ESXi eth1 as VMkernel and set to IP in same range as one of the segments (192.168.130.103).</p>
<p>On ESXi, I removed the old send targets and entered the new IPs (192.168.130.101 &amp; 102).</p>
<p>Rebooted everything for good measure. Rescanned HBA, but the LUNS did NOT show up in ESXi.</p>
<p class="alert"><strong>The solution?</strong> After enabling the VMKernel switch on the different subnet, disable ESXi iSCSI Initiator and reboot (maybe not needed, but I find ESXi likes a reboot for many things). When it returns (5+ minutes for mine), ENABLE the ESXi iSCSI Initiator and rescan HBA. I think iSCSI discovery only occurs on the Vswitches enabled at the time the initiator is enabled.</p>
<img src="http://feeds.feedburner.com/~r/ThatPixelGeek/~4/szEmcxGG0y4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thatpixelgeek.com/2009/05/md3000i-esxi-luns-vmkernel-iscsi/feed/</wfw:commentRss>
		<feedburner:origLink>http://thatpixelgeek.com/2009/05/md3000i-esxi-luns-vmkernel-iscsi/</feedburner:origLink></item>
		<item>
		<title>Review: Adorama Flashpoint (Meike) Grip for D300/D700</title>
		<link>http://feedproxy.google.com/~r/ThatPixelGeek/~3/BNjEQWXJ5Kw/</link>
		<comments>http://thatpixelgeek.com/2009/04/adorama-flashpoint-meike-grip-for-d300-d700/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 02:13:50 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
		
		<category><![CDATA[Photography]]></category>

		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://thatpixelgeek.com/?p=576</guid>
		<description><![CDATA[
I&#8217;m NOT a brand snob. I&#8217;ve owned both Sigma and Tamron lenses, and typically pick the product with the best performance/price ratio. As an advanced amateur, I use my equipment a good bit. But if a photo component fails, my family is not going starve.
So when I decided to buy a grip for my new [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://thatpixelgeek.com/wp-content/uploads/2009/04/20090408-img_9258.jpg" alt="" title="20090408-img_9258" border="1" class="alignnone size-full wp-image-584" /></p>
<p>I&#8217;m NOT a brand snob. I&#8217;ve owned both Sigma and Tamron lenses, and typically pick the product with the best performance/price ratio. As an advanced amateur, I use my equipment a good bit. But if a photo component fails, my family is not going starve.</p>
<p>So when I decided to buy a grip for my new D300, I started by looking at the Nikon MB-D10 plus any major contenders; mainly, the <a href="http://www.fredmiranda.com/forum/topic/672835/0">Phottix BP-D300</a>. That didn&#8217;t last long&#8230; most folks agree it is a significant step down from the Nikon, so I quickly ruled it out.</p>
<p>I thought my search was over, so I started price shopping for the MB-D10. As usual, <a href="http://www.amazon.com/exec/obidos/ASIN/B000VDF5RO/pixelgeek-20">Amazon</a> seemed to have the best deal. In fact, at one point, their price was $233 with free shipping (at time of writing, it has increased to $249). My finger was on the buy button&#8230; then I decided to look around the web just one more time.</p>
<p>During my final trip to the forums I found a <a href="http://forums.dpreview.com/forums/readflat.asp?forum=1039&#038;thread=30214751&#038;page=1">rather lengthy thread</a> on the Nikon form at dpreview.com.</p>
<p>That got me interested in the Chinese knockoffs sold by <a href="http://photography.shop.ebay.com/items/_W0QQ_ssnZlinkQ2ddelight?_nkw=d300+grip&#038;_sacat=625&#038;_trksid=p3286.m270.l1313&#038;_odkw=d300&#038;_osacat=625">LINK delight</a>. The price was a lot lower. Depending on the package, as low as $67 + $20 for international shipping. The reviews are good and I thought I found a winner.</p>
<p>THEN, on page 245 (ok, it just seemed that way&#8230; more like page 5), someone mentioned that Adorama sold the same thing for $79 with FREE shipping. The transit time would be a lot less and I liked the idea of buying from a US company in case of returns, <b>so I bought it</b>. Turns out, it&#8217;s the same exact product. On the box, the brand is &#8220;Meike.&#8221; Part numbers MK-D300 &#038; ZE-NBG300. Adorama calls it &#8220;Flashpoint Professional Battery Grip for the Nikon D300/D700.&#8221;</p>
<p>I&#8217;ve only had it a couple of days, but so far it&#8217;s great! All the buttons work as expected and the fit is nice. It is all plastic, so it&#8217;s not as durable or &#8220;solid&#8221; as the Nikon, but at 1/3rd the price, what do you expect?</p>
<p>I&#8217;ll update this post if I have any problems. But so far, I highly recommend it.</p>
<p class="alert">Update 1: I&#8217;ve been UNABLE to get my camera to shoot at 8FPS using rechargeable NiMH batteries.</p>
<p class="alert">Update 2: I guess the batteries were not 100% fully charged. I had charged them a day or two prior to testing. After doing a full charge and testing right away, the Info screen shows 8fps.</p>
<p>You can buy this from:</p>
<ul>
<li><A href="http://www.adorama.com/INKMBD10A.html?kbid=64559"><strong>Adorama</strong> </a>- $79 w/Free Shipping</li>
<li><a href="http://stores.ebay.com/LinkDelight-Photography-Shop">LINK delight&#8217;s eBay Store</a>- $67 and up + Shipping</li>
</ul>
<p><img src="http://thatpixelgeek.com/wp-content/uploads/2009/04/20090408-img_9259.jpg" alt="" title="20090408-img_9259"  border="1" class="alignnone size-full wp-image-585" /></p>
<p><img src="http://thatpixelgeek.com/wp-content/uploads/2009/04/20090408-img_9260.jpg" alt="" title="20090408-img_9260"   border="1" class="alignnone size-full wp-image-586" /></p>
<p><img src="http://thatpixelgeek.com/wp-content/uploads/2009/04/20090408-img_9262.jpg" alt="" title="20090408-img_9262"  border="1" class="alignnone size-full wp-image-587" /></p>
<p><img src="http://thatpixelgeek.com/wp-content/uploads/2009/04/20090408-img_9263.jpg" alt="" title="20090408-img_9263"   border="1" class="alignnone size-full wp-image-588" /></p>
<p><img src="http://thatpixelgeek.com/wp-content/uploads/2009/04/20090408-img_9264.jpg" alt="" title="20090408-img_9264"   border="1" class="alignnone size-full wp-image-589" /></p>
<p><img src="http://thatpixelgeek.com/wp-content/uploads/2009/04/20090408-img_9265.jpg" alt="" title="20090408-img_9265"   border="1" class="alignnone size-full wp-image-590" /></p>
<p>Comes with two trays. Obviously, the battery is not included.<img src="http://thatpixelgeek.com/wp-content/uploads/2009/04/20090408-img_9267.jpg" alt="" title="20090408-img_9267"   border="1" class="alignnone size-full wp-image-591" /></p>
<p>This is everything in the box (plus a &#8220;manual&#8221;).<img src="http://thatpixelgeek.com/wp-content/uploads/2009/04/20090408-img_9268.jpg" alt="" title="20090408-img_9268"   border="1" class="alignnone size-full wp-image-592" /></p>
<img src="http://feeds.feedburner.com/~r/ThatPixelGeek/~4/BNjEQWXJ5Kw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thatpixelgeek.com/2009/04/adorama-flashpoint-meike-grip-for-d300-d700/feed/</wfw:commentRss>
		<feedburner:origLink>http://thatpixelgeek.com/2009/04/adorama-flashpoint-meike-grip-for-d300-d700/</feedburner:origLink></item>
		<item>
		<title>D200 is $599 again at Best Buy</title>
		<link>http://feedproxy.google.com/~r/ThatPixelGeek/~3/xiMq11rVQqk/</link>
		<comments>http://thatpixelgeek.com/2009/04/the-best-buy-d200-bounce-around/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 21:52:36 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
		
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://thatpixelgeek.com/?p=567</guid>
		<description><![CDATA[Best Buy keeps bouncing around on the D200 price. As of April 3, 2009 it&#8217;s at $599&#8230; which is their cheapest so far. Not sure how long it will last.

Perhaps they are finally clearing their inventory leading up to a Nikon announcement on April 14th?
]]></description>
			<content:encoded><![CDATA[<p>Best Buy keeps bouncing around on the D200 price. <strong>As of April 3, 2009 it&#8217;s at $599</strong>&#8230; which is their cheapest so far. Not sure how long it will last.</p>
<p><a href="http://www.bestbuy.com/site/olspage.jsp?skuId=7633313&#038;st=D200&#038;lp=2&#038;type=product&#038;cp=1&#038;id=1130987191339"><img src="http://thatpixelgeek.com/wp-content/uploads/2009/04/picture-2.png" alt="" title="picture-2" width="500" height="271" class="alignnone size-full wp-image-568" /></a></p>
<p>Perhaps they are finally clearing their inventory leading up to a <a href="http://nikonrumors.com/2009/03/30/nikon-announcement-on-april-14.aspx">Nikon announcement on April 14th</a>?</p>
<img src="http://feeds.feedburner.com/~r/ThatPixelGeek/~4/xiMq11rVQqk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thatpixelgeek.com/2009/04/the-best-buy-d200-bounce-around/feed/</wfw:commentRss>
		<feedburner:origLink>http://thatpixelgeek.com/2009/04/the-best-buy-d200-bounce-around/</feedburner:origLink></item>
		<item>
		<title>Photography Options at Fort Boise WMA</title>
		<link>http://feedproxy.google.com/~r/ThatPixelGeek/~3/X5SMQ5TII2k/</link>
		<comments>http://thatpixelgeek.com/2009/03/photography-fort-boise-wma-idaho/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 17:00:55 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
		
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://thatpixelgeek.com/?p=543</guid>
		<description><![CDATA[I recently visited the Fort Boise Wildlife Management Area near Boise, Idaho. It was mostly a family outing, but I was also scouting for a new place to take bird/wildlife photos.
As it turns out, Fort Boise WMA is a great place for birds, but not so great for bird photography.
The main entrance road splits two [...]]]></description>
			<content:encoded><![CDATA[<p>I recently visited the <a href="http://fishandgame.idaho.gov/cms/wildlife/wma/FtBoise/">Fort Boise Wildlife Management Area</a> near Boise, Idaho. It was mostly a family outing, but I was also scouting for a new place to take bird/wildlife photos.</p>
<p>As it turns out, Fort Boise WMA is a great place for birds, but not so great for bird photography.</p>
<p><img class="alignnone size-full wp-image-545" title="20090314-img_9064" src="http://thatpixelgeek.com/wp-content/uploads/2009/03/20090314-img_9064.jpg" alt="" />The main entrance road splits two wetland areas. You can see them clearly on this Google Map:</p>
<p><iframe width="525" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps/ms?oe=utf-8&#038;client=firefox-a&#038;ie=UTF8&#038;hl=en&#038;msa=0&#038;ll=43.820842,-117.004609&#038;spn=0.019043,0.033517&#038;t=h&#038;msid=118218972792589043296.000465fe6fec9a3b45250&#038;output=embed"></iframe><br /><small><a href="http://maps.google.com/maps/ms?oe=utf-8&#038;client=firefox-a&#038;ie=UTF8&#038;hl=en&#038;msa=0&#038;ll=43.820842,-117.004609&#038;spn=0.019043,0.033517&#038;t=h&#038;msid=118218972792589043296.000465fe6fec9a3b45250&#038;source=embed" style="color:#0000FF;text-align:left">View Larger Map</a></small></p>
<p>During the spring months, there are thousands of birds joining in a cacophony of squawking and honking. And they are fairly antsy&#8230; not staying in one pool for very long.</p>
<p>The problem is, these areas are closed to visitors and they are both (mostly) hidden from view. There is no way to get elevated high enough to be at eye level with the birds. So you have to wait for them to flock to a different pond and catch a few belly shots as they fly overhead.</p>
<p><img class="alignnone size-full wp-image-550" title="20090314-img_9088" src="http://thatpixelgeek.com/wp-content/uploads/2009/03/20090314-img_9088.jpg" alt=""  /></p>
<p><img class="alignnone size-full wp-image-551" title="20090314-img_9089" src="http://thatpixelgeek.com/wp-content/uploads/2009/03/20090314-img_9089.jpg" alt=""  /></p>
<p><img class="alignnone size-full wp-image-552" title="20090314-img_9098" src="http://thatpixelgeek.com/wp-content/uploads/2009/03/20090314-img_9098.jpg" alt=""  /></p>
<p><img class="alignnone size-full wp-image-549" title="20090314-img_9066" src="http://thatpixelgeek.com/wp-content/uploads/2009/03/20090314-img_9066.jpg" alt=""  /></p>
<p>There are other areas further back towards the river that allow exploring year-round. We saw several raptors and a wide range of field birds.</p>
<p><img class="alignnone size-full wp-image-544" title="20090314-img_9052" src="http://thatpixelgeek.com/wp-content/uploads/2009/03/20090314-img_9052.jpg" alt=""  /></p>
<p>It&#8217;s a fun place to explore and there are <a href="http://www.geocaching.com/map/default.aspx?lat=43.81910836255632&#038;lng=-117.00885772705078&#038;zm=14&#038;mt=m">several geocaching opportunities</a> in the area.</p>
<img src="http://feeds.feedburner.com/~r/ThatPixelGeek/~4/X5SMQ5TII2k" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thatpixelgeek.com/2009/03/photography-fort-boise-wma-idaho/feed/</wfw:commentRss>
		<feedburner:origLink>http://thatpixelgeek.com/2009/03/photography-fort-boise-wma-idaho/</feedburner:origLink></item>
		<item>
		<title>Copy Files To Your iPhone</title>
		<link>http://feedproxy.google.com/~r/ThatPixelGeek/~3/Lu7OpgE6-k0/</link>
		<comments>http://thatpixelgeek.com/2009/03/copy-files-to-your-iphone/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 21:00:14 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
		
		<category><![CDATA[Gadgets]]></category>

		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://thatpixelgeek.com/?p=540</guid>
		<description><![CDATA[Andy Ihnatko has a review of the Air Sharing iPhone app at the My Digital Life Podcast &#038; Blog.
Of particular interest to me&#8230; Andy says:
&#8220;Music and video are both formats that the iPhone OS can simply view outside of the iPod app. If I just copy it into my Air Share, I can play it [...]]]></description>
			<content:encoded><![CDATA[<p>Andy Ihnatko has a review of the <a href="http://avatron.com/products/">Air Sharing</a> iPhone app at the <a href="http://mydl.me/">My Digital Life Podcast &#038; Blog</a>.</p>
<p>Of particular interest to me&#8230; Andy says:</p>
<blockquote><p>&#8220;Music and video are both formats that the iPhone OS can simply view outside of the iPod app. If I just copy it into my Air Share, I can play it with just a tap. I often put whole albums on the iPhone, if I don’t yet know if I want to throw them into my big iTunes soup. That’s a particularly big plus when it’s a 700 meg movie file and I don’t know if I want to burn up that much space on my notebook’s little hard drive by actually importing it into iTunes.&#8221;</p>
</blockquote>
<p>Only $4.99. <a href="http://mydl.me/2009/03/air-sharing/">Go read the review</a>&#8230; good stuff.</p>
<img src="http://feeds.feedburner.com/~r/ThatPixelGeek/~4/Lu7OpgE6-k0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thatpixelgeek.com/2009/03/copy-files-to-your-iphone/feed/</wfw:commentRss>
		<feedburner:origLink>http://thatpixelgeek.com/2009/03/copy-files-to-your-iphone/</feedburner:origLink></item>
		<item>
		<title>Photographer Rights In ACLU iPhone App</title>
		<link>http://feedproxy.google.com/~r/ThatPixelGeek/~3/RH-s1dO5OD4/</link>
		<comments>http://thatpixelgeek.com/2009/03/photographer-rights-in-aclu-iphone-app/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 20:57:08 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
		
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://thatpixelgeek.com/?p=536</guid>
		<description><![CDATA[I&#8217;m certainly no fan of the ACLU, but they do have a handy iPhone app that can help photographers (and others) understand their rights when approached by law enforcement.
Flying with Fish has the details.
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m certainly no fan of the ACLU, but they do have a handy iPhone app that can help photographers (and others) understand their rights when approached by law enforcement.</p>
<p><strong><a href="http://boardingarea.com/blogs/flyingwithfish/2009/03/05/iphone-%E2%80%98app%E2%80%99-of-the-week-your-rights/">Flying with Fish</a> has the details.</strong></p>
<img src="http://feeds.feedburner.com/~r/ThatPixelGeek/~4/RH-s1dO5OD4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thatpixelgeek.com/2009/03/photographer-rights-in-aclu-iphone-app/feed/</wfw:commentRss>
		<feedburner:origLink>http://thatpixelgeek.com/2009/03/photographer-rights-in-aclu-iphone-app/</feedburner:origLink></item>
		<item>
		<title>Jawbone Charger Can Destroy Your Jawbone Headset</title>
		<link>http://feedproxy.google.com/~r/ThatPixelGeek/~3/nZhkImwGnpg/</link>
		<comments>http://thatpixelgeek.com/2009/03/jawbone-charger-can-destroy-your-jawbone-headset/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 23:42:32 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
		
		<category><![CDATA[Gadgets]]></category>

		<category><![CDATA[Reviews]]></category>

		<guid isPermaLink="false">http://thatpixelgeek.com/?p=514</guid>
		<description><![CDATA[The original Jawbone headset by Aliph provides excellent noise reduction.
However, the unit has a design flaw; the charger fits too tight around the back of the unit. In fact, as I recently found out, it is SO tight that it can easily destroy the headset when removing it.

When I contacted Aliph customer service, they were [...]]]></description>
			<content:encoded><![CDATA[<p>The original Jawbone headset by Aliph provides excellent noise reduction.</p>
<p><strong>However</strong>, the unit has a design flaw; the charger fits too tight around the back of the unit. In fact, as I recently found out, it is SO tight that it can easily destroy the headset when removing it.</p>
<p><img src="http://thatpixelgeek.com/wp-content/uploads/2009/03/20090302-img_8919.jpg" alt="" title="20090302-img_8919" class="alignnone size-full wp-image-515" /></p>
<p>When I contacted Aliph customer service, they were cordial, but unwilling to help since I couldn&#8217;t find my receipt.</p>
<p>After some additional research, I found a <a href="http://video.aol.com/video-detail/the-best-way-to-disconnect-the-jawbone-headset-charger/3990660672">video tutorial</a> showing the best way to remove the charger. Apparently, this is known issue.</p>
<p>It&#8217;s really lame of Aliph to not stand behind their product. <strong>I definitely WILL NOT be buying my replacement headset from them</strong>.</p>
<img src="http://feeds.feedburner.com/~r/ThatPixelGeek/~4/nZhkImwGnpg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thatpixelgeek.com/2009/03/jawbone-charger-can-destroy-your-jawbone-headset/feed/</wfw:commentRss>
		<feedburner:origLink>http://thatpixelgeek.com/2009/03/jawbone-charger-can-destroy-your-jawbone-headset/</feedburner:origLink></item>
		<item>
		<title>Got the winter photography blues?</title>
		<link>http://feedproxy.google.com/~r/ThatPixelGeek/~3/WJV68HWwX-A/</link>
		<comments>http://thatpixelgeek.com/2009/02/got-the-winter-photography-blues/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 18:28:15 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
		
		<category><![CDATA[Gadgets]]></category>

		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://thatpixelgeek.com/?p=505</guid>
		<description><![CDATA[Feeling kinda blah? Got the winter photo blues?
Check out Zach Arias&#8217; video post from Scott Kelby&#8217;s blog.

]]></description>
			<content:encoded><![CDATA[<p>Feeling kinda blah? Got the winter photo blues?</p>
<p>Check out <a href="http://www.zarias.com/?p=284">Zach Arias&#8217;</a> video post from <a href="http://www.scottkelby.com/blog/2009/archives/3433">Scott Kelby&#8217;s blog</a>.</p>
<p><embed src="http://blip.tv/play/Ae3JCY2mWA" type="application/x-shockwave-flash" width="540" height="333" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<img src="http://feeds.feedburner.com/~r/ThatPixelGeek/~4/WJV68HWwX-A" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://thatpixelgeek.com/2009/02/got-the-winter-photography-blues/feed/</wfw:commentRss>
		<feedburner:origLink>http://thatpixelgeek.com/2009/02/got-the-winter-photography-blues/</feedburner:origLink></item>
	</channel>
</rss>
