Category: Marketing

  • Your Funnel is a Finite State Machine

    Editor’s note: This is a cross post by Joseph Fung (LinkedIn, @josephfung), the CEO of TribeHR (@tribehr). Joseph has recently raised $1MM from David Skok (@bostonVC) at Matrix Partners in Boston, MA. He is building and automating the SaaS metrics for TribeHR. He has a unique engineering view of sales and marketing that allows him to be nimble and correct his efforts based on real customer behaviour data. This post was orignially published on September 23, 2011

    The Enigma Machine CC-BY-SA-20 Some rights reserved by Tim Gage
    AttributionShare Alike Some rights reserved by Tim Gage

    I’m of the opinion that the startup journey is really just the process of repeated work between “a-ha” moments of key insights. The faster we get to new insights, the better we are at ongoing improvement. I’m writing this post to describe an a-ha moment that happened early on (although earlier would have been better) in the lifecycle of TribeHR.


    Figure 1: Exciting! An Arbitrary State Machine

    To engineers turned entrepreneurs: your customer acquisition funnel is a finite state machine.

    This statement implies three specific premises:

    • your funnel can and should be modeled as a Finite State Machine (FSM)
    • your funnel FSM should map to explicit in-app states
    • investors care about the funnel state as much as (if not more) than anything else in your app

    Your Funnel Should be Modeled

    This point is best described in terms of my experiences with TribeHR:

    When designing features within TribeHR, it was intuitive to think about our software in terms of moving objects through a series of states: a review was “in-progress”, “completed”, then “filed”; a vacation request was “pending review”, then “approved” or “rejected”. Similarly, the users of the system would also be moved through states – “employee”, “manager” or “admin” for example. When I thought about the marketing process, however, I treated “sales and marketing” as the entry point into the state machine – I saw it as the entry arrow rather than a separate series of states.

    Because we didn’t start by planning our marketing and sales states, it was easy to rely on 3rd party services for our definitions. Unfortunately, implementing multiple services led to confusion. Some customers subscribed using PayPal, others paid through our payment gateway, and others found us via third-party app stores – each system had a different way of defining the state of a customer, so simple numbers like “how many customers are active” was a difficult thing to determine. This was compounded by our shift from a freemium model to a free-trial model earlier this year.

    If we had clearly defined and tracked our states from the start (which we have since done) it would have been easier to map third-party terminology to our own, making analyses and improvements much easier. You can see the results of subsequent mapping in the diagram below:


    Figure 2: TribeHR Funnel as a Finite State Machine

    As you can see, our entry state is “trialing”, thus the primary objective of our website is to convert visitors and leads into trialing users (our lead nurturing program is a state-machine still being designed). Once someone is trialling, they have two potential transitions: they can become either a paid “active” customer or an “abandoned” trial. Once someone becomes an active customer (and ideally remain one for a long time) they will exit the state only as a “cancelled” or “suspended” account. By clearly defining our states in the above format, we are now much better equipped to modify our messaging and features to optimize the experience. Before identifying the above state machine, we wasted a lot of time manually analyzing and identifying states, often on a case-by-case basis.

    The “should” part of my assertion follows from my conversations with investors and advisors. I’d frequently be asked for information such as our conversion rate from trials to paid customers or our re-activation rate of suspended accounts – without a clear FSM, we’d have some accounts that occupied more than one state, which made answering these questions impossible. By defining our funnel/FSM we were then able to answer such questions with ease, which made a world of difference to our working relationship with investors and advisors.

    If you haven’t defined your Funnel/FSM yet – do so. If you’re early-on in your startups, ot might not be perfect, but it will save you significant stress, time, and effort as you continue to work with mentors and investors. If it helps, put the model up on the wall at your office – it’ll keep it top of mind with your team.

    Mapping to Explicit In-App States

    Once you finalize your model, it’s critically important that you then track these states explicitly within you app. For example, if you offer a 15-day trial, during which users have to cancel or continue, it might be tempting to calculate “trialing” customers as those who are subscribed and whose date subscribed value is within the last 15 days. While this calculation might yield a correct result, formulating queries becomes significantly more complex when you can’t simply evaluate whether a field “state” is set to “trialing”.

    These queries are important because as your company and customer base grow, you’ll need to generate reports and dashboards that highlight this information in near real-time. You’ll need to answer questions like what percentage of users that sign up for a trial convert to a paid customer, and how is it changing over time? As soon as you can answer that, you’ll then be asked to segment by lead source, user characteristic, or time window. For example how does that conversion rate over time vary according to lead source or engagement level?

    To put it into an example, below are two examples of queries that would generate a summary of states of a single cohort from January 2011, assuming a 15-day trialing period. The first uses explicitly defined states, and the second assumes you calculate a real-time trial period, and simply delete records when they terminate their account.

    Explicitly defined:

    SELECT COUNT(state) AS total_users, state
      FROM users
        WHERE date_registered >= "2011-01-01" AND date_registered < "2011-02-01"
      GROUP BY state;

    Calculated on the fly:

    SELECT SELECT COUNT(state) AS total_users, IF(date_registered >
        DATE_SUB("2011-02-01" , INTERVAL 15 DAY); "TRIAL"; "ACTIVE") AS state
      FROM users
        WHERE date_registered >= "2011-01-01" AND date_registered < "2011-02-01"
      GROUP BY state;

    As you can see, the query in the first is much easier to use and read, and it includes all states, whereas the second is challenging to use (even more challenging to modify if you have more states) and doesn’t track cancelled accounts.

    By structuring your database such that the state is explicitly identifiable, you’ll be able to generate queries much more readily, which will then let you automate standard reports (like conversion and churn rates) for dash boarding, and will allow you to more easily connect business intelligence tools to your database. The ultimate goal is to let your business-oriented team members manipulate the data as readily as you can.

    An added benefit of explicit states is that they act as assertions. Although it’s possible to determine that a customer is active by checking the date of their last successful payment, it’smuch better to have an explicit “active” state as you can then run automated tests to verify that your assertions are true. Having a recurring task that iterates through your customer base to confirm that accounts with a most recent payment made within the last month are correctly identified as “active”, is a good way to follow monitoring-driven-development approaches. Any assertion errors can help identify critical flaws in your system.

    Investors Care About the Funnel State

    Although this may seem obvious, it still needs stating. The platitude what get’s measured gets done has a corollary – what we care about gets measured. Technical founders often measure and know details like server load, traffic metrics, lines of code and number of commits or push requests. Because we innately care about those tasks, we tend to measure and follow them. What can’t be over-emphasized is how much investors, advisors and partners will care about your funnel states. Below is a representative subset of the metrics we’ve been asked to report at our board meetings – you’ll notice that none of them are related to in-app usage or infrastructure performance:

    • Total # Of Customers (overall and by customer segments)
    • Visitor-to-Trial Conversion Rate (overall, and by lead source)
    • Trials-to-Active Conversion Rate (overall, and by lead source and by segment)
    • Churn Rate (overall and by lead source)
    • Customer Acquisition Cost (overall and by lead source)
    • Average Revenue per User (overall and by lead source)
    • Life Time Value (overall and by lead source)

    Most of these numbers depend on measuring our customers’ states as well as various additional segments. Because our segments will vary frequently as we experiment and optimize with marketing campaigns, if we don’t have explicit (and easily determined) states, rapid iterations on our reporting become exceptionally difficult.

    Investors and advisors will assume that you have infrastructure running smoothly – you don’t need to hammer home evidence of it, so skip on reporting the infrastructure stats I mentioned earlier. For them to provide valuable advice, however, they need to be able to understand and trust the business metrics I listed. If you can speak as confidently about your Funnel/FSM as you do your application, and if you can deliver transparency into the funnel by automating reports and dashboards, you’ll build your investors confidence and trust in you as an entrepreneur.

    Bonus Reasons

    As a bonus, here are a few cool things you can then do once you have this funnel modelled and embedded within your software:

    1. More easily build dashboards with tools like Geckoboard
    2. Delegate data-mining and analysis to non-technical staff, by tacking on BI tools like Qlickview
    3. Automate segmentation and lists for automated email campaigns and lead nurturing using MailchimpPerformable, and others
    4. Simplify cohort analyses by customer segment

    If you have a state machine for your funnel or customer base, especially if it deviates significantly from mine above, please share it in a comment or an email to me. It would be interesting to see what approaches others are taking.

    Editor’s note: This is a cross post by Joseph Fung (LinkedIn, @josephfung), the CEO of TribeHR (@tribehr). Joseph has recently raised $1MM from David Skok (@bostonVC) at Matrix Partners in Boston, MA. He is building and automating the SaaS metrics for TribeHR. He has a unique engineering view of sales and marketing that allows him to be nimble and correct his efforts based on real customer behaviour data. This post was orignially published on September 23, 2011

  • Quota is not a dirty word

    CC-BY-NC-SA  Some rights reserved by Pedro Vezini
    AttributionNoncommercialShare Alike Some rights reserved by Pedro Vezini

    “We are ALL in sales” – Dale Carnegie

    I used to think that quota was a dirty word. It struck me as restricting freedom and potentially forced the exploitation of trusted customers and prospects to drive the bottom line results. But I was wrong. In reality, a quota is a number that is useful to incent certain behaviours. The trick is to incent the appropriate behaviours. It is a contract between a sales person and an organization about how to compensate behaviours based on outcomes.

    “Quota is a direct path to clarity and accountability.” – Shawn Yeager

    So many entrepreneurs can benefit from contracts with defined outcomes. I was chatting with a startup last week about the numbers he agreed to with his VC to unlock the next tranche of funding. He mentioned that he wasn’t going to meet the numbers, but he still expected the VC to unlock the funding. My advice to him was very straight forward, it was to figure out how to achieve the agreed to numbers, or immediately open a conversation with the VC about missing the numbers due to changing market conditions and see if the tranche can be renegotiated. In the case of this entrepreneur, the numbers were in the funding contract, and I fully expected the VC to hold the entrepreneur to deliver on these numbers. The numbers and metrics exist to help assess the risk and the ability of an entrepreneur to deliver.

    The secret with an early stage company is to set appropriate metrics, quotas and growth numbers that incent the correct behaviours out of entrepreneurs. The good news is that there are a lot of examples of SaaS, B2B and consumer metrics that can be used.

    There are a lot of different sources of metrics and numbers. Each of the numbers needs to be considered in corporate revenue goals, past historical performance, current product development stage, market share, budget, etc. The targets and growth numbers need to be established.

    I’ve taken to requiring all of the startups I mentor, to establish 3 metrics that we discuss in our mentorship meetings. Each of the metrics must be clear enough for me to understand, for example:

    • Number of paying customers
    • Number of registered users
    • Churn rate
    • Number of pageviews or unique visitors

    And each metric should have the current measurement, the predicted growth rate and the actual target number. I try to start each conversation around the metrics. And any issues related to the market conditions, learnings, corrections, etc. Then together we set the targets as part of the planning for the next meeting. This may include a redefinition of the metrics. The trick for me as a mentor is to try to help identify what metrics I think are most useful for the startup and founder to focus on next.

    What are the metrics other entrepreneurs track? How do you set your targets and quotas?

    What are the metrics and growth rates that investors like ExtremeVP, Real Ventures, iNovia Capital, GrowthWorks, Rho and others want to see from prospective early-stage companies?

  • Pre-Launch Marketing for Stealthy Startups

    Editor’s note: This is a guest post by serial entrepreneur and marketing executive April Dunford who is currently the head of Enterprise Market Strategy for Huawei. April specializes in brining new products to market including messaging, positioning, market strategy, go-to-market planning and lead generation. She is one of the leading B2B/enterprise marketers in the world and we’re really lucky to be able to share here content with you. Follow her on Twitter @aprildunford or RocketWatcher.com. This post was originally published in January 3, 2010 on RocketWatcher.com.

    CC BY-NC-SA Some rights reserved by Stuck in Customs
    AttributionNoncommercialShare Alike Some rights reserved by Stuck in Customs

    Some products and services don’t have a pre-launch phase.  For companies where building a minimum viable product isn’t a months-long effort, it makes sense to just launch a beta and then start talking about it.  For other companies however, the product might take a bit longer to develop and talking about it before it’s been released in some form could be pointless (because you don’t have a call to action yet), risky (competitors position against you or customers get confused because there aren’t enough details) or both.

    One of the techniques that I’ve used in the past is to engage with the market by talking about the business problem that your product or service is going to solve, without getting into exactly how you plan on solving it.  At IBM we sometimes referred to this as “market preparation”.

    For larger companies this often entails spending a lot of time (and money) with industry analysts and industry leaders sharing your company’s unique point of view on the market and why it is currently being under-served.  If you do this properly you’ll come to a point where your point of view starts to align well with that of the influential folks you’ve been working with.  By the time you launch, these folks will be standing behind you saying that your view of the market is one customers should consider.

    Pre-launch startups generally don’t have the time, clout or cash to change the way Gartner Group thinks about a market but that shouldn’t stop you from taking your message out directly to the market you care about.  There’s never been a better time for startups to get the message out.  Here are some considerations:

    1. Create a clear message about your market point of view – you will need to create a set of messages that clearly illustrate what the unmet need is the in market and why that need has not been met by existing players.  You can go so far as to talk about the characteristics of the needed solution (without getting into the gorey details of exactly how you plan to solve it).
    2. Develop case studies that illustrate the pain you will be solving – Gather a set of real examples of customers you have worked with that have the problem and clearly illustrate the need for a new type of solution on the market.
    3. Spread the word – Launch a blog, write guest posts for other blogs, comment on relevant blog posts,  write articles, write an e-book, speak at conferences and events, open a Twitter account and start sharing information that illustrates your point of view.  There’s no end of ways to get your message out there.  Do your homework and find out where your market hangs out.  What forums do they participate in?  What blogs and newsletters do they read?  Get your message in front of them in the places where they already are.
    4. Engage and gather feedback – Starting a dialog with your potential customers about how you see the market gives you a chance to test your messages and see what resonates and what doesn’t.  You’ve made a set of assumptions (backed up by customer research hopefully), the more folks in the market you can talk to the more you can fine-tune your market story.
    5. Capture where you can – If it makes sense you can start capturing a list of potential beta customers or a mailing list that you can use when you launch.

    Editor’s note: This is a guest post by serial entrepreneur and marketing executive April Dunford who is currently the head of Enterprise Market Strategy for Huawei. April specializes in brining new products to market including messaging, positioning, market strategy, go-to-market planning and lead generation. She is one of the leading B2B/enterprise marketers in the world and we’re really lucky to be able to share here content with you. Follow her on Twitter @aprildunford or RocketWatcher.com. This post was originally published in January 3, 2010 on RocketWatcher.com.

  • 7 Startup Customer Discovery Questions

    Editor’s note: This is a guest post by serial entrepreneur and marketing executive April Dunford who is currently the head of Enterprise Market Strategy for Huawei. April specializes in brining new products to market including messaging, positioning, market strategy, go-to-market planning and lead generation. She is one of the leading B2B/enterprise marketers in the world and we’re really lucky to be able to share here content with you. Follow her on Twitter @aprildunford or RocketWatcher.com. This post was originally published in April 26, 2010 on RocketWatcher.com.

    Some rights reserved. Photo by dullhunk
    AttributionNoncommercialShare Alike Some rights reserved by dullhunk

    Folks at startups have different levels of experience when it comes to working with customers.  At the early stages when you are identifying the problem to solve, the key features of the solution and the customer segments that are the right fit for the solution, you’re spending a lot of time with customers trying to tease out as much information as you can.  Last week I was asked by a new founder what types of questions he should be asking in these meetings.  Here are a few suggestions:

    1. What does your typical day look like? – This one is especially useful at the earliest stages when you are still trying to get a deep understanding of the space, the customers and what the key pain points are for those customers.
    2. If you could change anything at all, what would it be? – This is a good one to get at the most pressing problem that a person is experiencing with a particular task or process.
    3. What is the biggest pain you have today? – This will have to be framed within the context of the broader space you are looking at of course. The key with this question is to probe around the characteristics of the pain.  Why is it painful? What is the measure of that pain (time, effort, etc.)?
    4. How are you solving this problem today? – Again, try to ask a lot of open-ended questions around this one too.  When was the solution implemented?  Why was it done like that? Who made the decision?
    5. What is this problem costing you? (lost revenue, lost customers, increased service costs, etc.)? – This is your first indication of how the customer might measure ROI no a solution in this space.
    6. Who would you expect to solve this problem? – I like this one because it tells me a bit about how a customer would define the solution in terms of market space and also starts telling me something about channels.  For example, in a recent set of interviews I did the customers said they would expect their phone carrier to deliver the solution to the problem (vs. getting it directly from a software provider) or they would expect to get it from a local VAR.  In another set of interviews I did for a different product the answers were IBM, Oracle and Microsoft – with clearly a different set of expectations around that for service, price, etc.
    7. Who else has this problem? – This might be different groups in an enterprise or different groups of consumers.  It’s an interesting question to ask to see what else the customer is seeing in the space.

    Editor’s note: This is a guest post by serial entrepreneur and marketing executive April Dunford who is currently the head of Enterprise Market Strategy for Huawei. April specializes in brining new products to market including messaging, positioning, market strategy, go-to-market planning and lead generation. She is one of the leading B2B/enterprise marketers in the world and we’re really lucky to be able to share here content with you. Follow her on Twitter @aprildunford or RocketWatcher.com. This post was originally published in April 26, 2010 on RocketWatcher.com.

  • A Startup Marketing Framework (Version 2)

    Editor’s note: This is a guest post by serial entrepreneur and marketing executive April Dunford who is currently the head of Enterprise Market Strategy for Huawei. April specializes in brining new products to market including messaging, positioning, market strategy, go-to-market planning and lead generation. She is one of the leading B2B/enterprise marketers in the world and we’re really lucky to be able to share here content with you. Follow her on Twitter @aprildunford or RocketWatcher.com. This post was originally published in January 4, 2011 on RocketWatcher.com.

    Back when I was running my consulting business I published a marketing framework that I used as a tool to explain to startups the types of things that I could help them with.  I thought it would be useful for startup marketing folks as a guide and I think it has been – it continues to be one of the most popular posts on this site.

    Since then, I’ve gotten a lot of smart feedback on the framework and I’m also back to working inside a company again so I thought it would be interesting to revisit the framework.

    Assumptions

    As I explained earlier, this framework doesn’t intend to cover Product Management (thePragmatic Marketing Framework does a good job of that) but rather the intention was to look at it from a purely marketing point of view.  This Framework makes the assumption that you have a product in market, you feel fairly confident that you have a good fit between your market and your offering and you are ready to invest in lead generation. If you aren’t there yet, there is a lot here that you won’t need to (and more importantly, shouldn’t) worry about yet.   Lastly, my background is more Business to Business marketing so like everything else on this site, this has a B2B slant to it.  That said, I think most of it is very applicable to a B2C startup.

    Startup Marketing Framework V22 A Startup Marketing Framework (Version 2)

    Market Knowledge

    Segments – Based on your interaction with early customers, these are the segments that have the most affinity for your offering and are the target of your marketing efforts.  These need to be well defined and very specific.  I’ve had folks ask me where buyer/influencer personas fit and I include those here as part of what you need to understand about your segments.

    Market Needs – From your experience with early customers you will be able to articulate the unmet needs in the market related to your segments (and beyond).

    Key Points of Value – These are the most critical key differentiated points of value that your product offers.  This is not a long list of features but rather small number of key attributes that customers in your segment love about your product.  This is important for startups in particular to understand the real essence of why people buy your solution and it has a big impact on messaging, campaigns, sales strategy, etc.

    Competitive Alternatives – These are the alternative ways that prospects in your segments can attempt to address their needs without your product/service.  These may be competitive offerings, features or pieces of solutions in other spaces or the always fearsome “do nothing”.

    Business Strategy

    Business Model – This describes how the company makes money from the offering.

    Sales Process and Strategy – The sales strategy is how the company will sell the product (including the channels if applicable).  The Sales Process is the detailed step by step process that a prospect goes through on the way to becoming a customer.  It’s important to note that this process starts long before a prospect interacts with a sales person and starts in the information gathering phase.

    Market Strategy – The market strategy is a higher level view of how the company plans to scale in the market from early adopters to a broader market, including the segments to be targeted and in what order. (in Crossing the Chasm, this would be the description of your lead pin and the adjacent pins)

    Partner Strategy – This box is new from the last version of the framework.  I had previously included indirect sales channels in “Sales Strategy” but there are more reasons to partner than just sales (sometimes it’s for marketing purposes, or to provide services for example) and since Marketing is usually responsible for this at a startup I thought it needed to be included.

    Tactics

    Outbound Lead Generation – On the original Framework I simply had one box for “Lead Generation”.  I’m deeply involved in Lead Generation with my current role (something I was less focused on as a consultant) and I started to think that such an important set of tasks deserved to be dissected a bit.  Onbound Lead Generation in this framework is the plan including budgeting and task execution for lead generation tactics that involve “pushing” marketing messages out to an audience.  This includes traditional marketing tactics such as events, advertising, telemarketing and traditional email marketing.

    Inbound Lead Generation – This box is similar to the above box except that it includes that set of tactics that you are running that are focused on attracting prospects to you (rather than pushing messages out to prospects).  This includes blogging, social media marketing, content marketing, and organic search tactics.

    Retention and Engagement – The plan and budget for tactics aimed at retaining existing customers (really important for SaaS offerings) and engaging existing customers both for retention but also for improving customer satisfaction, cross-selling and up-selling.

    Visibility – This is the bucket for all tactics related to ensuring that non-users of the product can observe that others are using it.  This includes product features that encourage people invite their friends or display to a person’s network some facet of using the product, referral incentives, website badges, shareable content, reviews and awards, customer testimonials and success marketing, etc. (I talk about this in Startup Marketing 101)

    Content

    Messaging – This includes the company messaging, product value proposition, company and offering stories, responses to common questions, objection handling and reassurances for perceived risks.

    Marketing Content – In the original version of the Framework, I had a single box called “Content Strategy”. I believe that the importance of content is growing to the extent that I think this deserves more attention. Marketing Content should still be planned out in a content strategy that will lay out what content will get created and for which purposes.  This will include blogs, video, podcasts, whitepapers and ebooks, research and data analysis, press releases, shared presentations, and anything else that is informative and helpful to prospects.

    Customer Content – This is a new box I added that is specifically focused on building a plan for content for customers (as opposed to prospects).  The purpose of this content is customer retention and engagement (and it’s not an accident that this box sits next to that one in the Framework).  Again, for SaaS type businesses, I believe that retention is increasingly important and marketing should be putting more energy and effort into “marketing” to their existing customer base.

    Media/Influencer Outreach – Actions, programs and tactics related to working with reporters, analysts, writers, bloggers and other influencers.

    Optimization & Market Learning

    Funnel Optimization – The ongoing process of tracking and analyzing each stage of the sales funnel with the goal of making incremental improvements. (I did a post on some B2B metrics that I track to look at funnel)

    Results Tracking – This was ROI Tracking in the last version but I broadened it out to Results Tracking.  Obviously for each item of marketing spend, tracking the return on that investment with the goal of doing more of what works and less of what doesn’t is still something every startup marketer needs to do but there are other metrics that you will be tracking as well that aren’t necessarily “ROI” numbers per se so I broadened this one.

    Customer Learning – The ongoing process of meeting with customers and testing the assumptions you have about their needs, environment, information sources and influencers, competitive alternatives, market trends, etc., capturing that information and feeding it back to the rest of the organization.

    Editor’s note: This is a guest post by serial entrepreneur and marketing executive April Dunford who is currently the head of Enterprise Market Strategy for Huawei. April specializes in brining new products to market including messaging, positioning, market strategy, go-to-market planning and lead generation. She is one of the leading B2B/enterprise marketers in the world and we’re really lucky to be able to share here content with you. Follow her on Twitter @aprildunford or RocketWatcher.com. This post was originally published in January 4, 2011 on RocketWatcher.com.

  • DFAIT Technology Growth Initiative Business Bootcamps

    Departement of Foreign Affairs and International TradeDFAIT is sponsoring the Technology Growth Initiative (TGI) Business Bootcamps Spring 2011 to help Canadian companies go-to-market in specific US markets (BostonDenverLos AngelesNew YorkPalo AltoSan DiegoSan Francisco/Silicon Valley and others). The program provides startups with access to webinars, a one day bootcamp session and direct connections with VCs and local entrepreneurs to share experiences and find funding.

    The one day bootcamps are being help in April and May 2011 from Halifax to London. The bootcamps are interesting, they provide entrepreneurs the opportunity to pitch and get feedback from trusted experts (yeah right I think I served as an “expert” in 2009 ;-). But it is a great opportunity to get a different set of eyes on your pitch. And it plays to the old adage, “how do you know when an entrepreneur is dead? he stops pitching”.

    Registration for One Day Business Bootcamp

    • Halifax: April 27th, 2011 – Cleantech and ICT
    • Quebec City: April 28th, 2011 – ICT
    • London: April 29th, 2011 – Cleantech, ICT, Life Sciences
    • Toronto: May 2nd, 2011 – Cleantech, ICT, Life Sciences
    • Ottawa: May 3rd, 2011 – Cleantech, ICT, Life Sciences

    There is also the upcoming April 6th, 2011 11:30EST seminar with Mike Grandinetti (he’s also a TechStars mentor) focusing on “Lean and Mean Startups”.

    April 6th: 11:30 EST (Upcoming Webinar – Soon)

    1. Lean and Mean Start-ups – Presented by: Mike Grandinetti, Managing Director, Southboro Capital, Boston.
    2. So you think you are ready? – 10 things you need to know before presentation day – A candid talk on presentations gone horribly wrong and how you avoid that – Presented by: Coby Schneider – Miller Thomson & Others.

    These are great opportunities to learn about expanding into specific US markets. The DFAIT team brings key players to local markets and makes it easy to establish relationships that allow companies to grow. There are lots of opportunity to criticize some of the efforts, but the team at DFAIT have run this program for the past few years with varied success. It’s worth the time of startups actively looking to expand their customer base (this means that you’re beyond seed stage, you probably have customers, you have a product, you’re looking for a scalable business model) to explore how DFAIT can help.

    The event is co-hosted by our sponsors and friends at KPMG are corporate partners helping DFAIT and startups. There are a lot of cross-border issues concerning corporate structure, financing, taxation and other where KPMG can leverage their experience to help early and growth stage companies.

  • Going over the falls together in barrel

    Editor’s Note: This post was written by Jesse Rodgers. Jesse is the  CEO of TribeHR, the Director of the VeloCity Residence at the University of Waterloo, organizer of StartupCamp in Waterloo and an allround great guy.

    Jesse stopped by my offices in Toronto to chat about sales, marketing and PR (convenient of @jevon to write about the same topic recently). Jessementioned that the TribeHR team had left Waterloo and were holed up in a hotel room in Niagara Falls. They were living together, working together, writing code and being more productive than they could with the distractions of family, friends and the strong community in Waterloo. I was amazed at the commitment of the team to step away from their personal lives and get the next version of TribeHR built before they head to SxSW for the Small Business Party. You can read the update or watch the caffeine and other stimulant-driven vacation summary. There’s lots startups can learn about improving productivity by going on vacation together.


    Barrel to go over the Falls

    Over the month of February the TribeHR team has been taking advantage of low hotel prices in Niagara Falls and turned a suite at the Hilton into our office (we were at the Marriott, but the Hilton is $20 less a night and has king size beds). The goal for this little retreat to the romantic city of Niagara Falls: get TribeHR polished off, implement our new user interface, get our go to market strategy figured out, and start executing on all cylinders.

    If it works, we will be a stronger team (who can put up with each others snoring) and will have made some awesome progress. If it fails, then we know our team isn’t as good as we thought.

    Other cities we thought about were Montreal and Toronto. Toronto would have far too many distractions for us so we had settled on Montreal (we would have loved to work out of the Knotman house). The problem there was that those of us with young kids would be too far away to head home if we had to. So here we are in Niagara Falls, in a tiny hotel suite, working our asses off.

    Room with a view in Niagara Falls by TribeHRIn terms of work hours put in, when you do this, it’s pretty crazy. While in a hotel room, assuming you ignore the casino across the road, you work from around 8am to 12am, take out eating time, it is around 14 hrs or so of ‘work’ per person. It is a crazy amount of focus and the results are great, at first. Once all the easy stuff is taken on, we then have to address the bigger problems and we start to slow down. But we can work through it and it’s a heck of a lot easier when you have completely removed yourself from your routine.

    At the end of week 2 we have learned the following:

    • It takes 5 min to turn a hotel room into an office but the wifi sucks, the tv can’t use a PS3, and anything but pizza is way overpriced.
    • Not having kids wake you up at 6am doesn’t mean you won’t be awake at 6am.
    • The US side of the falls gets a rainbow in the afternoon.
    • The Starbucks coffee is never hot, Tim Horton’s wins
    • As a team we can take each others grumpy moods and swear it out until everyone is laughing again.
    • Hotel chairs spin really well, and provide a great distraction near the end of the day

    Why have we done this? Because we are still a very much a bootstrapped startup with plenty of distractions (wives, kids, other commitments) in Waterloo, and if we are going to get anything done while things are still so early, we have to immerse ourselves and get to work. It’s uncomfortable and exhausting, but it’s productive, energizing and we love it.

  • Giveaway – 2 Tickets to Art of Marketing on March 7, 2011

    The Art of Marketing on March 7, 2001 in TorontoStartupNorth and The Art of Marketing are giving away 2 tickets to the March 7, 2011 conference in Toronto. The conference features:

    It’s a great line up of speakers. I’ve seen Guy Kawasaki speak in the past. He hosted a conversation with Steve Ballmer at  Mix08 in Las Vegas. And comedy ensued:

    Guy Kawasaki at Mix08

    Guy has written a number of books that I have enjoyed reading including: Reality Check, Rules for Revolutionaries, How to Drive Your Competition Crazy and The Art of the Start. Very entertaining speaker, and I’ve been told that we should try to organize a startup hockey game for him while he is here.

    I’m most excited about hearing Dr. Sheena Iyengar. I did not know that she was born in Toronto. Her TED Talk about The Art of Choosing and cultural biases is a very engaging and insightful presentation.

    Dr. Sheena Iyengar at TED on The Art of Choosing

    Giveaway

    This is a giveaway. We have 2 tickets. The tickets have no cash value. Someone from StartupNorth will randomly select 2 emails submitted before 11:59:59 EST on Feb 27, 2011. There might be a skill testing question. Please only one entry per person. What’s an entry? Your name and email address. It’s our promise that we will always respect your privacy. From time to time we may email you to inform you about future events, or updates about the giveaway.

    Entries are closed.

    The promo code: LD27 gives you a $50 discount off the regular ticket price, or $100 discount for groups of 3 or more for The Art of Marketing March 7, 2011 event.

  • Engines for Massively Scaleable Startups

    I was excited to attend MeshU (maybe a little too excited). I love it when events over deliver. MeshU was a fantastic conference. I saw two of the best in-the-trenches startup sessions with Sean Ellis and Dan Martell. They both presented ideas that are changing how I think about product design and go-to-market activities. April Dunford then added an updated framework  for product marketing which was a great evolution of traditional product marketing. Sean Ellis added his model for Key Elements of Massively Scaleable Startups that presented a new idea of the marketing basics that need to be present for high potential startups.

    Key Elements of Massively Scalable Startups – A Marketing Framework based on April Dunford & Sean Ellis

    The breaking down of 4 elements coupled with traditional strategy and tactics make for a very effective marketing evaluation of most startups.

    Gratification Engine

    The Gratification Engine was a new piece of the marketing activities. What differentiates must have products and services? How do you reward your customers? How does your application turn “cold prospects into highly gratified customers”? This is a change in my thinking about the role of making your users feel like rockstars.  

    “you can’t force customers to want, need or like what you have created.  Building an effective gratification engine is an iterative process driven by a lot of prospective customer feedback.  Once you get the basics right, your process of gratifying users can be optimized with tools like Performable for landing pages and KISSmetrics for full funnel tracking/improvement (I’m an advisor to both).” – Sean Ellis

     It builds upon seminal work of Kathy Sierra about engaging users. The Gratification Engine pushes this out beyond the existing experience but treats the conversion and effectiveness of new users.

    Making a Bestseller
    Making a Bestseller by Kathy SierraHow fast and how far can you take your users? by Kathy Sierra

     Where this hit home for me was starting to think about the game mechanics used for upsell and cross sell offers for new customers. Dan Martell, Dave McClure, Marc Gingras and I had breakfast at StartupCampMontreal and discussed how to build effective offers for existing customers to invite their friends to an application. There was a great discussion about using game mechanics around the offer. You have existing users that if they invite new users, i.e., their friends, where if the friends sign up that both the friend and the user get new unique functionality. It changed my thinking about many times I’ve received an offer to sign up from a friend for a service, and how the effectiveness of this would change with some basic game mechanics:

    “Jevon has invited you to join X. Jevon is 1 sign up away from enabling the super awesome next level feature. Sign up now and enable the feature for both you and Jevon”

    This all has to be done in an open, honest and unintrusive manner. But it’s about how do you enhance the lives and experiences of customers and potential customers. There are great opportunities to use game design and mechanics to help improve the experience and conversion rates in web and mobile applications.

  • Marketing metrics

    Photo by Darren_Hester

    Mike McDerment from FreshBooks gave  a great presentation on the basics of web application marketing metrics. He focuses on the metrics, systems and reporting that all companies should be building into web and mobile applications. It is a must read for any entrepreneur building a web application.

    Metrics

    Cost Per Acquisition (CPA)
    How much does it cost you to get a customer? It’s a simple enough calculation, how much do you spend on sales and marketing to acquire each customer. Roll up your staffing costs, your ad buys, your outbound marketing, etc.
    Average Revenue Per User (ARPU)
    How much revenue do users generate? How do you track it? Does it change based on segment? How do you increase it?
    Churn
    What percentage of your existing customer base leave every month? This is different than CPA because this is about customer satisfaction and retention. Don’t think this is important? According to April Dunford churn is a killer. “The probability of selling to an existing customer is 60-70%. The probability of selling to a new prospect is 5-20%”
    Lifetime Value (LTV)
    How long does a customer continue as a subscriber? Does their ARPU change over time? Do you have ways to increase their spend or reduce their churn?

    These basic metrics are expanded by Dave McClure in AARRR! Startup Metrics for Pirates. Where the metrics are divided into 3 main categories:

    1. Get Users (Acquisition, Referral)
    2. Drive Usage (Activation, Retention)
    3. Make Money (Revenue)
    View more presentations from Dave McClure.

    It seems so simple on surface, but as CEOs and startups we need to be committed to building the systems and metrics into our products. I was just floored at MeshU when I heard Dan Martell talk about the Flowtown.com Startup Immune System where they are beginning to use the lower level business performance metrics to automatically rollback design changes based on performance against the baseline. You can only start doing if you’re building on top of metrics. The idea of having automated your software deployment and sufficiently built business metric baselines that you could autoroll back poor performing changes. At Nakama, I wanted this so much. Not because I had bad developers but because we often made design decisions based on limited customer feedback and I wanted the system to protect me from my own hubris.

    Metrics are good place to start. One of the best ways to understand how your company is performing is to begin measurement. Mike has done a great job