G-minus on the Plus
I joined Google+ this past week — the new social media mashup of something like Facebook and Twitter. Unlike Google’s earlier social media attempts, such as Buzz, Google+ is the real deal and gives Facebook something to ponder as it potentially slips into the MySpace zone.
But, aside from Google+’s features and functions which are compelling even as it is still in beta, I think the whole “plus” idea as a branding element is ill-conceived. It presents too many marketing challenges considering how social media memes are often integrated into the lives and conversations of users. Google needs a new social dialect with terminology that easily sets them apart.
The minuses on the plus:
- The plus sign is harder to type. Facebook is often abbreviated FB. G+ requires more finger contortions.
- The plus sign is an iconic cue for adding items (in fact, you’ll see it used on Google+ as a prefix, such as “+ Add more people” when you’re sharing a post). Peppering the interface with plus signs — which is your logo if you’re Google+ — may be confusing.
- Like something? Google+ gives you a “+1” button. People won’t say “I plus-one’d it on Google Plus”, will they? That seems clunky. If anything, they’ll say, “I ‘plussed’ it.” (Google+ may eventually have to simplify their version of the Like button with just a simple plus sign dropping the “1”). Using your logo element here would be akin to Facebook, instead of its thumbs-up Like icon, using an “F” button. Imagine if people F’d this or F’d that. That would be pretty F’d up. People like Like and I suspect +1 is going to be hard to adopt.
- Compared to the very colloquial “Facebook me”, “friend me”, “Google it”, “tweet”, etc., what’s the Google+ verb?
- The girl at the bar who asks, “Google me” — is she suggesting a background check via the Google search engine or is that a “friend” request on Google+? What about some other Google+ themes? “Circle me” conjures images of prey. However, “huddle with me” is awesome, especially if she’s cute.
- Because of this, we can expect people to muddle terms from other service brands (e.g., “I ‘Liked’ it on Google+” or perhaps even “I sent a tweet on Google+”). Unfortunately, this dilutes its brand identity.
On the plus side, I give Google+ an A for taking away Facebook market share. But the ‘+’ adds up to a big G-minus for marketing.
Simple FLAC to MP3 PowerShell Script
Usage: Start a PowerShell, drop into a directory containing flac music files, and then run this flac2mp3.ps1
script. It will find all the *.flac files in the current directory and encode them as *.mp3 files (adjust arguments as desired). Requires both the flac and lame command line tools.
File: flac2mp3.ps1
$flac = "c:\program files\flac\flac"
$lame = "c:\program files\lame\lame"
$tmp = "flac2mp3temp.wav"
foreach ($f in gci *.flac) {
$f.name -match "(^.+)\..+"
$fn = $matches[1]
& $flac -d "$f" -o $tmp
& $lame -b 320 -h -m s $tmp "$fn.mp3"
remove-item $tmp
}
Crazy Like Netflix
I’ve been fuming about a recent decision by Netflix to remove a convenient feature of its DVD “queue” management on streaming-enabled devices. Netflix, the company that sends DVDs to my mailbox and streams movies over the Internet, recently revealed plans to eliminate the ability to put a disc-based movie into the mail-order DVD queue. This appears as a button next to movie titles on Netflix streaming apps and devices. The company cites this as a move to make the interface simpler for customers. Was that feature really so complicated? I don’t buy it. There’s something more strategic going and I think I have it all figured out…
Buzzing About Samsung LED TV Noise
(TL;DR Tip: skip down to Updates to save yourself some time)
This past summer, after studying favorable reviews of the Samsung LED TV series 7000 and 8000, I decided to get one. I ordered the 8000 Series unit (UN55B8000) with 240Hz refresh rate. It arrived in perfect physical condition and worked great. I was thrilled with the picture quality.
But then, things went terribly wrong …
The Return of FTP Shortcuts in Windows
Starting with the release of Internet Explorer 7 in 2006, Microsoft removed the extremely handy “drag and drop” FTP feature that was seamlessly integrated in IE6.
You used to be able create shortcuts on the desktop that would directly open a remote folder via FTP with no intervention. With an open FTP folder window, remote file management was a breeze because it acted like a folder on your hard drive. This article shows you how to recover this helpful feature with one simple change.
Shut Your Facebook
A recent NY Times article reveals why some people are leaving Facebook. In May, I deactivated my Facebook account when the signal-to-noise ratio had clearly gotten out of whack. Ironically, I found myself back on Twitter which I had left for Facebook when the latter seemed to offer a bit more value. That was a different time. Now, Facebook has just gotten altogether too silly with quizzes and games and all the same high-school shenanigans your classmates would have outgrown over the last few decades. Alas, I’m back on Twitter.
Update: OK, I’m back again on Facebook. They’ve added enough filters now so you can hide all the ridonculous stuff. Rather than shutting my Facebook, now I can shut your Facebook, ftw.
XHTML and Printers
XHTML is really nice. Going forward, I’m doing all my new stuff with it and updating all my old stuff as time permits.
After getting fed up with network printing problems with HP printers, I wrote down the solution so I wouldn’t forget.