Skip to main content

Why good customer service matters?

I am not an Apple fan, but I do like their computers, and recommend them to colleagues and friends for a variety of reasons. They are well designed, and in addition to an excellent user interface, they run a flavor of Unix--which makes the life of computer programmers a lot easier. But most importantly, Apple's customer support is impeccable, that despite all the hardware issues I experienced in the past, I still recommend Apple computers. Let me explain why.

A year and a half ago, I bought a Mac Book Pro for work. At the time it was the first generation unibody laptop, that had an i7 processor, lots of memory, and lots of disk space. Alas, like first generation models everywhere, it also had a lot of hardware problems. The most annoying of which was the screen randomly turning dark, with the hard drive spinning out of control. The only way to get out of this state was by forcing a reboot by holding down the power button, and losing everything I have been working on.

At first I thought it was a software problem, but after searching the Internet, I found that a lot of people are experiencing similar issues with this generation macbook pro. On Apple's discussion boards there were threads 50 pages long of people having the same issues, with stories about faulty logic boards, bad graphics chips, and bad memory chips. I was furious that I got a lemon for an expensive laptop, and went raging to the apple site to file a complaint.

Unlike other sites, the support links were front and center. I selected my computer model, entered the serial number, and wrote in the problem description. The next screen asked for my contact information--phone number and email, but the third screen diffused my anger. It asked if Apple can call me now, and when I clicked yes, I immediately got a callback, and talked to a tech support engineer within 30 seconds. The tech was very helpful, he diagnosed the problem, and scheduled a same day appointment for me to the nearest Apple store. When I went there, the service was quick, and I got replacement parts the next day. Today nothing on my Macbook pro is original, apart from the unibody, keyboard, and LCD screen.

The whole experience was so delightful, that despite starting with a lemon laptop, I still recommend Apple products. And at my current company, I retell that story, to make sure we delight our customers with exceptional customer support.

Comments

  1. I had an equally frustrating but then redeeming experience with Apple about a year ago, Abe. What a difference great customer service makes! With my previous Dell laptops, it would cost $79 to get someone on the phone that could talk specific problems and potential solutions!
    Thanks for the musings and insights ...

    ReplyDelete
  2. I’m sure your readers were delighted upon reading this story, my friend. It’s nice to know that Apple was able to help you with your laptop problems. The condition of your laptop seems serious that it needed to be fixed immediately. I’m sure that the replacement parts and great service that were given to you were up and beyond your standards.

    Noreen Clay

    ReplyDelete

Post a Comment

Popular posts from this blog

Kindle Paperwhite

I have always been allergic to buying specialized electronic devices that do only one thing, such as the Kindle, the iPod, and fitness trackers. Why buy these when technology evolves so fast that a multi-purpose device such as the phone or a smart watch can eventually do the same thing, but with the convenience of updates that fix bugs and add functionality? So, I was shocked when this weekend I made an impulse buy and got the newest Kindle Paperwhite—a special purpose device for reading eBooks. I was walking past the Amazon store in the mall and saw that the newest Kindle Paperwhites were marked down by $40 for the holidays. The device looked good in the display, so I went in to look at it closely. The Paperwhite is small and light, with a 6” screen that is backlit and waterproof.   The text was crisp and readable, and in the ambient light, it felt like I am reading a printed book. I was sold and bought it on the spot. At home I have struggled to put it down. The bo...

A paper a day keeps the doctor away: NoDB

In most database systems, the user defines the shape of the data that is stored and queried using concepts such as entities and relations. The database system takes care of translating that shape into physical storage, and managing its lifecycle. Most of the systems store data in the form of tuples, either in row format, or broken down into columns and stored in columnar format. The system also stores metadata associated with the data, that helps with speedy retrieval and processing. Defining the shape of the data a priori, and transforming it from the raw or ingestion format to the storage format is a cost that database systems incur to make queries faster. What if we can have fast queries without incurring that initial cost? In the paper " NoDB: Efficient Query Execution on Raw Data Files ", the authors examine that question, and advocate a system (NoDB) that answers it. The authors start with the motivation for such a system. With the recent explosion of data...

A paper a day keeps the doctor away: MillWheel: Fault-Tolerant Stream Processing at Internet Scale

The recent data explosion, and the increase in appetite for fast results spurred a lot of interest in low-latency data processing systems. One such system is MillWheel, presented in the paper " MillWheel: Fault-Tolerant Stream Processing at Internet Scale ", which is widely used at Google. In MillWheel, the users specify a directed computation graph that describe what they would like to do, and write application code that runs on each individual node in the graph. The system takes care of managing the flow of data within the graph, persisting the state of the computation, and handling any failures that occur, relieving the users from that burden. MillWheel exposes an API for record processing, that handles each record in an idempotent fashion, with an exactly once delivery semantics. The system checkpoints progress with a fine granularity, removing the need to buffer data between external senders. The authors describe the system using the Zeitgeist produ...