<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>

<channel>
	<title>AndrewNadeau.com</title>
	<atom:link href="http://andrewnadeau.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://andrewnadeau.com</link>
	<description>Blog on Online Marketing and Entrepreneurship</description>
	<pubDate>Sat, 17 Mar 2012 14:43:12 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How To Put a Label Inside of an HTML Text Box</title>
		<link>http://andrewnadeau.com/how-to-put-a-label-inside-of-an-html-textbox/</link>
		<comments>http://andrewnadeau.com/how-to-put-a-label-inside-of-an-html-textbox/#comments</comments>
		<pubDate>Tue, 06 Mar 2012 03:17:17 +0000</pubDate>
		<dc:creator>Andrew Nadeau</dc:creator>
		
		<category><![CDATA[How-to]]></category>

		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://andrewnadeau.com/?p=313</guid>
		<description><![CDATA[In this post I am going to show you a relatively basic trick in the world of web development and web design, but has a big impact on the design and usability of your web forms. This post will explain how to put the label inside of an HTML text box and then have it [...]]]></description>
			<content:encoded><![CDATA[<p>In this post I am going to show you a relatively basic trick in the world of web development and web design, but has a big impact on the design and usability of your web forms. This post will explain how to put the label inside of an HTML text box and then have it appear and reappear based on if the user click inside or outside of the text box.</p>
<div class="header">EXAMPLE OF HOW IT WORKS</div>
<p>Here is a text box with this code implemented. Notice that when you click on the text box the &#8220;Click Here to Test&#8221; text goes away and you can type. When you then click outside of the text box the &#8220;Click Here to Test&#8221; text then reappears.</p>
<input type="text" value="Click Here to Test" onclick="if(this.value=='Click Here to Test'){this.value=''}" onblur="if(this.value==''){this.value='Click Here to Test'}" style="width: 400px; padding: 8px 20px; font-size: 18px; color: #666666; font-family: arial; background: #f2f2f2; border: 1px solid #aeaeae"></p>
<div class="header">THE CODE TO IMPLEMENT</div>
<p>From the following code you can probably pretty easily see how this is implemented. The &#8220;onclick&#8221; and &#8220;onblur&#8221; attributes are the pieces of code that you will want to edit.</p>
<p><textarea cols="50" rows="5">&lt;input type=&#34;text&#34; value=&#34;Search&#34; onclick=&#34;if(this.value==&#39;Search&#39;){this.value=&#39;&#39;}&#34; onblur=&#34;if(this.value==&#39;&#39;){this.value=&#39;Search&#39;}&#34;&gt;</textarea></p>
]]></content:encoded>
			<wfw:commentRss>http://andrewnadeau.com/how-to-put-a-label-inside-of-an-html-textbox/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to record a side-by-side Skype conversation</title>
		<link>http://andrewnadeau.com/how-to-record-a-side-by-side-skype-conversation/</link>
		<comments>http://andrewnadeau.com/how-to-record-a-side-by-side-skype-conversation/#comments</comments>
		<pubDate>Mon, 05 Mar 2012 06:08:48 +0000</pubDate>
		<dc:creator>Andrew Nadeau</dc:creator>
		
		<category><![CDATA[How-to]]></category>

		<category><![CDATA[Tools]]></category>

		<category><![CDATA[Video]]></category>

		<category><![CDATA[Ecamm Call Recorder]]></category>

		<category><![CDATA[ScreenFlow]]></category>

		<category><![CDATA[Skype]]></category>

		<category><![CDATA[VODBurner]]></category>

		<guid isPermaLink="false">http://andrewnadeau.com/?p=308</guid>
		<description><![CDATA[For a recent project I am working on, I needed to figure out how to 1.) Record a Skype conversation, and 2.) Edit and produce the Skype conversation as a video so that the two pictures were side-by-side. Here is a summary of my research and a step-by-step breakdown of how to accomplish this&#8230;
IF YOU [...]]]></description>
			<content:encoded><![CDATA[<p>For a recent project I am working on, I needed to figure out how to 1.) Record a Skype conversation, and 2.) Edit and produce the Skype conversation as a video so that the two pictures were side-by-side. Here is a summary of my research and a step-by-step breakdown of how to accomplish this&#8230;</p>
<div class="header">IF YOU ARE USING WINDOWS</div>
<p>Download <a href="http://www.vodburner.com" target="_blank">VodBurner</a>. VodBurner is a Skype plugin that will allow you to record the Skype conversation and then edit it right in the program as well. VodBurner will allow you to create a side-by-side recording of the conversation and when you go to produce the video it even has a checkbox that will allow you to export just the audio separately if you want to make it available in addition to the video on your website.</p>
<div class="header">IF YOU ARE USING A MAC</div>
<p>Download <a href="http://www.ecamm.com/mac/callrecorder/">Ecamm&#8217;s Call Recorder</a> and <a href="http://www.telestream.net/screen-flow/">ScreenFlow</a>. Ecamm is obviously used to record your call and ScreenFlow is used to edit it. Using these two pieces of software will allow you to produce a side-by-side recording.</p>
<p>Hopefully you find this post helpful and if you have any other software or ways to improve this process, please post it as a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewnadeau.com/how-to-record-a-side-by-side-skype-conversation/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Disable Tracking Image in Salesforce Emails</title>
		<link>http://andrewnadeau.com/how-to-disable-tracking-image-in-salesforce-emails/</link>
		<comments>http://andrewnadeau.com/how-to-disable-tracking-image-in-salesforce-emails/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 03:49:02 +0000</pubDate>
		<dc:creator>Andrew Nadeau</dc:creator>
		
		<category><![CDATA[Email Marketing]]></category>

		<category><![CDATA[How-to]]></category>

		<category><![CDATA[Lead Nurturing]]></category>

		<category><![CDATA[Salesforce]]></category>

		<guid isPermaLink="false">http://andrewnadeau.com/?p=294</guid>
		<description><![CDATA[When you send an email from Salesforce a 1&#215;1 pixel image is inserted into the email. This image is used for tracking purposes. If the image that is hosted on Salesforce&#8217;s server loads, then Salesforce knows the email has been opened and will report it as such. In theory this is great, however it does [...]]]></description>
			<content:encoded><![CDATA[<p>When you send an email from Salesforce a 1&#215;1 pixel image is inserted into the email. This image is used for tracking purposes. If the image that is hosted on Salesforce&#8217;s server loads, then Salesforce knows the email has been opened and will report it as such. In theory this is great, however it does have its drawbacks.</p>
<div class="header">Drawback #1: Email recipients get alerted to &#8220;Download Images&#8221;</div>
<p>Many email clients (specifically Microsoft Outlook and Google) are setup by default to not download any images in an email. Instead they prompt the user to &#8220;download images&#8221;. If you are sending something like a newsletter where images are expected, this is probably okay. However, if you are sending what you think is a plain text email and the recipient gets this prompt - it will probably raise some red flags. Which leads to Drawback #2&#8230;</p>
<div class="header">Drawback #2: Text emails with &#8220;Download Images&#8221; alert are suspicious</div>
<p>Personally, anytime I get what appears to be a text email and the email asks me to download images I know it was a mass email that is being tracked. Immediately you&#8217;ve lost that personal connection with the recipient and if you are in sales that is a bad thing.</p>
<div class="header">So, how do you disable the tracking image in Salesforce emails?</div>
<p>It is actually very simple. Just follow the steps below&#8230;</p>
<p>1.) Go to &#8230; Your Name | Setup | Customize | Activities | Activity Settings.<br />
2.) From there uncheck the checkbox for &#8216;Enable Email Tracking&#8217;</p>
<p>That&#8217;s it - you&#8217;re done!</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewnadeau.com/how-to-disable-tracking-image-in-salesforce-emails/feed/</wfw:commentRss>
		</item>
		<item>
		<title>[INFOGRAPHIC] How Google Slowly Killed the Long Tail Keyword</title>
		<link>http://andrewnadeau.com/infographic-how-google-slowly-killed-the-long-tail-keywords/</link>
		<comments>http://andrewnadeau.com/infographic-how-google-slowly-killed-the-long-tail-keywords/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 03:46:56 +0000</pubDate>
		<dc:creator>Andrew Nadeau</dc:creator>
		
		<category><![CDATA[Online Marketing]]></category>

		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://andrewnadeau.com/?p=283</guid>
		<description><![CDATA[It isn&#8217;t too often that I see an infographic that is spot on, but this infographic on how Google diminished the effectiveness of long-tail keywords hits the nail on the head. Having made a very nice income in the past focusing exclusively on organic traffic from Google, I saw first hand how each move by [...]]]></description>
			<content:encoded><![CDATA[<p>It isn&#8217;t too often that I see an infographic that is spot on, but this infographic on how Google diminished the effectiveness of long-tail keywords hits the nail on the head. Having made a very nice income in the past focusing exclusively on organic traffic from Google, I saw first hand how each move by Google slowly killed the traffic from long-tail keywords.</p>
<p>The credit for this infographic goes to <a href="http://www.seobook.com">SEOBook</a> for a job well done.</p>
<p><img src="/wp-content/uploads/2011/12/google-killed-the-longtail.png" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://andrewnadeau.com/infographic-how-google-slowly-killed-the-long-tail-keywords/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cookies: Every Online Marketer&#8217;s Guilty Pleasure</title>
		<link>http://andrewnadeau.com/cookies-every-online-marketers-guilty-pleasure/</link>
		<comments>http://andrewnadeau.com/cookies-every-online-marketers-guilty-pleasure/#comments</comments>
		<pubDate>Sat, 14 May 2011 23:44:47 +0000</pubDate>
		<dc:creator>Andrew Nadeau</dc:creator>
		
		<category><![CDATA[Analytics]]></category>

		<category><![CDATA[Online Marketing]]></category>

		<category><![CDATA[Webinars]]></category>

		<category><![CDATA[browser cookie]]></category>

		<category><![CDATA[cookies in online marketing]]></category>

		<category><![CDATA[HTTP cookie]]></category>

		<category><![CDATA[web cookie]]></category>

		<guid isPermaLink="false">http://andrewnadeau.com/?p=217</guid>
		<description><![CDATA[Every online marketer should understand cookies. No, I&#8217;m not talking about the kind that come out of the oven warm and gooey and go great with milk. I&#8217;m talking about the web cookie, also known as a browser cookie or HTTP cookie.
WHAT IS A COOKIE?
A cookie is a piece of text stored on a user&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Every online marketer should understand cookies. No, I&#8217;m not talking about the kind that come out of the oven warm and gooey and go great with milk. I&#8217;m talking about the web cookie, also known as a browser cookie or HTTP cookie.</p>
<div class="header">WHAT IS A COOKIE?</div>
<p><img style="float: right; padding: 0px 0px 0px 20px;" src="http://andrewnadeau.com/wp-content/uploads/2011/05/cookie-monster.jpg" alt="" width="150" />A cookie is a piece of text stored on a user&#8217;s computer by their web browser. A cookie can be used for authentication, storing site preferences, shopping cart contents, the identifier for a server-based session, or anything else that can be accomplished through storing text data.</p>
<div class="header">WHAT DO COOKIES HAVE TO DO WITH ONLINE MARKETING?</div>
<p>Good question - while cookies are mainly used in the world of web development and programming, they can be an extremely powerful tool for an online marketer. As an online marketer we mainly have two jobs: <em>generate</em> leads and <em>qualify</em> leads so that sales can follow-up on the &#8220;hot&#8221; leads first while allowing marketing to nurture the not-so-hot leads further. Cookies can&#8217;t help with generating leads, but they certainly can help with qualifying leads by helping to streamline the process of gathering more information on your prospects.</p>
<div class="header">DO YOU HAVE AN EXAMPLE OF HOW COOKIES CAN BE USED IN ONLINE MARKETING?</div>
<p>Absolutely. Let me walk you through a recent example&#8230;</p>
<p>At the company I work at we do a lot of online webinars through either GoToMeeting or WebEx. As you probably know, when you create a webinar in either of these services they automatically create a registration page for you that is <em>hosted on their servers</em>. Typically, you will just promote the registration page that is hosted on either gotomeeting.com or webex.com, and call it a day. This is actually a HUGE mistake. Here&#8217;s why&#8230;</p>
<p>By sending all your traffic to GoToMeeting or WebEx, you miss a PRIME opportunity to drop a cookie on your prospects computer. You should be creating a registration form on YOUR website that when a user registers, it drops a cookie. Why is it important to drop a cookie? Because as soon as you can collect a user&#8217;s information (through the registration page) and drop a cookie on their computer, you will be able to track things like when a prospects comes back to your website, what pages on your website a prospect viewed, how many pages on your website a prospect viewed, etc. This type of information is hugely important for qualifying a prospect.</p>
<div class="header">THAT IS IT? WHAT ELSE CAN YOU DO WITH COOKIES?</div>
<p>Here is another example of a creative way to use cookies to qualify prospects&#8230; Above I talked about how we now have everyone register for webinars through our own website in order to drop a cookie on their machine. We decided to take this idea one step further. When a prospect registers for a webinar, we now send them to a short survey that is positioned in a way that asks for what they would like to learn on the webinar. The key to this survey is that it appears to be anonymous to the prospect, but in reality we are able to match up the prospects survey responses and map it back to their lead information in Salesforce.</p>
<p>This short survey typically asks two questions that are optional:</p>
<ol>
<li>What would you like to learn from the webinar?</li>
<li>What specific questions would you like to see addressed on the webinar?</li>
</ol>
<p>We then will put 3-4 additional questions that are required and help us qualify the lead. Here are a couple of examples, but not the questions that we ask:</p>
<ol>
<li>How many employees are at your organization?</li>
<li>Do you have budget for [enter your product/service]?</li>
<li>What other products/services are you currently evaluating?</li>
<li>Etc.</li>
</ol>
<p>Our last webinar had over 350 people register, and using this method we were able to capture ALL the lead qualifying information we needed on <strong>71.2% of the registrants</strong>. This allowed our sales team to immediately follow-up on the leads that were PERFECT fits for our product and had budgeted projects. Also, by knowing exactly what the prospected wanted to learn and what questions they had we were able to arm our sales team with valuable information that allowed them to tailor their conversations and address the prospect&#8217;s concerns/pain-points.</p>
<div class="header">DO YOU USE A PRODUCT/SERVICE TO ACCOMPLISH THIS?</div>
<p>Yes we do. We currently use HubSpot with Salesforce integration. All the lead capture and webinar registration pages on our website are HubSpot web forms. As soon as someone lands on our website, HubSpot will drop a cookie. This cookie will then collect information while that person is browsing our website. As soon the visitor completes a HubSpot web form, we then become aware of that person&#8217;s identity and all their contact information is synced up to Salesforce where the sales team can then get access to it. Through HubSpot, the sales team is also aware of which pages the visitor has viewed, how many pages they have viewed, and when the visitor returns to the website.</p>
<p>Was this post clear? I&#8217;d love to get your feedback&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewnadeau.com/cookies-every-online-marketers-guilty-pleasure/feed/</wfw:commentRss>
		</item>
		<item>
		<title>SyllabusCentral passes 14,000 members: Lessons Learned</title>
		<link>http://andrewnadeau.com/syllabuscentral-passes-14000-members-lessons-learned/</link>
		<comments>http://andrewnadeau.com/syllabuscentral-passes-14000-members-lessons-learned/#comments</comments>
		<pubDate>Sat, 14 May 2011 18:42:41 +0000</pubDate>
		<dc:creator>Andrew Nadeau</dc:creator>
		
		<category><![CDATA[Entrepreneurship]]></category>

		<category><![CDATA[SEO]]></category>

		<category><![CDATA[startup lessons learned]]></category>

		<category><![CDATA[SyllabusCentral]]></category>

		<guid isPermaLink="false">http://andrewnadeau.com/?p=197</guid>
		<description><![CDATA[Back in July of 2008 I co-founded a website called SyllabusCentral. The idea behind SyllabusCentral was simple - create a platform that makes it super easy for professors and students to post, update, and view syllabi online.
SyllabusCentral currently has over 13,200 members and is adding about 20-30 new members a day. The site generates about [...]]]></description>
			<content:encoded><![CDATA[<p>Back in July of 2008 I co-founded a website called SyllabusCentral. The idea behind SyllabusCentral was simple - create a platform that makes it super easy for professors and students to post, update, and view syllabi online.</p>
<p><img src="http://syllabuscentral.com/images/innerbox1.gif" style="float: right; padding: 0px 0px 0px 20px;" />SyllabusCentral currently has over 13,200 members and is adding about 20-30 new members a day. The site generates about 8,000 unique visitors per month and about 94% of those visitors come directly from search engines. The average visitor spends a little over a minute on the SyllabusCentral and will view a little over 3.5 pages.</p>
<div class="header">THINGS WE DID RIGHT</div>
<p>1.) Outsourced document hosting to Scribd</p>
<p>When you are building a start-up it is important to understand that you can&#8217;t do everything. When you try to do too much, quality will suffer and you will have done a lot of things just okay. One of the cool things about creating a start-up today is that you don&#8217;t have to build every new technology in-house. One of the key decisions we made with SyllabusCentral was to outsource all our document hosting (in our case syllabi hosting) to a third-party service called Scribd. Through Scribd&#8217;s API, we were able to use their document hosting and viewing service to do things like convert a Microsoft Word document into an embeddable format that was easy to work with and provided our users a great user experience. If we had tried to develop this technology in-house, it would have taken us months and the end product wouldn&#8217;t have been nearly as good as Scribd&#8217;s solution.</p>
<p>2.) Focused on SEO</p>
<p>A decision we made early when designing the architecture for SyllabusCentral was to have a maniacal focus on search engine optimization (SEO). We knew that we had a significant opportunity to drive a lot of free search engine traffic though organic rankings since long-tail keywords like professor names, class names, and school names with the word &#8220;syllabus&#8221; appended to them had little competition and lots of searches.</p>
<p>3.) Made it super easy to upload syllabi</p>
<p>If you can make your website easy-to-use, you dramatically increase your odds of success. This is one of the things we did really well. One example of this is using Scribd as our document hosting and embedding solution. Traditionally, it was very difficult to view Microsoft Word documents on the Web. You either had to download the document to view a document, and even then sometimes you wouldn&#8217;t have the right version of Microsoft Word or the user uploading the document would have had to convert it into a PDF, which for the average internet user isn&#8217;t an easy task. With SyllabusCentral, all our users had to do was browse any file on their desktop and they would then be able to view the syllabus right in their browser regardless of the file type. Back in 2008 there were very few websites using this technology, so it was a competitive advantage for us.</p>
<p>4.) Made it super easy to request a syllabus from a professor</p>
<p>The other thing we did that was innovative was to make it super easy to request a syllabus if a syllabus wasn&#8217;t already on the website. All a visitor had to do was enter the professor&#8217;s email address and the class that they would like to get the syllabus for. We&#8217;d then send the professor an email that came from SyllabusCentral notifying the professor that one of their students has requested that they upload a syllabus to the site. All the professor would then have to do is click a link, browse the syllabus on their computer, and click &#8220;upload&#8221;. The entire process from start-to-finish would take no more than 30 seconds.</p>
<p>5.) We served a need in the marketplace</p>
<p>Finally, SyllabusCentral was serving a real need in the marketplace. At the time, the idea for SyllabusCentral was solving my own need. As a college student at the time, I thought to myself that wouldn&#8217;t it be nice to be able to view the course syllabus while picking classes and have it so that you could order your textbooks online in advance of the first day of classes. When I searched online, I found that a similar site did not exist, so I decided to fill this void in the market. Today, 94% of our traffic is from student searching for syllabi online.</p>
<div class="header">LESSONS LEARNED</div>
<p>1.) Chicken or the egg</p>
<p>In order to attract visitors to SyllabusCentral, we needed an extensive library of syllabi. But in order to build an extensive library with thousands of syllabi, we needed thousands of visitors to upload syllabi. This was the problem of the chicken or the egg. How do other companies solve this problem? Usually with money, which unfortunately for us was something that we didn&#8217;t have access to at them time. Had we had some money to spend on hiring cheap labor to find and upload syllabi all day, we probably would have been able to reach a tipping point where we had enough syllabi on the site to make it extremely useful. Hitting this critical mass is crucial for any start-up.</p>
<p>2.) Monetization</p>
<p>Monetization is a big buzz (or taboo) word in the start-up world. While SyllabusCentral had a solid plan to monetize the site, it required a large and active community to execute. The eventual model was to have students viewing syllabi weeks in advance of classes starting. If we could establish this behavior, then we&#8217;d be able to automatically scan the syllabi for an ISBN# of the textbook for that class and offer the student a price comparison of the textbook of that class. The student would then be able to order the textbook, have it arrive in time for classes, and save a couple hundred dollars per semester in the process. Sounds good, right? If only SyllabusCentral reached the critical mass to make this a viable business model&#8230;</p>
<p>3.) Think big, but start small</p>
<p>When we started SyllabusCentral, we had high expectations for the site. Right away we tried to conquer the world. Looking back, this was probably a mistake. A more strategic approach would have been to smart small, prove out the business model, and then slowly expand. Had we focused on 3-5 schools from the start and focused on really making those schools successful by establishing a large library of syllabi and a strong user base, we would have then felt more comfortable investing more money into the business and expanding to additional schools.</p>
<p>4.) Have a solid marketing plan in mind</p>
<p>Promoting a new idea is never easy. Right away we realized it was going to be very difficult to acquire new members at a low cost. We knew we&#8217;d have to rely on word-of-mouth and organic search engine traffic in order to really grow the business. While organic search engine traffic has been great, we never reached the critical mass of syllabi on the site in order to really get the word-of-mouth engine going. If you are starting a business, make sure you have a solid plan to acquire members at a low cost. If you have a capital intensive marketing model, you will need to have a high lifetime value of a member in order to justify every marketing dollar you spend.</p>
<p>5.) Cyclical businesses can be difficult</p>
<p>One of the things that made it really difficult to identify trends and adapt the site accordingly was the fact that students typically only register for classes two times a year usually around November and then again in April. This made things difficult because if we wanted to test a new idea we&#8217;d basically have one shot to get it right, and if we got it wrong, we&#8217;d have to wait another 4-6 months to test it again. While this type of business is nice in that it is very exciting two times a year, it can be frustrating in that you don&#8217;t get that slow steady growth with continuous tweaking and improvement.</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewnadeau.com/syllabuscentral-passes-14000-members-lessons-learned/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to do usability testing of your website for cheap</title>
		<link>http://andrewnadeau.com/how-to-do-usability-testing-of-your-website-for-cheap/</link>
		<comments>http://andrewnadeau.com/how-to-do-usability-testing-of-your-website-for-cheap/#comments</comments>
		<pubDate>Mon, 18 Apr 2011 04:46:48 +0000</pubDate>
		<dc:creator>Andrew Nadeau</dc:creator>
		
		<category><![CDATA[Analytics]]></category>

		<category><![CDATA[Online Marketing]]></category>

		<category><![CDATA[Tools]]></category>

		<category><![CDATA[Usability]]></category>

		<category><![CDATA[usability testing]]></category>

		<category><![CDATA[website usability testing]]></category>

		<guid isPermaLink="false">http://andrewnadeau.com/?p=188</guid>
		<description><![CDATA[Today I came across a great idea from Dan Shapiro on how he does usability testing for his website called SparkBuy. If you are a web developer, you know that usability of your website is one of the most important aspects in converting a visitor into a subscriber/member/customer. You only have a few seconds for [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-190" title="Usability Testing" src="http://andrewnadeau.com/wp-content/uploads/2011/04/usability-testing.jpg" alt="Usability Testing" width="176" height="198" />Today I came across a great idea from Dan Shapiro on how he does usability testing for his website called <a href="http://www.sparkbuy.com">SparkBuy. </a>If you are a web developer, you know that usability of your website is one of the most important aspects in converting a visitor into a subscriber/member/customer. You only have a few seconds for that visitor to truly understand what your website does and what value you provide to them before they click the &#8220;back&#8221; button and you lose them forever.</p>
<div class="header">WHAT USABILITY TOOLS ARE OUT THERE?</div>
<p>There are many usability testing tools out there today that allow you to see how a visitor is interacting on your website. A couple interesting, but expensive, services include ClickTale and UserTesting.com. <a href="http://www.clicktale.com">ClickTale</a> records the mouse movements of actual visitors on your website and then aggregates all the data to give you interesting statistics. If you are a subscriber of ClickTale, you can actually login and watch recordings of every Internet Explorer and Firefox visitor that has come to your website. ClickTale is an awesome technology, but the service starts at $99/mo for the cheapest package. Also, since visitors being recorded by ClickTale don&#8217;t actually know they are being recorded, there is not audio or feedback from the actual visitors.</p>
<p><img class="alignright size-full wp-image-192" title="UserTesting.com" src="http://andrewnadeau.com/wp-content/uploads/2011/04/user-testing.png" alt="UserTesting.com" width="204" height="47" />The other interesting service in the usability testing space is <a href="http://www.usertesting.com">UserTesting.com</a>. UserTesting.com is a service where you pay $39 for a video recording of someone actually browsing your site and the user talks through what they see and experience as they are on your website. The one downside to using a service like UserTesting.com is that the users viewing your site may not be your typical user as these are people who are getting paid to provide this service, therefore there opinion can be bias.</p>
<div class="header">SO HOW CAN YOU DO USABILITY TEST ON YOUR WEBSITE FOR CHEAP?</div>
<p><img class="alignright size-full wp-image-194" title="screencast-o-matic" src="http://andrewnadeau.com/wp-content/uploads/2011/04/screencast-o-matic.png" alt="screencast-o-matic" width="102" height="78" />The innovation solution that Dan Shapiro outlines is using a service called <a href="http://screencast-o-matic.com">screencast-o-matic.com</a>. Their basic version is FREE and their premium plan is a whopping $9/yr - yes, that is $9 per year, not month. Using this service you can then go out and recruit usability testers. Where can you find usability testers for cheap? <a href="https://www.mturk.com/mturk/welcome">Amazon&#8217;s Mechanical Turk</a>. On Mechanical Turk, you should be able to find people willing to do a quick usability test of your website and record their screen and voice using screencast-o-matic, all for as cheap as $2-$5 per recording. Now how is that for cheap usability testing!</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewnadeau.com/how-to-do-usability-testing-of-your-website-for-cheap/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to compare two lists and delete duplicate items in Excel</title>
		<link>http://andrewnadeau.com/how-to-compare-two-lists-and-delete-duplicate-items-in-excel/</link>
		<comments>http://andrewnadeau.com/how-to-compare-two-lists-and-delete-duplicate-items-in-excel/#comments</comments>
		<pubDate>Wed, 05 Jan 2011 03:24:19 +0000</pubDate>
		<dc:creator>Andrew Nadeau</dc:creator>
		
		<category><![CDATA[Automation]]></category>

		<category><![CDATA[How-to]]></category>

		<category><![CDATA[Microsoft Excel]]></category>

		<category><![CDATA[Compare two lists in Excel]]></category>

		<category><![CDATA[Delete duplicate values in Excel]]></category>

		<category><![CDATA[Excel Macro]]></category>

		<category><![CDATA[Remove duplicate values in Excel]]></category>

		<guid isPermaLink="false">http://andrewnadeau.com/?p=181</guid>
		<description><![CDATA[I like to post useful scripts that I write/modify/find online that I use in my everyday work. This is an Microsoft Excel macro that compares two lists of data and deletes duplicate items. I mainly us this Excel macro when I am compiling email lists for campaigns. A lot of times I have to creates [...]]]></description>
			<content:encoded><![CDATA[<p>I like to post useful scripts that I write/modify/find online that I use in my everyday work. This is an Microsoft Excel macro that compares two lists of data and deletes duplicate items. I mainly us this Excel macro when I am compiling email lists for campaigns. A lot of times I have to creates lists with criteria like &#8220;Send to all unconverted leads in Salesforce, but exclude those who received emails from us in our prior two campaigns.&#8221; Querying the original list is easy, but a lot of times it is difficult to query any exceptions that are needed. Most times it is just easier to grab the lists that I know i want to exclude and compare my two lists and delete duplicate items. In this post I will include the Excel macro that you should use as well as give you a little background on how it works.</p>
<div class="header">SCRIPT FOR MICROSOFT EXCEL MACRO</div>
<p>Sub DelDups_TwoLists()<br />
Dim iListCount As Integer<br />
Dim iCtr As Integer</p>
<p>&#39; Turn off screen updating to speed up macro.<br />
Application.ScreenUpdating = False</p>
<p>&#39; Get count of records to search through (list that will be deleted).<br />
iListCount = Sheets(&#34;Sheet1&#34;).Range(&#34;<span style="color: #ff0000;">A1:A10</span>&#34;).Rows.Count</p>
<p>&#39; Loop through the &#34;master&#34; list.<br />
For Each x In Sheets(&#34;Sheet2&#34;).Range(&#34;<span style="color: #ff0000;">A1:A3</span>&#34;)<br />
&#39; Loop through all records in the second list.<br />
For iCtr = 1 To iListCount<br />
&#39; Do comparison of next record.<br />
&#39; To specify a different column, change 1 to the column number.<br />
If x.Value = Sheets(&#34;Sheet1&#34;).Cells(iCtr, 1).Value Then<br />
&#39; If match is true then delete row.<br />
Sheets(&#34;Sheet1&#34;).Cells(iCtr, 1).Delete xlShiftUp<br />
&#39; Increment counter to account for deleted row.<br />
iCtr = iCtr + 1<br />
End If<br />
Next iCtr<br />
Next<br />
Application.ScreenUpdating = True<br />
MsgBox &#34;Done!&#34;<br />
End Sub</p>
<div class="header">HOW THE MICROSOFT EXCEL MACRO WORKS</div>
<p>The script is very simple to use. Just open up Microsoft Excel and put your &#8220;Master&#8221; list in the first column of Sheet1. Then put the values that you want to delete from your &#8220;Master&#8221; list in the first column of Sheet2. Next modify the ranges of each of your lists (to make this easy I have highlighted these values in <span style="color: #ff0000;">red</span>). Then simply go to &#8220;View&#8221; -&gt; &#8220;Macros&#8221; -&gt; &#8220;Edit&#8221; -&gt; and copy and paste the macro script. To run the macro, go to &#8220;Run&#8221; -&gt; &#8220;Run Sub/UserForm&#8221; or just click the green run button. That&#8217;s is! It is that simple&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewnadeau.com/how-to-compare-two-lists-and-delete-duplicate-items-in-excel/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to parse Google Analytics cookie to track lead source</title>
		<link>http://andrewnadeau.com/how-to-parse-google-analytics-cookie-to-track-lead-source/</link>
		<comments>http://andrewnadeau.com/how-to-parse-google-analytics-cookie-to-track-lead-source/#comments</comments>
		<pubDate>Sat, 20 Nov 2010 23:11:09 +0000</pubDate>
		<dc:creator>Andrew Nadeau</dc:creator>
		
		<category><![CDATA[Analytics]]></category>

		<category><![CDATA[How-to]]></category>

		<category><![CDATA[Online Marketing]]></category>

		<category><![CDATA[how to track lead source]]></category>

		<category><![CDATA[parse Google Analytics cookie]]></category>

		<category><![CDATA[tracking lead source]]></category>

		<guid isPermaLink="false">http://andrewnadeau.com/?p=169</guid>
		<description><![CDATA[In my previous post titled &#8220;Lead source analytics every start-up should track,&#8221; I promised to write a follow-up post that outlines how to track the following lead source details&#8230;

Medium (organic, PPC, referral, email, webinar, press release, etc)
Lead Source (Google, Yahoo, Twitter, Facebook, LinkedIn, etc)
Keywords (What keywords did the visitor search?)
Referring URL (Where did the visitor [...]]]></description>
			<content:encoded><![CDATA[<p>In my previous post titled <a href="http://andrewnadeau.com/lead-source-analytics-every-start-up-should-track/">&#8220;Lead source analytics every start-up should track,&#8221;</a> I promised to write a follow-up post that outlines how to track the following lead source details&#8230;</p>
<ul>
<li><strong>Medium</strong> (organic, PPC, referral, email, webinar, press release, etc)</li>
<li><strong>Lead Source</strong> (Google, Yahoo, Twitter, Facebook, LinkedIn, etc)</li>
<li><strong>Keywords</strong> (What keywords did the visitor search?)</li>
<li><strong>Referring URL</strong> (Where did the visitor come from?)</li>
<li><strong>Landing Page</strong> (What was the first page the visitor visited on our website?)</li>
<li><strong>Form URL</strong> (What was the URL of the form that the user filled out where you collected this information?)</li>
</ul>
<p>We will use a combination of techniques including parsing the cookie set by Google Analytics to save these lead source details into PHP variables. We&#8217;ll then be able to pass these variables into our lead capture forms as hidden fields, so that when a lead registers on our website or fills out any type of form, we&#8217;ll be able to track these lead source details.</p>
<p>Let&#8217;s get started&#8230;</p>
<p>First, I&#8217;m going to give you the code. This code should be included in the header of every page of your website. Hopefully your website has one PHP file that makes up the header of every page of your website. This file is usually called header.php. If you have this file, you can dump this code right into that file.</p>
<p>&#60;?php<br />
//DEFINE COOKIE DOMAIN, ALLOWS SCRIPT TO BE USED ACROSS MULTIPLE DOMAINS<br />
$domain = $_SERVER[&#39;SERVER_NAME&#39;];<br />
$domain = &#34;.&#34; . ltrim($domain,&#34;www.&#34;);</p>
<p>// SET COOKIES FROM GOOLGE-ANALYTICS COOKIE<br />
$info = $_COOKIE[&#39;__utmz&#39;];<br />
// Get rid of id stuff<br />
$holder = split(&#34;u&#34;, $info, 2);<br />
$string = &#34;u&#34; . $holder[1];<br />
// Parse String<br />
$ga_vars = split(&#34;\|&#34;, $string);<br />
foreach ($ga_vars as $var) {<br />
list($key,$value) = split(&#34;=&#34;,$var);<br />
if ($key == &#34;utmcmd&#34;) { setcookie(&#34;Medium&#34;, $value, time()+100000000, &#34;/&#34;, $domain); $medium = $value; }<br />
if ($key == &#34;utmctr&#34;) { setcookie(&#34;Keywords&#34;, $value, time()+100000000, &#34;/&#34;, $domain); $keywords = $value; }<br />
if ($key == &#34;utmcsr&#34;) { setcookie(&#34;GAsource&#34;, $value, time()+100000000, &#34;/&#34;, $domain); $gasource = $value; }<br />
}</p>
<p>// SET REFERRING URL<br />
if (!isset($_COOKIE[&#39;Referer&#39;])) {<br />
setcookie(&#34;Referer&#34;, $_SERVER['HTTP_REFERER'], time()+10000000, &#34;/&#34;, $domain);<br />
$referurl = $_SERVER[&#39;HTTP_REFERER&#39;];<br />
} else { $referurl = $_COOKIE[&#39;Referer&#39;]; }</p>
<p>// SET FORM_URL VALUE<br />
$formurl = &#34;http://&#34;.$_SERVER[&#39;HTTP_HOST&#39;].$_SERVER[&#39;REQUEST_URI&#39;];</p>
<p>// SET LANDING PAGE<br />
if (!isset($_COOKIE[&#39;LandingPage&#39;])) {<br />
setcookie(&#34;LandingPage&#34;, &#34;http://&#34;.$_SERVER[&#39;HTTP_HOST&#39;].$_SERVER[&#39;REQUEST_URI&#39;], time()+10000000, &#34;/&#34;, $domain);<br />
$landingpage = &#34;http://&#34;.$_SERVER[&#39;HTTP_HOST&#39;].$_SERVER[&#39;REQUEST_URI&#39;];<br />
} else { $landingpage = $_COOKIE[&#39;LandingPage&#39;]; }<br />
?&#62;</p>
<p>Here is a description of each variable and how they are tracked and saved&#8230;</p>
<p><strong>Medium</strong></p>
<p>Medium is parsed from the Google Analytics cookie. You will need to have Google Analytics installed on every page of your website in order for this to be tracked. When a visitor comes to your website, Google will drop a cookie that contains important information about that visitor. One of the variables saved in this cookie is Medium, so we parse the Google Analytics cookie and save the Medium into a variable called $medium.</p>
<p><strong>Lead Source</strong></p>
<p>Lead Source is also parsed from the Google Analytics cookie just like Medium. It is saved into a variable called $gasource.</p>
<p><strong>Keywords</strong></p>
<p>Keywords are also parsed from the Google Analytics cookie. This variable will not always be set, but if the visitor comes to your website via a search engine, it will record which keywords they used to visit your website. This variable works with all the major search engines - not just Google.</p>
<p><strong>Referring URL</strong></p>
<p>This code records the URL that the visitor clicked through to your website with. The code saves the Referring URL in a cookie, so the original Referring URL is preserved. It is saved into a variable called $referurl.</p>
<p><strong>Landing Page</strong></p>
<p>This is the first page that the visitor visits on your website. Like the Referring URL, a cookie is also used to save this URL so that it is preserved. It is saved into a variable called $landingpage.</p>
<p><strong>Form URL</strong></p>
<p>This is the URL of the page that the visitor finally is on when they fill out the lead capture form. This variable will update as the visitor navigates your website. A cookie is not used. It is saved into a variable called $formurl.</p>
<p>That pretty much sums up the script. In another follow-up post, I will write about how to pass these variables into a form as a hidden field and save it into your database. Look for this post shortly&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewnadeau.com/how-to-parse-google-analytics-cookie-to-track-lead-source/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Lead source analytics every start-up should track</title>
		<link>http://andrewnadeau.com/lead-source-analytics-every-start-up-should-track/</link>
		<comments>http://andrewnadeau.com/lead-source-analytics-every-start-up-should-track/#comments</comments>
		<pubDate>Sat, 20 Nov 2010 21:13:25 +0000</pubDate>
		<dc:creator>Andrew Nadeau</dc:creator>
		
		<category><![CDATA[Analytics]]></category>

		<category><![CDATA[Online Marketing]]></category>

		<category><![CDATA[Lead Nurturing]]></category>

		<category><![CDATA[lead scoring]]></category>

		<category><![CDATA[tracking lead source]]></category>

		<category><![CDATA[web analytics for startups]]></category>

		<category><![CDATA[website analytics]]></category>

		<guid isPermaLink="false">http://andrewnadeau.com/?p=163</guid>
		<description><![CDATA[An area of marketing that I have been spending a considerable time studying recently is website analytics. I&#8217;ve been asking myself questions like:

What information should we be tracking?
What information is important to marketing?
What information is important to sales?
What information is important to executive management?
How do we track this information?
How do we present this information to [...]]]></description>
			<content:encoded><![CDATA[<p>An area of marketing that I have been spending a considerable time studying recently is website analytics. I&#8217;ve been asking myself questions like:</p>
<ul>
<li>What information should we be tracking?</li>
<li>What information is important to marketing?</li>
<li>What information is important to sales?</li>
<li>What information is important to executive management?</li>
<li>How do we track this information?</li>
<li>How do we present this information to marketing/sales in a way that it can easily become actionable?</li>
<li>How do we tie all our systems together (SalesForce, HubSpot, ClickTale, etc)?</li>
<li>How to we lead nurture and lead score?</li>
<li>When should a lead transition from marketing to sales?</li>
</ul>
<p>This isn&#8217;t an easy problem to solve, especially for start-ups with limited resources and tight budgets. However, I would argue that properly tracking leads or new member activity is probably one of the most important things any start-up can do. The information and insight obtained through analytics will answer many questions like:</p>
<ul>
<li>Where are new members/leads coming from?</li>
<li>What is my cost per lead? cost per new member? cost per sale? total lifetime value of a customer?</li>
<li>Where should I be allocating more advertising dollars? less advertising dollars?</li>
<li>What part of my website is converting? not converting?</li>
<li>Are social media leads more profitable than webinar leads?</li>
<li>For those leads that turned into sales, what common traits/activities do they possess?</li>
<li>How do I nurture and educate a lead so they are ready to buy?</li>
</ul>
<p>Those are just some of the questions you&#8217;ll be able to answer and then act on. If you are a start-up that has received VC money, these are the exact questions your board of directors and investors will be asking. They will be very impressed if you can give clear, reliable answers to their questions.</p>
<p>So with that said, where/how do we begin?</p>
<p>I have identified the following lead source details that every start-up should be tracking today (this is just a start). In a follow-up post, I will include a detailed step-by-step description on how to properly track this information. Here are the lead source details:</p>
<ol>
<li><strong>Medium</strong> (organic, PPC, referral, email, webinar, press release, etc)</li>
<li><strong>Lead Source</strong> (Google, Yahoo, Twitter, Facebook, LinkedIn, etc)</li>
<li><strong>Keywords</strong> (What keywords did the visitor search?)</li>
<li><strong>Referring URL</strong> (Where did the visitor come from?)</li>
<li><strong>Landing Page</strong> (What was the first page the visitor visited on our website?)</li>
<li><strong>Form URL</strong> (What was the URL of the form that the user filled out where you collected this information?)</li>
</ol>
<p>Keep your eye out for my follow-up post on <a href="http://andrewnadeau.com/how-to-parse-google-analytics-cookie-to-track-lead-source/">how to track all of the above web analytics and lead source details</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://andrewnadeau.com/lead-source-analytics-every-start-up-should-track/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

