Archive for September, 2013

Pre-Week 11: Be prepared for a higher rejection rate

I’m trying to be more clear about my offer. This will probably filter out some people that now want to talk to me because they think I’m a student. In order to fine-tune my proposition I will be very conscious about their reasons for rejection.

Making a rejection list

I actually started working on the list last week. I’m writing down every rejection I come across, and am adding a relevant follow-up question to better understand their rejection reasons and of course to gently try and help them understand what I have to offer.
This is my list so far, and my precomposed response:
  • Not interested, thanks.
    Why not?
  • I’m too busy
    Do you know what causes that?
    Or: What is taking most of your time?
  • We know our bottlenecks ourselves
    Perfect. What is your worst?
  • I can’t throw that information out in the open
    Would you like help with it?
  • No.
    Ok, bye.
  • I already have help from someone else.
    Do they advise, or make a solution?
  • Why are you doing all this?
    So many solutions are made by people who think they themselves know what the problem is or what is needed. I don’t want to work that way, because I believe only by listening carefully you can build solutions that actually help people.
  • What is your experience?
    For years I have worked for large corporations such as ABN AMRO, Vodafone and Heineken, as an expert in user experience. I’m looking for the best possible way to help people solve problems in a way that’s simple, easy and convenient.
    Helping entrepreneurs means helping them make more profit by running a smoother business and take away bottlenecks.

Mentioning pains

In one of my first calls this week I was still a bit sloppy and heard a rejection coming up. I was way too abstract, talking about ‘free advice etc’. I then quickly was able to mention an earlier found pain and got the person to start talking to me after all. It looks like mentioning pains relevant to them now (or before) works to get the conversation started in almost every case.
So I have this way to get started, but my messy intro sure doesn’t help the person to open up and it doesn’t really boost my confidence.

The goal of doing a lot of these calls is to find the ultimate proposition of me as a person.

Every call I make is helping me to fine-tune my message so they will understand faster what I have to offer them and open up to me.

The jump for sole proprietors 

I’m starting to see patterns when talking to successful sole proprietors. A lot of them are maxed out in hours. They occasionally hire other sole proprietors for extra capacity. This way they are super busy, and pretty successful. And stuck.
What’s the problem? Most are afraid of hiring employees.  A large project now, doesn’t mean another large project later this year. Especially in the middle of crisis. So how can they be sure to be able to pay them? Add to that the troubling stories people tell each other about employees with bad behaviour. It sure doesn’t sound attractive.
The solution for most is the acquisition of a huge project that will keep them busy for at least a year, or a big contract that will provide them with projects for that amount of time.
How to get these projects? By doing acquisition for the right clients. But most sole proprietors don’t have time for acquisition. And the successful ones don’t need to. They receive more and more referrals after every successful project they deliver. That’s acquisition on autopilot. But it takes more than a few extra projects to generate work for one instead of two people.
The clever ones free up their time by hiring someone (part-time) for administration. Another way would be to work smarter and more efficient. This is a huge opportunity to understand about their bottlenecks and help them solve these problems.

Time spent is money spent

A problem I see when talking to sole proprietors is that a lot don’t value their free time. They do regret their overtime on fixed price budgets, but the extra time they
If for example they have administrative work for 1 day a week, and are booked for the other 4 days, they don’t see that as a problem. The 1 day isn’t blocking their ability to bill more hours. It’s necessary work ‘part of the job’.
Does that mean I should disqualify a prospect if I find out he doesn’t value all of his hours spent in ‘free time’ as money  spent? Or does that mean I should disqualify all sole proprietors . Once again, it should be possible to educate them. The question is, should I be doing that, or is it, for now, energy I could better spend elsewhere?

Pre-Week 10: Articulate a clear offer

Find a profit oriented market.

I’m not sure yet, what is a profit oriented market? Do especially smaller businesses tend to be less profit oriented? Are they more service oriented?
Can you classify a whole market as profit oriented? Or is it a difference in the various business in the market?

When to change market?

I can jump to another market whenever I want. I’m not yet half way down my list of 100 companies with business owner names and phone numbers. And there are over 300 other companies in The Netherlands alone. I did not disqualify or invalidate the market, and I don’t think it’s right to blast an e-mail to all of them and disqualify the non-responders.
For now I’m sticking to the security installation market and going for quality calls instead of quantity, until I see obvious signs to move on.

Articulate a clear offer

I’m going to be more open on what I do. It needs to be more clear for people to understand what I’m doing. Easier for them to take a decision on.
I tend to focus on keeping my prospects happy. Not dropping silences because I’m afraid they will ‘wake up’ and ‘realise’ I am wasting their time. Not explaining exactly what I’m doing and how my From now on, I’m focussing on learning why they do or don’t want my offer.

Broadcast who you are.

It’s all about being more honest. Make it easy for others and yourself to connect with the right people. Sales is not about persuading people to buy your message. It starts by selecting the right people to sell to.

Pre-Week 9: Feeling totally overwhelmed

This week I felt totally overwhelmed and took a break from calling. It might be a lack of sleep, or busy work for the freelance project I’m doing. Whatever it is, I really feel the need to re-energize. Tomorrow (friday) I don’t have time to work on Idea Extraction. So that’s it for this week…

When feeling down, I get new motivation watching inspiring interviews. There are so many of them, so it’s best to select one close to your current biggest challenge. For me right now, this the Foundation interview with Cameron Herold: The Pain Every Entrepreneur Feels and What To Do About it.

It’s good to learn to not always be so harsh on yourself when things aren’t working they way you want to. But it still isn’t easy.

Prototyping hover states in Photoshop with Framer JS

Wow, just found out about Framer. An awesome prototype companion for Photoshop built by Koen Bok. It allows you to create quality interactive mockups in your browser.

framerlogo

Of course, using Layer Comps in Photoshop is a great way to quickly switch between different states of layers and test interaction like moving panels and button hover states. But you can’t “feel” the interaction. With Framer, you can.

Framer reads your Photoshop design, does some slicing and naming magic, and throws it in your browser. Ready for you to add interaction. Each Layer Group you created can be manipulated separately.

Downside is, you need some Javascript knowledge. So it would be nice to have some global scripts that allow you to test common interactions like hover states without the need to code.

With a generic naming scheme for layers you’d only need 1 generic hover script. Because I couldn’t find a script, I decided to give it a try myself. My naming scheme:

ps layer button hover

Normal layer name: Button
Hover state Layer: Button hover

So for hovers I duplicate a Layer Group, and add ‘ hover’ at the end of its name. A Framer script will automatically hide the hover layers and add the mouseover functionality.

Stuff I’d like to be added:

  • cursor change on mouseover
  • active states on mousedown, similar to hover states on mouseover
  • proper retina viewport scale (workaround: zoom out 4x in Safari with cmd +)

Would love to hear about existing scripts, or ways to improve it.

Read more about Framer on Koen’s announcement on Medium
Download FramerJS and check it out.

Download my app.js hover script and give it a try. It works! Just don’t mind the ugly scripting.

Pre-Week 8: Conversations out of goodwill

Once again it’s becoming more evident my introduction is messy and doesn’t state clearly the benefits a conversation with me can offer people. Usually though, I’m able to hustle my way through by staying as close as possible to the truth of the situation. I’m telling people this stuff I’m doing sounds a bit weird (because that’s how I still feel about it), and after dropping a few problems heard earlier I manage to start a conversation or make an appointment. And that’s what I kept doing because until now it was most successful.

A lot of times I have a few bumps in the introduction, but I usually manage to get the conversation going. Today I had someone not only tell me he didn’t understand my proposition, he told me to hang up, put it down on paper and then get back to him. Wonderful.

Why would he give me this feedback? Why wouldn’t he just simply hang up because he didn’t see the benefit of it, or because it was wasting his time? Maybe it was because these people did get a slight hint of the value in it for him, even though I wasn’t able to express it clearly. Whatever it is, it wasn’t the first time I was told my introduction is messy. So I definitely need to work on that.

Help needed or offering help?
It looks like most conversations I have start off because the person likes to talk about his business or simply wants to offer me some help. I’m telling people I’m studying their market and want to figure out how these businesses can be improved. Maybe it’s a noble cause to them, even if they don’t see the direct benefit to themselves. It’s funny to see there are still a lot of people that do want to talk with me out of good will.

The ones that do want to see a direct benefit are probably the ones most interesting to work for, so I need to find a direct way to explain them my offer so I don’t have to throw up ‘study’ smoke screens.

Once again it’s becoming more evident my introduction is messy and doesn’t state clearly the benefits a conversation with me can offer people. Usually though, I’m able to hustle my way through by staying as close as possible to the truth of the situation. I’m telling people this stuff I’m doing sounds a bit weird (because that’s how I still feel about it), and after dropping a few problems heard earlier I manage to start a conversation or make an appointment. And that’s what I kept doing because until now it was most successful.

A lot of times I have a few bumps in the introduction, but I usually manage to get the conversation going. Today I had someone not only tell me he didn’t understand my proposition, he told me to hang up, put it down on paper and then get back to him. Wonderful.

Why would he give me this feedback? Why wouldn’t he just simply hang up because he didn’t see the benefit of it, or because it was wasting his time? Maybe it was because these people did get a slight hint of the value in it for him, even though I wasn’t able to express it clearly. Whatever it is, it wasn’t the first time I was told my introduction is messy. So I definitely need to work on that.

Help needed or offering help?

It looks like most conversations I have start off because the person likes to talk about his business or simply wants to offer me some help. I’m telling people I’m studying their market and want to figure out how these businesses can be improved. Maybe it’s a noble cause to them, even if they don’t see the direct benefit to themselves. It’s funny to see there are still a lot of people that do want to talk with me out of goodwill.

The ones that do want to see a direct benefit are probably the ones most interesting to work for, so I need to find a direct way to explain them my offer so I don’t have to throw up ‘study’ smoke screens.