<ee:last_update>1366802407</ee:last_update>

<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:atom="http://www.w3.org/2005/Atom">

    <channel>
    <atom:link href="http://www.labsixtyfive.com/home/rss" rel="self" type="application/rss+xml" />
    
    <title>Goldhawk Labs - Gregor McKelvie/title>
    <link>http://www.Goldhawklabs.com</link>
    <description>Inspired by smart business, good design and people who can get things done</description>
    <dc:language>en</dc:language>
    <dc:creator>gregor@goldhawklabs.com</dc:creator>
    <dc:rights>Copyright 2013</dc:rights>
    <dc:date>2013-04-24T11:20:07+00:00</dc:date>
    <admin:generatorAgent rdf:resource="http://expressionengine.com/" />
    

    <item>
      <title>Stocksy.com &#45; amazing photos</title>
      <link>http://www.goldhawklabs.com/65/stocksy.com-amazing-photos</link>
      <guid>http://www.goldhawklabs.com/65/stocksy.com-amazing-photos#When:11:20:07Z</guid>
      <description><![CDATA[<p>I&#8217;m working on a site that needs good stock photos plus I&#8217;ve also started a &#8220;<a href="http://www.buildtracks.com/insights/post/photo-of-the-week-1-57-miles">photo of the week</a>&#8221; at Tracks and came across <a href="http://www.stocksy.com/">Stocksy</a>. Amazing photos.</p>
<p><img src="http://www.goldhawklabs.com/images/uploads/stocksy.gif" alt="Stocksy homepage" height="495" width="1009"  /></p>]]></description> 
      <dc:date>2013-04-24T11:20:07+00:00</dc:date>
    </item>

    <item>
      <title>Amazon S3 Signed URLs with Expression Engine</title>
      <link>http://www.goldhawklabs.com/65/amazon-s3-signed-urls-with-expression-engine</link>
      <guid>http://www.goldhawklabs.com/65/amazon-s3-signed-urls-with-expression-engine#When:08:49:41Z</guid>
      <description><![CDATA[<p>I&#8217;m working on an Expression Engine project at the moment that involves a lot of document management. EE&#8217;s file manager is OK for a small number of files, but when you have a lot of large files, entry and member permission requirements and general ease of management to think about then it just doesn&#8217;t cut it. I also didn&#8217;t want to store the documents on the webserver.</p>

<p>For the storage I looked at Rackspace Cloud Files and Amazon&#8217;s S3 for storage, which are of course purpose built. The problem I had was finding an add-on that could access these private files. I looked Tools like Assets and Channel Files, which are great asset management modules, but my understanding is that the files on RS or AWS need to be made public - and therefore better for documents, images, etc that the public have access to. So I built an add-on for EE that allows CMS users to create an <a href="http://s3.amazonaws.com/doc/s3-developer-guide/RESTAuthentication.html">Amazon S3 Signed URL</a> from within the control panel. I can then use that signed URL any way I want.</p>

<p>It works great and is <a href="http://devot-ee.com/add-ons/amazon-s3-signed-urls">available on Devotee</a></p>

<p><img src="http://www.goldhawklabs.com/images/uploads/add.png" alt="Add an Amazon S3 Signed URL" height="345" width="1001"  /></p>]]></description> 
      <dc:date>2013-03-20T08:49:41+00:00</dc:date>
    </item>

    <item>
      <title>Using PJAX with Codeigniter</title>
      <link>http://www.goldhawklabs.com/65/using-pjax-with-codeigniter</link>
      <guid>http://www.goldhawklabs.com/65/using-pjax-with-codeigniter#When:16:53:14Z</guid>
      <description><![CDATA[<p>We&#8217;re developing a new front-end for <a href="http://www.buildtracks.com">Tracks</a> at the moment and have been researching various front end JS solutions. I&#8217;ve played around with both <a href="http://backbonejs.org">Backbone.js</a> and <a href="http://angularjs.org/">Angular.js</a>. Both are awesome (despite my JS noobness), but wasn&#8217;t convinced I needed this type of framework as of yet. Plus the learning curve (particularly Angular) is pretty steep.</p>

<p>Two key things in the redesign are that I don&#8217;t want pages to do full refreshes on say for example a filter change and I want the URL to change i.e. from ?foo=bar to ?foo=johndoe but without a reload. After looking at <a href="http://html5demos.com/history">HTML5&#8217;s History API</a> I stumbled upon <a href="http://pjax.heroku.com/">PJAX</a> (jQuery plugin that uses PushState), which I later found out 37signals used for the new Basecamp (<a href="http://www.youtube.com/watch?v=FkLVl3gpJP4">good video here on David Heinemeier Hansson on using PJAX over Backbone.js</a>).</p>

<p>This looked like a potential solution, particularly as it felt a bit easier to deploy. The only problem is there is not a great amount of support for using PJAX with PHP or Codeigniter, as it was originally built for Rails. However, this week I managed to get a prototype of the new interface working that allows me to sort deals, filter and change dates all without the page reloading and with the URL changing accordingly.</p>

<p>It. Is. Lightening. Fast.</p>

<p>Below is a summary of some of the code that I used to get PJAX working with Codeigniter. It&#8217;s no where near perfect, but should get you off on the right foot. I&#8217;ve not got a demo to share at the moment but stay tuned to the <a href="http://www.buildtracks.com/insights">buildtracks.com</a> blog for updates.</p>

<h2>Main controller</h2>
<p><code class="prettyprint"><br />
function index()<br />
{<br />
	// --- lots of code above this line ----</p>

<p>	$data = $this->load->view('your_views', $some_date, true);	</p>

<p>	if (isset($_SERVER["HTTP_X_PJAX"])) {<br />
		<br />
		echo $data['my_PJAX_data'];<br />
		<br />
 	 } else {<br />
		<br />
		$data = // construct header and footer and any other views as string<br />
		$this->load->view('main_view', $data);	<br />
  	}<br />
}<br />
</code></p><h2>main_view / your template</h2>
<p><code class="prettyprint"></p><xmp class="prettyprint" id="htmlXmp">
<div id="pjax-content">
<p>// display $my_PJAX_data</p>
</div>
</xmp>
<p></code></p><h2>JS scripts</h2>
<p><code class="prettyprint"></p><xmp class="prettyprint" id="htmlXmp">
<script type="text/javascript" src="jquery-1.9.0.js"></script>
<script type="text/javascript" src="jquery.cookie.js"></script>
<script type="text/javascript" src='jquery.pjax.js'></script>
</xmp>
<p></code><br />
<code class="prettyprint"></p><xmp class="prettyprint" id="htmlXmp">
<script type="text/javascript">
</xmp>
$(document).pjax(&#8217;[data-pjax] a, a[data-pjax]&#8217;, &#8216;#pjax-content&#8217;);
$(document).on(&#8216;pjax:send&#8217;, function() {
	console.log("Appears in console just after call is started");
});
$(document).on(&#8216;pjax:complete&#8217;, function() {
	console.log("Do something once PJAX call is finished");
});
<xmp class="prettyprint" id="htmlXmp">
</script>
</xmp>
<p></code></p>]]></description> 
      <dc:date>2013-02-08T16:53:14+00:00</dc:date>
    </item>

    <item>
      <title>Apple follows Microsoft [Chart]</title>
      <link>http://www.goldhawklabs.com/65/apple-follows-microsoft-chart</link>
      <guid>http://www.goldhawklabs.com/65/apple-follows-microsoft-chart#When:17:06:01Z</guid>
      <description><![CDATA[<p>I saw this chart on Bloomberg today. Interesting to see how Apple&#8217;s share price has moved and tanked similar to Microsoft. Microsoft peaked just as the .com burst. #justsaying</p>
<p><img src="http://www.goldhawklabs.com/images/uploads/applevsms.png" alt="Apple compared to Microsoft" height="404" width="650"  /></p><p>The screenshot attached is taken from <a href="http://www.businessinsider.com/apples-dealing-with-the-same-problems-microsoft-had-2013-1">Business Insider</a></p>

<p>&nbsp;</p>]]></description> 
      <dc:date>2013-01-25T17:06:01+00:00</dc:date>
    </item>

    <item>
      <title>The Freshbooks story</title>
      <link>http://www.goldhawklabs.com/65/the-freshbooks-story</link>
      <guid>http://www.goldhawklabs.com/65/the-freshbooks-story#When:09:11:09Z</guid>
      <description><![CDATA[<p>Watch the first ten minutes on the <a href="http://www.freshbooks.com">Freshbooks</a> story from Mike McDerment. I love the &#8220;slow build&#8221;.</p><p><iframe width="640" height="480" src="http://www.youtube.com/embed/O-okFyJ2M74" frameborder="0" allowfullscreen></iframe></p>]]></description> 
      <dc:date>2012-10-23T09:11:09+00:00</dc:date>
    </item>

    <item>
      <title>Our new logo for Tracks?</title>
      <link>http://www.goldhawklabs.com/65/our-new-logo-for-tracks</link>
      <guid>http://www.goldhawklabs.com/65/our-new-logo-for-tracks#When:09:10:33Z</guid>
      <description><![CDATA[<p>Working on <a href="http://www.buildtracks.com">Tracks</a> has been an amazing experience. I&#8217;ve learnt a lot. Especially from the businesses that have signed up and shared their feedback. I wake up in the morning thinking about it and go to bed thinking about it. It is hard to switch off at times. What&#8217;s great is when people give you compliments, but this is the first time I&#8217;ve had a user &#8220;going the extra mile&#8221;. Below is a photo from a user who has clearly been thinking about Tracks over breakfast / lunch. I love this. Thank you. You know who you are!<br />
<img src="http://www.goldhawklabs.com/images/uploads/spaghetti_cropped.jpg" alt="Tracks spaghetti" height="696" width="681"  /></p>]]></description> 
      <dc:date>2012-10-05T09:10:33+00:00</dc:date>
    </item>

    <item>
      <title>CRM. It&#8217;s a problem.</title>
      <link>http://www.goldhawklabs.com/65/crm-its-a-problem</link>
      <guid>http://www.goldhawklabs.com/65/crm-its-a-problem#When:14:36:43Z</guid>
      <description><![CDATA[<p>Earlier this year I decided that I was going to work as much as full time on <a href="http://www.buildtracks.com">Tracks</a>. My deadline to start was mid July and as I approach the 2 month mark I&#8217;ve got a lot to share. Especially on why.</p>

<p>I&#8217;ve been intrigued by the CRM market for years. Although there are some <a href="http://www.goldhawklabs.com/65/post/please-take-salesforce-off-your-small-business-crm-list">new systems</a> that are worth checking out, the market is going through well needed change. And as a result, there is an opportunity to redefine 1) the problem and 2) the solution when it comes to small businesses managing contacts and communication and pipeline management and forecasting.</p>

<h3>My first observation</h3>

<p>One observation I&#8217;ve made recently is that the contact manager market (can I call it an industry?) is being disrupted. How we communicate with clients and prospects (or at least how we introduce ourselves or businesses) is evolving. This is not a post on social media, but it has changed a lot of things particularly in marketing. But the other reason why the market / industry is being disrupted is because of technology. Small businesses are no longer hooked into an exchange server and Outlook 2003. Email and related systems are much more open and thus easier to integrate with.</p>

<p>What does this mean?</p>

<p>It means that managing contacts, notes and emails will become (and is becoming) more integrated. Take <a href="http://www.nimble.com/">Nimble</a> and <a href="https://www.contactually.com/">Contactually</a> for example; two great services that integrate seamlessly with a raft of online applications from Linked In to Google Apps, and as are result help you be more proactive.</p>

<p>It&#8217;s fair to say, contact management in a few of years will be much different and easier for businesses.</p>

<h3>My second observation</h3>

<p>As a result of this disruption, everyone seems to have forgotten about sales pipeline management and forecasting. It&#8217;s all about &#8220;social CRM&#8221;. Salesforce are even trying to trade mark the term &#8220;social enterprise&#8221; (good luck with that&#8230;).</p>

<p>Sales pipeline management and forecasting software is not sexy. There&#8217;s no buzz about it. But does that mean it&#8217;s not done any more?</p>

<p>I&#8217;d argue that businesses are thinking about it even more than say 5 years ago. Rightly so, if you are to believe recent stats from the <a href="http://www.aberdeen.com/">Aberdeen Group</a> that actively carrying out sales forecasting can increase revenue by up to 9% and profit by up to 5%.</p>

<p>Given that the average margin of a B2B service company is 15%, an extra 5% is no doubt very welcome!</p>

<p>On top of this, through my work with small businesses and through the feedback I have received from the <a href="http://www.buildtracks.com">Tracks</a> users it seems that businesses still struggle with pipeline management software and importantly struggle to generate accurate forecasts. Sales people still have a lot of admin. Sales managers struggle to get them to do it. And those in charge of the forecasts are still spending painful hours in front of Excel.</p>

<h3>The problem with sales pipeline management and forecasting</h3>

<p>In short, the problem is three-fold:</p>

<ul>
<li>Sales pipeline management and forecasting software takes up too much admin</li>
<li>The forecasts are not accurate enough</li>
<li>The software doesn&#8217;t help sales people sell</li>
</ul>

<p>On top of this, there are many people based issues like the accuracy of the data, enforcing data entry and the huge variances between confidence levels (and sales processes) of those involved. The only way to eliminate this is to make sales pipeline management and forecasting much more integrated into technology, the business and the customer buying process.</p>

<h3>Here&#8217;s to making it sexy</h3>

<p>It&#8217;s clear that there is a design problem with CRM and related sales technology and processes. Here&#8217;s my take on what will make sales pipeline management that bit sexier:</p>
<ul>
<li>Make it more integrated with other systems (just like its sister the contact manager) from email to phone systems and from SMS to calendar activity. With technology becoming easier to deploy and data more accessible the level of effort in documenting the sales pipeline could (and needs to) go down. Ill bet everyone in your business would love to spend less time on sales admin.</li>
<li>Make forecasts more accurate. Most small businesses go with gut feeling. Yes this is a good metric but I believe in using historical data to make predictions from the previous performance of a sales person to the spend patterns of a client. With data more easily accessible more insights can be found - and people love insights.</li>
<li>Apply a bit more of Steve Krug&#8217;s Don&#8217;t Make Me Think. A lot of the CRM systems on offer are clunky to say the least. They are designed for features and mass customisation. You do the work. What about a bit of software and a business that does the work for you?</li>
</ul>
<p>This is what we&#8217;re working on at Tracks. <a href="https://app.buildtracks.com/register">Sign up</a> today!</p>
<h3>Related Posts</h3>
<ul>
<li><a href="http://www.goldhawklabs.com/65/post/please-take-salesforce-off-your-small-business-crm-list">Please take Salesforce off your small business CRM list</a></li>
<li><a href="http://www.goldhawklabs.com/65/post/13-tips-for-better-pipeline-management-via-rshf">13 tips for better pipeline management (via @RSHF)</a></li>
<li><a href="http://www.goldhawklabs.com/65/post/why-are-crm-systems-poor-at-calculating-the-sales-pipeline">Why are CRM systems poor at calculating the sales pipeline?</a></li>
</ul>]]></description> 
      <dc:date>2012-09-13T14:36:43+00:00</dc:date>
    </item>

    <item>
      <title>Getting version control working on a new install of Expression Engine</title>
      <link>http://www.goldhawklabs.com/65/getting-version-control-working-on-a-new-install-of-expression-engine</link>
      <guid>http://www.goldhawklabs.com/65/getting-version-control-working-on-a-new-install-of-expression-engine#When:08:20:35Z</guid>
      <description><![CDATA[<p>Yesterday I set-up and installed the development environments for the new <a href="http://www.buildtracks.com/">Tracks</a> website on <a href="http://expressionengine.com/">Expression Engine</a>. I&#8217;ve struggled in the past getting version control working with EE, so thought I&#8217;d document some of the steps I went through. Although this is only a rough guide, it will give some beginners a point in the right direction.</p>

<p>The document is available to <a href="http://www.slideshare.net/gregormckelvie/getting-versioncontrolworkingonanewinstallofexpressionengine">download</a> on Slide Share</p>

<p>Before you get started you need the following:</p><ul>
<li>A mac - your machine</li>
<li><a href="http://www.mamp.info/en/index.html">MAMP</a> - your local web server and database</li>
<li>A <a href="http://beanstalkapp.com/">Beanstalk</a> account - your repository</li>
<li><a href="http://www.git-tower.com/">Git Tower</a> - your local version control app</li>
<li>A license of <a href="http://expressionengine.com/">Expression Expression</a></li>
<li>A hosting account - I recommend <a href="https://www.vidahost.com/">Vidahost</a></li>
<li>A text editor</li>
<li>Patience - getting version control running is worth it</li>
</ul>

<h3>Related Posts</h3>
<ul>
<li><a href="http://www.goldhawklabs.com/65/expression-engine-rss-feed-template">Expression Engine RSS feed template</a></li>
<li><a href="http://www.goldhawklabs.com/65/wordpress-vs-expression-engine-part-2">WordPress vs. Expression Engine - part 2</a></li>
<li><a href="http://www.goldhawklabs.com/65/wordpress-vs-expression-engine-part-1">Wordpress vs Expression Engine - Part 1</a></li>
</ul>]]></description> 
      <dc:date>2012-09-12T08:20:35+00:00</dc:date>
    </item>

    <item>
      <title>Installing PEAR and PHPUnit on MAMP 2.0.0</title>
      <link>http://www.goldhawklabs.com/65/installing-pear-and-phpunit-on-mamp-2.0.0</link>
      <guid>http://www.goldhawklabs.com/65/installing-pear-and-phpunit-on-mamp-2.0.0#When:08:42:49Z</guid>
      <description><![CDATA[<p>I&#8217;ve been going round in circles trying to get PHPUnit installed on MAMP and have finally managed to get it installed, so wanted to share the links and resources I used.</p>

<p>First of all, after much trial and error I decided to start with a fresh install of MAMP - at the time of writing it was MAMP 2.1.1. Sadly, following many tutorials and using Stackoverflow to the extreme I couldn&#8217;t get it working. My main problem was that PEAR was installed in /php5.4.4 and PHPUnit was being installed in /php5.3.6 and I couldn&#8217;t get a symbolic link to work between the two folders. More advanced programmers could no doubt fix this, but this is the first time I&#8217;ve tried to do it - and was failing badly!</p>

<p>So moving on from that I then found an older version of MAMP (2.0.0) on my machine and given I had come across a couple of tutorials for 2.0.0 I decided to install a fresh copy of 2.0.0.</p>

<p><strong>After doing that it was just a case of following BigDiver&#8217;s &#8220;<a href="http://bigdiver.wordpress.com/2011/11/10/mamp-2-0-pear-and-phpunit-installation/">MAMP 2.0 Pear and PHPUnit Installation</a>&#8221; article</strong>. After hours of pain, I was so surprised when this actually worked! So if you are like me and going round in circles then I suggest you do the above.</p>

<p>Some other articles that have been useful are:</p><ul>
<li><a href="http://stackoverflow.com/questions/5510734/install-pear-on-mamp/5539281#5539281">Install PEAR on MAMP</a> - Stackoverflow</li>
<li><a href="http://stackoverflow.com/questions/8482265/mamp-pear-configuration-is-pointing-to-local-directories">MAMP PEAR configuration is pointing to local directories</a> - Stackoverflow</li>
</ul>

<p>I know following a tutorial is probably not the best approach, but like I say it&#8217;s the first time I&#8217;ve done it, so happy that I&#8217;ve found a solution. Now I&#8217;m on to getting PHPUnit working with Codeigniter 3.0.0 - and of course upgrading from MAMP 2.0.0 to 2.1.1&#8230;</p>

<p>&#8212;-</p>

<p>(PS - I had a look as to where you might be able to download a copy of 2.0.0 but couldn&#8217;t find anywhere - sorry! Let me know if you find a location and I&#8217;ll add it to the post gregor /// @ /// goldhawklabs.com)</p>]]></description> 
      <dc:date>2012-08-28T08:42:49+00:00</dc:date>
    </item>

    <item>
      <title>10 good reads from July</title>
      <link>http://www.goldhawklabs.com/65/10-good-reads-from-july-2012</link>
      <guid>http://www.goldhawklabs.com/65/10-good-reads-from-july-2012#When:11:40:37Z</guid>
      <description><![CDATA[<p>Here&#8217;s a handful of links I&#8217;ve shared, bookmarked, emailed, tweeted and added to Read It Later this month.</p>
<h3>Business</h3>
<ul>
<li><a href="http://saleschallenger.exbdblogs.com/files/2012/05/Sales-Eras.jpg">The eras of selling</a> From the CEB</li>
<li><a href="http://hbr.org/2012/07/the-end-of-solution-sales/ar/5">The End of Solution Sales</a> from Harvard Business Review</li>
<li><a href="http://www.cio.com/article/710716/5_Reasons_Social_CRM_Is_the_High_Ground_for_Revenue_Production">5 Reasons Social CRM Is the High Ground for Revenue Production</a> from the CIO</li>
</ul>
<h3>Tech</h3>
<ul>
<li><a href="http://techcrunch.com/2012/07/12/the-future-of-customer-experience-3-examples-of-virtual-assistants-biometrics-and-siri-style-services/">The Future Of Customer Experience – 3 Examples Of Virtual Assistants, Biometrics And Siri-Style Services</a> from TechCrunch</li>
<li><a href="http://www.problogger.net/archives/2011/09/03/52-types-of-blog-posts-that-are-proven-to-work/">52 Types Of Blog Posts That Are Proven To Work</a> from Copyblogger</li>
<li><a href="http://www.sitepoint.com/whats-the-best-date-format/">What&#8217;s the best date format?</a> from Sitepoint</li>
<li><a href="http://jquerymobile.com/blog/2012/07/12/jqm-1-1-1/">Announcing jQuery Mobile 1.1.1</a> from JQuery Mobile</li>
</ul>
<h3>People &amp; Icebergs</h3>
<ul>
<li><a href="http://www.inc.com/jeff-haden/the-only-definition-of-success-that-matters.html">The Only Definition of Success That Matters</a> from Inc.com</li>
<li><a href="http://www.deskmag.com/en/coworking-spaces-the-demand-for-private-offices">Coworking spaces &amp; the demand for private offices</a> from deskmag</li>
<li><a href="http://castroller.com/Podcasts/StuffYouShould/2915577">How Icebergs Work </a>from How Stuff Works</li>
</ul>
<p><br></p><p>Photo thanks to <a href="http://www.flickr.com/photos/kaet44/">kaet44</a></p>]]></description> 
      <dc:date>2012-07-27T11:40:37+00:00</dc:date>
    </item>

    <item>
      <title>Are you happy?</title>
      <link>http://www.goldhawklabs.com/65/are-you-happy1</link>
      <guid>http://www.goldhawklabs.com/65/are-you-happy1#When:09:09:37Z</guid>
      <description><![CDATA[<p>There&#8217;s a really good <a href="http://www.inc.com/jeff-haden/the-only-definition-of-success-that-matters.html">post in <a href="http://www.inc.com">http://www.inc.com</a></a> today on defining success that I thought was worth sharing. Quite simply the key message is; if you are happy, you are successful.</p>

<blockquote><p>How happy am I? How successful you are is based solely on the answer to that question.</p>
</blockquote>

<p>Although I&#8217;d be worried about that message getting into the wrong hands (state sponging waster anyone?), but the concept I do like. My only doubt is that some people - in my experience - are not built to be happy; they are built to be hopeful. So they yearn for more and once they have it they yearn for something else. Grass. Greener. And so on.</p>

<p>Would be interesting to read any studies that have proved that every human can indeed be happy.</p>]]></description> 
      <dc:date>2012-07-05T09:09:37+00:00</dc:date>
    </item>

    <item>
      <title>Facebook, data and design</title>
      <link>http://www.goldhawklabs.com/65/facebook-data-and-design</link>
      <guid>http://www.goldhawklabs.com/65/facebook-data-and-design#When:08:54:57Z</guid>
      <description><![CDATA[<p>This is an old video, but worth watching.</p>
<p><iframe width="640" height="480" src="http://www.youtube.com/embed/bKZiXAFeBeY" frameborder="0" allowfullscreen></iframe></p>]]></description> 
      <dc:date>2012-06-22T08:54:57+00:00</dc:date>
    </item>

    <item>
      <title>Please take Salesforce off your small business CRM list</title>
      <link>http://www.goldhawklabs.com/65/please-take-salesforce-off-your-small-business-crm-list</link>
      <guid>http://www.goldhawklabs.com/65/please-take-salesforce-off-your-small-business-crm-list#When:15:15:00Z</guid>
      <description><![CDATA[<p>I attended <a href="http://www.salesforce.com/socialenterprise/showcase/details.jsp">Salesforce&#8217;s Social Enterprise Conference</a> the other day with Kenton Ward of <a href="http://www.kentonfrank.com/">KentonFrank</a>. I say conference; nightclub might have been a more accurate description - although they have to be applauded for crowd-sourcing the music (even though I was waiting on the thumping techno to kick in).</p>

<p>This was a conference that me and Kenton both attended a couple of years back - and although less of a &#8220;showcase&#8221; it was still an impressive event. Back in 2010, I was doing a lot of CRM research for a client and Salesforce was on the list, which ultimately ended up in this <a href="http://www.goldhawklabs.com/65/post/the-truth-about-google-apps-salesforce-and-the-cloud-for-small-businesses/">small rant</a>. So I was interested to see how things had progressed and to see if indeed Salesforce is a good fit for a small company.</p>

<p>The answer is still no.</p>

<p>From the photo below, you might just be able to make out (through the smoke from the smoke machines…) the scale of the keynote; it was huge. But more importantly (and at times annoyingly), <a href="http://www.salesforce.com/company/leadership/executive-team/#hu">George Hu</a> (Salesforce&#8217;s COO), took us through the 7 components of the social enterprise. These are:</p>
<ul>
<li>Collaborate</li>
<li>Connect &amp; Sell</li>
<li>Service &amp; Engage</li>
<li>Automate &amp; Extend</li>
<li>Social marketing</li>
<li>Listen &amp; Analyse</li>
<li>Product &amp; Partners</li>
</ul>
<p><img src="http://www.goldhawklabs.com/images/uploads/salesforce_nightclub.JPG" alt="Salesforce conference" height="480" width="640"  /></p><p>Ok so what is on offer is very impressive. Salesforce has some great applications for each of these areas; some of which are very complex - and complex means costly (to manage, to support, to develop, and thus ultimately, to purchase as an end user). That means Salesforce needs bigger businesses to subscribe to their products based on the simple logic that larger businesses spend more on software. Salesforce is eating into that pie.</p>

<p>So if you are evaluating Salesforce for your small business, don&#8217;t bother, as they are not in it for you as a small business. Instead, go with a CRM provider that isn&#8217;t actively trying to take over the world or partner with companies like SAP (which Salesforce may well be trying to do given this <a href="http://blogs.salesforce.com/product/2011/10/sap-meet-forcecom-creating-a-social-enterprise-by-unlocking-the-sap-core.html">blog post</a> and the amount of times SAP was mentioned the other day). That&#8217;s not a swipe at Salesforce, it&#8217;s reality, but I do find it a bit embarrassing that Salesforce offer small business services like the contact manager - why?!</p>

<p>With that in mind, here&#8217;s a few examples of CRMs in the cloud that are worth evaluating instead of Salesforce:</p>

<ul>
<li><a href="http://www.futuresimple.com/base/">Base CRM</a></li>
<li><a href="http://capsulecrm.com/">CapsuleCRM</a></li>
<li><a href="http://highrisehq.com/">Highrise</a></li>
<li><a href="http://www.intouchcrm.co.uk/default.aspx">InTouchCRM</a></li>
<li><a href="http://www.nutshell.com/">Nutshell</a></li>
<li><a href="http://www.pipelinedeals.com/">Pipeline Deals</a></li>
<li><a href="http://www.pipedrive.com/en-US/">Pipedrive</a></li>
<li><a href="https://www.rule.fm/">Rule</a></li>
<li><a href="http://www.smartsheet.com/">Smartsheets</a></li>
<li><a href="http://www.worketc.com/">Worketc</a></li>
</ul>

<p>&#8212;-</p>

<p>Hope this helps!</p>

<p>PS - My disclaimer is that I&#8217;ve build an <a href="http://buildtracks.com/">add-on for Highrise</a>, but regardless, my opinion still stands! <a href="http://www.goldhawklabs.com/contact/">Get in touch</a> if you have any questions.</p>]]></description> 
      <dc:date>2012-05-24T15:15:00+00:00</dc:date>
    </item>

    <item>
      <title>Exporting deals from Tracks</title>
      <link>http://www.goldhawklabs.com/65/exporting-deals-from-tracks</link>
      <guid>http://www.goldhawklabs.com/65/exporting-deals-from-tracks#When:16:39:12Z</guid>
      <description><![CDATA[<p>We&#8217;ve just deployed an update to <a href="http://buildtracks.com">Tracks</a> that allows you to export deals to a CSV file. The CSV outputs the pipeline view that you create and includes:</p>
<ul>
<li>Deal status</li>
<li>Description</li>
<li>Next steps</li>
<li>Confidence levels</li>
<li>Closing month</li>
<li>When the deal was added</li>
<li>Value</li>
<li>If they deal has been invoiced</li>
<li>Deal type</li>
<li>Highrise deal URL and ID</li>
</ul>
<p>One of the main reasons for feature is to help people do further analysis on deals won and lost in the past in Excel. We&#8217;re bringing in charts and reporting features for deals and pipeline &#8220;Quick Stats&#8221;, but if you&#8217;ve imported all your deals into Tracks you can export these deals and do what you want with them in Excel.</p>
<p><img src="http://buildtracks.com/images/export.png" alt="export your highrise deals with Tracks to excel" /></p><h3>Not sure what Tracks is?</h3>
<p><a href="http://buildtracks.com">Tracks</a> is an add-on for <a href="http://www.highrisehq.com">Highrise CRM</a> that allows users businesses to do simple forecasting and pipeline management with their Highrise deals. Features include exporting to CSV, assigning confidence levels and closing dates to deals, syncing updates with <a href="http://www.highrisehq.com">Highrise</a> and much more. It is designed for mobiles, tablets and desktops.</p>
<p>For more on Tracks check out the <a href="http://www.goldhawklabs.com/65/channel/tracks">Tracks channel</a> or sign up <a href="http://buildtracks.com">free</a></p>]]></description> 
      <dc:date>2012-05-13T16:39:12+00:00</dc:date>
    </item>

    <item>
      <title>Highrise syncing, stats and interface changes</title>
      <link>http://www.goldhawklabs.com/65/highrise-syncing-stats-and-interface-changes</link>
      <guid>http://www.goldhawklabs.com/65/highrise-syncing-stats-and-interface-changes#When:17:30:00Z</guid>
      <description><![CDATA[<p>In version 0.3.0 of <a href="http://buildtracks.com/">Tracks</a> we pushed a new version that was written in <a href="http://codeigniter.com/">Codeigniter</a> (a PHP framework). That was a challenge, but went really well. Since then we have released 0.3.1 (19th April) and 0.3.2 (28th April).</p>
<p>Whilst most of the changes were technical (minor bugs, refactoring code, etc.), some changes we&#8217;ve made highlight some of the bigger changes we&#8217;re looking to make in the future.</p>
<h3>Tighter integration with Highrise</h3>
<p>So far in Tracks, the integration has really just been about importing Highrise deals into Tracks and managing them from there. However, we wanted to be able to allow users to push updates in Tracks to Highrise and pull in updates in Highrise to Tracks. Here&#8217;s a few changes we made:</p>
<h4>When updating a deal you can now update the Highrise deal (only values and status at the moment)</h4>
<p><img src="http://www.goldhawklabs.com/images/uploads/Tracks_Highrise_integration_3.png" alt="Updaing Highrise from Tracks" height="105" width="456"  /></p><h4>When you update a deal in Tracks a note is added to the Highrise deal</h4>
<p>This helps you keep up to date with changes in confidence or the month the deal is closing</p>
<p><img src="http://www.goldhawklabs.com/images/uploads/Tracks_Highrise_Integration_1.png" alt="Posting a note to HIghrise from Tracks" height="157" width="365"  /></p><h4>When looking at your pipeline deal you can syncing Highrise and Tracks deals</h4>
<p>As example of this is when you&#8217;ve updated a value in Highrise and it&#8217;ll update in Tracks</p>
<p><img src="http://www.goldhawklabs.com/images/uploads/Tracks_Highrise_integration_2.png" alt="Syncing deals with Highrise" height="33" width="219"  /></p><h3>Stats</h3>
<p>We&#8217;re really looking forward to introducing stats and charts to Tracks. For the beta users we&#8217;ve introduce a feature called &#8220;Quick Stats&#8221;. This breaks down pipeline values for different views that are set (e.g. for this month and next). You can also see probabilities and pipeline values for different confidence levels. Much more is coming!</p>
<p><img src="http://www.goldhawklabs.com/images/uploads/Tracks_Stats.png" alt="Quick Stats for Tracks deals" height="125" width="272"  /></p><h3>Subtle user features</h3>
<p>Whilst there are many interface challenges (and designing for mobile and tablets helps us restrict what we add), there are a number of subtle interface challenges planned.</p>
<p>One change introduced was to see when the deal was last updated. Showing when the last deal was updated outside of a day in red acts as a good prompt, but also makes it easier for users to look at the pipeline and see which deals need updated!</p>
<p><img src="http://www.goldhawklabs.com/images/uploads/Tracks_user_features.png" alt="Last updated feature in Tracks" height="123" width="305"  /></p><p>You can <a href="http://buildtracks.com/">sign up to Tracks</a> and make managing you Highrise pipeline and forecasting easer</p>]]></description> 
      <dc:date>2012-04-28T17:30:00+00:00</dc:date>
    </item>

    <item>
      <title>Tops tips to making social entrepreneurship work</title>
      <link>http://www.goldhawklabs.com/65/tops-tips-to-making-social-entrepreneurship-work</link>
      <guid>http://www.goldhawklabs.com/65/tops-tips-to-making-social-entrepreneurship-work#When:18:12:25Z</guid>
      <description><![CDATA[<p>I was listing to the <a href="http://etl.stanford.edu/">Stanford Thought Leader</a> talk from <a href="http://en.wikipedia.org/wiki/Jeff_Church">Jeff Church</a> on <a href="http://ecorner.stanford.edu/authorMaterialInfo.html?mid=2933">The Wave of Social Entrepreneurship</a> and his closing slide I thought was worth sharing (although the whole talk is worth a <a href="http://ecorner.stanford.edu/authorMaterialInfo.html?mid=2933">listen</a>).</p>

<p>Jeff talks about his lessons learned over his time building businesses and Nika Water. Here there are:</p><ul>
<li>Begin with the end in mind</li>
<li>Be transparent with your donations</li>
<li>Act boldly with your financial backing</li>
<li>Find like minded people</li>
<li>The product and value has to be good</li>
<li>Outsource as much as possible</li>
<li>Learn on someone else&#8217;s nickel</li>
<li>Dont&#8217; quit when that seems obvious</li>
<li>Find a partner or mentor who balances</li>
<li>Rule of 2&#8217;s - things take twice as long and twice as much to get done</li>
</ul>]]></description> 
      <dc:date>2012-04-19T18:12:25+00:00</dc:date>
    </item>

    <item>
      <title>Senior execs buy things that sell</title>
      <link>http://www.goldhawklabs.com/65/senior-execs-buy-things-that-sell</link>
      <guid>http://www.goldhawklabs.com/65/senior-execs-buy-things-that-sell#When:22:24:41Z</guid>
      <description><![CDATA[<p>I&#8217;ve written about social media consultants and agencies <a href="http://www.goldhawklabs.com/65/post/the-old-rules-still-apply">before</a>. Very few get it right. So when a colleague passed <a href="http://snarketing2dot0.com/about/">Ron Shevlin</a>&#8216;s book that has a pop at social media to me with a few postit notes on pages I should read it made me smile.</p>

<p>Ron makes some great points throughout the book and I liked how Ron has simply put what senior execs are looking for:</p><blockquote><p>Senior execs have problems and they love people who solve (or elimate) these problems for them. Be one of those people. Senior execs also love people who make money for the company. But you better be DAMN SURE your social media strategy is going to do that if that&#8217;s the path you&#8217;re going to go down.</p>
</blockquote>
<p>So if you&#8217;re selling social media services to senior execs, here&#8217;s a couple of tips from the book on how not to approach selling social media services (sound familiar?):</p><blockquote><p>Having blind faith in social media is fine, but it&#8217;s no basis on which to make smart business decisions. If your justification of social media is based on fear of extinction, good luck&#8230;it won&#8217;t persuade senior execs to invest.</p>
</blockquote>
<p>And a tip on how to pitch it:</p><blockquote><p>Yeah sure. Good for you. It&#8217;s nice that your mouthwash is environmentally sale and promotes healthy gums, but I&#8217;ve got bad breath. This is a &#8220;sales&#8221; meeting - you are selling you strategy to your prospects. Do what it takes to make the sale and nothing else.</p>
</blockquote>
<p>Quite straightforward really!<br />&#8212;-<br />
A Humorous Look at the World of Marketing in the Age of Social Media by Ron Shevlin is available via <a href="http://www.amazon.co.uk/Snarketing-2-0-ebook/dp/B005RZPX9G">Amazon</a></p>]]></description> 
      <dc:date>2012-03-17T22:24:41+00:00</dc:date>
    </item>

    <item>
      <title>Investment tip: Glass</title>
      <link>http://www.goldhawklabs.com/65/investment-tip-glass</link>
      <guid>http://www.goldhawklabs.com/65/investment-tip-glass#When:10:39:24Z</guid>
      <description><![CDATA[<p>Enlightening video from <a href="http://www.corning.com/">Corning</a>, a glass manufacturer:</p>
<p><iframe width="640" height="360" src="http://www.youtube.com/embed/X-GXO_urMow" frameborder="0" allowfullscreen></iframe></p>]]></description> 
      <dc:date>2012-03-06T10:39:24+00:00</dc:date>
    </item>

    <item>
      <title>Tracks is now live!</title>
      <link>http://www.goldhawklabs.com/65/tracks-is-now-live</link>
      <guid>http://www.goldhawklabs.com/65/tracks-is-now-live#When:20:30:30Z</guid>
      <description><![CDATA[<p>It&#8217;s been a while since we started working on Tracks, but I&#8217;m pleased to say that it is open to the public! Tracks is an add-on for <a href="http://www.highrisehq.com">Highrise CRM</a> that allows Highrise users to forecast and manage their deals pipeline with great ease than Highrise allows you to.</p>
<p>It has been released as an alpha version, but we are trying some other functionality out that is not available publicly - in terms of a viable product though, it&#8217;s there! Some key features include:</p>
<ul>
<li>Different sales types</li>
<li>Assigning confidence levels</li>
<li>Assigning an anticipated closing date</li>
<li>Deals search</li>
<li>Monthly billing</li>
<li>Multiple users</li>
<li>Import from Highrise</li>
<li>Push opportunities to Highrise</li>
<li>And more!</li>
</ul>
<p><a href="http://www.buildtracks.com/">Sign up</a> and test it out. You can also read the <a href="http://www.goldhawklabs.com/65/post/the-story-behind-tracks">story</a> on how it came about.</p>
<p><img src="http://www.goldhawklabs.com/images/uploads/trackslive.png" alt="Tracks is live" height="430" width="563"  /></p>]]></description> 
      <dc:date>2012-02-26T20:30:30+00:00</dc:date>
    </item>

    <item>
      <title>Sir Winston Churchill</title>
      <link>http://www.goldhawklabs.com/65/sir-winston-churchill</link>
      <guid>http://www.goldhawklabs.com/65/sir-winston-churchill#When:23:17:35Z</guid>
      <description><![CDATA[<blockquote><p>We make a living by what we get, we make a life by what we give</p>
</blockquote>
<p>- Sir Winston Churchill</p>]]></description> 
      <dc:date>2012-02-19T23:17:35+00:00</dc:date>
    </item>

    <item>
      <title>A great reminder of what it takes to be successful in business</title>
      <link>http://www.goldhawklabs.com/65/a-great-reminder-of-what-it-takes-to-be-successful-in-business</link>
      <guid>http://www.goldhawklabs.com/65/a-great-reminder-of-what-it-takes-to-be-successful-in-business#When:16:19:07Z</guid>
      <description><![CDATA[<p>I like hearing the stories behind how businesses where started and what drove the people to start them in the first place. If you dig deep enough you&#8217;ll normally find that what the founders ended up selling something different than what was first planned.</p>

<p>A recent story I heard was on the success of <a href="http://en.wikipedia.org/wiki/Lesney_Products#Non-Matchbox_Lesney_toys">Lesney Products Limited</a>, which was founded after World War II by Leslie Smith and Rodney Smith in 1947. The name obviously comes from &#8220;Les&#8221; and &#8220;ney&#8221;, but they added Products because they were unsure what they were going to make.</p>

<p>They started off as a die casting company making components for industry. From what I can tell they did alright, but over the Christmas period things were always a bit tougher because that&#8217;s when their customers did stock taking.</p>

<p>However, the company were asked to produce a casting for a toy gun and it was in 1948 that they decided to start producing die castings for toys over the Christmas period to help get over the lean time. This type of manufacturing led them to produce castings for toy cars and it was a couple of years later that they then started to focus solely on castings for toy cars.</p>

<p>Interestingly, the school in which the daughter of John Odell attended (the third founder), only allowed children to bring toys to school that could fit inside a matchbox. Lesney Products then went on to design toy cars that would only fit in matchboxes.</p>

<p>And <a href="http://www.matchbox.com/">Matchbox</a> cars was born.</p>

<p>The first car called a Matchbox car was produced and sold in 1953; a remarkable 6 years after the business was founded. The business went on to be a huge success and although has changed shape over the years is now owned by <a href="http://www.mattel.com/">Mattel, Inc</a>, almost 60 years later.</p>

<p>This is a great reminder of what it takes to be successful in business.</p>

<p><img src="http://www.goldhawklabs.com/images/uploads/matchboxcar.jpg" alt="Matchbox Car" height="408" width="489"  /></p>]]></description> 
      <dc:date>2012-02-16T16:19:07+00:00</dc:date>
    </item>

    <item>
      <title>Designs and messages from my recent wanderings</title>
      <link>http://www.goldhawklabs.com/65/designs-and-messages-from-my-recent-wanderings</link>
      <guid>http://www.goldhawklabs.com/65/designs-and-messages-from-my-recent-wanderings#When:19:28:13Z</guid>
      <description><![CDATA[<p>I&#8217;ve shared <a href="http://www.goldhawklabs.com/65/tag/welcome+messages">some designs and messages</a> before on the blog that I have stumbled upon along the way. I&#8217;ve not had much time to update the blog recently, but I&#8217;m always taking screenshots, so thought it was about time for me to share some of the recent designs and messages I&#8217;ve come across in the past couple of months. There&#8217;s also a howler from Google. Enjoy.</p>

<h3>Vidahost</h3>
<p>I love this diagram of my <a href="http://www.vidahost.co.uk">favourite host&#8217;s</a> cloud architecture.<br />
<img src="http://www.goldhawklabs.com/images/uploads/Vida_diagram.png" alt="Vidahost cloud diagram" height="662" width="732"  /></p><h3>Zipcar</h3>
<p>Pretty cool application checklist from <a href="http://www.zipcar.com">Zipcar</a>. I like the strong visual representation.<br />
<img src="http://www.goldhawklabs.com/images/uploads/Zipcar_Application.png" alt="Zipcar Application" height="791" width="733"  /></p><h3>Rule</h3>
<p>I&#8217;ve recently come across <a href="http://www.rule.fm">Rule&#8217;s</a> suite of products. The site is stunning.<br />
<img src="http://www.goldhawklabs.com/images/uploads/Rule.png" alt="Rule website" height="671" width="974"  /></p><h3>Asana</h3>
<p>I&#8217;ve been hearing good things about <a href="http://www.asana.com">Asana</a> (although don&#8217;t get why it&#8217;s free&#8230;), so I signed up for a trial run. Lovely clean welcome messages.<br />
<img src="http://www.goldhawklabs.com/images/uploads/Asana_1.png" alt="Asana welcome" height="456" width="679"  /><br />
<img src="http://www.goldhawklabs.com/images/uploads/Asana_2.png" alt="Asana video message" height="539" width="747"  /></p><h3>KISSinsights</h3>
<p>A nice little touch from <a href="http://www.kissinsights.com/">KISSinsights</a>. I wonder how much it helps conversation rates.<br />
<img src="http://www.goldhawklabs.com/images/uploads/KissInisghts.png" alt="KISSinsights message" height="206" width="304"  /></p><h3>Google</h3>
<p>Possibly the ugliest Google interface I have ever seen<br />
<img src="http://www.goldhawklabs.com/images/uploads/Google.png" alt="Google Interface" height="437" width="978"  /></p>

]]></description> 
      <dc:date>2012-01-25T19:28:13+00:00</dc:date>
    </item>

    <item>
      <title>#9 The story behind Tracks</title>
      <link>http://www.goldhawklabs.com/65/the-story-behind-tracks</link>
      <guid>http://www.goldhawklabs.com/65/the-story-behind-tracks#When:23:10:53Z</guid>
      <description><![CDATA[<p>Shortly, we&#8217;ll be releasing Tracks in the wild as an alpha release. Part of that is to write the content for the promotion site. I thought I&#8217;d start with an introduction into how it came about:</p>

<blockquote><p>Tracks was built for a consultancy called <a href="http://www.mapa-uk.com">Mapa</a>. Needing a bit more from <a href="http://www.highrisehq.com">Highrise CRM</a> and sick of using spreadsheets for monitoring sales, the guys at Mapa decided to glue different parts of their business together with a web application that could be accessed from anywhere. That&#8217;s where Goldhawk came in.</p>
</blockquote>

<blockquote><p>If you&#8217;re looking for a tool that extends the deals functionality of Highrise then you&#8217;ve come to the right place. Tracks plugs into Highrise to allow for easier management of opportunities, pipeline, forecasting and monthly billing. That&#8217;s how we use it now, allowing us to use Highrise for managing communication with clients.</p>
</blockquote>

<blockquote><p>Tracks also works on mobiles, tablets, laptops and your desktop making it easy to see your sales pipeline and monthly billing on the go.</p>
</blockquote>

<h3>What&#8217;s next?</h3>

<p>We&#8217;re building more features into Tracks, so stay tuned. Our goal is to make managing your business numbers easier, so if you want to sign up for the alpha version then <a href="http://www.buildtracks.com">fire away</a>.</p>]]></description> 
      <dc:date>2012-01-13T23:10:53+00:00</dc:date>
    </item>

    <item>
      <title>Don McCullin: Shaped by War</title>
      <link>http://www.goldhawklabs.com/65/don-mccullin-shaped-by-war</link>
      <guid>http://www.goldhawklabs.com/65/don-mccullin-shaped-by-war#When:23:09:58Z</guid>
      <description><![CDATA[<p>Roo and I went to the <a href="http://www.iwm.org.uk/exhibitions/shaped-by-war-photographs-by-don-mccullin">Don McCullin exhibition in the Imperial War Museum</a> on Sunday. <a href="http://en.wikipedia.org/wiki/Don_McCullin">Don</a> is a photographer who cover many of the wars since 1950s.</p>

<p>His photos tell the story as it was: horrific. There is also a video exhibition where he tells his own story. Both Roo and I were blown away, but I also loved one of his quotes from when he was starting off:</p>

<blockquote><p>I suddenly thought to myself, &#8216;For once in your life, you have a purpose. Use it. You could turn the minds of certain people and situations&#8217;&#8216;.</p>
</blockquote>

<p>The saddest thing is he feels he hasn&#8217;t changed anything with his photos. I disagree. You might too. </p>

<p>The exhibition is on from 7 October 2011 to 15 April 2012 at the <a href="http://www.iwm.org.uk/exhibitions/shaped-by-war-photographs-by-don-mccullin">Imperial War Museum</a>.<br />
<img src="http://www.goldhawklabs.com/images/uploads/donmccullin.JPG" alt="Dpn McCullin" height="960" width="1280"  /></p>]]></description> 
      <dc:date>2012-01-11T23:09:58+00:00</dc:date>
    </item>

    <item>
      <title>13 tips for better pipeline management (via @RSHF)</title>
      <link>http://www.goldhawklabs.com/65/13-tips-for-better-pipeline-management-via-rshf</link>
      <guid>http://www.goldhawklabs.com/65/13-tips-for-better-pipeline-management-via-rshf#When:16:26:32Z</guid>
      <description><![CDATA[<p>I found this article today on pipeline management whilst looking around at sales applications. I thought some of the &#8220;truths&#8221; were quite valid, particularly to professional service companies going into 2012. Ruppert (the author) lists &#8220;Thirteen Truths of Pipeline Management&#8221;; here&#8217;s the list of 13, but the <a href="http://www.finextra.com/community/fullblog.aspx?blogid=6086">full article</a> is worth reading too.</p>

<ol>
<li>A strong pipeline avoids the quarter end crunch</li>
<li>Pipeline velocity is more important than pipeline volume</li>
<li>Pipeline is a better predictor of the medium-to-long term health of your business than forecast</li>
<li>Having too many stages in the pipeline is counter-productive</li>
<li>You can’t measure pipeline using ‘weighted average’ or ‘expected revenue’</li>
<li>Marketing can’t fill the funnel for you</li>
<li>A healthy pipeline has the right balance of deals in terms of size</li>
<li>Pipeline sales stages have no value in and of themselves</li>
<li>You need an algorithmic measure for each stage of the pipeline to determine whether you have enough opportunities at each stage</li>
<li>Deals that are inactive should be cleared out of the sales funnel and sent back to marketing for rekindling</li>
<li>Customers (or prospects) are entering the sales cycle further down the funnel now</li>
<li>Unless you’ve established yourself as part of the ‘recommendation chain’, many of these opportunities  will never enter your funnel</li>
<li>Networking has always been the best way to fill the funnel</li>
</ol>

<p>&#8212;-</p>

<p>Are you a <a href="http://www.highrisehq.com">Highrise</a> user? Sign-up to <a href="http://www.buildtracks.com">Tracks</a> - a new forecasting add-on</p>]]></description> 
      <dc:date>2011-12-26T16:26:32+00:00</dc:date>
    </item>

    <item>
      <title>Get better at being lucky</title>
      <link>http://www.goldhawklabs.com/65/get-better-at-being-lucky</link>
      <guid>http://www.goldhawklabs.com/65/get-better-at-being-lucky#When:18:34:11Z</guid>
      <description><![CDATA[<p>I watched a <a href="http://www.channel4.com/programmes/derren-brown-the-experiments/4od#3256877">Derren Brown documentary</a> the other day on lucky charms. For those that don&#8217;t know Derren Brown, he&#8217;s like a modern day Houdini. I&#8217;m pretty sure that he&#8217;d have been burned to death centuries ago on the basis that he was a witch. </p>

<p>Thankfully the world has moved on and he makes good documentaries instead. </p>

<p>Anyway, the documentary got me thinking about success and building a business. Many people say you need luck. You certainly need many things to go in your favour, but I&#8217;m not so sure it&#8217;s luck. </p>

<p>If I look at successful people who are either close to me or that I follow they all seem to have similar traits. I&#8217;m convinced that it&#8217;s these traits that bring good things. Here&#8217;s my view on what some of these traits are:</p>

<h3>Say &#8220;yes I&#8217;ll go&#8221; more often than &#8220;no I can&#8217;t make it&#8221;</h3>

<p>It doesn&#8217;t matter if it&#8217;s social engagements, business networking or something else the more you get involved in things the better you&#8217;ll get at seizing opportunities. Other people play a role in your luck, so don&#8217;t hide yourself away.</p>

<h3>Get good at exaggerating</h3>

<p>I&#8217;m not the most articulate person, but it seems the &#8220;lucky people&#8221; are. They can tell a story well and add some twists to the tale. This has a positive effect on how people view you. IMO. </p>

<h3>Don&#8217;t dwell on the past</h3>

<p>I guess we can all get caught up in the past, but lucky people tend to move on quicker. They&#8217;ve a positive attitude to change because there may well be an opportunity in that change. One person in the Derron Brown show was so stuck in the past that it restricted not only his life, but his immediate family. </p>

<h3>Do things that make you feel uncomfortable</h3>

<p>I think we&#8217;ve all got about 4-5 things in life that we&#8217;re really comfortable doing. It&#8217;s like our natural instincts. But good things happen to those that try to break out of this. </p>

<h3>Be generous</h3>

<p>Do you believe in Karma? I don&#8217;t believe that there is a Karma spirit looking after each of us, but I believe if you&#8217;re positive and you do positive things to help people it will come back on you. It&#8217;s like my first point of saying yes more than no.</p>

<h3>Make decisions</h3>

<p>A bit like getting stuck in the past, the people I regard as lucky make decisions and roll with them. And in many cases that decision is the more riskier one. </p>

<p>&#8212;-</p>

<p>Of course, I&#8217;m sure there are other traits that make a person lucky, but if you haven&#8217;t seen the documentary then I recommend you do. It is worth watching. Although I appreciate one-off bits of luck like a lottery win, luck on an ongoing basis only comes through some of the traits above.</p>

<p>I&#8217;m working on getting better at some of them!</p>]]></description> 
      <dc:date>2011-12-11T18:34:11+00:00</dc:date>
    </item>

    <item>
      <title>Why no&#45;one else&#8217;s opinion matters</title>
      <link>http://www.goldhawklabs.com/65/why-no-one-elses-opinion-matters</link>
      <guid>http://www.goldhawklabs.com/65/why-no-one-elses-opinion-matters#When:22:55:20Z</guid>
      <description><![CDATA[<p>I read this <a href="https://www247.americanexpress.com/MoblOpenWeb/articles.do?TargetID=steve-jobs-style-everything-we-know-about-managing-is-wrong&amp;TopicID=managing&amp;showOnOne=true">article</a> on the way home from a friend&#8217;s house tonight. We all know that S. Jobs was an inspiration, so I&#8217;ve no intentions of adding to what&#8217;s already been said. But given I&#8217;ve a very small business these points from the article on why Jobs did management a different way made me think. Here they are:</p>

<h3>1. Don’t confuse consensus with collaboration</h3>
<blockquote><p>You need a clear vision, not agreement. Push ahead, but foster collaboration to make that vision a reality and turn it into a profitable product or service.</p>
</blockquote>
<h3>2. The ends always justify the means</h3>
<blockquote><p>Push as hard as you can to get what  your company needs to best serve its customers.</p>
</blockquote>
<h3>3. Leadership vs. management</h3>
<blockquote><p>Build a strong management team that is complementary to your strengths and style.</p>
</blockquote>
<h3>4. Focus, focus, focus</h3>
<blockquote><p>Most small businesses want to be everything to everybody. They don’t want to miss any revenue opportunities. This is just the opposite of what Jobs did. Do a few things well</p>
</blockquote>
<h3>5. Commitment to the long haul</h3>
<blockquote><p>Overnight success sometimes takes seven to 10 years.</p>
</blockquote>
<p>The article was posted by <a href="http://barrymoltz.com/">Barry Moltz</a> on the American Express Small Business forum. It&#8217;s worth a <a href="https://www247.americanexpress.com/MoblOpenWeb/articles.do?TargetID=steve-jobs-style-everything-we-know-about-managing-is-wrong&amp;TopicID=managing&amp;showOnOne=true">quick read</a>. My favourite point is no.5.</p>]]></description> 
      <dc:date>2011-11-28T22:55:20+00:00</dc:date>
    </item>

    <item>
      <title>#8 Alpha splash page up and running</title>
      <link>http://www.goldhawklabs.com/65/8-alpha-splash-page-up-and-running</link>
      <guid>http://www.goldhawklabs.com/65/8-alpha-splash-page-up-and-running#When:22:46:02Z</guid>
      <description><![CDATA[<p>January has been the time that I&#8217;ve wanted to get the first version of Tracks available online. There is still much to do given the time I have, but I&#8217;m confident I&#8217;ll get there. One key motivation will be the launch of the signup page, which I got up an running this week. If you&#8217;re a Highrise user and need simple forecasting and pipeline management features then head over the the <a href="http://www.buildtracks.com">Tracks page and sign up</a>.<br />
<img src="http://www.goldhawklabs.com/images/uploads/tracks_splash_page.png" alt="Tracks - forecasting for Highrise" height="599" width="559"  /></p>]]></description> 
      <dc:date>2011-11-18T22:46:02+00:00</dc:date>
    </item>

    <item>
      <title>Why Vidahost might just be a solution</title>
      <link>http://www.goldhawklabs.com/65/why-vidahost-might-just-be-a-solution</link>
      <guid>http://www.goldhawklabs.com/65/why-vidahost-might-just-be-a-solution#When:16:47:45Z</guid>
      <description><![CDATA[<p>Hosting is a messy market; it&#8217;s a struggle to find good hosts IMO.</p>

<p>But they just don&#8217;t seem to do themselves any favours with aggressive sales approach they take - when was the last time you went to a web host site and didn&#8217;t feel that you were being pushed into something? Text chat boxes, pop-up adverts, ridiculous promises, etc.</p>

<p>It even happens at the top end of the market - speak to a <a href="http://www.rackspace.co.uk">Rackspace</a> sales advisor and you&#8217;ll be on an enterprise license with fully replicated servers and a 24 x 7 SLA before you know it.</p>

<p>There&#8217;s definitely space in the market for more transparency and more of a human approach, but recently I&#8217;ve come across <a href="http://www.vidahost.co.uk">Vidahost</a>, a web host that just seem that bit more open and honest. Of course, technology, prices, location and security are all key factors in choosing a host, but for UK companies anyway (of which there are very few that don&#8217;t flag up any concerns) Vidahost are a very good option.</p>

<p>I&#8217;ve just started using them - after having used and researched a number of other US and UK hosts - and all is well. Ultimately, if you base your decision on the factors above, Vidahost are competitive, but here&#8217;s a few reasons that edged me to give them a try.</p>

<h3>They are available on social media</h3>
<p><img href="http://www.goldhawklabs.com/images/uploads/vida_social.png" src="http://www.goldhawklabs.com/images/uploads/vida_social.png" alt="Vidahost Social" height="36" width="238"  /></p><h3>And they are responsive</h3>
<p><img href="http://www.goldhawklabs.com/images/uploads/vida_twitter.png" src="http://www.goldhawklabs.com/images/uploads/vida_twitter.png" alt="Vidahost Twitter" height="98" width="522"  /></p><h3>They publish their performance. And it&#8217;s good.</h3>
<p><img href="http://www.goldhawklabs.com/images/uploads/vida_stats.png" src="http://www.goldhawklabs.com/images/uploads/vida_stats.png" alt="Vidahost Stats" height="38" width="606"  /></p><h3>They are pleasant to deal with</h3>
<p><img href="http://www.goldhawklabs.com/images/uploads/vida_email.png" src="http://www.goldhawklabs.com/images/uploads/vida_email.png" alt="Vidahost Email" height="157" width="682"  /></p><h3>They are straightforward</h3>
<p><img href="http://www.goldhawklabs.com/images/uploads/vida_phone.png" src="http://www.goldhawklabs.com/images/uploads/vida_phone.png" alt="Vidahost Phone" height="48" width="277"  /></p><h3>They don&#8217;t have a huge amount of crappy stock photography on their site. And when they do it looks OK i.e not cheap.</h3>
<p><img href="http://www.goldhawklabs.com/images/uploads/vida_site.png" src="http://www.goldhawklabs.com/images/uploads/vida_site.png" alt="Vidahost Site" height="632" width="1049"  /></p><h3>And they have an office dog</h3>
<p><img href="http://www.goldhawklabs.com/images/uploads/vida_dog.png" src="http://www.goldhawklabs.com/images/uploads/vida_dog.png" alt="Vidahost Dog" height="432" width="402"  /><br />
All of this just made me think they were an honest and transparent bunch of people, which is more than I can say for many other web hosts (in the UK and US).</p>

<p>Well done guys!</p>

<p>I&#8217;m not affiliated with them btw.</p>]]></description> 
      <dc:date>2011-11-07T16:47:45+00:00</dc:date>
    </item>

    <item>
      <title>#7 Lovely messages</title>
      <link>http://www.goldhawklabs.com/65/7-lovely-messages</link>
      <guid>http://www.goldhawklabs.com/65/7-lovely-messages#When:19:29:03Z</guid>
      <description><![CDATA[<p>I love the way copy and messages have changed online over the last few years. A lot more businesses take an informal approach. Take <a href="http://mailchimp.com/">MailChimp</a> as an example; the monkey that hangs around has always something funny or humorous to say. It&#8217;s a nice touch. Go back 10 years and there is very little of this in traditional business software. It&#8217;s a trend I hope will continue.</p>

<p>As part of Tracks I wanted to make the alerts and messages very informal. I&#8217;ve used the same theme so far, and so far so good. Below are two messages I&#8217;ve added based on new features I&#8217;ve ben working on this week. Got to love it! Not sure if I&#8217;ll need to pay a license for the quotes yet though&#8230;</p>

<p>On importing deals:<br />
<img src="http://www.goldhawklabs.com/images/uploads/btf1.png" alt="Back to the future quote" height="219" width="953"  /></p>

<p>On registering:<br />
<img src="http://www.goldhawklabs.com/images/uploads/btf2.png" alt="Back to the future quote" height="285" width="525"  /></p>

<h2>Related posts</h2>
<li><a href="http://www.goldhawklabs.com/channel/tracks">Other posts from the Tracks channel</a><p></li></p>]]></description> 
      <dc:date>2011-11-04T19:29:03+00:00</dc:date>
    </item>

    </channel>
</rss>