Papaver Rhoeas

Focal Length: 50mm
/ 5.0
ISO: 100
Location: 2445 Santa Ynez Street, Los Olivos, CA 93441, USA

After years of procrastination and inevitable buyer's remorse, I bought a DSLR. I was really set on having a full-frame sensor, HD video and high ISO ranges (for low light shooting) so I went with the Canon 6D. One of my favorite features is the built-in GPS -- a first for Canon. When I looked at the EXIF data, I noticed the geo coordinates tagged for each photo. Since I want to post the photos along with this data on my blog at some point, I hacked up a small Jekyll plugin. The plugin basically extracts the EXIF data from a photo using the exifr gem into Liquid markup and converts the GPS coordinates into a physical address using the Google Maps API.
require 'exifr'
require 'open-uri'
require 'json'
module Jekyll
class ExifTag < Liquid::Tag
def initialize(tag_name, file, token)
super
@image_file = File.expand_path "../" + file.strip , File.dirname(__FILE__)
end
def render(context)
exif = EXIFR::JPEG::new(@image_file)
if !exif.gps.nil?
coords = exif.gps.latitude.to_s + "," + exif.gps.longitude.to_s
url = "http://maps.google.com/maps/api/geocode/json?latlng=#{coords}&sensor=false"
photo_gps = JSON.parse(open(url).read)['results'][0]['formatted_address']
else
photo_gps = false
end
end
end
end
Liquid::Template.register_tag('exif', Jekyll::ExifTag)
I've extended the plugin a bit further to output the HTML, pre-wrapped in a nifty div that matches the page layout. The end result looks something like this:
A few months ago, I stumbled upon a video of Clayton Christensen, best known for his study of innovation in commercial enterprises, on hiring a milkshake. Yes, hiring a milkshake. Although the video setting is somewhat bizarre, the concept is simple: design products around "jobs" your customers are "hiring" your product to do.
In a more recent interview with Wired, Christensen wrestles with the notion of investing in efficiency innovations over empowering innovations. This quote really stuck with me:
"We’ve encouraged managers to measure profitability based on a return on net assets, or return on capital employed. That encourages companies to liberate their capital, so they invest in efficiency innovations, which means they can make more money with fewer resources. But what the economy ultimately needs are empowering innovations—like the Model T, the transistor radio. Empowering innovations require long-term investments, which tie up capital for years and years. So companies are using capital to create more capital, and consequently the world is awash in capital but the innovations we need to advance aren’t there."
Despite the fact that it’s several times more expensive to acquire a new customer than it is to retain an existing one, very few thriving businesses do the latter effectively. More often than not, growing companies tend to spend more effort on new user acquisition that they often neglect their existing customer base. Look at any marketing funnel diagrams created in the last 15 years and you'll find most stop short after the sale is made. While the greater adoption of lifecycle marketing seems to be pushing things in the right direction, few companies seem to be focusing on keeping customers satisfied for the long haul.
Earlier this week, Groupon reported quarterly earnings that missed the mark -- exposing a net loss of $81 million. Ouch. The problems facing Groupon aren’t new nor are they specific to the discounting model. The daily deal space is inherently flawed; few users are returning for a full-price purchase and fewer are spending beyond the deal value.
Though, these types of retention problems are affecting startups too. I have a habit of signing up for startup-of-the-week type services that I'm curious to try out. I can only think of a handful that have reached out to me to follow up on my experience. For the startups operating a freemium model, you can forget the potential upsell. Offer a new user discount, extend my trial, enroll me in a referral program -- just do something to keep me using your product or service. Loyalty is tenuous, and that has to be earned and nurtured. Dropbox figured this out years ago and they've been dominating the saturated cloud storage space ever since.
Fortunately, a few companies like Userfox, Customer.io and Preact are working to alleviate attrition problems. By providing event-based messages that are triggered by user actions, or lack thereof, it's possible to target customers and not only predict, but influence their behavior. Businesses that are able to do this successfully will have a significant advantage over their user acquisition-hungry competitors. I'm certain Groupon ex-CEO Andrew Mason would agree; in his resignation letter, he extolls the following:
"If there's one piece of wisdom that this simple pilgrim would like to impart upon you: have the courage to start with the customer. My biggest regrets are the moments that I let a lack of data override my intuition on what's best for our customers."
At a company offsite last year, I gave a presentation to our customer support leadership team on service excellence. One of the phrases that stuck with everyone was 'being strategically bad' as it pertained to our department. I had just finished reading Uncommon Service, by Frances Frei and Anne Morriss. They argue that striving for all-around excellence leads directly to mediocrity.
Achieving service excellence requires underperforming on the things your customers value least, so you can over-deliver on the dimensions they value most. Decide what trade-offs you will make – where you will do things badly, even very badly, in the service of great – based on deep insight into who your customers are and what they need operationally.
Then be unapologetic about it.
This concept isn't new by any means. Michael Porter wrote about this in Competitive Advantage (1985):
"Being "all things to all people" is a recipe for strategic mediocrity and below-average performance, because it often means that a firm has no competitive advantage at all."
After the presentation, we discussed what our customers valued most and how we could improve in those areas, willfully neglecting some service aspects that customers didn't care for. As Frances Frei explains in the video below, the primary obstacle is not the ambition to be great, but the stomach to be bad.