<?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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Atlantic BT &#187; Web Design</title>
	<atom:link href="http://www.atlanticbt.com/blog/category/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.atlanticbt.com/blog</link>
	<description>Internet Marketing and Web Development in Raleigh</description>
	<lastBuildDate>Wed, 08 Feb 2012 02:40:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>WordPress Plugin &#8211; Featured Heroes Slideshow</title>
		<link>http://www.atlanticbt.com/blog/wordpress-plugin-featured-heroes-slideshow/</link>
		<comments>http://www.atlanticbt.com/blog/wordpress-plugin-featured-heroes-slideshow/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 13:00:03 +0000</pubDate>
		<dc:creator>Jeremy Schwartz</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Programming]]></category>
		<category><![CDATA[cycle]]></category>
		<category><![CDATA[heroes]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[slideshow]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.atlanticbt.com/blog/?p=4748</guid>
		<description><![CDATA[Here's a WordPress plugin that will allow you to create a slideshow from posts - using either the provided "Heroes" content type or any other post type.  Added bonus - you can place the slideshow anywhere with a shortcode.  Uses jQuery Cycle.]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a WordPress plugin that will allow you to create a slideshow from posts &#8211; using either the provided &#8220;Heroes&#8221; content type or any other post type.  Added bonus &#8211; you can place the slideshow anywhere with a shortcode.</p>
<p><del><a href="http://d1rvlzmuzboe2s.cloudfront.net/blog/wp-content/uploads/2012/02/abt-featured-heroes.zip">Download ABT Featured Heroes</a></del>  <a title="Get the plugin!" href="http://wordpress.org/extend/plugins/abt-featured-heroes">Download from WordPress</a></p>
<p>As taken from the <code>readme</code> file:</p>
<hr />
<h3>Description</h3>
<p>Provides a new content type &#8220;Heroes&#8221; to manage your featured slides. You can then add a slideshow to any page using the shortcode <code>abt_slider_hero</code>. The slideshow is automatically configured using <a title="Cycle Homepage with option reference" href="http://jquery.malsup.com/cycle/">jQuery Cycle</a> and the options you specify in the shortcode.</p>
<p>One of the options <code>postType</code> allows you to use other content than the provided &#8220;Heroes&#8221;, effectively allowing a slideshow of almost anything in WordPress.</p>
<hr />
<h3>Installation</h3>
<ol>
<li>Unzip, upload plugin folder to your plugins directory (<code>/wp-content/plugins/</code>)</li>
<li>Activate plugin</li>
<li>Add slideshow shortcode anywhere you need it.</li>
<li>If you want to put the widget (shortcode) in a Widget, you&#8217;ll need to allow shortcodes in widgets</li>
<li>You can call the slideshow in code using <code>abt_featured_heroes::embed( array $atts )</code></li>
</ol>
<hr />
<h3>Frequently Asked Questions</h3>
<h4>What is the shortcode?</h4>
<p>Use the following format (defaults indicated here):</p>
<pre><code>[abt_slider_hero fx="fade" width="100%" height="400px" order="asc" orderby="menu_order" speed="600" timeout="7000" classes="" postType="heroes" style="photo"] </code></pre>
<p>where</p>
<ul>
<li><em>fx</em> = the cycle transition effect (fade, scrollUp, shuffle, etc) &#8211; see <a title="Cycle Homepage with option reference" href="http://jquery.malsup.com/cycle/">jQuery Cycle</a> homepage for more information</li>
<li><em>width</em> = width of the slide</li>
<li><em>height</em> = height of the slide</li>
<li><em>order</em> = sorting order (asc/desc) for the fetched items</li>
<li><em>orderby</em> = how to sort the fetched items</li>
<li><em>speed</em> = transition speed from one slide to the next</li>
<li><em>timeout</em> = delay between slide changes</li>
<li><em>classes</em> = optional classes to apply to the slideshow</li>
<li><em>postType</em> = you can retrieve other content types than &#8220;heroes&#8221; if desired</li>
<li><em>style</em> = normally the thumbnail navigation just reuses the full-size image, but if you want to &#8220;control&#8221; the quality of the shrunken thumb specify an alternate image size (like &#8220;thumbnail&#8221;)</li>
</ul>
<p>Pretty much all of the attributes are optional, so all you need is:</p>
<pre><code>[abt_slider_hero] </code></pre>
<h4>How do I put a slideshow in code?</h4>
<p>You can call the slideshow in code using <code>abt_featured_heroes::embed( array $atts )</code>, where <code>$atts</code> is an array matching the shortcode attribute list.</p>
<h4>Can I change the defaults?</h4>
<p>Only one simple hook available:</p>
<ul>
<li><code>add_filter('abt_featured_heroes_localize', YOURFN);</code>change the base javascript variables used by the flipwall init script:
<ul>
<li><code>stylesheet</code>: replace the default stylesheet with your own to change the default appearance of slides</li>
<li><code>speed</code>: change the transition speed (from 600 ms)</li>
<li><code>timeout</code>: change the slide delay (from 7000 ms)</li>
<li><code>fx</code>: change the slide transition (from &#8216;fade&#8217;)</li>
<li><code>style</code>: optionally use actual thumbnail photos for navigation, instead of reusing full-size images (default &#8216;photo&#8217;, alt &#8216;thumbnail&#8217;)</li>
<li><code>width</code>: default width (from 100%)</li>
<li><code>height</code>: default height (from 400px)</li>
</ul>
</li>
</ul>
<h4>How to put shortcode in widget?</h4>
<p>Use a filter to apply shortcode processing to widgets.</p>
<p><a href="http://digwp.com/2010/03/shortcodes-in-widgets/">Filter</a>: <code>&lt;?php add_filter('widget_text', 'do_shortcode'); ?&gt;</code></p>
<hr />
]]></content:encoded>
			<wfw:commentRss>http://www.atlanticbt.com/blog/wordpress-plugin-featured-heroes-slideshow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Think Like An Internet Marketer: Silver Bullets And Barking Dogs</title>
		<link>http://www.atlanticbt.com/blog/think-like-an-internet-marketer-silver-bullets-and-barking-dogs/</link>
		<comments>http://www.atlanticbt.com/blog/think-like-an-internet-marketer-silver-bullets-and-barking-dogs/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 06:46:58 +0000</pubDate>
		<dc:creator>msmith</dc:creator>
				<category><![CDATA[Atlantic BT]]></category>
		<category><![CDATA[Critical Commerce]]></category>
		<category><![CDATA[Think Like An Internet Marketer]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Website Redesign]]></category>
		<category><![CDATA[1:10:89 Rule]]></category>
		<category><![CDATA[bazaar]]></category>
		<category><![CDATA[cathedral]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Dov Seidman]]></category>
		<category><![CDATA[Found Objects]]></category>
		<category><![CDATA[FoundObjects.com]]></category>
		<category><![CDATA[hears and minds]]></category>
		<category><![CDATA[HOW]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[marketer]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[Martin Smith]]></category>
		<category><![CDATA[Think Like An Internet Ma]]></category>
		<category><![CDATA[UGC]]></category>
		<category><![CDATA[user generated content]]></category>
		<category><![CDATA[UX]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.atlanticbt.com/blog/?p=4527</guid>
		<description><![CDATA[Perfection isn’t a sustainable Internet marketing strategy. Speed, being data-centric and listening more than you talk work better. ]]></description>
			<content:encoded><![CDATA[<p><img class="wp-image-4534 alignright" style="border: 5px solid white; margin-left: 5px; margin-right: 5px;" title="Cathedral-and-the-Bazaar-book-cover-1" src="http://d1rvlzmuzboe2s.cloudfront.net/blog/wp-content/uploads/2012/01/Cathedral-and-the-Bazaar-book-cover-1.jpg" alt="Ccathedral vs. Bazaar" width="100" height="150" />Building my first web site (<a title="FoundObjects.com on ScentTrail Marketing link " href="http://scenttrail.blogspot.com/2010/02/martins-first-web-site.html">FoundObjects.com</a>) in 1999 presence was half the battle. Creating a site was no small challenge. Everyone wanted $5,000 to write basic HTML and we didn’t have $500 much less ten times that. I used some precious cash to buy a book and learned how write HTML.</p>
<p>There was a problem. HTML structured the page but didn’t fill it with copy or images. Each time I learned one skill two more that needed learning popped up. Web development challenge in these early days centered on finding people willing to help for a reasonable amount of money or learning how to DIY (do it yourself). We’ve come a way since 1999, but some things don’t change. Anyone can have a website only a few will understand how to make money online.</p>
<p><strong>You Get What You Pay For And Web Development Costs Are Going Up</strong><br />
In 1999 presence was the challenge. In 2012 presence is assumed. Once everyone has an Internet marketing presence competition moves from presence and engineering to the battle for hearts, minds and advocacy.</p>
<p><img class="alignleft  wp-image-4175" style="border: 1px solid white;" title="abt_heart2" src="http://d1rvlzmuzboe2s.cloudfront.net/blog/wp-content/uploads/2011/11/abt_heart2.jpg" alt="Atlantic BT Think Like An Internet Marketer Heart" width="85" height="92" />Fighting for hearts, minds and advocacy requires different skills. Internet marketing may be the most engineering-like marketing thanks to a sea of behavior and heuristic information, but cutting clutter to make strangers love your company, brand or product is as much business therapy as business.</p>
<p>As web development business therapist we see common mistakes such as:</p>
<blockquote>
<ul>
<li style="text-align: left;">Search For Silver Bullets</li>
<li style="text-align: left;">Know Thyself To Know Others</li>
<li style="text-align: left;">Barking Dog Marketing</li>
<li style="text-align: left;">Cathedral vs. Bazaar</li>
</ul>
</blockquote>
<p><strong>Stop Silver Bullet Search</strong><br />
We believe in the quick fix even when life teaches otherwise. The search for silver bullets is distracting and bleeds our most valuable asset &#8211; TIME. Reject quick fixes and instant millions. People do win the lottery, but their winning never improves your odds. &#8220;Win the lottery” isn&#8217;t an effective Internet marketing plan. Anyone who tries to sell you a silver bullet or lottery ticket should be avoided. Creating greatness is HARD and requires sweat, tears and treasure.</p>
<p><strong>Know Thyself To Know Others</strong><br />
Thinking Like An Internet Marketer values the web for what it can and can not accomplish. No web site makes a company’s communication more organized or clear. The web is a huge guassian blur making pointed and sharp ideas, potentially dull and confusing. How would you rate your knowledge of your company’s character on a ten point scale? If you answer anything below a 8 then you have introspective work to do. If your company, brand or product is blowing from pillar to post then, as Gertrude Stein famously said of Oakland, “There is no there, there.” Know yourself BEFORE you create any site, blog, social media or email campaign. Compare each effort in some meaningful and measurable way to your company&#8217;s core values.</p>
<p><strong>Barking Dog Marketing</strong><br />
Do you walk toward or run away from a barking dog? Barking at visitors has the same impact. Greatness, transparency and honesty are more sustainable and profitable than any short term bark. Barking may improve sales or conversions for a short time, but damage to brand, positioning and long term profits and advocacy may be significant and long lasting. Every day and action matters in the battle for hearts, minds and advocacy. Read Dov Seidman’s great book <a title="How by Dov Seidman link" href="http://www.howsmatter.com/">HOW:</a> Why we do anything means everything. Seidman explains why values and processes are the only things any business truly own.</p>
<p><a title="Cathedrals Vs. Bazaars" href="http://en.wikipedia.org/wiki/The_Cathedral_and_the_Bazaar"><strong>Cathedrals vs. Bazaars</strong></a><br />
Internet marketers build sand castles. Whatever we create will be gone soon. Building sand castles requires different attributes than constructing Renaissance cathedrals meant to last a hundred years. Thinking like an Internet marketer means organizing work around:</p>
<ul>
<li>Speed</li>
<li>Data</li>
<li>Creative Use Of Convention (don’t recreate what visitors expect)</li>
<li>Team</li>
<li> The Magic 11% (see <a title="1:10:89 Rule " href="http://scenttrail.blogspot.com/2011/01/user-generated-content-11089-rule.html">1:10:89 Rule</a>)</li>
<li>Listening and Leading</li>
</ul>
<p>Speed, passion and wrecking what needs ruination means errors, bumps and mistakes happen. If mistakes drive you crazy don’t become an Internet marketer. Mistakes are a part of the cost of being relevant in a constantly shifting space such as Internet marketing. Perfection isn’t a sustainable Internet marketing strategy. Speed, being data-centric and listening more than you talk work better. Understanding the difference between creating sand castles and accepting input from the bazaar instead of laying stones to live for a hundred years is why “Thinking Like An Internet Marketer” requires a paradigm shift. Perfectionism is too expensive for sand castle builders working in the world&#8217;s largest bazaar dodging silver bullets and barking dogs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlanticbt.com/blog/think-like-an-internet-marketer-silver-bullets-and-barking-dogs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Do Breadcrumbs Improve Usability?</title>
		<link>http://www.atlanticbt.com/blog/do-breadcrumbs-improve-usability/</link>
		<comments>http://www.atlanticbt.com/blog/do-breadcrumbs-improve-usability/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 14:16:57 +0000</pubDate>
		<dc:creator>Andrew Wirtanen</dc:creator>
				<category><![CDATA[User Experience]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[breadcrumbs]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://www.atlanticbt.com/blog/?p=3990</guid>
		<description><![CDATA[One of the first usability critiques of website is usually the lack of breadcrumbs. If a site doesn&#8217;t have breadcrumbs, it is immediately perceived as difficult to use. While the latter may be true, I don&#8217;t think it&#8217;s usually because there are no breadcrumbs. I&#8217;ll explain that later. Wait, what are breadcrumbs? Breadcrumbs are these [...]]]></description>
			<content:encoded><![CDATA[<p>One of the first usability critiques of website is usually the lack of breadcrumbs. If a site doesn&#8217;t have breadcrumbs, it is immediately perceived as difficult to use. While the latter may be true, I don&#8217;t think it&#8217;s usually because there are no breadcrumbs. I&#8217;ll explain that later.</p>
<h2>Wait, what are breadcrumbs?</h2>
<p>Breadcrumbs are these things:</p>
<p style="padding-left: 30px;"><strong>Homepage &gt; Section &gt; Sub-Section</strong></p>
<div id="attachment_4605" class="wp-caption alignnone" style="width: 300px"><img class="size-full wp-image-4605" title="Breadcrumb Example from Solidrockinternational.org" src="http://d1rvlzmuzboe2s.cloudfront.net/blog/wp-content/uploads/2012/01/breadcrumb_example.jpg" alt="Breadcrumb Example from Solidrockinternational.org" width="290" height="40" /><p class="wp-caption-text">This is a breadcrumb on Solid Rock International (solidrockinternational.org)</p></div>
<p>Over the years, breadcrumbs have evolved from a suggested improvement into one of the main parts of a web page along with the page name, search box, navigation, content area, and footer. The breadcrumb is intended to help orient the user to the site&#8217;s organization and structure.</p>
<h2>What does the research say about breadcrumbs?</h2>
<p>In <a title="Breadcrumb Navigation Increasingly Useful" href="http://www.useit.com/alertbox/breadcrumbs.html">a 2007 Alertbox</a>, Jakob Nielsen stated &#8220;breadcrumbs are not important enough for a dedicated study&#8221;. Personally, I think they are.</p>
<p>The best research to-date on breadcrumbs is <a href="http://psychology.wichita.edu/surl/usabilitynews/52/breadcrumb.htm">a 2003 article in UsabilityNews</a> (from Wichita State&#8217;s Software Usability Research Laboratory). Rogers and Chaparro built a gardening website and studied how users  interacted with the breadcrumbs in a usability test. The researchers found that breadcrumbs were used 6% of the time when participants navigated the website. In other words, 94% of the time participants used other ways to navigate the website (e.g. the main navigation or back button).</p>
<p>It has been over 8 years since Rogers and Chaparro&#8217;s research, but the 6% statistic is hard to ignore. It seems likely that as the web has evolved, more people have become accustomed to seeing and using breadcrumbs. Nielsen claimed in 2007 that his group was seeing more and more people use breadcrumbs in their usability studies. I would estimate that breadcrumbs are now used about 10-15% of the time to navigate a website.</p>
<h2>Are breadcrumbs important?</h2>
<p>Yes.</p>
<p>Users expect to see breadcrumbs, especially on sites with deep information architectures. Even if users are only using breadcrumbs 10-15% of the time to navigate, they are still relying upon them when necessary. Make sure to follow the breadcrumb guidelines <a title="Breadcrumb Navigation Increasingly Useful" href="http://www.useit.com/alertbox/breadcrumbs.html">provided by Nielsen</a>. I&#8217;d make a list of guidelines here, but it is important to understand some of the issues and reasoning that Nielsen provides. So, go read it.</p>
<p>If a website is missing breadcrumbs, it is generally perceived as difficult to use. In most cases, the website actually is difficult to use. But, it is usually not because breadcrumbs are missing. Sites without breadcrumbs are generally lacking attention to detail. Breadcrumbs are usually included with a well-designed website.</p>
<p>I do think that the importance of breadcrumbs is greatly exaggerated when it comes to web usability. There are much bigger things to worry about, such as understanding your site&#8217;s users, writing effective web content, developing an intuitive navigation, and meeting all user goals.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlanticbt.com/blog/do-breadcrumbs-improve-usability/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.3 Shortcode Issue</title>
		<link>http://www.atlanticbt.com/blog/wordpress-3-3-shortcode-issue/</link>
		<comments>http://www.atlanticbt.com/blog/wordpress-3-3-shortcode-issue/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 20:04:19 +0000</pubDate>
		<dc:creator>Mark Caron</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Programming]]></category>
		<category><![CDATA[3.3]]></category>
		<category><![CDATA[add_action]]></category>
		<category><![CDATA[add_shortcode]]></category>
		<category><![CDATA[do_shortcode]]></category>
		<category><![CDATA[init]]></category>
		<category><![CDATA[shortcode]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.atlanticbt.com/blog/?p=4401</guid>
		<description><![CDATA[If you find yourself scratching your head over why your shortcodes have stopped working in WordPress 3.3, we&#8217;ve discovered a funny quirk. Granted, this fix may actually be the right way to call all shortcodes, but previously we&#8217;ve been able to lazily call it directly from our functions.php file and no one cared. But, now [...]]]></description>
			<content:encoded><![CDATA[<p>If you find yourself scratching your head over why your shortcodes have stopped working in WordPress 3.3, we&#8217;ve discovered a funny quirk. Granted, this fix may actually be the right way to call all shortcodes, but previously we&#8217;ve been able to lazily call it directly from our <code>functions.php</code> file and no one cared. But, now it seems, with the upgrade, that WordPress 3.3 does care. It requires your <em>add_shortcode()</em> function to be called within their <em>init()</em> hook. Calling it directly after your newly declared shortcode function won&#8217;t work anymore.</p>
<p>The lazy method we got away with before:</p>
<pre class="brush: php; title: ; notranslate">
function abtcore_shortcode_button( $atts, $content = null ) {
	extract( shortcode_atts( array(
		'color' =&gt; 'blue'
	), $atts ) );
	return '&lt;p&gt;' . $content . '&lt;/p&gt;';
}

add_shortcode( 'button', 'abtcore_shortcode_button' );
</pre>
<p>The better way that is now required by WordPress 3.3:</p>
<pre class="brush: php; highlight: [7]; title: ; notranslate">
function abtcore_shortcode_button( $atts, $content = null ) {
	extract( shortcode_atts( array(
		'color' =&gt; 'blue'
	), $atts ) );
	return '&lt;p&gt;' . $content . '&lt;/p&gt;';
}
add_action('init', 'abtcore_register_my_shortcodes', 100);
function abtcore_register_my_shortcodes() {
	add_shortcode( 'button', 'abtcore_shortcode_button' );
}
</pre>
<p>Notice the <em>add_action()</em> call on the &#8216;init&#8217; on line 7. This will properly register your shortcode function when WordPress initiates.</p>
<p>I hope this helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlanticbt.com/blog/wordpress-3-3-shortcode-issue/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mobile First Responsive Web Design</title>
		<link>http://www.atlanticbt.com/blog/mobile-first-responsive-web-design/</link>
		<comments>http://www.atlanticbt.com/blog/mobile-first-responsive-web-design/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 18:00:32 +0000</pubDate>
		<dc:creator>Mark Riggan</dc:creator>
				<category><![CDATA[Atlantic BT]]></category>
		<category><![CDATA[Business & Internet]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web News/Trends]]></category>
		<category><![CDATA[Web Programming]]></category>
		<category><![CDATA[Website Redesign]]></category>

		<guid isPermaLink="false">http://www.atlanticbt.com/blog/?p=4322</guid>
		<description><![CDATA[Mobile first responsive web design is a dual-philosophy that is helping us rethink about the mobile web. Today, I gave a presentation on the reality check of how important mobile is and why a mobile first, responsive web approach will potentially help web designers and developers be proactive about designing websites for today&#8217;s and tomorrow&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Mobile first responsive web design is a dual-philosophy that is helping us rethink about the mobile web. Today, I gave a presentation on the reality check of how important mobile is and why a mobile first, responsive web approach will potentially help web designers and developers be proactive about designing websites for today&#8217;s and tomorrow&#8217;s devices.</p>
<p>Check it out: <a href="http://www.slideshare.net/MarkRiggan/mobile-first-responsive-web-design">http://www.slideshare.net/MarkRiggan/mobile-first-responsive-web-design</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlanticbt.com/blog/mobile-first-responsive-web-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To Design or Not to Design? Review of Marshall Brain&#8217;s presentation at Internet Summit</title>
		<link>http://www.atlanticbt.com/blog/to-design-or-not-to-design-review-of-marshall-brains-presentation-at-internet-summit/</link>
		<comments>http://www.atlanticbt.com/blog/to-design-or-not-to-design-review-of-marshall-brains-presentation-at-internet-summit/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 20:52:13 +0000</pubDate>
		<dc:creator>Daryl Hemeon</dc:creator>
				<category><![CDATA[Atlantic BT]]></category>
		<category><![CDATA[Business & Internet]]></category>
		<category><![CDATA[E-commerce]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[User Experience]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Programming]]></category>
		<category><![CDATA[HowStuffWorks]]></category>
		<category><![CDATA[user experience]]></category>

		<guid isPermaLink="false">http://www.atlanticbt.com/blog/?p=3975</guid>
		<description><![CDATA[Marshall Brain (@brainstuffHSW) from HowStuffWorks.com took the stage to kick off day 2 of the Internet Summit in Raleigh and threw down a great argument for why we should care less about design and more about function.]]></description>
			<content:encoded><![CDATA[<h2>Are all the designers crying in the back of the room?</h2>
<p>Marshall Brain (<a href="http://twitter.com/#!/BrainStuffHSW" target="_self">@brainstuffHSW</a>) from <a href="http://www.howstuffworks.com/" target="_self">HowStuffWorks.com</a> took the stage to kick off day 2 of the Internet Summit in Raleigh and threw down a great argument for why we should care less about design and more about function.  Now design matters of course and I would be thrown to the lions if I said that if it didn&#8217;t. (Working for a firm that cares a great deal about design that we should take design and shove it is crazy talk)</p>
<p>My goal here is do give an overview of what he talked about, why some of it is valid and what I think the true balance is. (Full disclosure &#8211; I am a developer and my User Interfaces look like crap without our design team).</p>
<p>His examples though were quite compelling: Google Search Results, <a href="http://en.wikipedia.org/wiki/Agile_software_development" target="_self">Wikipedia</a>, <a href="http://raleigh.craigslist.org/" target="_self">Craigslist</a>, <a href="http://www.reddit.com/" target="_self">Reddit</a>.  The content is what is truly driving customers back to these sites over and over again.  Now I would argue that the experience is what matters and how quickly one can access content, FOR these examples is what makes them hugely successful.</p>
<p>Now for us in the industry we can all be fairly certain that a great collaboration occurred to create Google&#8217;s new search results:</p>
<div id="attachment_3989" class="wp-caption alignleft" style="width: 300px"><a rel="attachment wp-att-3989" href="http://www.atlanticbt.com/blog/to-design-or-not-to-design-review-of-marshall-brains-presentation-at-internet-summit/2011-11-17_1515_001/"><img class="size-medium wp-image-3989" src="http://d1rvlzmuzboe2s.cloudfront.net/blog/wp-content/uploads/2011/11/2011-11-17_1515_001-290x300.png" alt="Annotated Google Search Results" width="290" height="300" /></a><p class="wp-caption-text">User Experience Improvements in Google Search Results</p></div>
<p>My point is that these are elements of design!  Now what they really could be is a great collaboration between UX and designer. Check out the Search menu is in red and it knows my location.  Savy? Also it is subtle, but changing the top search button blue is a great choice that draws attention to it.  But I argue that was indeed a design choice.</p>
<p>Now Marshall&#8217;s real point was that in start-up mode don&#8217;t really waste your time pushing pixels around and making things perfect.  If you create great content your followers will come and they will use your product.</p>
<p>He said, &#8220;I shop at Walmart.  Fonts and colors go over my head and I don&#8217;t even see them.&#8221;</p>
<p>His point was here that most of the regular everyday people out there that don&#8217;t care about design and if you are trying to get investors they don&#8217;t either, they want to know how much traffic you are getting and whether or not you are &#8220;converting&#8221;.</p>
<p>Now it is tough to argue with this point, but again, I go back to the fact design, form, and function are all required.  So I nuance his point slightly and say perhaps spend a little more that he is abdicating for so you can make your site accessible for all, usable for all, and create an experience with content that tells a story brings you back for more.</p>
<p>His other great point was that great content tells a story and if you tell a great story it will resonate with people (and I add then share it with all your friends <a href="http://twitter.com/#!/darylhemeon" target="_self">@darylhemeon</a> ha!).   Marshall also outlined his major issues with sinking too much design time up front:</p>
<ol>
<li>It is expensive</li>
<li>time consuming</li>
<li>It is never done &#8211; fashion is always changing</li>
<li>browser compatibility issues</li>
<li>distraction from what is important</li>
</ol>
<p>Marshall&#8217;s points are well taken. All I am saying is that is our jobs in this industry to find the right balance for every customer.  What he did say rang true though about the top three most important features are the Content (Content is King <a href="http://twitter.com/#!/search/%23ISUM11" target="_self">#ISUM11</a>), Navigation is simple and functional and SPEED.  If your site is a dog, no one will run with it.</p>
<p>I do understand that what he was trying to do was stir people up on the morning and I started this conversation first thing at my office and people started to wig out!  Which personally I think is great because what it does is make us think about what matters for our customers and that is what is truly important.</p>
<p>Marshall Brain, thanks for a great talk, thanks for stirring the pot and thanks for recommending WordPress&#8230;by the way, this blog uses that too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlanticbt.com/blog/to-design-or-not-to-design-review-of-marshall-brains-presentation-at-internet-summit/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Usability and Design – Internet Summit Notes Day 2</title>
		<link>http://www.atlanticbt.com/blog/usability-and-design-internet-summit-notes-day-2/</link>
		<comments>http://www.atlanticbt.com/blog/usability-and-design-internet-summit-notes-day-2/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 17:40:09 +0000</pubDate>
		<dc:creator>Daryl Hemeon</dc:creator>
				<category><![CDATA[Atlantic BT]]></category>
		<category><![CDATA[Business & Internet]]></category>
		<category><![CDATA[User Experience]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web News/Trends]]></category>
		<category><![CDATA[Web Programming]]></category>
		<category><![CDATA[#ISUM11]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Touch Screen Interfaces]]></category>
		<category><![CDATA[usability]]></category>

		<guid isPermaLink="false">http://www.atlanticbt.com/blog/?p=3979</guid>
		<description><![CDATA[The User Experience is Your Brand @drewdiskin Drew Diskin, M.S. Digital Engagement Strategist, Inertia Commentary: I think Drew had a powerful story to tell, using this story of John Hopkins and showing more specific examples of HOW they turned around their results, HOW he got C-Level buy in would have made this a much more [...]]]></description>
			<content:encoded><![CDATA[<h2>The User Experience is Your Brand</h2>
<h3>@drewdiskin Drew Diskin, M.S. Digital Engagement Strategist, Inertia</h3>
<p>Commentary:</p>
<p>I think Drew had a powerful story to tell, using this story of John Hopkins and showing more specific examples of HOW they turned around their results, HOW he got C-Level buy in would have made this a much more powerful story.  All in all a good presentation.</p>
<p>Notes:</p>
<p>How do you translate real world experiences into a digital one? Drew worked at Hopkins Hospital &amp; Health System.  There was a culture that was beyond anything you could describe in some ways about how amazing they performed.  But they had severe digital woes.  They had a 62% bounce rate, 75,000 pages, 350+ websites.  The reality was that their brand sucked on-line.</p>
<p>The took on a smaller subset of pages and put them out in a few months and put it out there fast so they could figure out how they were doing.  Their CMS was an old Cold Fusion product that was inhibited fast turnaround.  How do you speak to people not at them when all the patient cares about is that their cough has been persistent for two years because they worked in coal mines?</p>
<p>Be present where your customers are at in their lifestyle and how to change to make it more relevant to them.</p>
<p>Obvious UX &#8211; Analytics can be used to get a baseline, UX Testing and Prototyping, Focus Groups, Online Surveys, Informal Conversations with Internal and External Customers are a MUST now, they are necessary to do business.  The challenge is convincing the C-Level executives that this is worth spending money on.</p>
<p>Not Obvious &#8211; Are people returning?  Are they sharing? Are they converting? Are they completing the tasks that you have? Can you access the site via mobile? Are you trending? Do you have a Facebook presence? Where else were your users before and after they were at your site?</p>
<p>Measure, Recource, Prototype, and Measure again &#8211; was part of the Hopkins rescue mission for UX.  Drew helped create a Digital Engagement Strategy that creates and experience for users not just a website.</p>
<p>Traffic findings were a success: Find a Doctor was up 187%, Apply to the School of Medicine was up 200%.</p>
<h2>How to mitigate the performance risk of 3rd party web components</h2>
<h3>@compuware Dennis Gullotti, Senior Product Marketing Manager</h3>
<p>Commentary:</p>
<p>The chief takeaway for me was as we add more and more service calls to our sites, make sure you monitor and load test all your 3rd party calls.  If you increase your load time by 2 seconds you will increase your abandonment rate by 8%. When testing capture your hard data so you can show you business people the impact of adding social media hook-ins to your sites.</p>
<p>Notes:</p>
<p>3rd part components can help you drive traffic like Twitter feeds, Facebook feeds, RSS all of this should be to drive traffic to your site and increase your conversions.  CDN&#8217;s can also be used to increase performance like EC2 storage, but outside of North America and Europe the performance isn&#8217;t great so add a CDN on top and it will scream.</p>
<p>Your performance because of 3rd party presents other challenges in getting speed because of size and customer satisfaction.  Anything above 8 seconds is not good.  Excellent load times need to be 2 seconds.  All of that testing should be done from user desktops because that is real.</p>
<p>Set your business and performance goals: Is my audience using it? Does the vendor guarantee performance? How much revenue is it generating?  Do some due diligence on the component provider?  How does it impact mobile?</p>
<p>Forrester research claims that in 2009 that a page should load in 2 seconds so think about how you are going to impact that load time when adding a 3rd party component.</p>
<p>Facebook publishes performance statistics for their APIs.</p>
<p>71% of mobile phone uses expect a site to load just as fast on their phone.  The takeaway here is to make sure you are limiting 3rd party content calls, limit the number of requests, keep sizes smalls and use a Content Delivery Network.</p>
<p>Make sure that you LOAD Test, especially if you have 3rd party calls.  When doing this type of testing try to do it from the end users point of view: mobile, outside the firewall, etc.</p>
<h2>Half-Hearted User Adoption</h2>
<h3>@navigationarts Don Bruns &#8211; Director of Application Design, Navigation Arts</h3>
<p>Commentary:</p>
<p>Don moved really fast through a lot of his notes.  He had some great content, the chief takeaway was to make sure you are creating experiences that accomplish their 10 most common tasks.  Overall this was a high level speed overview of how adoption is the only metric that matters.</p>
<p>Notes:</p>
<p>User adoption is not binary, it is the core success metric of your application.  Halfhearted adoption can kill your ROI.</p>
<p>Causes of this: No benefit to the end users, lack of business case, system doesn&#8217;t reflect how users behave, poor system performance, failure to manage change.</p>
<p>Change management is overcoming the points of resistance for your users, not &#8220;because I said so.&#8221;</p>
<p>What are the symptoms of half-hearted user adoption?  Do you find yourself bribing your employees to use the system or share information on-line? Are you penalizing non-use or even inventing reasons for use? Are you creating a scavenger hunt?  What you should be doing is creating a killer app that transforms the way that you work.</p>
<p>Get developers to take the User-Centered Design approach with everything you create to make sure you are creating applications that users really want to use.</p>
<h2>Designing for Touch: Are We Ready?</h2>
<h3>@scottgunterux Scott Gunter Vice President of User Experience, Usability Sciences</h3>
<p>Summary/Commentary:</p>
<p>Not everyone is ready for touch screen devices, but if you are going to roll one out make sure you do meaningful testing.</p>
<p>Notes:</p>
<p>The iPhone and the iPad have changed the whole dynamic of how we create applications.  Are we ready for it because it has changed our behaviors?  Are consumers ready for more touch screen devices?</p>
<p>Good example of touch screen devices in our lives:  There are over 400,000 ATMs in the US &#8211; source Wired Magazine 2009.  This device was not accepted early, but over time has become a standard.  There are now 28,000 kiosk locations nationwide for Redbox &#8211; this simple design is a recipe for success.</p>
<p>More choices create more decisions and that typically is bad for a User Experience.  (author note, thinking of Windows Vista here)</p>
<p>Distracted driving accounts for 16% of all care fatalities in 2009, most of these experiences were because of in-car entertainment systems?</p>
<p>Many grocery stores are getting rid of self service checkout. Big Y Foods due to their research decided to bag self service checkout.</p>
<p>&#8220;The most valuable asset of a successful design team is the information they about their users.&#8221; &#8211; Jared Spool</p>
<p>One of the best ways you can do this is buy doing a field study of observing your users.  What do you want to learn?  What do you plan to do with the results?  List out your assumptions and validate them.  This will allow you rollup your data in a meaningful way.</p>
<p>One of the biggest mistakes you can make in research is rushing to conclusions before you complete your research.  Try to observe users in their natural environment.</p>
<p>Before you do your testing, conduct a pilot session, arrive early, then stay out of the way of your uses, don&#8217;t be afraid to adjust your plans on the fly, and capture all the data you can.</p>
<p>When you analyze your data make sure you test out your assumptions, go back to your objectives and leverage visuals, but above all let your data drive your analysis.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlanticbt.com/blog/usability-and-design-internet-summit-notes-day-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My Morning Raleigh Internet Summit Notes</title>
		<link>http://www.atlanticbt.com/blog/my-morning-internet-summit-notes/</link>
		<comments>http://www.atlanticbt.com/blog/my-morning-internet-summit-notes/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 17:17:37 +0000</pubDate>
		<dc:creator>Daryl Hemeon</dc:creator>
				<category><![CDATA[Atlantic BT]]></category>
		<category><![CDATA[Business & Internet]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[User Experience]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Programming]]></category>
		<category><![CDATA[Website Redesign]]></category>

		<guid isPermaLink="false">http://www.atlanticbt.com/blog/?p=3970</guid>
		<description><![CDATA[As I burst into the morning Internet Summit lobby, with my trusted lawyer at my side the wonderful people at check-in could not find my registration.  I had to hold back Dr. Gonzo, but thankfully I was allowed to proceeI d up the long escalator to find the American Tech Dream. I entered the grand [...]]]></description>
			<content:encoded><![CDATA[<p>As I burst into the morning Internet Summit lobby, with my trusted lawyer at my side the wonderful people at check-in could not find my registration.  I had to hold back Dr. Gonzo, but thankfully I was allowed to proceeI d up the long escalator to find the American Tech Dream.</p>
<p>I entered the grand ballroom and my first thought was, &#8220;is this Vegas?&#8221;  Fortunately for me it wasn&#8217;t Vegas and I found a comfortable spot to take notes on the first session. (note to all speakers:  I did my best to regurgitate your notes, don&#8217;t hold it against me)</p>
<h3>Christian Sullivan (<a title="@differentwalk" href="http://twitter.com/#!/differentwalk" target="_self">@differentwalk</a>) &#8220;Creating a World Class Social Media Campaign&#8221;.</h3>
<p>Here are the highlights:</p>
<ul>
<li>Gap&#8217;s use of Groupon sold 400,000 coupons worth 11 million</li>
<li>Moutain Dew&#8217;s &#8220;Dewmocracy&#8221; campaign gained 800,000 Facebook fans</li>
<li>Sam-e&#8217;s Good Mood Gig campaign used contents to generate buzz</li>
<li>Ford&#8217;s new car reveal actually connected fans by driving customers to their site throughout the day of the reveal</li>
<li>Levi&#8217;s created a &#8220;Like&#8221; store which placed the Facebook &#8220;Like&#8221; button on all their products, it created more referrals to their site than any other source.  It also created trust amongst their consumers because their friends recommended their products.</li>
</ul>
<p>One of her overall messages was to remember that the consumer is in control, so let them have control because the consumers want to participate in their experience.</p>
<h3>Todd Moy <a title="@toddmoy" href="http://twitter.com/#!/toddmoy" target="_self">@toddmoy</a> : &#8220;The Secret World of Usability&#8221;</h3>
<p>Todd gave a great talk about how usability permeates all function in life and not just applications.  He discussed some really key concepts which I will spit out in note format and give some good examples.</p>
<h4>The Shaping of Perceptions</h4>
<ul>
<li>When people are given a gift they immediately think the products they were were working with are more usable.</li>
<li>As consumers we are strongly encouraged by feedback as you move through the product &#8211; we want to take an action and then see what the reward is taking that action.  Good example of this <a title="turntable.fm" href="http://turntable.fm/" target="_self">turntable.fm</a> &#8211; your virtual friends&#8217; avatar&#8217;s will head-bob when they dig your tunes.</li>
<li>&#8220;We when we feel good we overlook design faults.&#8221; &#8211; Norman &#8211; This can also apply to how we interact with our significant others!</li>
<li>The timing of the reward is important, when it is given.  Try to make the reward not long after the interaction.  I immediately thought of <a title="RunKeeper" href="http://runkeeper.com/user/dhemeon/profile" target="_self">RunKeeper </a>and how they send me an email when I reach a goal or logged my 100th activity.</li>
<li>Amazon found out that they significantly increased revenue by offering free shipping at $75.  People were given an incentive to spend more.</li>
</ul>
<h3>Matthew Munoz <a title="@matthewmunoz" href="http://twitter.com/#!/matthewmunoz" target="_self">@matthewmunoz</a> : Web Design as a Strategic Tool</h3>
<p>Matthew gave a great presentation with trying to answer to the question, &#8220;How do we make the designer a catalyst?&#8221;  In this crazy world of scarce attention, how to we dedicate the time an energy to show abstract concepts?  The challenges that he put out there were ones we face everyday in this industry. How do you design a visual argument?  How do you design a story that breaks down complexity?</p>
<p><a href="http://www.slideshare.net/danroam/healthcare-napkins-all?from=ss_embed" target="_self">Great example here of Dan Roam&#8217;s Napkin Design for Health Care reform.</a> The point here was how do you take a 2000 page bill and come up with a way to show visually what is it all about?  How do you tell a visual story that breaks down the complexity?  How do we create meaning or a process for creating options?</p>
<p>Matthew&#8217;s manifesto is as follows &#8211; his prescription for solving those confounding problems.  Some of my notes are mixed in here as well:</p>
<ol>
<li>Use Metaphors</li>
<li>When you use scenarios things feel less risky</li>
<li>&#8211;missed this one Dr. Gonzo was sabotaging lunch&#8211;</li>
<li>tell stories &#8211; <a href="http://www.toms.com/eyewear/our-movement" target="_self">Tom&#8217;s One for One</a></li>
<li>Ask Why 5 times &#8211; continue to ask this question until you get to the root meaning of what you are doing</li>
<li>inspire action with openness, create an architecture of participation, contribution and participation (I thought of crowd sourcing and social media)</li>
<li>every project is chance to find common ground &#8211; he positioned his team as Sherpa.</li>
<li>break your project into sprints and workshops and have your clients participate</li>
<li>imperfection breeds participation &#8211; get people to be involved even if you work isn&#8217;t done</li>
<li>release early and release often</li>
<li>design with, and for</li>
<li>design the system</li>
<li>everyone is a designer &#8211; great point here about how everyone can give you feedback, they just might not be able to move elements on a page, but they can tell you WHY they like or dislike</li>
<li> build your reputation as a problem solver and opportunity finder and doors will open for you, and yes like Sally Field, people will like you, they really will.</li>
</ol>
<p>That is all for now, I have to run because Dr. Gonzo is trying to make his way to take over the podium for the key note, heaven help us all.  I just hope I can find my turkey sandwich.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlanticbt.com/blog/my-morning-internet-summit-notes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Brewing Up a Website: How Making Beer is Like Designing a Website</title>
		<link>http://www.atlanticbt.com/blog/brewing-up-a-website-how-making-beer-is-like-designing-a-website/</link>
		<comments>http://www.atlanticbt.com/blog/brewing-up-a-website-how-making-beer-is-like-designing-a-website/#comments</comments>
		<pubDate>Thu, 10 Nov 2011 23:05:37 +0000</pubDate>
		<dc:creator>Mark Caron</dc:creator>
				<category><![CDATA[Off Topic]]></category>
		<category><![CDATA[User Experience]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[beer]]></category>
		<category><![CDATA[brewing]]></category>
		<category><![CDATA[homebrew]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[UX]]></category>

		<guid isPermaLink="false">http://www.atlanticbt.com/blog/?p=3867</guid>
		<description><![CDATA[You&#8217;re thinking one of two things: &#8220;How on Earth can you compare brewing beer to building a website?&#8221; Or, &#8220;oh no, not another analogy!&#8221; Either way, stay with me here. Comparing brewing beer to making a website may not be as far-fetched as one might assume. It&#8217;s no secret, I love beer. When I&#8217;m not [...]]]></description>
			<content:encoded><![CDATA[<p>You&#8217;re thinking one of two things: &#8220;How on Earth can you compare brewing beer to building a website?&#8221; Or, &#8220;oh no, not another analogy!&#8221; Either way, stay with me here. Comparing brewing beer to making a website may not be as far-fetched as one might assume.</p>
<p>It&#8217;s no secret, I love beer. When I&#8217;m not talking about web design, I&#8217;m talking about beer and my homebrewing hobby. So naturally, this is where my &#8220;water cooler discussions&#8221; usually end up. What I&#8217;ve found from these conversations is that I have a lot of co-workers that love beer too. If you weren&#8217;t aware, we have 3 homebrewers, 1 ex-commercial-brewer, and about 25 or more avid beer fans in our office.</p>
<p>Fanboys aside, designing a beer and the process of brewing is similar to the planning and developing of a website. Both industries have a handful of key ingredients and important factors:</p>
<ol>
<li>The concept or idea</li>
<li>The purpose and end-goals</li>
<li>The foundation</li>
<li>The experience</li>
<li>The consumers and keeping them coming back</li>
</ol>
<p>When these factors come together in harmony, we&#8217;re left with a  product  that makes both the brewer (or web designer and client) and the consumer  equally  happy. And, on the other end, if these factors don&#8217;t jive, we&#8217;re left with a sad product that doesn&#8217;t sell.</p>
<div id="attachment_3915" class="wp-caption alignright" style="width: 310px"><a href="http://www.flickr.com/photos/walker_ep/4628326592/sizes/m/in/photostream/"><img class="size-medium wp-image-3915   " title="4628326592_7606369ca4" src="http://d1rvlzmuzboe2s.cloudfront.net/blog/wp-content/uploads/2011/11/4628326592_7606369ca4-300x200.jpg" alt="" width="300" height="200" /></a><p class="wp-caption-text">Photo by e_walk on Flickr</p></div>
<h2>The Concept or Idea</h2>
<p>In order to craft a great beer, you first need a solid idea. What kind of beer are people drinking? How saturated is the market? What kind of beer do I want to make? These are just some of the questions any product design phase. They&#8217;re necessary because they help you focus on your concept. Going too broad too soon could result in failure. So, we focus on what will work for now. Once we build up a following, then we can begin to introduce all those other ideas or recipes floating around in our head.</p>
<p>So, I&#8217;ve done my research and I&#8217;ve found that most people in Raleigh seem to like pale ales. There&#8217;s already a few local breweries that make this style. But, there&#8217;s room for competition since the demand is so high. Now that we have a style chosen for our flagship, it&#8217;s time to plan and test the recipe. We find some friends, invite them over, and have them taste our latest batch of beer. We might even submit our idea to a panel of experts looking for feedback. In the homebrew world, this panel of experts are judges at a local competition. Regardless, every person along the way helps us formalize our concept&#8211;making it stronger.</p>
<p>Then, we need a catchy name. The name needs to say it all. And, most of the time, it needs to not have been used before. We&#8217;ll call our pale ale &#8220;Crabtree Pale Ale.&#8221; This name not only suggests the hoppy and dry finish we&#8217;re going for, but it means something to my local market too. I can already picture the label.</p>
<h2>The Planning and End-Goals</h2>
<p>Fully understanding the purpose of your concept can help you derive your end-goals. And, properly planning this execution is vital to success. This would be like understanding and formulating your recipe to suit a particular beer category. What flavor, aroma, and texture components are necessary to the style? What ingredients are used to achieve this complexity? And, most importantly, what can we do to keep this product on or under budget without sacrificing quality?</p>
<p>We&#8217;re making a <a title="BJCP 2008 Guidelines" href="http://www.bjcp.org/2008styles/style10.php#1a" target="_blank">pale ale</a>, so we need a final beer that is relatively clean, moderately hoppy or bitter, and maybe a touch citrusy. The final product should also be pale and clear. There&#8217;s a few malts that we can choose from to create the flavors we want, as well as, a whole-host of American hops that will fit the profile.</p>
<p>It&#8217;s no coincidence that planning and end-goals are so closely related to the concept. What you&#8217;ll find is that there&#8217;s a lot of reliance on, or blending of, each of these steps. This is necessary to achieve the best product possible. This is also why it&#8217;s important to have all the moving parts under one roof.</p>
<h2>The Foundation</h2>
<p>Arguably, the most important ingredient in beer is water. In fact, beer is comprised mostly of water. Therefore, water quality naturally plays the biggest part. Many brewers treat their water to achieve the profile appropriate for the beer style. Whether we want hard or soft water, it is much like choosing the right code base, e.g., .Net or PHP. Each has it&#8217;s own advantages and disadvantages. Water can accentuate hop flavor or malt flavors. It can affect the efficiency of our <a href="http://en.wikipedia.org/wiki/Mashing" target="_blank">mash</a> (similar to making tea with grain). And, if you&#8217;re like me, this complicated chemistry gives you a headache, much like the programming languages and networking/hosting required for making a website.</p>
<p>The quality and balance of your code and HTML is much like water in brewing. Bad code can really ruin a website, and chlorine can ruin a beer. Gross.</p>
<h2>The Experience</h2>
<p>The overall experience, or taste of the beer, is crafted in part by the water quality, as well as, the ingredients and techniques used during the brewing process. In web design, this crafting is done by our User Experience (UX) Designers. They&#8217;re major players throughout the entire life-cycle of the project. Everything that is done passes through their UX filter. Their chief concern is always how the end-user will experience and use the website. For beer, if a flavor component is off, the consumer will reject it because it doesn&#8217;t taste right or it is too hard to drink.</p>
<p>This &#8220;experience layer&#8221; in brewing has many moving parts. There&#8217;s the malt, the hops, the pH balance of the water, and the temperature control (at each step). And, if the style requests, a spice or adjunct may be in the mix.</p>
<p>Malt brings sweetness and potential alcohol. Hops brings bitterness or balance (it also preserves the beer). Chemicals in the water accentuate each of these flavors as well as improve the efficiency of the process. But, temperature control can easily become the biggest player in the result of the final product. I can add the right amount of hops, but if I mash too cool, then I won&#8217;t have enough residual sweetness to balance the beer. I&#8217;ll be left with a harsh, thin, liquid. Been there before.</p>
<p>This is much like adding lots of eye-candy, frills, and information to your site, only to find that you didn&#8217;t pay attention to what the users (not you) are looking for from your website. If the frills don&#8217;t help the experience, then don&#8217;t add them. And, like-wise, if all the moving parts parts (designers, developers, marketing, and UX) don&#8217;t come together in perfect harmony, something might break.</p>
<p>The experience is a double-edged sword. It&#8217;s all about balancing the frills and ingredients to achieve the perfect experience.</p>
<h2>The Consumer and Keeping Them Coming Back</h2>
<p>You may have noticed that I left one key ingredient out of my beer analogy so far. That is yeast. Yeast is our consumer. And, so is the actual consumer. But, to be fair, yeast is the first organism consuming our beer.</p>
<p>During the entire process, you&#8217;re attempting to make a sugary water extract, called <a href="http://en.wikipedia.org/wiki/Wort" target="_blank">wort</a>, that will be like a <a href="http://en.wikipedia.org/wiki/Candy_Land" target="_blank">Candy Land</a> for these tiny single-celled creatures. Unfortunately, though, it&#8217;s not as simple as that. If you mash the malt too high, you&#8217;ll be left with an un-fermentable extract. Essentially, you&#8217;ve made a beer with too much sweetness. Or, a website with too many frills and not enough digestible substance. This could be too much content or, conversely, too much JavaScript fanciness hiding the lack of precision. We want those yeast cells to consume and multiply. We want them to have families that consume the beer too.</p>
<p>Another potential problem is not adding the right amount of yeast. This would be comparable to hitting the market without proper marketing. What happens? The fermentation happens too slow resulting in off-flavors. And, possibly, you end up with a stuck fermentation. In the product world, this is slow growing and painful return on investment. Or worse, no growth at all.</p>
<p>There&#8217;s lots of ways to keep the fermentation going, or entice the consumer. We could control the temperature, making sure it&#8217;s appropriate for growth. We could use the appropriate yeast and pitch the perfect amount of it. This is similar to choosing the right target audience and controlling the amount of marketing. During the products life, how much marketing are you investing into your product?</p>
<p>Or, if the style allows, stick the beer in the corner and allow it to open ferment at what ever temperature it gets in the room during the day. This would be like viral marketing&#8211;letting the consumer run with it! But, then again, it all comes back to the initial concept: what style or what am I selling? And, how do you market the product appropriately?</p>
<h2>Final Product</h2>
<p>Once the yeast has done it&#8217;s thing, you&#8217;ve got a <a title="Tasty Beverage" href="http://tastybeverageco.com/" target="_blank">tasty beverage</a> waiting for you in the icebox. So, sit back, relax, and enjoy the product you&#8217;ve created. And, if you venture beyond the hobby, maybe it&#8217;ll make you lots of money one day. Cheers!</p>
<p><em>By the way, what&#8217;s your favorite beer?</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlanticbt.com/blog/brewing-up-a-website-how-making-beer-is-like-designing-a-website/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To Buy Internet Marketing and Raleigh Web Development</title>
		<link>http://www.atlanticbt.com/blog/how-to-buy-internet-marketing-and-raleigh-web-development/</link>
		<comments>http://www.atlanticbt.com/blog/how-to-buy-internet-marketing-and-raleigh-web-development/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 00:52:19 +0000</pubDate>
		<dc:creator>msmith</dc:creator>
				<category><![CDATA[Atlantic BT]]></category>
		<category><![CDATA[Business & Internet]]></category>
		<category><![CDATA[E-commerce]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web Analytics]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Website Redesign]]></category>

		<guid isPermaLink="false">http://www.atlanticbt.com/blog/?p=3579</guid>
		<description><![CDATA[Atlantic BT shares tips on how to buy web sites, web development, web redesigns and Internet marketing in Raleigh, Durham and Chapel Hill (and Boston, Austin and Silicone Valley). ]]></description>
			<content:encoded><![CDATA[<div id="attachment_3580" class="wp-caption alignleft" style="width: 229px"><img class="size-medium wp-image-3580" title="foundobj-for-scenttrail" src="http://d1rvlzmuzboe2s.cloudfront.net/blog/wp-content/uploads/2011/11/foundobj-for-scenttrail-219x300.gif" alt="Found Objects Martin Smith's first web site created 1999" width="219" height="300" /><p class="wp-caption-text">Martin&#39;s First Web Site circa 1999</p></div>
<p>I was in love. I’d spent a year creating my first web site (FoundObjects.com now in the <a title="Way Back Machine home page link " href="http://www.archive.org" target="_blank">WayBackMachine</a> and on <a title="ScentTrial Marketing FoundObjectscom page" href="http://scentTrial.blogspot.com" target="_blank">ScentTrail</a> Marketing). Those vertical Mondrian lines are a month of my life I will never get back. I wasn’t the nicest human during the long incubation either. I HATE not being able to figure something out. Learning to use 1999 HTML to accomplish FoundObjects.com’s art / portal look took time and more left brain than is naturally resident.</p>
<p>There was no choice. We had no money, or money we didn’t need for food, keeping a roof over our head and keeping our fledgling specialty gift distribution company alive. There was good news. We were selling our generation’s “Pet Rock”, a gift so viral its run rate was already in the millions. Ever play with magnetic words on a friend’s refrigerator? Thanks <img src='http://d1rvlzmuzboe2s.cloudfront.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Sales of <a title="Magnetic Poetry Kit homepage link " href="http://www.magneticpoetry.com/" target="_blank">Magnetic Poetry Kit</a> kept FoundObjects.com afloat long enough to teach important lessons in web development and Internet marketing.</p>
<p>FoundObjects.com was a “specialty gift distributor”. Our model turned on creating the next Magnetic Poetry Kit. Aspiring gift entrepreneurs pitched us ideas. We created strategy, shared our manufacturing network, put products into our warehouse, developed marketing materials and plans and sold to our list of cool niche gift shops in America and around the world at International gift shows in New York and San Francisco. Found Objects was raw <a title="Quirky homepage link " href="http://www.quirky.com/" target="_blank">Quirky</a>. Quirky without the TV show and cool web community.</p>
<p>I’d convinced my now ex-wife to share our cool stores customer list online. Reaching my highest level of programming incompetence attempting to read and write to databases (a task much to left brained for me then), I created 50 flat HTML1 (vs. HTML5 now) tables by state. “Our competition will use our list too,” was the President of FoundObject.com’s concern. She was right and she was wrong. Our competitors did use our list AND they helped maintain it providing my first lesson in community quid pro quo. People want to help.</p>
<p>Keeping 50 state tables up to date was a pain. It is the kind of work I hate – detailed, tedious and necessary. Google loved those tables. Typing “cool stores in LA” in 2000 and FoundObjects.com was on top of a SEO clueless specialty gift crowd. We were lucky not smart. Google’s spider liked those tables more than the nasty dynamic code of the day. <em><strong>Then I made a mistake.</strong></em></p>
<p>I hired a talented UNC computer programmer (Adam if you are reading this call me), to create a database to eliminate painful, time consuming table maintenance. I won the battle and lost the SEO war.  My 50 tables were easy before Google’s spider to read. Back before Google floated the index, making your result set and mine different based on cache, friends and login,  knowing when something was SEO wrong didn’t take long.</p>
<p>One day FoundObjects.com was on page one and in the first organic listing for Cool Stores in X (where x was any American city or state). The next day, not long after my labor saving change, FoundObjects.com was NOT on page one, two or even page 55. Ouch.</p>
<p><img class="alignleft size-full wp-image-3593" title="martinquote1" src="http://d1rvlzmuzboe2s.cloudfront.net/blog/wp-content/uploads/2011/11/martinquote1.jpg" alt="Atlantic BT Raleigh Web Developers Martin Quote" width="222" height="183" />I’d violated the first rule of Google. I’d removed something spider-friendly from the FoundObjects.com tapestry in favor of something not spider-friendly. Adam and I didn’t know to create a flat table and feed Google’s voracious spider the way it was used to being fed. We didn’t understand the rules of the SEM game. Suddenly without warning  we found ourselves in the middle of a mysterious new game with hidden coda, strange rules and painful penalties for being stupid, badly informed or both and we&#8217;d just been both. Ouch!</p>
<p>More than ten years later I understand. The real value of FoundObjects.com was its <a title="Etsy homepage link " href="http://www.etsy.com" target="_blank">Etsy.com</a>-like mashup. Google’s hidden bear traps requiring careful consideration, planning and calling smart friends are clear to me now. Every Internet marketing day is a game played with live ammunition, invading armies, courage and honor (mostly).</p>
<p>How does this story relate to Atlantic BT’s new How To Buy Internet Marketing and Web Development in Raleigh North Carolina series? Almost every Atlantic BT customer already has a web site. When they visit the Atlantic BT Center right outside of Macy’s at Crabtree Valley Mall they want more than a web site, they want to win.  Many customers are confused. One Raleigh Web Development company recommends this change, another company suggests three others so maddening confusion ensues.</p>
<p>Discussing web redesigns without understanding business objectives is crazy and dangerous. Google knows your site. You’ve been modeled as a site with 300 pages (for example), 2,000 unique visitors a month, average page views of 3.5, a bounce rate of 62% (say) and a little under four minutes average visit time. Your site has PageRank, a number between one and ten Google assigns to create the most important bell curve in Internet marketing, and you have 200 inbound links from a variety of sites. The PageRank of sites linking to you helps define where your existing site stacks up in search. Are you the lead sled dog? Is your site the most trusted source on topics important to your business? Or are you pulling the sled from inside an aggressive pack of huskies? Middle of the pack means you don&#8217;t get pushed off the team, but the view is always the same.</p>
<p>Managing a $2 million dollar ecommerce site in 2003 I had an interesting conversation with my boss. “What,” I asked not expecting the answer I got, “is my Pay Per Click marketing budget?” “You don’t have a budget, you have a return on investment (ROI) goal of $3 to $1,” my direct marketing boss gave me the right answer to my question for the very first time in my career. My online marketing budget was infinite as long as we made money. It would grow to over $1 million consistently delivering $3 to $1 or better.</p>
<p>Writing this Atlantic BT post almost nine years later I remember sitting in here office. I&#8217;d looked out the window sure some momentous natural thing was about to happen. Lightening would strike, aliens land, dogs and cats live together.</p>
<p>I’d run a Profit and Loss (P&amp;L) statement for my friend and now great customer researcher <a title="Mary Kay O'connor Starting Point Customer Researcher link " href="http://www.startingpointkc.com/" target="_blank">Mary </a><img class="alignleft size-full wp-image-3594" title="nutrasweet_martin" src="http://d1rvlzmuzboe2s.cloudfront.net/blog/wp-content/uploads/2011/11/nutrasweet_martin.gif" alt="Nutrasweet logo" width="100" height="100" /><a title="Mary Kay O'connor Starting Point Customer Researcher link " href="http://www.startingpointkc.com/" target="_blank">Kay O’Connor</a> at Monsanto / Nutrasweet. Mary Kay asked me to justify $100K in travel (this was before GoTo meeting) and two million in advertising on our high margin food ingredient sales to the company’s $20+ million dairy business (sugar free frozen novelties were about to become all the rage thanks to a talented team of R&amp;D, marketing, PR and sales people).</p>
<p><em>My last corporate job as Director of Dairy sales controlled about five million more gross dollars than my new company’s total annual revenue</em>.  My new web team controlled about 12% of my new company’s topline in 2003. At Nutrasweet I had paper power.  Thanks to my boss’s singular, perfectly suited Internet marketing idea of infinite budget my power was much greater despite my new company&#8217;s smaller size.<em> Internet marketing and web development in Raleigh or anywhere else is NOT about spending as little or as much as possible</em>. Internet marketing and web development is about creating positive return on invested capital (ROC). ROC means you stay and play. No return and someone plays with your toys.<img class="alignleft size-full wp-image-3601" title="braingraphic" src="http://d1rvlzmuzboe2s.cloudfront.net/blog/wp-content/uploads/2011/11/braingraphic.png" alt="Atlantic BT brain graphic " width="100" height="120" /></p>
<p>You see the Internet marketing game yet? You see how web metrics and analysis becomes lifeblood for Internet marketing? Your PPC budget is infinite as long as Return On Ad Spend (ROAS) is positive. Positive enough to either make money outright or drive conversions to more profitable channels (email marketing, organic search, social network marketing). You can’t play this new Internet marketing and web development game in Raleigh or anywhere else unless you quantify stimulus and response, action and reaction, traffic and conversion.</p>
<p>I’ve shared my web marketing revelation story several times with clients, clients who’ve talked to every Raleigh web development company and are so confused and angry they could spit. Sharing how lost, lucky and then stupid I was more than ten years ago helps lighten things up. I explain outright failure is often how the most important Internet marketing lessons are learned.  How should Raleigh web development be purchased? A: carefully. Your web site isn’t an island. Web sites ONLY represent YOU. Web sites can’t and will never be a thing in and of themselves.</p>
<p>Web development as extension of branding and business goals can be hard to grasp. Many customers want to work backwards. Create a cool site and our business will be special. Yes and no. Any cool web development is immediately dependent on the life support system created by or for the new web copy, images and code floating in infinite and ever expanding Google space. If your are trying to buy a website redesign it is like you are adopting a child, a child with existing behaviors.</p>
<p><img class="size-full wp-image-3598 alignright" title="martinquote2" src="http://d1rvlzmuzboe2s.cloudfront.net/blog/wp-content/uploads/2011/11/martinquote2.jpg" alt="Atlantic BT Raleigh web developers Martin quote image" width="199" height="164" />Atlantic BT’s first job is to observe your newly adopted child. How does he or she play with others? How does the most powerful hall monitor ever created (Google) feel about him or her? This analysis provides some insight into how competitive your child is and can be long term (online 3 years is long term). If we know your newly adopted child’s unique traffic, trends (up or down and for how long), PageRank for Home page, Twitter, Facebook and other important pages we can tell how much tutoring will be required to get a PhD (if that is the goal).</p>
<p>If you&#8217;ve been an Internet marketers long enough you develop a large amount of reasonable benchmarks. Are there outliers and exceptions? Do black swans exist? Sure but black swan exceptions and outliers prove not disprove rules, guidelines and benchmarks.  Internet marketing in Raleigh or anywhere is, at its core, a mathematical progression. Five data points and we can model your competitive space. We never stop with five points. After we observe how your adopted child / web site is being treated on the playground we want to understand the playground, all remotely similar playgrounds and anticipate future playgrounds.</p>
<p>The hunt for future playground, or what I call “<a title="Blue Ocean Strategy book link " href="http://www.blueoceanstrategy.com/boo/book.html" target="_blank">Blue Oceans</a>” stolen from Blue Ocean Strategy book, is, not surprisingly, also a mathematical progression. We hunt data anomalies. Yesterday seeing a PageRank 6 site with less than 700 pages in Google alarms went off. See the ART in web analytics? You might look at a PR6 with so few pages and think, “Good show.” I look at the math and say it doesn’t add up. Anything beyond a standard deviation of 5% requires diving into Omniture, Coremetrics, Google Analytics, <a title="Spring Metrics web metrics homepage link " href="http://www.springmetrics.com" target="_blank">Spring Metrics</a>, <a title="Argyle Social social ROI tool link" href="http://www.Argylesocial.com" target="_blank">Argyle Social</a> and possibly five other datasets to understand the WHY of it, the reason for such anomalies. <em>Knowing when to dive and when diving doesn’t matter is the art of web analytics</em>. BTW, the over and under on earning a PR6 with so few pages is off the charts.</p>
<div id="attachment_3595" class="wp-caption alignleft" style="width: 130px"><img class="size-full wp-image-3595" title="abt-logo-globe_final" src="http://d1rvlzmuzboe2s.cloudfront.net/blog/wp-content/uploads/2011/11/abt-logo-globe_final.gif" alt="Atlantic BT Raleigh web developers logo" width="120" height="120" /><p class="wp-caption-text">Atlantic BT Logo</p></div>
<p>The world is awash in data. There is more data than you can massage, pivot, report or understand. <strong><em>Data doesn’t matter, understanding does.</em></strong> Understanding separates good from great in web development in Raleigh, Durham, Chapel Hill, Austin, Boston and Silicon Valley. Great internet marketers, and I know several, can share process, provide steps and some experience based benchmarks to set expectations. Art is a higher calling, a strange mix of experience, analysis, science, intuition and gut. People with last names like <a title="Chris Brogen internet marketing genius link " href="http://www.chrisbrogan.com/" target="_blank">Brogen</a>, <a title="Seth Godin internet marketing author link" href="http://www.SethGodin.com" target="_blank">Godin</a> or <a title="Andy Beal internet marketing genius link " href="http://www.andybeal.com/" target="_blank">Beal</a> (right here in RDU) are magicians.</p>
<p>Come to the Atlantic BT Center needing only a new web site and you are an outlier. Most customers need brand clarity, blue ocean analysis (where aren’t your competitors and how do you get and stay on the beach), Internet marketing strategy and yes probably new web code and better user experience (UX design).</p>
<p>Internet marketers move from business problems out to web site creation. Most customers think from web sites in. Meeting in the middle, discussing the unique characteristics of Raleigh web development (can you say geotargeting and local search) and Internet marketing&#8217;s current truths and cool campaigns emerge. Since non-action is the largest Internet marketing sin followed closely by taking Google’s teddy bears away we work together to create action plans. We do stuff even if it is the wrong stuff initially (something we will know immediately from metrics so don&#8217;t worry).</p>
<p>We don’t create “Invade Russia In The Winter” inflexible plans. We don’t extend the plan for more than a month. A month of PPC provides enough feedback to change ideas ten times, to alter creative and find winning offers (FREE SHIPPING if you are an ecommerce and FREE TRIAL if you are B2B). We watch Google Analytics like hawks sitting attentively on wires watching a grassy field for dinner. Any movement, defined as standard deviation of +/- 5%, means wings start flapping.</p>
<p>Internet marketing and web design and development hinge on the OTHER stuff you do. A few days ago, looking at a beautiful and very expensive site, we had to say “you can’t get there from here”. The site, for all its extraordinary beauty was an Internet marketing zombie. Already dead we had to declare it so, a necessary but never FUN conversation. Next we looked hard at the space, at the business model. Could we move in some new direction? Who controlled the high ground? How well armed were a possibly new set of competitors? Sorry about all the war metaphors, but Internet marketing is not smores by the fire. We found a sideways move that is worth some testing.<img class="size-full wp-image-3602 alignright" title="rocket" src="http://d1rvlzmuzboe2s.cloudfront.net/blog/wp-content/uploads/2011/11/rocket.gif" alt="Atlantic BT rocket " width="78" height="93" /></p>
<p>Google&#8217;s reputation based economy means you can buy web development from Atlantic BT in Raleigh or any of my five other friends running similar companies across America secure in the knowledge your investment is protected. Darwin protects your web dev project. Intelligent business strategists thrive.  Web development snake oil becomes extinct.  When we meet at the Atlantic BT Center right outside Macy’s you may think we are aliens speaking in tongues. Arthur C. Clark explained this feeling:</p>
<p>Any sufficiently advanced technology is indistinguishable from magic.</p>
<p><img class="alignleft size-full wp-image-3605" title="thmbsup" src="http://d1rvlzmuzboe2s.cloudfront.net/blog/wp-content/uploads/2011/11/thmbsup.gif" alt="Atlantic BT Thumbs Up" width="120" height="225" />We feel dislocation moving from what is known toward the margins of Internet marketing, out toward the edge of the known web development universe.  Mobile is here and dislocating. Truth is contradictory, strange and stress creating in mobile marketing now. Ever attend a junior high dance? Boys on one side girls on the other right?</p>
<p><a title="Mobile Marketing Matters Now" href="http://www.atlanticbt.com/blog/mobile-marketing-matters-now/" target="_blank">Mobile marketing</a> is having that dance now. Some brave dancers are heading out to the middle of the basketball court. They may be richly rewarded. Applying our standard deviation model to mobile marketing isn’t a good idea. Mobile marketing doesn’t appear to create an investment return. Based on a strong “been here before, don’t want to miss another one” gut check we are off the wire, flapping our mobile marketing wings and investing NOW.</p>
<p>What does any of these strange stories have to do with buying a web site redesign? Come to Atlantic BT. We will tell you a story, a story of heroes, villains, trolls, monsters and enough gold to take your breath away. Gold at the end of a quantifiable rainbow sitting atop an Agincourt of victory is the norm. Internet marketing and web development in Raleigh, North Carolina or anywhere else is noisy, crowded and aggressive.</p>
<p>Change your thinking about purchasing web design support. Move from “costs” to “return”. Trust we lucky few Raleigh web developers have more to lose. We will share everything we know, have ever learned and are thinking even if you use the other guys. There are GOOD other guys too (lol). No one has a corner on Raleigh web development, Durham Internet marketing or Chapel Hill web marketing.</p>
<p>If you’ve been burned by snake oil as I have try not to let past experience influence your NOW. I’ve <img class="size-full wp-image-3613 alignright" title="google_knows" src="http://d1rvlzmuzboe2s.cloudfront.net/blog/wp-content/uploads/2011/11/google_knows.png" alt="Atlantic BT Google Knows image" width="150" height="179" />been burned 3 times but have made at least 50 Internet marketing purchases (vendors and friends like Adam from my opening example). Three burns out of fifty isn’t bad. Those three scorching bad experiences are outliers. The norm is Internet marketing and web development ideas, people and software purchased performed well and some incredibly so creating outliers on the other end of the bell curve from snake oil.</p>
<p>We see the tension, expectation and worry in many buyers. They believe they’ve been sold snake oil, but it is rare they have actually been so taken. Mostly they have something that feels wrong and buyer’s remorse is raging. Here are a few web development rules to live by:</p>
<ul>
<li> If someone says they can make you #1 on a keyword in Google without knowing anything about where you stand, your competitive set or your budget for things like content marketing, social network marketing and PPC campaigns RUN.</li>
</ul>
<ul>
<li> If you think your current site is horrible and you paid too much ASK US. We look at web sites differently. If your site isn’t crazy stupid, and there are about 100 ways it can be, then you did good and probably got what you paid for. You are in the game. Congratulations.</li>
</ul>
<ul>
<li> Approach Atlantic BT or any other Raleigh web dev with trust created from knowing we have more on the table than you. Your site can always get better. We bet our company on making you enough ROI to tell five friends (and that is at least $5 to $1 in my experience).</li>
</ul>
<ul>
<li> “But we are risking our 401k,” you may be thinking.  Been there, done that and have the t-shirt and we won’t take that gig. I see the irony of saying if young Martin asked Atlantic BT for help old Martin would say no, but the game is different, an order of magnitude different, now. Old Martin would never turn young Martin away. I would set young Martin up with three friends who know how to get young Martin’s idea packaged, introduced online and learn to fly enough that Atlantic BT and the many big guns we have may never be needed. Cost of poker and we promise to write about your (and my friend’s) winged victory and cry into our beers a little over being so goofystupid.</li>
</ul>
<p><img class="alignleft size-full wp-image-3610" title="Atlantic BT heart" src="http://d1rvlzmuzboe2s.cloudfront.net/blog/wp-content/uploads/2011/11/warhol-andy-heart-c-1979.jpg" alt="Atlantic BT heart " width="158" height="200" />We are in love.</p>
<p>I could write about how to buy email marketing, Internet marketing (PPC), search engine optimization, content marketing and social media marketing for hours and hours and thousands and thousands of words. This is the business I, most of my friends and Atlantic BT have chosen. We love this strange Internet marketing journey.</p>
<p>Visit Macy’s, buy some shoes, a dress or perfume and then run across the street and let Atlantic BT share a story or two.</p>
<p>Get Started…Find blue oceans and ALWAYS LEAD!</p>
<p>Martin</p>
<p>&#8212;<br />
Martin Smith<br />
Director of Marketing<br />
Martin(dot)Smith(at)AtlanticBT(dot)com</p>
<p><strong>Start Today, Start Now, Here is How&#8230;</strong></p>
<p><a title="Contact Atlantic BT" href="http://www.atlanticbt.com/contact" target="_blank">Contact Atlantic BT:</a><br />
Yes, I want you to share a story and here some more of yous <img src='http://d1rvlzmuzboe2s.cloudfront.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p><strong>Sounds interesting, but I want to learn more</strong><br />
Atlantic BT <a title="Atlantic BT Internet Marketing Blog" href="http://www.atlanticbt.com/blog/" target="_blank">Blog</a><br />
Atlantic BT Customer <a title="Atlantic BT Customer Video testimonials" href="http://www.atlanticbt.com/videos.php" target="_blank">Video</a> Testimonials<br />
Atlantic BT <a title="Atlantic BT Raleigh Web Developers on Twitter" href="http://www.twitter.com/atlanticbt" target="_blank">Twitter</a></p>
<p>I want to come by and see your operation but don’t want to buy anything or talk to some sales guy.</p>
<p>Join our <a title="Raleigh Internet Marketing Meetup" href="http://www.meetup.com/Internet-Marketing-Relativity/" target="_blank">Internet Marketing Meetup</a> and come by to hear Lisa Sorg, Editor of the Independent, speak about how a niche publication looks almost as large as the N&amp;O online (very cool)</p>
<p><strong>I’m a competitor and am so much better than you</strong></p>
<p>Cool, come visit, share your story and we bet you lunch we can work together.</p>
<p><strong>No really, I’m a Raleigh web development and Internet marketing company and am going to crush you like a bug</strong></p>
<p>Love your passion and will bet you the cost of lunch for your company we can partner on five things helping each other serve clients better. We don&#8217;t find 5 things to work on together we buy you company lunch (up to 20 people).</p>
<p>I’ve heard great things and want to be the 54 employee at Atlantic BT.</p>
<p>Cool, we are always looking great people, check our <a title="Atlantic BT Job Openings " href="http://www.atlanticbt.com/job-openings.php" target="_blank">openings</a>.</p>
<p>Don’t see anything that interests you? Come in share your story anyway and we bet you lunch we can help.</p>
<p>I’m a startup and want Atlantic BT to help create, market, share, publicize and promote my widget catcher.</p>
<p>Very cool, Martin writes about Triangle startups for Technorati (<a title="Hope, Heroes and Startups by ScentTrail on Technorati" href="http://technorati.com/technology/article/hope-heroes-and-startups-overview/" target="_blank">Hope, Heroes and Startups</a>). We will feature a startup of the week soon on our site. So let us know what cool stuff you and your startup team are creating in Raleigh, Durham or Chapel Hill.</p>
<p><strong>I’m a vendor and want to sell you some cool web dev tools?</strong></p>
<p>Love to talk. Start with Martin and if you are way too left brain for the marketing department (not hard to be by the way) he will bring you over to the West Side of the building (where the cool kids play).</p>
<p><strong>I think Atlantic BT is cool and just want to help?</strong></p>
<p>The answer to your question is always YES and THANK YOU and start with the right brainers (Martin and the marketing department) and they will respond in kind.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.atlanticbt.com/blog/how-to-buy-internet-marketing-and-raleigh-web-development/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 1/43 queries in 0.090 seconds using disk: basic
Object Caching 731/850 objects using disk: basic
Content Delivery Network via d1rvlzmuzboe2s.cloudfront.net

Served from: www.atlanticbt.com @ 2012-02-08 06:44:49 -->
