<?xml version="1.0" encoding="UTF-8"?>
<!--Generated by Squarespace Site Server v5.11.81 (http://www.squarespace.com/) on Tue, 14 Feb 2012 09:53:58 GMT--><feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/"><title>gadgetboy.org - The Weblog of John Federico</title><subtitle>blog</subtitle><id>http://gadgetboy.org/archives/</id><link rel="alternate" type="application/xhtml+xml" href="http://gadgetboy.org/archives/"/><link rel="self" type="application/atom+xml" href="http://gadgetboy.org/archives/atom.xml"/><updated>2012-01-23T02:05:28Z</updated><generator uri="http://www.squarespace.com/" version="Squarespace Site Server v5.11.81 (http://www.squarespace.com/)">Squarespace</generator><entry><title>DIY QR Code Pet Tags</title><category term="Communication"/><category term="Dog Tags"/><category term="Dogs"/><category term="Gadgets"/><category term="Pet Tags"/><category term="QR Codes"/><category term="pet adoption"/><category term="pets"/><id>http://gadgetboy.org/archives/2012/1/22/diy-qr-code-pet-tags.html</id><link rel="alternate" type="text/html" href="http://gadgetboy.org/archives/2012/1/22/diy-qr-code-pet-tags.html"/><author><name>jf</name></author><published>2012-01-22T19:41:47Z</published><updated>2012-01-22T19:41:47Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p><span class="thumbnail-image-float-left ssNonEditable"><span><img src="http://gadgetboy.org/storage/thumbnails/2802291-16173469-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1327267682613" alt="" /></span></span>After seventeen years of being a one-dog household, we decided to double our dog ownership.</p>
<p>We adopted a ten-year old chocolate Cocker Spaniel named Oreo whose owner was moving from a house to an apartment and couldn't take him. Given our history with rescue dogs, we know that it's typical for older dogs to be passed over for adoption since most families want younger dogs or puppies.</p>
<p>We didn't want to see him spend the rest of his life in a foster home (or worse) so we decided to welcome him to our family. He's a great dog and gets along well with our Lucy, a four-year old, black and white, parti-colored Cocker Spaniel.</p>
<p>Oreo has a microchip but we don't know who the vendor is, so we can't find the registry. That means that the old guy definitely needed new dog tags.</p>
<p>I started poking around the Interwebs and found a few interesting things.</p>
<p>You can get pet tags with QR codes!</p>
<p>Unlike many of the silly uses of QR codes that I see, this is a brilliant use of the technology: find a pet, scan the QR code on its tag and find out all about them including their owner's name and address, eating habits, favorite activities, medical history - the works.</p>
<p>One thing really bugged me, though: the only QR code pet tag solution I could find is managed by <strong>one</strong> company: PetHub. I tried creating profiles for both of our dogs but I found the service slow and buggy.</p>
<p>Plus, as a person who calls himself "<em>half-geek, on my mother's side</em>," I knew I could do better, so I did. ;)</p>
<p>Here's how.</p>
<h2>Requirements</h2>
<ul>
<li><strong>Standard Web Pages &amp; Mobile-Optimized Web Pages.</strong> Anyone who may find the dogs should be able to load a web page to learn more about them. The pages should also be optimized for mobile browsers since someone may use a smartphone to read them.</li>
<li><strong>Short URL.</strong> For those people who can't use the QR code on their phone or prefer to type a URL into a desktop browser, a short URL is required so that it can fit on the tag in a single line of text.<br /><br />For the sake of longevity and flexibility, I want to be able to redirect the short URL to the page of my choosing in case I decide to change the location of the web pages later. This way, I don't have to pay for another set of tags should the ultimate destination change.<br /><br />Note that most short url providers (bitly, tinyurl, etc) don't allow you to change the URL destination. (This is a spam prevention measure.) As a result, you may have to set up your own URL shortener. More on this later.</li>
<li><strong>Bonus: SMS autoresponder.</strong> Texting is the lowest common denominator for mobile phones. If someone has a Feature phone they may not have a mobile web browser. Using an SMS response tool, they can always send a text message to learn more about the dog.</li>
</ul>
<ol> </ol>
<p>So, let's begin.</p>
<h2>Pick a Code</h2>
<p>First, decide <em>what kind of QR code</em> you want to use. QR codes can contain all different kinds of data: paragraphs of text, vCards, URL's - even commands for your phone to send an SMS message or launch an application. (These are usually platform dependent, though and not appropriate for this use case.)</p>
<p>The more data the code contains, the more complex the code will be to read. More importantly, depending on the QR code reader, your phone may not be able to act upon the data embedded in the code.</p>
<p>For example, I've encountered many QR code readers on the iPhone that simply don't know what to do with a vCard. (FYI: <a class="offsite-link-inline" href="http://click.linksynergy.com/fs-bin/click?id=knL4Fw4v73o&amp;subid=&amp;offerid=146261.1&amp;type=10&amp;tmpid=3909&amp;RD_PARM1=http%3A%2F%2Fitunes.apple.com%2Fus%2Fapp%2Fqrafter-qr-code-reader-generator%2Fid416098700%3Fmt%3D8" target="_blank">Qrafter</a> is the best QR code reader for the iPhone.)</p>
<p>With this in mind, I decided to encode a simple <strong>URL</strong> in the QR codes for my pet tags. URLs seem to be the universal data supported on smartphone QR code readers.</p>
<p>The URL encoded in the QR code will be the short URL I mentioned in the requirements. More on this later.</p>
<h2>The Destination</h2>
<p>With that out of the way, it was time to decide <strong>where to point this URL.</strong></p>
<p>You can create a mobile-optimized site using plain text files, basic HTML, mobile-optimized RapidWeaver themes, Wordpress.com, Blogger.com - whatever you want.</p>
<p>Since I'm very familiar with <a class="offsite-link-inline" href="http://wordpress.org" target="_blank">self-hosted Wordpress</a>, I selected it as the platform for this solution. With the right plugins, it can serve up standard web pages as well as mobile-optimized versions.</p>
<p>If you already have a blog, you can simply create a post that contains the information about your pet and skip the section where I describe how I set up Wordpress for this project.</p>
<h2>The Short URL</h2>
<p>I registered my own domain (jfed.me) for this purpose. Again, this is so that I have ultimate control over the short URL's destination. Plus, it's just cool. ;)</p>
<h2>The Setup</h2>
<p>This my setup. Choose what works best for you.</p>
<p>1. Install:</p>
<ul>
<li>Wordpress (Pick any theme)</li>
<li><a class="offsite-link-inline" href="http://wordpress.org/extend/plugins/wordpress-mobile-pack/" target="_blank">Wordpress Mobile Pack</a> plugin (For mobile-optimized pages)</li>
<li><a class="offsite-link-inline" href="http://wordpress.org/extend/plugins/wp-super-cache/" target="_blank">W3 Super Cache</a> plugin (For super fast pages. Optional, but definitely worth the few minutes to set it up. There are other caching plugins but this one is supported by the Mobile Pack.)</li>
<li><a class="offsite-link-inline" href="http://yourls.org/" target="_blank">Yourls</a> (a private, custom URL shortener)</li>
</ul>
<p>2. Activate and configure the plugins</p>
<p>3. Create your pages. You can either create Wordpress <em>Pages</em> or <em>Posts</em>. (I chose Pages.)</p>
<p>4. Populate each page or post with information about your pet. (Contact information, vaccinations, favorite foods, toys, etc.)</p>
<h2>Shorten the URL</h2>
<p>Once you've create the pages with your pet's information, copy the url and shorten it using your Yourls installation or your URL shortener of choice.</p>
<h2>Create a QR Code</h2>
<p>Now that you've got a place to point interested parties and a short URL to get them there, you need to create a QR code. There are a number of sites where you can create a QR code but this is <a class="offsite-link-inline" href="http://keremerkan.net/qr-code-and-2d-code-generator/" target="_blank">my favorite QR code generator</a> - it's made by the same developer who created Qrafter, the QR code reader for iPhone that I mentioned above.</p>
<p>Simply enter the short URL and submit the form. (There are a bunch of options in this tool, but you don't need to be concerned with them.)</p>
<p>Save the image of the QR code to your hard drive. You'll need it later.</p>
<h2>Working with Text Messages</h2>
<p>As I mentioned in my requirements, I wanted to see if I could figure out a low-cost solution for SMS autoresponders using infrastructure I already had in place.</p>
<p>For this, I chose <a class="offsite-link-inline" href="http://twilio.com" target="_blank">Twilio</a> and their <a class="offsite-link-inline" href="http://openvbx.org" target="_blank">OpenVBX</a> software.</p>
<p>Twilio offers Voice and Text Messaging as a Service. Simply put, with a little code and a Twilio account, you can create applications that use Voice Over Internet Protocol (VOIP) or SMS text messages.</p>
<p>If you don't code, that's ok - you can setup an instance of OpenVBX and use that. Even better - if you don't know how to install OpenVBX, <a class="offsite-link-inline" href="http://www.dreamhost.com/r.cgi?65347" target="_blank">Dreamhost</a> offers a one-click installation process. All you have to do is tell Dreamhost where to install it in your Dreamhost account, then login using your browser to configure it.</p>
<p>Twilio charges $1 per month for a local number and 1 cent for each SMS message sent or received. The OpenVBX software is free.</p>
<p>I use OpenVBX and a Twilio number as a phone system for my company. I have a second number that we use use only for conference calls, so using that second number, I instructed OpenVBX to create an autoresponder, one for each dog.</p>
<p>(Note that I've replaced some of the numbers and email addresses below to keep them private.)</p>
<p>This means that when someone texts <em>Oreo</em> to (212) XXX-XXXX, they'll receive the following message:</p>
<blockquote>
<p>Oreo is up-to-date on all of his vaccinations.</p>
<p>HE DOES NOT BITE though may growl if approached while&nbsp;eating.</p>
<p>http://jfed.me/oreo</p>
<p>or respond with "contact"</p>
</blockquote>
<p>If someone responds with <em>contact</em> they'll receive the following message:</p>
<blockquote>
<p>It's best to contact John at 201 XXX XXXX or</p>
<p>abc@newrules.com</p>
<p>You can also contact Denise at 973 XXX XXXX or</p>
<p>xyz@newrules.com</p>
</blockquote>
<h2>Create the Tags</h2>
<p>So, where <strong>do</strong> you get pet tags with custom QR codes on them?</p>
<p>Etsy.</p>
<p>After a few searches on <a class="offsite-link-inline" href="http://duckduckgo.com" target="_blank">Duck Duck Go</a>, I found Etsy maker "<a class="offsite-link-inline" href="http://www.etsy.com/people/postlife" target="_blank">postlife</a>." He has <a class="offsite-link-inline" href="http://www.etsy.com/listing/65493170/custom-qr-code-laser-etched-dog-tag" target="_blank">laser engraved dog tags</a> on offer, mostly for wear by humans.</p>
<p>If they're good enough for humans, they're good enough for my dogs. ;)</p>
<p>The seller indicated that he could engrave both sides. Once I confirmed this, I paid him via PayPal and sent him the QR code I made for one side of the tag and text for the other side.</p>
<p><span class="thumbnail-image-block ssNonEditable"><span><img src="http://gadgetboy.org/storage/thumbnails/2802291-16173817-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1327268880694" alt="" /></span></span></p>
<p>The back of Oreo's tag contains:</p>
<blockquote>
<p>"Oreo"</p>
<p>Maplewood, NJ</p>
<p>Call 973-XXX-XXXX</p>
<p>Text "Oreo" to</p>
<p>212-XXX-XXXX</p>
<p>jfed.me/oreo</p>
</blockquote>
<p>Lucy's is the same, except for the keyword that people send via text message.</p>
<p>So now, both of our dogs have new pet tags connected to me and my wife using a handful of modern communication tools.</p>
<p>It was a fun little project, but I hope no one ever has to use them. Funny how that works, huh?</p>]]></content></entry><entry><title>Guest on Nonprofit Radio January 13th at 1 PM</title><category term="Hear This"/><category term="Podcasting"/><category term="Podcasting"/><category term="Tony Martignetti Nonprofit Radio"/><id>http://gadgetboy.org/archives/2012/1/11/guest-on-nonprofit-radio-january-13th-at-1-pm.html</id><link rel="alternate" type="text/html" href="http://gadgetboy.org/archives/2012/1/11/guest-on-nonprofit-radio-january-13th-at-1-pm.html"/><author><name>jf</name></author><published>2012-01-11T18:43:23Z</published><updated>2012-01-11T18:43:23Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>I'll be a guest on Tony Martignetti Nonprofit Radio talking about Podcasting for nonprofilts.&nbsp;</p>
<p>Join me - you'll be able to <a class="offsite-link-inline" href="http://www.talkingalternative.com/" target="_blank">listen live</a> or grab the <a class="offsite-link-inline" href="http://itunes.apple.com/us/podcast/tony-martignetti-nonprofit/id410006184" target="_blank">podcast</a> next week.</p>]]></content></entry><entry><title>You Give a Kid a Kindle - Then What?</title><category term="Amazon"/><category term="Amazon Kindle"/><category term="Digital Media"/><category term="Digital Media"/><category term="Ecommerce"/><category term="Gadgets"/><category term="Kids"/><category term="Kindle Touch"/><category term="Parental Controls"/><category term="Tech"/><category term="ebooks"/><id>http://gadgetboy.org/archives/2011/12/26/you-give-a-kid-a-kindle-then-what.html</id><link rel="alternate" type="text/html" href="http://gadgetboy.org/archives/2011/12/26/you-give-a-kid-a-kindle-then-what.html"/><author><name>jf</name></author><published>2011-12-27T02:47:25Z</published><updated>2011-12-27T02:47:25Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p style="text-align: center;"><span class="full-image-block ssNonEditable"><span><a href="http://www.amazon.com/gp/product/B005890G8Y/ref=as_li_ss_tl?ie=UTF8&amp;tag=brandbrains-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B005890G8Y" target="_blank"><img src="http://gadgetboy.org/storage/kindle_touch.jpg?__SQUARESPACE_CACHEVERSION=1324955260088" alt="" /></a></span></span></p>
<p>My son loves to read, so my wife and I decided to get him a <a class="offsite-link-inline" href="http://www.amazon.com/gp/product/B005890G8Y/ref=as_li_ss_tl?ie=UTF8&amp;tag=brandbrains-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B005890G8Y" target="_blank">Kindle Touch</a> for Christmas.</p>
<p>He recently turned nine and we think that he's responsible enough to care for an eReader - and what better way to demonstrate our confidence in him than to surprise him on Christmas day?</p>
<p>The problem that we had (<a href="http://gigaom.com/2011/12/09/kindle-fire-parental-controls/">as do many parents of young children</a>) is the lack of parental controls on Kindle devices.</p>
<p>Kindles have gotten cheap enough that they can serve as suitable replacements for kid's books without breaking the bank (or a kid's back) but they're still designed with adults in mind: one-click purchases for books, games, apps, movies, music and audiobooks. (Sorry, Amazon, but that doesn't work in our house.)</p>
<p>So, I set about figuring out how to handle this with our son.</p>
<p>First I thought I would connect his Kindle to my Amazon account, then he and I would discuss the rules for making new book purchases: all purchase decisions would occur together, between him and me. The first time this rule was broken, the Kindle would get put away for awhile.</p>
<p>This sounds good in theory, but it definitely doesn't help us demonstrate our trust in him. (One-click purchases and kids just don't mix.) It also required that we share a Kindle library. Practically speaking, it's not ideal: his actions would be recorded as my actions and his purchase decisions would affect my Amazon Recommendations.</p>
<p>So, I thought I'd try a little experiment: does an Amazon account require a credit card? It turns out that it doesn't!</p>
<p>Amazon will let you have an account but prompt you for a credit card before each purchase. (But then keeps this card on file until you delete it.) Not a perfect solution, but better than the previous scenario.</p>
<p>The obvious downside to this approach is that I have to enter a credit card for each purchase, then delete it afterward so as to hamstring one-click purchases.</p>
<p>Then, I remembered that <strong>Kindle books can be given as gifts</strong>.</p>
<p>For parents who want to let their young kids use a Kindle, <strong>this</strong> is the solution:</p>
<ul>
<li>Create a new Amazon account for your child (You'll need to enter a unique email address but luckily, Amazon doesn't ask about date of birth.)</li>
</ul>
<ul>
<li>Each time that you and your child determine that a purchase is appropriate, launch <strong>your</strong> Amazon account and find the book (or other digital media) that your child wants.</li>
</ul>
<ul>
<li>Under "Buy Now with One-Click" you'll see "Give as a Gift". Select that option. </li>
</ul>
<p style="text-align: center;"><span class="thumbnail-image-block ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Fgive_as_a_gift.JPG%3F__SQUARESPACE_CACHEVERSION%3D1324954522988',1004,1339);"><img src="http://gadgetboy.org/storage/thumbnails/2802291-15749112-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1324954522989" alt="" /></a></span></span></p>
<ul>
<li>Next, you'll need to enter the recipient's email address. If you have younger kids that don't regularly use email yet, be sure to select "Email the gift to me." (My son has an address, but he doesn't use it much.)</li>
</ul>
<p style="text-align: center;"><span class="thumbnail-image-block ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Fgift_email.JPG%3F__SQUARESPACE_CACHEVERSION%3D1324954706606',1024,1366);"><img src="http://gadgetboy.org/storage/thumbnails/2802291-15749131-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1324954706607" alt="" /></a></span></span></p>
<ul>
<li>Login to your child's Amazon account and go to amazon.com/acceptgift. (I've been keeping my son's Amazon account open in iCab Mobile on my iPad and keeping a passcode on the app, so I don't have to continually login.)</li>
</ul>
<ul>
<li>Enter the redemption code that you received via email and the book will be added to your child's library.</li>
</ul>
<p>That's it.</p>
<p>Your child will have their own Amazon digital media library without the sudden surprises that accompany one-click purchases. Plus, when they're old enough, they'll have an Amazon account they can call their own.</p>]]></content></entry><entry><title>Virtual Sunglasses, Real Shopping</title><category term="Brand Experience"/><category term="Communication"/><category term="Customer Service"/><category term="Ecommerce"/><category term="Online Marketing"/><category term="Online Shopping"/><category term="Product Management"/><category term="customer service"/><category term="ecommerce"/><category term="marketing"/><id>http://gadgetboy.org/archives/2011/11/29/virtual-sunglasses-real-shopping.html</id><link rel="alternate" type="text/html" href="http://gadgetboy.org/archives/2011/11/29/virtual-sunglasses-real-shopping.html"/><author><name>jf</name></author><published>2011-11-29T21:43:31Z</published><updated>2011-11-29T21:43:31Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p><span class="full-image-inline ssNonEditable"><span><img src="http://gadgetboy.org/storage/EyeFly_YBUENSBLK0055_1.jpg?__SQUARESPACE_CACHEVERSION=1322603078276" alt="" /></span></span></p>
<p>I ordered a pair of prescription sunglasses from Eyefly.com through a great deal on Living Social. ($49 for a complete pair of glasses, shipped.)</p>
<p>That was pretty cool, but this is even cooler:</p>
<p>While browsing for glasses on Eyefly, you can take a photo of yourself with a webcam. The site uses software that will automagically place a 3D rendering of the glasses on your face so you can see how they might look. (Adobe Flash required.) :P</p>
<p>The software isn't perfect, as it automatically adds mirrored tinting to the sunglasses, but the "fit" is pretty good. See the photo above.</p>
<p>(No, I hadn't yet shaved. Or showered. Just ignore that part.) ;)</p>
<p>This is an excellent tool for selling a product online that people typically prefer to first try on. To add to shopper's comfort level, they also include Zappos-style&nbsp;free shipping and returns.</p>
<p>I will most likely get another pair from Eyefly because of this crazy-cool feature. (Though I wish they would allow me to add sunglass tinting to a regular prescription frame.)</p>
<p>[<a class="offsite-link-inline" href="http://www.eyefly.com/referafriend/?bl=amFmQG5ld3J1bGVzLmNvbQ==" target="_blank">Eyefly</a>]</p>]]></content></entry><entry><title>Tether your Virgin Mobile MiFi 2200 to your Mac</title><category term="3G Mobile Broadband"/><category term="Apple"/><category term="Gadgets"/><category term="MacBook Air"/><category term="Mobile Broadband"/><category term="Novatel MiFi 2200"/><category term="OS X Lion"/><category term="Pre-Paid Mobile Broadband"/><category term="Tech"/><category term="Virgin Mobile USA Mobile Broadband"/><category term="Wireless"/><id>http://gadgetboy.org/archives/2011/11/21/tether-your-virgin-mobile-mifi-2200-to-your-mac.html</id><link rel="alternate" type="text/html" href="http://gadgetboy.org/archives/2011/11/21/tether-your-virgin-mobile-mifi-2200-to-your-mac.html"/><author><name>jf</name></author><published>2011-11-21T20:58:35Z</published><updated>2011-11-21T20:58:35Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p><span class="thumbnail-image-block ssNonEditable"><span><img src="http://gadgetboy.org/storage/thumbnails/2802291-15232446-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1321910929456" alt="" /></span></span></p>
<p>A while back I wrote a post about my experience <a href="http://gadgetboy.org/archives/2011/9/5/try-pre-paid-mobile-broadband-for-occasional-3g-data-usage.html">searching for pre-paid mobile broadband</a>. I ultimately chose Virgin Mobile USA as my provider but one thing that bugged me was that I had to use the MiFi 2200 mobile hotspot since there were no drivers for their USB dongles for OS X Lion.</p>
<p>I've always known that the MiFi could be tethered to a Mac using its USB cable, but I also thought that the drivers for Lion weren't available.</p>
<p>As it turns out, I get the best of both worlds with the MiFI.</p>
<p>Either the drivers were recently update during an OS X Software Update or I just plain missed the fact that you can tether the MiFi 2200 to your Mac running OS X Lion. (At least using 10.7.2. I haven't tried to tether using earlier versions of Lion.)</p>
<p>The process is simple:</p>
<p>1) Connect your MiFi to your Mac using its USB cable.</p>
<p>2) Go to the Airport menu in your dock, scroll down to the bottom and select "Open Network Preferences..."</p>
<p><img src="http://gadgetboy.org/storage/open_network_prefs.png?__SQUARESPACE_CACHEVERSION=1321922260336" alt="" /></p>
<p>3) Select "Novate...Modem" (Novatel Wireless Modem) from the list to the left.</p>
<p>4) Enter your Account Name (Device Phone Number) and Password (MSID) and click "Connect"</p>
<p><span class="full-image-block ssNonEditable"><span><img src="http://gadgetboy.org/storage/network_preferences.png?__SQUARESPACE_CACHEVERSION=1321910282197" alt="" /></span></span></p>
<p>If your credentials are correct and your account balance is up-to-date, you'll be online in a few seconds.&nbsp;</p>
<h2>Benefits to this Approach</h2>
<ul>
<li>If your Mac is plugged-in to AC power, you can work all day without worrying about the battery on your MiFi since it will be continually charged.</li>
<li>You can still share your 3G connection using your Mac's ability to act as an ad hoc hot spot. (The WiFi is disabled on the MiFi when it's charging.)</li>
<li>You don't have to worry about all the interference on the 2.4 Ghz band (aka "The Junk Band") that your MiFi uses for its hotspot. Since you're getting your data over the wire, you mitigate any potential network latency that can be caused by the "3G &gt; Hotspot &gt; Computer" networking you have to perform when using the MiFi's built-in hotspot.</li>
</ul>
<p>Do you have any other tips for using mobile broadband with your Mac?</p>
<div></div>]]></content></entry><entry><title>Live HD TV on Your Boxee Box</title><category term="Boxee"/><category term="DVR"/><category term="Digital Media"/><category term="Gadgets"/><category term="HD Broadcasts"/><category term="Live TV"/><category term="Media"/><category term="OTA Broadcasts"/><category term="TV"/><category term="Tech"/><category term="Television"/><category term="Video"/><id>http://gadgetboy.org/archives/2011/11/16/live-hd-tv-on-your-boxee-box.html</id><link rel="alternate" type="text/html" href="http://gadgetboy.org/archives/2011/11/16/live-hd-tv-on-your-boxee-box.html"/><author><name>jf</name></author><published>2011-11-16T14:10:56Z</published><updated>2011-11-16T14:10:56Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p><span class="full-image-block ssNonEditable"><span><img src="http://gadgetboy.org/storage/boxee_live_tv_dongle.png?__SQUARESPACE_CACHEVERSION=1321453469912" alt="" /></span></span></p>
<p>Starting in January, you'll be able to watch live HD TV on your Boxee Box using a new USB dongle from the company.</p>
<p>Announced today, the device will cost $49 and will enable you to view live HD channels from your local broadcasters - ABC, NBC, CBS and FOX with no monthly fee as these are over-the-air (OTA) HD channels produced for your local market.</p>
<p>While this is certainly a nice add-on for those people who don't want to wait for their favorite shows to arrive on Vudu/Hulu/Netflix or other on-demand channels, Team Boxee is positioning this as an alternative to your cable subscription. ("Is it really worth $85 a month?")</p>
<p>While that's certainly a valid question, with only small exceptions most of the television that we watch in our house isn't available OTA. (Keep in mind, I have nine-year-old. Kids change the equation...)</p>
<p>Plus, Boxee doesn't provide DVR functionality for these OTA HD channels.&nbsp;Even though there's one show on ABC that we watch consistently in our house, we certainly don't schedule our day around it in order to watch it live - we watch it from the DVR.</p>
<p>With all that said, if you're a Boxee fan and an avid cord-cutter but still miss your live sports or other network shows, then this device is for you.</p>
<p>The Boxee Live TV dongle is $49 and will ship in January. You can pre-order one now directly from Boxee.</p>
<p>[<a class="offsite-link-inline" href="http://blog.boxee.tv/2011/11/16/boxee-live-tv-is-coming-time-to-cut-the-cord/" target="_blank">Boxee Blog</a>]</p>]]></content></entry><entry><title>Wingstand Portable Tablet and Smartphone Stand</title><category term="Creativity"/><category term="Gadgets"/><category term="Innovation"/><category term="Smartphone Stand"/><category term="Wingstand"/><category term="iPad"/><category term="iPad Stand"/><category term="iPhone"/><category term="iPhone Stand"/><id>http://gadgetboy.org/archives/2011/11/15/wingstand-portable-tablet-and-smartphone-stand.html</id><link rel="alternate" type="text/html" href="http://gadgetboy.org/archives/2011/11/15/wingstand-portable-tablet-and-smartphone-stand.html"/><author><name>jf</name></author><published>2011-11-15T17:11:54Z</published><updated>2011-11-15T17:11:54Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p><span class="full-image-block ssNonEditable"><span><img style="width: 600px;" src="http://gadgetboy.org/picture/15.jpg?pictureId=12119658&amp;asGalleryImage=true&amp;__SQUARESPACE_CACHEVERSION=1321378185459" alt="" /></span></span>If you're like me, you use a variety of gear to remain productive.</p>
<p>The mainstay of my workflow is my MacBook Air, with my iPhone being second in line, followed by my iPad.</p>
<p>In my opinion, any <strong>real</strong> work on an iPad requres a keyboard. Perhaps, if you grow up using an on-screen software keyboard, you might feel differently, but I get frustrated by the lack of tactile feedback that a real keyboard provides.</p>
<p>Those of you who follow me on Twitter know that I frequently live-tweet some of the professional events that I attend. I don't always have a net connection for my MacBook or iPad, so the iPhone is my fallback device. It's these times that I wish my iPhone also had a full-size keyboard.</p>
<p>While this has been possible as of iOS 4, using Bluetooth, the remaining problem is about placement and orientation: what do you do with the iPhone while you're using an external keyboard?</p>
<p>This is where the Wingstand comes in.</p>
<p>Conceived in a dorm room at Stanford, the Wingstand consists of two specially shaped pieces of recycled plastic. (Not surprisingly, resembling an airplane wing.)</p>
<p>On what would be considered the leading edge of the wing is a vertical slot with what looks to be about a 20 degree pitch. When a single Wingstand piece is coupled with it's twin, an iPad, iPhone or other such device can be lowered into this slot. When placed on a flat surface, the trailing edge of the wing provides leverage to support your device, allowing it to stand freely.</p>
<p>Also on the leading edge of the wing, on the lower section, is what can best be described as a hexagon, though missing one of it's sides.</p>
<p>This hexagonal-like shape is used for stability but ingeniously, it's designed to slide over the rounded back of an Apple Bluetooth Keyboard. This portion of the Wingstand even has a groove cut out of it, so you slide it over the rubber-ish pads at the bottom of the keyboard without shearing them off.</p>
<h2>Using the Wingstand</h2>
<p>I used the Wingstand during my travels to and from Blogworld &amp; New Media Expo in Los Angeles a couple of weeks ago.</p>
<p>On the plane, it was ideal. Since the first leg of my flight on the way to LA didn't have in-flight WiFi, the Wingstand allowed me to compose and respond to email on my iPhone using the full-size keyboard while keeping the phone upright. When I landed in my connecting city and turned on my iPhone, my messages were automatically sent. This was great.</p>
<p>The second leg of my trip had in-flight WiFi, so I was able to use my iPad with the Wingstand to get some work done.</p>
<p>The Wingstand turned out to be ideal in both these situations since the seatback trays while flying in coach on Delta were pathetic - I couldn't even open my MacBook Air to a usable position.</p>
<p>I happen to use ZAGG's InvisibleShield on both the screen and back of my iPad 2. While the device fit just fine with the clear protection (in fact, it will even fit while using an Apple Smart Cover), the Wingstand did leave indentations in the screen protector and even shifted the screen protector around a bit. Luckily, I was able to smooth it back into place, but the Wingstand left tiny - but still visible - impressions on my iPad 2's screen protector. Because of this, I won't continue to use the Wingstand with my iPad.</p>
<p>I have no such protection on my iPhone and will continue to use the Wingstand with that device.</p>
<p>When I finally arrived in LA, I used the Wingstand all week. Before dinner each night I would return to my hotel room, jump on the WiFi network with my iPhone and call my wife and son using FaceTime. The Wingstand worked great in both portrait or landscape orientation.</p>
<p>At bed time, it made for a perfect stand for my iPhone when used as an alarm clock. I continue to use it this way at home.</p>
<p>In fact, I'm using it right now. (No, I'm not writing this in my sleep. If only I could&hellip;)</p>
<p>I use IA Writer in full-screen mode to avoid distractions while I write my posts. However, I still need to make sure that any email I receive doesn't require immediate attention and for this, the Wingstand is great. My iPhone is sitting in portrait orientation in the Wingstand next to my MacBook Air so I can see my email notifications as they arrive.</p>
<p>Yesterday, I used it in the same way only in landscape orientation to watch a live video stream of a conference while I was working. This allowed me to glance at the video stream without having to jump between browser windows on my MacBook Air. Sure, I could have gone into my office, connected an external display and watched the stream in another browser window on that display, but the Wingstand accomplished the same thing for me without my having to do that.</p>
<p>In terms of my specific workflows, I find the Wingstand lacking in only one way: it requires a flat surface in order to use it.</p>
<p>Day-to-day, I really need a keyboard for my iPad and iPhone that allows me to use it on my lap. Keyboards such as the ZAGGkeys Solo fill this need as it has a groove in which you can place your device.</p>
<p>However, if this is a trivial concern of yours, don't let my persnickety workflows influence you - the Wingstand is a perfect companion for stable, hands-free use of your tablet or smartphone.</p>
<h2>Device Compatibility</h2>
<p>The company indicates that the Wingstand is compatible with:</p>
<ul>
<li>iPad</li>
<li>iPad 2</li>
<li>Galaxy Tab</li>
<li>BlackBerry Playbook (Hah! That's funny. That probably means it will also work with the Kindle Fire, though.)</li>
<li>HP TouchPad (Hah! That's double-funny.)</li>
<li>Acer Iconia (Whatever.)</li>
<li>HTC Flyer</li>
<li>iPhone 4/4S</li>
<li>iPhone 3/3GS</li>
</ul>
<p>I'm sure that there are many others for which it will work, but it may require some testing on your part. The full specifications of the Wingstand are available on the company's web site.</p>
<h2>In Summary</h2>
<p>The Wingstand is highly portable, inexpensive, eco-friendly and supports a variety of devices. While your use of the Wingstand will ultimately boil down to personal preference, if you use your tablet or smartphone for any of it's intended uses - watching video, composing email with an external keyboard, following recipes, video conferencing or as an alarm clock - the Wingstand is as effective as any other stand on the market, at any cost.</p>
<p>The Wingstand costs $14.95 and is available now in black or white plastic.</p>
<p>[<a class="offsite-link-inline" href="http://wingstand.com/" target="_blank">Wingstand</a>]</p>
<p>Disclosure of Material Connection: <a class="offsite-link-inline" href="http://dsclzr.us/2/" target="_blank">http://dsclzr.us/2/</a></p>
<p><div id="squarespace-slideshow-wrapper-1321377960"><input type="hidden" id="squarespace-slideshow-params-1321377960" value="eyJzY3JpcHRJZCI6IjEzMjEzNzc5NjAiLCJhdXRvUGxheUVuYWJsZWQiOmZhbHNlLCJzbGlkZVN0eWxlIjoiaG9yaXpvbnRhbCIsInNsaWRlVHJhbnNpdGlvbiI6InN3aXBlIiwiZGVzY3JpcHRpb25TdHlsZSI6ImhpZGRlbiIsInNsaWRlTmF2aWdhdGlvbiI6Im9uaG92ZXIiLCJsb2FkQ291bnQiOjE3LCJzbGlkZURlbGF5IjozLCJhc3BlY3RYIjoiIiwiYXNwZWN0WSI6IiIsImdhbGxlcnkiOnsiaWQiOiI3NTYyMzIiLCJkZXNjcmlwdGlvbiI6IiIsInVybElkIjoid2luZ3N0YW5kLyIsInBpY3R1cmVzIjpbeyJpZCI6IjEyMTE5NjU3IiwidGl0bGUiOiIxMS5qcGciLCJkZXNjcmlwdGlvbiI6IiIsImZpbGVOYW1lIjoiMTEuanBnIn0seyJpZCI6IjEyMTE5NjU4IiwidGl0bGUiOiIxNS5qcGciLCJkZXNjcmlwdGlvbiI6IiIsImZpbGVOYW1lIjoiMTUuanBnIn0seyJpZCI6IjEyMTE5NjU2IiwidGl0bGUiOiI3LmpwZyIsImRlc2NyaXB0aW9uIjoiIiwiZmlsZU5hbWUiOiI3LmpwZyJ9LHsiaWQiOiIxMjExOTY1NSIsInRpdGxlIjoiaW1nXzcwMjMuanBnIiwiZGVzY3JpcHRpb24iOiIiLCJmaWxlTmFtZSI6ImltZ183MDIzLmpwZyJ9LHsiaWQiOiIxMjExOTY1NCIsInRpdGxlIjoiaW1nXzcwMjQuanBnIiwiZGVzY3JpcHRpb24iOiIiLCJmaWxlTmFtZSI6ImltZ183MDI0LmpwZyJ9LHsiaWQiOiIxMjExOTY1MyIsInRpdGxlIjoiaW1nXzcwMjUuanBnIiwiZGVzY3JpcHRpb24iOiIiLCJmaWxlTmFtZSI6ImltZ183MDI1LmpwZyJ9LHsiaWQiOiIxMjExOTY1OSIsInRpdGxlIjoiaW1nXzcwMjYuanBnIiwiZGVzY3JpcHRpb24iOiIiLCJmaWxlTmFtZSI6ImltZ183MDI2LmpwZyJ9LHsiaWQiOiIxMjExOTY2MCIsInRpdGxlIjoiaW1nXzcwMjcuanBnIiwiZGVzY3JpcHRpb24iOiIiLCJmaWxlTmFtZSI6ImltZ183MDI3LmpwZyJ9LHsiaWQiOiIxMjExOTY2MSIsInRpdGxlIjoiaW1nXzcwMjguanBnIiwiZGVzY3JpcHRpb24iOiIiLCJmaWxlTmFtZSI6ImltZ183MDI4LmpwZyJ9LHsiaWQiOiIxMjExOTY2MiIsInRpdGxlIjoiaW1nXzcwMjkuanBnIiwiZGVzY3JpcHRpb24iOiIiLCJmaWxlTmFtZSI6ImltZ183MDI5LmpwZyJ9LHsiaWQiOiIxMjExOTY2MyIsInRpdGxlIjoiaW1nXzcwMzAuanBnIiwiZGVzY3JpcHRpb24iOiIiLCJmaWxlTmFtZSI6ImltZ183MDMwLmpwZyJ9LHsiaWQiOiIxMjExOTY2NCIsInRpdGxlIjoiaW1nXzcwMzEuanBnIiwiZGVzY3JpcHRpb24iOiIiLCJmaWxlTmFtZSI6ImltZ183MDMxLmpwZyJ9LHsiaWQiOiIxMjExOTY2NSIsInRpdGxlIjoiaW1nXzcwMzIuanBnIiwiZGVzY3JpcHRpb24iOiIiLCJmaWxlTmFtZSI6ImltZ183MDMyLmpwZyJ9LHsiaWQiOiIxMjExOTY2NiIsInRpdGxlIjoiaW1nXzcwMzMuanBnIiwiZGVzY3JpcHRpb24iOiIiLCJmaWxlTmFtZSI6ImltZ183MDMzLmpwZyJ9LHsiaWQiOiIxMjExOTY2NyIsInRpdGxlIjoiaW1nXzcwMzUuanBnIiwiZGVzY3JpcHRpb24iOiIiLCJmaWxlTmFtZSI6ImltZ183MDM1LmpwZyJ9LHsiaWQiOiIxMjExOTY1MiIsInRpdGxlIjoiaW1nXzcwMzYuanBnIiwiZGVzY3JpcHRpb24iOiIiLCJmaWxlTmFtZSI6ImltZ183MDM2LmpwZyJ9LHsiaWQiOiIxMjExOTY1MCIsInRpdGxlIjoiaW1nXzcwNzQuanBnIiwiZGVzY3JpcHRpb24iOiIiLCJmaWxlTmFtZSI6ImltZ183MDc0LmpwZyJ9XSwidGl0bGUiOiJXaW5nc3RhbmQifX0=" /><script type="text/javascript">YUI().use("*", function(Y) {Y.on("domready", function() {Y.startGallerySlideShow("squarespace-slideshow-params-1321377960");});});</script></div>&nbsp;</p>
<p><iframe src="http://player.vimeo.com/video/25514811?title=0&amp;byline=0&amp;portrait=0" width="400" height="300" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe></p>
<p>&nbsp;</p>]]></content></entry><entry><title>It's not Me. It's You. (updated)</title><category term="Communication"/><category term="Customer Engagement"/><category term="Customer Interaction"/><category term="Customer Satisfaction"/><category term="Customer Service"/><category term="Customer Support"/><category term="Management"/><category term="Software"/><category term="Tech"/><category term="marketing"/><id>http://gadgetboy.org/archives/2011/11/13/its-not-me-its-you-updated.html</id><link rel="alternate" type="text/html" href="http://gadgetboy.org/archives/2011/11/13/its-not-me-its-you-updated.html"/><author><name>jf</name></author><published>2011-11-13T16:08:05Z</published><updated>2011-11-13T16:08:05Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p><span class="full-image-float-left ssNonEditable"><span><img src="http://gadgetboy.org/storage/customer_service_tools.jpg?__SQUARESPACE_CACHEVERSION=1321201516338" alt="" /></span></span>There's a bug in one of the blogging platforms I use which has been consistently appearing during regular use. (<strong>Not</strong> this one, BTW.)</p>
<p>It's a minor bug, but it's appearance has become annoying and tedious. I continually remind myself that the service is free, and that I shouldn't complain.</p>
<p>Yesterday however, I figured I should take a moment to notify them about it as <strong>it could be helpful for them</strong> to know.</p>
<p>The response (from offshore) is below:</p>
<blockquote>
<p>We are very sorry you are having this problem. We are going to ask for some information and make some suggestions that may help:</p>
<p>What web browser and browser version are you using?</p>
</blockquote>
<p>&nbsp;Problem number one: this information was automatically included in my original message. This leads me to believe that he's a) new to the company, b) an infrequent contractor or c) has his head up his ass.</p>
<p>Regardless, as the customer, I don't care. I expect you to read the message that I took the time to write and send to you.</p>
<p>&nbsp;</p>
<blockquote>
<p>Are you running any web browser add-ons you could try disabling?</p>
<p>Does restarting your computer and your modem/router help at all?</p>
<p>Are you running any security/firewall/proxy software on your computer or network that could be affecting your connection to (redacted)?</p>
<p>Thanks for using (redacted),</p>
<p>Pavel</p>
<p>(redacted) теперь по-русски (!)</p>
</blockquote>
<p>&nbsp;</p>
<p>The content of the message makes one overarching assumption that is carried throughout: <strong>you, the customer,&nbsp;must be doing something wrong.</strong></p>
<p>Now, I understand that they deal with many more n00bs than they deal with experienced people. Furthermore, I've been troubleshooting technology issues for more than 20 years, so I understand how frustrating it can be to work with inexperienced users.</p>
<p>But come on: why do I need to upset everything <strong>to help you solve your problem?</strong></p>
<p>To be clear, the support rep expects me to:</p>
<ul>
<li>Change my operating environment (uninstall or deactivate add-ons)</li>
<li>Restart my machine</li>
<li>Restart my network infrastructure</li>
</ul>
<p>More surprising (at least to me), is the rep expects that I would be <strong>willing</strong> to do this in order to continue using their service.</p>
<p>Perhaps I won't? Then what will they do?</p>
<p>In summary, the user is not always the problem and your service may not always be worth the trouble.</p>
<p>Think about that when you build your customer support infrastructure - even if your service is free.</p>
<p>&nbsp;</p>
<p><strong>UPDATE:</strong></p>
<p>And...... it continues.</p>
<p>I responded to the support rep and provided all the information he asked for. What did I get back? More of the same. [Facepalm]</p>
<p>Other than removing the name of the service, the rep's response is unchanged.</p>
<p>&nbsp;</p>
<blockquote>
<div id="_mcePaste">Sometimes the cache where you web browser stores images and other web data can become corrupted or outdated. Does clearing or deleting your web browser's cache / offline files / temporary internet files help?</div>
<div id="_mcePaste"></div>
<div id="_mcePaste">You can find info on how to do that here: http://www.wikihow.com/Clear-Your-Browser?-Cache</div>
<div id="_mcePaste">-</div>
<div id="_mcePaste">(redacted) and other websites use "cookies" to store information in your web browser. Sometimes, these cookies can become corrupted and cause problems.</div>
<div></div>
<div id="_mcePaste"></div>
<div id="_mcePaste">Try deleting your web browser's cookies for (redacted) and see if that helps. Let me know if you still have a problem.</div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>
<div>Info on how to delete cookies is at:</div>
<div id="_mcePaste"></div>
<div id="_mcePaste">http://www.wikihow.com/Clear-Your-Browser's-Cookies</div>
<div id="_mcePaste">-</div>
<div id="_mcePaste">Does restarting your computer and your modem/router help at all?</div>
<div id="_mcePaste">-</div>
<div id="_mcePaste">Sometimes reinstalling or upgrading your web browser can help fix problems. Have you tried a free upgrade to the newest version of Firefox?:</div>
<div></div>
<div id="_mcePaste"></div>
<div id="_mcePaste">http://www.mozilla.com/firefox/</div>
<div></div>
<div id="_mcePaste"></div>
<div id="_mcePaste">Thanks for using (redacted),</div>
<div>Pavel</div>
<div></div>
<div id="_mcePaste"></div>
<div id="_mcePaste">(redacted) теперь по-русски (!)</div>
</blockquote>
<p>&nbsp;</p>]]></content></entry><entry><title>Shooting 720p Video using an iPhone 4S</title><category term="720p Video"/><category term="Apple"/><category term="Digital Media"/><category term="Filmic Pro"/><category term="Software"/><category term="Video"/><category term="iPhone"/><category term="iPhone Video"/><id>http://gadgetboy.org/archives/2011/11/3/shooting-720p-video-using-an-iphone-4s.html</id><link rel="alternate" type="text/html" href="http://gadgetboy.org/archives/2011/11/3/shooting-720p-video-using-an-iphone-4s.html"/><author><name>jf</name></author><published>2011-11-03T11:30:18Z</published><updated>2011-11-03T11:30:18Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p><span class="full-image-block ssNonEditable"><span><img class="iphone-image" src="http://gadgetboy.org/resource/iphone-20111103073018-1.jpg?fileId=14955159" alt="" /></span></span></p>
<p>The combination of the new backside illuminated camera sensor and A5 processor in the iPhone 4S makes for a powerful, high-quality consumer video device that shoots full-HD.</p>
<p>But what if you own a device with only 16 GB of storage? That 1080p video will eat that up fast.</p>
<p>If you want to shoot at 720p, which is still very high quality, grab the latest version of FiLMiC Pro from the app store.</p>
<p>The developer has added and improved numerous features but the most important feature is the ability to determine the video resolution (or what they call the "Frame Size") before shooting.</p>
<p>Other features to note (which may have  been added in a previous update) include the ability to select the Frame Rate, Bit Rate and audio compression options.</p>
<p>[<a href="http://click.linksynergy.com/fs-bin/click?id=knL4Fw4v73o&amp;subid=&amp;offerid=146261.1&amp;type=10&amp;tmpid=3909&amp;RD_PARM1=http%3A%2F%2Fitunes.apple.com%2Fus%2Fapp%2Ffilmic-pro%2Fid436577167%3Fmt%3D8" target="_blank">FiLMiC Pro</a>]</p>
<p><img class="iphone-image" src="http://gadgetboy.org/resource/iphone-20111103073018-2.jpg?fileId=14955160" alt="" /></p>
<p><img class="iphone-image" src="http://gadgetboy.org/resource/iphone-20111103073018-3.jpg?fileId=14955161" alt="" /></p>
<p><img class="iphone-image" src="http://gadgetboy.org/resource/iphone-20111103073018-4.jpg?fileId=14955162" alt="" /></p>
<p><img class="iphone-image" src="http://gadgetboy.org/resource/iphone-20111103073018-5.jpg?fileId=14955163" alt="" /></p>
<p>&nbsp;</p>]]></content></entry><entry><title>PSE&amp;G: A Public Utility's Failure to Inform the Public</title><category term="Communication"/><category term="Management"/><category term="PR"/><category term="PR"/><category term="PSE&amp;G"/><category term="Public Utilities"/><category term="communication"/><category term="customer service"/><category term="social media"/><category term="technology"/><id>http://gadgetboy.org/archives/2011/11/1/pseg-a-public-utilitys-failure-to-inform-the-public.html</id><link rel="alternate" type="text/html" href="http://gadgetboy.org/archives/2011/11/1/pseg-a-public-utilitys-failure-to-inform-the-public.html"/><author><name>jf</name></author><published>2011-11-01T20:36:09Z</published><updated>2011-11-01T20:36:09Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>It's been nearly four days that I, and a number of my neighbors, have been without power due to this year's early snow storm.</p>
<p>While the storm was unexpected, the results were not: the snow was dense and heavy and the abundance of leaves still on the trees made it easy for snow to find purchase on weak limbs which fell onto power lines. Given that I live in a town called <em>Maplewood</em>, you can imagine how many old, large trees we have in town and that extent of the damage is probably higher than other towns.</p>
<p>Needless to say, it's got me a bit torqued out. Finally, this morning, I had to get on a plane to go to Blogworld LA, leaving my wife and son home without electricity and a wood stove that neither of them are comfortable operating.</p>
<p>But what's really got me pissed off is our utility company, <strong>PSE&amp;G</strong>.</p>
<p>Cleaning up after this storm is a <strong>big job</strong> - I get it. What I don't get is the company's inability to grasp the simple concept of <strong>keeping their customers informed.</strong></p>
<p>With the power out, most people are likely to use cell phones and mobile phones to get information about repairs. With this in mind, PSE&amp;G turned to Twitter to keep us updated.</p>
<p>"That's great!", you say. "What a forward thinking company!", you say.</p>
<p>Not so fast.</p>
<p>As we know, it's all about the execution and their approach to using social media leaves much to be desired.</p>
<p>Tweets look like this:</p>
<p><span class="full-image-block ssNonEditable"><span><img src="http://gadgetboy.org/storage/pseg_tweets.png?__SQUARESPACE_CACHEVERSION=1320180049597" alt="" /></span></span></p>
<p>Sure, the tweets provide a brief update on progress, but not much in the way of detail.</p>
<p>I'll give them the benefit of the doubt since they only have 140 characters to work with and they include a link for more information.</p>
<p>This is where communication really starts to break down.</p>
<p>First, they don't offer a version optimized for mobile devices. FAIL.</p>
<p>Then, the "Repair Updates" read like stream of continuous press releases. Here's an example:</p>
<blockquote>
<p><strong>PSE&amp;G fall storm update: Oct. 31, 2011 at 4:30 p.m.</strong></p>
<p>-- PSE&amp;G is making steady progress restoring service to the more than half million customers affected by Saturday&rsquo;s storm.&nbsp; At this time, about 150,000 are without power.</p>
<p>-- Crews continue to work around the clock to restore service.</p>
<p>-- The company expects to meet the state&rsquo;s goal of having at least 95 percent of its customers restored by Thursday.</p>
<p>-- Counties most affected include Bergen, Essex and Passaic due to the extensive amount of tree and power line damage.</p>
<p>-- PSE&amp;G has 237 crews and 212 tree crews working around the clock to restore power.&nbsp; In addition to its own crews, the utility has arranged for 60 crews from utilities in Alabama, Georgia and Mississippi, to assist in the restoration effort as well as 119 line contractor crews.</p>
<p>&hellip;</p>
<p>-- Electric crews work to restore power to the largest numbers of customers first, taking into account &ldquo;priority&rdquo; customers, such as hospitals, police stations, fire stations, water and sewer facilities, communications facilities (TV, radio, and telephone), and customers on life-sustaining medical equipment.&nbsp; At the same time, the utility restores power to homes and businesses, starting with the circuits serving the largest number of customers.</p>
<p>...</p>
</blockquote>
<p>What does this say?</p>
<ul>
<li>The storm was really bad.</li>
<li>The damage was really bad.</li>
<li>Look - even our Governor said it was worse than the last storm!</li>
<li>We have people working on it.</li>
<li>We perform repairs of critical infrastructure first.</li>
<li>We perform repairs based on the greatest number of affected people first.</li>
<li>We should have 95% of affected customers returned to normal service by Wednesday evening.</li>
</ul>
<p>Here's the problem: it doesn't tell me anything about <strong>my</strong> situation. It is a complete failure of communication and managing customer expectations in the information age.</p>
<p>Now, before you start with the name-calling and protestations of my self-centeredness, remember this:</p>
<p>We live in an era when I can track a FedEx package from a cell phone; an era when I can order a pizza with a text message.</p>
<p>Heck, I tracked the progress of my Mini Cooper being built from the moment it was ordered, started and ended production in the factory, was shipped overseas and delivered to my dealer for pickup!</p>
<p>Why can't PSE&amp;G tell me where I sit in the queue of repairs? It would help ease customer anxiety and help us make critical decisions.</p>
<p>Do I need to find shelter for my family? Should we stay with friends? Go to a hotel?</p>
<p>Should I plan to throw out all the food in my fridge today? Should I double-up on batteries?</p>
<p>Am I going to be one of the 95% that has power on Wednesday night? If I'm in the 5%, how much longer will I have to wait?</p>
<p>This should be simple. Why isn't it?</p>
<p>The repair schedule doesn't have to be exact, just give me a window. (You know, like the cable guy gives me: "Somewhere between 8 AM and 5 PM."</p>
<p>How about a web page (and corresponding mobile version) that looks like this:</p>
<p>--------</p>
<p><strong>Repair Schedule for Today</strong></p>
<p>(<em>Note: This schedule will likely change due to complications and will be updated throughout the day.</em>)</p>
<p><strong>Critical Infrastructure</strong></p>
<p>County, Town - Hospital</p>
<p>County, Town - Hospital</p>
<p>County, Town - Airport</p>
<p><strong>Residential</strong></p>
<p>County, Town - 25,000 people</p>
<p>County, Town - 20,000 people</p>
<p>County, Town - 18,000 people</p>
<p>County, Town - 15,000 people</p>
<p><strong>Repair Schedule for Tomorrow</strong></p>
<p>County, Town - 15,000 people</p>
<p>County, Town - 12,000 people</p>
<p>-------</p>
<p>You get the idea.</p>
<p>This way, I see what's in the queue for the day (or coming days) and I have a general idea what to expect and how to respond.</p>
<p>Instead, we get messages that seem to be mostly targeted to the municipalities and utility regulators. Sure, those folks enable the energy companies to do business in our state, <strong>but we're still the customers.</strong></p>
<p>Why not treat us that way?</p>
<p>Hello, PSE&amp;G?</p>]]></content></entry></feed>
