Archive for the ‘Uncategorized’ Category
Monthly Brent Crude Oil Prices
October 26, 2009A quick update
April 11, 2009I’ve been swamped lately, and outside of the bare essentials (family, work, exercise, sleep), I’ve let my life fall to shambles.
I’m going to try to get back on top of things starting this weekend. So wanted to update the blog briefly.
- A completely rebuilt Swivel Business launched last week. I’m proud of the work the team has put into it. It has not been easy, and there is still a long way to go, but I believe this product is a solid stake in the ground.
- I’ve been training for a triathlon. I’m not sure which one, but I have been swimming, biking and running 6 days a week.
- I’m running The Relay in early May.
- I was recently at P-Camp ‘09, and unconference for Product Managers.
- Visnu, Brent, Huned and I participated in Rails Rumble in October. We built Gentrifire, which came in 29th, but got good press.
- I’ve consolidated the best blog posts from Attemptry into this blog. It was too hard to maintain two blogs.
As part of the blog consolidation, I reviewed a number of old posts. It’s amazing how much reading and thinking I was doing last year. Especially in relation to how little I am doing right now. I just haven’t seemed to have had time.
Hopefully, I can get my life to balance a bit better and begin to write more interesting posts again.
The Freewheel Bike Shop
March 16, 2009The Freewheel Bike Shop in Hayes Valley was recommended to me as a place to get my bike fixed. Ask for Travis. Also recommended, Roaring Mouse.
1522 Clay
March 16, 2009Saw 1522 Clay St today. This is the view from the roof. Owner gets the rights to add a private deck.
Back of the Napkin
September 25, 2008This week, I was able to see Dan Roam speak at Adaptive Path about some of the ideas behind his book The Back of the Napkin.
Here are my notes from the event.
Executive Summary:
Our brains think visually, but abstractly. Quirky hand-drawn sketches can communicate and solve problems better than other methods.
Details:
- We can solve problems with picures.
- Our mind works from an image perspective. 75% of our neurons process vision.
- There are three unwritten rules of visual problem solving:
- Whoever best describes the problem is the one most likely to solve it. (Corollary: whoever draws the best picture gets the funding).
- The more human the picture, the more human the response. (Corollary: when we look at a hand-drawn picture, we’re seeing things the way we think them).
- Everything is a layer cake. Different people enjoy different layers of the cake. They focus on their part of the task. Hand-drawn sketches can communicate the idea of the full cake to each audience focused on a different layer.
- Our brains process things in 6 ways. Every problem can be communicated by breaking it down into these 6 components.
- Who / what – who or what are we looking at? (drawn as a smiley face or box)
- Where – where is that object? (drawn as a map)
- How much – how many of the object are there? (drawn as graph)
- When – what is changing over time, in what way? (drawn as a series of arrows)
- How – what is the cause of something? (drawn as a flowchart)
- Why – what is the effect of something? (drawn as a multi-variable chart)
- “The barrier to change is not too little caring, it’s too much complexity. To turn caring into action, we need to see a problem, see a solution, and see the impact. But complexity blocks all three steps.” – Bill Gates
- Dan Roam (who gave the talk) was invited by the Microsoft CFO to prototype the next generation of financial analytics software.
- Microsoft wants to end the analysis-paralysis cycle.
- They do a quarterly business review where the CFO sits with each of the division presidents (who report to the CFO).
- Each division president presents a different set of numbers, and comes to a different conclusion.
- The CFO goes back to the division presidents and says, “Why are you looking at different things and coming to different conclusions? Give me a report is consistent and coherent.”
- The presidents sit down together and think: “What does the CFO want to see? Let’s show him everything.”
- There is too much data to show the CFO everything.
- The conclusion they came to (but they didn’t have much time to think about).
- Let’s get the data and people in one place.
- And create a customizable portal.
- Where people can choose what they want to see.
- The hand-drawn prototype that they built looked exactly like Swivel.
- A report/dashboard in the primary part of the screen.
- Links between data in the top of the side column.
- Links between people in the bottom of the side column.
- They presented the first sketch after three days as a hand-drawn picture and it elicited tremendous response (much better feedback than the illustrator prototypes I had done in the past).
- Microsoft wants to end the analysis-paralysis cycle.
- He recommended the book Authenticity
to explain why the hand-drawn sketches worked so well.
Determining Identical Files in Python, Bash
August 18, 2008I’ve been consolidating files from multiple computers lately. Here are a couple quick scripts that I found useful.
1. Create an MD5 hash of every file in a directory.
# md5.py
import os, os.path, sys
from subprocess import Popen, PIPE
def walk(start_dir = '/'):
directories = [start_dir]
while directories:
directory = directories.pop()
for name in os.listdir(directory):
fullpath = os.path.join(directory,name)
if os.path.isfile(fullpath):
md5 = Popen(["md5", fullpath], stdout=PIPE).communicate()[0].strip().split(' = ')[-1]
print md5 + ' ' + fullpath
elif os.path.isdir(fullpath):
directories.append(fullpath)
if __name__ == "__main__":
walk(sys.argv[1])
2. Find duplicate MD5 hashes in multiple files.
> python md5.py /path/to/dir1 > dir1_md5_files.txt > python md5.py /path/to/dir2 > dir2_md5_files.txt # get just the md5 hashes > cut -d' ' -f1 dir1_md5_files.txt > dir1_md5s.txt > cut -d' ' -f1 dir2_md5_files.txt > dir2_md5s.txt # find the duplicates > cat dir1_md5s.txt dir2_md5s.txt | sort | uniq -d > md5_dupes.txt
3. Do stuff to the files which are duplicates.
Managing disruptive technological change
August 17, 2008Chapter 10 of The Innovator’s Dilemma provides a case study of how to take advantage of disruptive change. I thought the chapter was particularly valuable, so I’m summarizing it here.
The case study in the chapter deals with the electric car, and how to structure a product such that it could take advantage of the disruptive technology and eventually overtake the mainstream market.
Step 1: Determine if the technology is disruptive
- Graph the trajectory of the performance improvement demanded by the market with compared to the trajectory of the performance improvement of the technology. In the case of the electric car, the market demands only mild performance improvement in speed and driving ranges. The technological performance improvement in battery technology is happening at a much greater pace.
- Important: ”To measure market needs, I would watch carefully what customers do, not simply listen to what they say.”
- Make sure the technology is not a sustaining technology. That is, it does not and cannot currently meet the needs of the mainstream market. In the case of the electric car, the cruising range and charging time make it fundamentally unmarketable to the mainstream.
- Do not try to market it to the existing, mainstream market. You will surely fail.
- Do not leave the technology in the laboratory until the technology is ready for the existing market. History has found enormous value in learning from having the technology in the market and getting a disruptive technology to market first..
- It is often the case, the same attributes that make technologies a poor fit for mainstream markets are seen as positives in new markets. In the electric car example, for instance, can a limited range be seen as a positive in a new market?
- Important: ”No one can learn from market research what the early market(s) for electric vehicles will be.”
- Plan to learn, rather than to succeed. ”Plan to be wrong and to learn what is right as fast as possible.” Do not blow your nest egg on an “all-or-nothing first-time bet.”
- “Without a market, there is no obvious or reliable source of customer input; without a product that addresses customers’ needs, there can be no market.” So prepare to experiment.
- Important: ”the basis of competition will change over a product’s life cycle.” When one feature of the product is “good enough,” people will begin to care about a different feature. For example, when acceleration of the electric car is “good enough,” people will begin to care about range. Only when range is good enough will people care about other attributes, like fuel economy.
- Focus on attributes like simplicity, reliability, and convenience. Focus on the low-margin, low end of the market, rather than the power user.
- Since the market is unknown, and can change, “design a product in which feature, function, and styling changes can be made quickly and at low cost.”
- Hit a low price point. Not necessarily price per feature, but low unit price. For example, don’t worry about a lower price per mile of range than the current automobile. Make your product a low-cost investment for potential people in the market to try out.
- Do not count on technological breakthroughs, or even feel the need to create your own technology. Pull together components of proven technologies into a new product and market. For example, in the electric car, count on laptop batteries, rather than creating a new battery technology.
- Do not count on an existing distribution channel (especially if it involves salespeople) to sell the product. The disruptive technology will be lower margin, hence lower commission and will get less focus than it deserves from existing channels. For example, do not try to sell your electric car through an existing auto franchise.
- Create an organization small enough to be excited about a small market. You’re not going to get to the big wins for a long-time, and the organization should be small enough to be happy about the small ones. Selling $10 million dollars worth of product is nothing to an automobile manufacture, but it’s a huge amount of revenue for a 100-person company.
Note that the hybrid car concept has changed the electric car from a disruptive technology to a sustaining one.
However, were that not the case, then I would say that a laptop battery powered bike assisting electric motor for use in the city would be an ideal way to break into the electric car market, I’ll explore the reasons why in another post.
Marketing technology products
July 31, 2008I recently read Crossing the Chasm, and am currently reading The Innovator’s Dilemma. The conclusion that both books drive to is that marketing is the most important thing in building a technology company.
Since I’m currently in the middle of The Innovator’s Dilemma, I will focus on it for now.
The basic premise of The Innovator’s Dilemma is that there are two types of innovation, disruptive innovation and sustaining innovation.
The primary difference between the two types of innovations is that sustaining innovations are the ones that the highest value, most profitable customers want. These innovations also address the largest market.
Disruptive innovations, on the other hand, are explicitly not wanted by a firm’s existing customers. They often go after a lower margin end of the market (such as steel minimills, which started out by making low-margin rebar), or an entirely new market, such as 1.8 inch harddrives, that got their start in pacemakers. In either case, the market starts off so small and unprofitable that the large players are not interested in it — and, more importantly, can’t be interested in it, because their customers actively don’t want them to be involved in it.
The rub comes because technology advances faster than customers’ needs, so the low margin disruptive technology is able to rapidly move up market, gathering a larger and higher margin share of the business as it grows. Incumbents also move up market, garnering higher margins, but continuing to cede downmarket positions. Eventually, the disruptive technology has advanced far enough to meet the needs of the mainstream, and the incumbents only own a high end niche of the market.
The conclusion then, for those of us wanting to take advantage of disruptive technology, is to focus at first on the lower margin, small, new or untapped market, and then growv into the larger space.
The rewards for doing so are large, in the disk drive industry: “firms that sought growth by entering small, emerging markets logged 20 times the revenue of firms pursuing growth in larger markets.”
Baldwin beach
July 31, 2008Relaxing at Baldwin beach. What a life.
I had a call with a person who was interested in taking Stats 315 today. He has worked in OLAP for 20 years, before it was even called OLAP.
He reaffirmed my belief about the importance of Ad Hoc analysis. OLAP is too expensive (initially) and inflexible to be a viable solution for understanding data. It’s amazing that the industry doesn’t recognize this.
Talking to him really rekindled my passion for data analysis. Product Management is exciting, and I’m learning a lot – but I’m really happy doing data analysis, or rather, I would be if the tools were better.
As Swivel veers further and further from data analysis, and my list of side projects gets longer, I wonder if I’ll ever return to the world of analytics. If not, I wonder if that is a good thing.
I think I’m going to post the parts of my analytic software business plan on the attemptry blog, along with a critique of each part. At least that will get me engaged slightly in analytics again.
iPhone as a disruptive technology
July 26, 2008I’ve been reading The Innovator’s Dilemma recently. The iPhone seems the perfect example of a disruptive technology as discussed in the book.
For example, I was using Drupal for this blog. However, I recently switched to WordPress. There were a number of reasons for the switch, but the primary driver was that WordPress now has an iPhone application.
Even before the iPhone application store came out, I was writing over half of my blog posts form the iPhone. There is just nothing like the convenience of being able to post whenever you have a spare instant: on the bus, at the beach, whenever a thought strikes you. Since WordPress embraces that paradigm, I made the switch.
I wonder how long it will be before the iPhone replaces the laptop, like the laptop embraced the desktop before it.

