<?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>Robb Clarke - Fredericton Web and Print Designer &#187; Web Design</title>
	<atom:link href="http://robbclarke.com/tag/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://robbclarke.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sat, 14 Aug 2010 12:49:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to Add &#8220;Like&#8221; and &#8220;Tweet&#8221; Buttons To WordPress Blog Posts</title>
		<link>http://robbclarke.com/coding-tricks/how-to-add-like-and-tweet-buttons-to-wordpress-blog-posts/</link>
		<comments>http://robbclarke.com/coding-tricks/how-to-add-like-and-tweet-buttons-to-wordpress-blog-posts/#comments</comments>
		<pubDate>Sat, 14 Aug 2010 00:51:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coding Tricks]]></category>
		<category><![CDATA[Codex]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Fredericton]]></category>
		<category><![CDATA[Fredericton Web Design]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Like]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[robbclarke.com]]></category>
		<category><![CDATA[Tweet]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Codex]]></category>

		<guid isPermaLink="false">http://robbclarke.com/?p=649</guid>
		<description><![CDATA[Yesterday I added the new Tweet button provided by Twitter and the new Like button provided by Facebook to my blog posts (seen above, click them to take the for a test drive). They&#8217;re quick and easy ways for readers to share posts with other readers and they even include some nifty little counters too. [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I added the new Tweet button provided by Twitter and the new Like button provided by Facebook to my blog posts <em>(seen above, click them to take the for a test drive)</em>. They&#8217;re quick and easy ways for readers to share posts with other readers and they even include some nifty little counters too. Oooh fancy!</p>
<p>Combining these buttons with the WordPress codex is pretty easy. Insert a couple snippets of code and you can easily add the URL and post/page title dynamically to the &#8220;Tweets&#8221; and &#8220;Likes&#8221;.</p>
<p>The codes from the WordPress codex that we&#8217;re going to use are:</p>
<div style="margin: 0 0 15px 0;">
<pre class="php">
<span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span><span class="htmlText"> the_permalink</span><span class="phpOperator">(</span><span class="phpOperator">)</span> <span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span><span class="htmlText"> and </span><span class="phpScriptTag"><span class="phpOperator">&lt;</span><span class="phpOperator">?</span>php</span><span class="htmlText"> the_title</span><span class="phpOperator">(</span><span class="phpOperator">)</span><span class="phpText">;</span> <span class="phpScriptTag"><span class="phpOperator">?</span><span class="phpOperator">&gt;</span></span>
</pre>
</div>
<p>Two lines of code and you&#8217;re all set up. Copy and paste the code below, style as needed to position the buttons how you see fit. For the Twitter Tweet button, don&#8217;t forget to replace my username with yours.</p>
<h3>Facebook Like Button</h3>
<div style="margin: 0 0 15px 0;">
<pre class="html">
<span class="htmlOtherTag">&lt;iframe src=<span class="htmlAttributeValue">&quot;http://www.facebook.com/plugins/like.php?href=&lt;?php the_permalink() ?&gt;</span><span class="htmlSpecialChar">&amp;amp;</span>layout=button_count<span class="htmlSpecialChar">&amp;amp;</span>show_faces=false<span class="htmlSpecialChar">&amp;amp;</span>width=100<span class="htmlSpecialChar">&amp;amp;</span>action=like<span class="htmlSpecialChar">&amp;amp;</span>font=arial<span class="htmlSpecialChar">&amp;amp;</span>colorscheme=light<span class="htmlSpecialChar">&amp;amp;</span>height=21&quot;</span> scrolling=<span class="htmlAttributeValue">&quot;no&quot;</span> frameborder=<span class="htmlAttributeValue">&quot;0&quot;</span> style=<span class="htmlAttributeValue">&quot;<span class="cssProperty">border</span><span class="cssRest">:</span><span class="cssValue">none</span><span class="cssRest">;</span> <span class="cssProperty">overflow</span><span class="cssRest">:</span><span class="cssValue">hidden</span><span class="cssRest">;</span> <span class="cssProperty">width</span><span class="cssRest">:</span><span class="cssValue">100px</span><span class="cssRest">;</span> <span class="cssProperty">height</span><span class="cssRest">:</span><span class="cssValue">21px</span><span class="cssRest">;</span>&quot;</span> allowTransparency=<span class="htmlAttributeValue">&quot;true&quot;</span>&gt;<span class="htmlOtherTag">&lt;/iframe&gt;</span>
</pre>
</div>
<h3>Twitter Tweet Button</h3>
<div style="margin: 0 0 15px 0;">
<pre class="html">
<span class="htmlAnchorTag">&lt;a href=<span class="htmlAttributeValue">&quot;http://twitter.com/share&quot;</span> class=<span class="htmlAttributeValue">&quot;twitter-share-button&quot;</span> data-text=<span class="htmlAttributeValue">&quot;<span class="htmlOtherTag">&lt;?php the_title(); ?&gt;</span></span>&quot;</span> data-count=<span class="htmlAttributeValue">&quot;horizontal&quot;</span> data-via=<span class="htmlAttributeValue">&quot;robbclarke&quot;</span>&gt;Tweet<span class="htmlAnchorTag">&lt;/a&gt;</span><span class="htmlScriptTag">&lt;script type=<span class="htmlAttributeValue">&quot;text/javascript&quot;</span> src=<span class="htmlAttributeValue">&quot;http://platform.twitter.com/widgets.js&quot;</span>&gt;</span><span class="htmlScriptTag">&lt;/script&gt;</span>
</pre>
</div>
<p>Did you find this useful? Wouldn&#8217;t hurt to share it with others would it?</p>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/coding-tricks/how-to-add-like-and-tweet-buttons-to-wordpress-blog-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Your Website Might Be Outdated</title>
		<link>http://robbclarke.com/news/your-website-might-be-outdated/</link>
		<comments>http://robbclarke.com/news/your-website-might-be-outdated/#comments</comments>
		<pubDate>Thu, 12 Aug 2010 00:52:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Fredericton]]></category>
		<category><![CDATA[Fredericton Web Design]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Robb Clarke]]></category>
		<category><![CDATA[robbclarke.com]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://robbclarke.com/?p=619</guid>
		<description><![CDATA[Note: The following blog post, while being serious, is meant to be read with a sense of humour and is not intended to be arrogant in any way, shape or form. So, put on your Serious Hat and your Humour Pants and start reading. Your Website Might Be Outdated It&#8217;s true and chances are that [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Your Website Might Be Outdated" href="/news/your-website-might-be-outdated/"><img class="alignnone size-full wp-image-620" title="htmltag" src="http://robbclarke.com/wp-content/uploads/2010/08/htmltag.jpg" alt="Your Website Might Be Outdated" width="600" height="200" /></a></p>
<p><small>Note: The following blog post, while being serious, is meant to be read with a sense of humour and is not intended to be arrogant in any way, shape or form. So, put on your Serious Hat and your Humour Pants and start reading.</small></p>
<h3>Your Website Might Be Outdated</h3>
<p>It&#8217;s true and chances are that it probably is, well, not entirely at least&#8230; but probably parts of it. The web is a constantly changing environment and what was relevant and current six months, a year, two years ago, just don&#8217;t make the grade today. If you want your site to be current, you need to not only look to the future but also be prepared for change. A good web designer and developer not only has a rough idea of the upcoming forecast but they also plan for future changes. They can see shifting trends in designs and technologies and plan to utilize them properly for you.</p>
<h3>When Was the Last Time You Got a Redesign?</h3>
<p><img style="padding: 1px; border: 1px solid #000; margin: 0 0 0 10px;" title="images" src="http://robbclarke.com/wp-content/uploads/2010/08/images.jpeg" alt="" width="206" height="180" align="right" />Better yet, when was the last time that your competitor got a redesign? Is their site design more recent than yours? Are they taking advantage of current trends in technology? Why aren&#8217;t you?</p>
<p>Has it been over a year or two since you&#8217;ve had a new design for your site? If not, chances are that you aren&#8217;t taking advantage of a lot of the great new technologies out there that have been released in the past few years. jQuery, Mootools, HTML5, and CSS3 (to name a few) have taken the web by storm in the past couple of years and are major players in where the web will be going.</p>
<p>Was your site designed <strong>4 or 5 years ago?</strong> You&#8217;re in dire need of a site design. Look at your competitors, chances are that they&#8217;ve had theirs done in the last little while. Now think about the two sites from a consumer&#8217;s point of view, which one are you going to gravitate towards? Exactly, the more modern, stylish design. <strong>Why isn&#8217;t that you?</strong></p>
<h3>You&#8217;re Using Social Media, Right?</h3>
<p><a href="http://robbclarke.com/wp-content/uploads/2010/08/images1.jpeg"><img style="padding: 1px; border: 1px solid #000; margin: 0 10px 0 0;" title="images" src="http://robbclarke.com/wp-content/uploads/2010/08/images1.jpeg" alt="" width="181" height="138" align="left" /></a>&#8220;Social what?!&#8221; you say? Social Media sites like Twitter and Facebook, for example, are great ways for you and your business to interact with clients in real time. Prompting users to &#8220;Like&#8221; your Facebook Fan Page on your website will give them instant access to your Page and keep up to date with you and your business even if they aren&#8217;t looking on your website itself. The same goes for Twitter. Having a Twitter feed appear on your site or at least prompting users to follow you on Twitter will give you another means to connect with that user. Keep them up to date by Tweeting updates and prompting them to visit your site.</p>
<p>Look around my site. There are a million and one ways for you to get ahold of me and to interact with me. Why don&#8217;t you take advantage of that for yourself and use Social Media tools on your site?</p>
<h3>Is Your Site Build Using Tables?</h3>
<p><img style="padding: 1px; border: 1px solid #000; margin: 0 0 0 10px;" title="images" src="http://robbclarke.com/wp-content/uploads/2010/08/images2.jpeg" alt="" width="191" height="129" align="right" /> HTML Tables are a thing of the past. It&#8217;s not 1995 any more&#8230; and hasn&#8217;t been for about 15 years so why is your site coded using Tables? They don&#8217;t allow for easy changes done to the site. They&#8217;re clunky and messy and severely outdated. Your site should have been coded using a combination of HMTL and CSS that will allow for easier changes to be made to the layout and format of your site. View the source of your site (View &gt; View Source [or similar] in your browser), if you see &#8220;table&#8221; &#8220;td&#8221; &#8220;th&#8221; and/or &#8220;thead&#8221;, you&#8217;re in trouble. Time to get an update!</p>
<h3>Do You Have to Get Your Web Guy To Update Your Content?</h3>
<p>If so, why? Why are you paying your web designer/developer each time you want to add a new news item to your site or change your contact information? Why wasn&#8217;t your website coded using a content management system which would let you update the website at your leisure without paying extra to do it? Content management systems like WordPress (for example) are becoming easier and easier to use and install. It shouldn&#8217;t have to cost you extra each time you need to change something on your site, which brings me to the next point.</p>
<h3>How Often Are You Updating Your Website?</h3>
<p><img style="padding: 1px; border: 1px solid #000; margin: 0 10px 0 0;" title="images" src="http://robbclarke.com/wp-content/uploads/2010/08/images3.jpeg" alt="" width="129" height="129" align="left" />If you&#8217;re paying your web guy their hourly rate each time you need to update your site then chances are the answer to that is &#8220;not very often.&#8221; Taking advantage of a content management system will let you make changes whenever you want, on your own time and without having to pay an arm and a leg to do it too! Using a content management system will even let you easily install a blog onto your website where you can keep users up to date with new product arrivals, business changes, pretty much anything that you want. Hell, they can even subscribe to an RSS (really simple syndication) feed and be notified instantly of new news items or blog posts made on your site.</p>
<h3>Flash Sucks</h3>
<p><img style="padding: 1px; border: 1px solid #000; margin: 0 0 0 10px;" src="http://robbclarke.com/wp-content/uploads/2010/08/images4.jpeg" alt="" title="images" width="180" height="184" align="right" />Not everyone is going to agree that Flash sucks, and really, it doesn&#8217;t. It&#8217;s extremely powerful and used in the right way, it&#8217;s absolutely perfect but its days of being the leading way that websites are built are in the past. As a web building tool its dying. Search engines can&#8217;t read content in a Flash file so if your website&#8217;s navigation is built in Flash then they have no way of visiting the pages on your website and therefore don&#8217;t know that they exist and therefore can&#8217;t index them which then means that they aren&#8217;t searchable to users using the search engines. See how that&#8217;s a bad thing for you? I&#8217;m not going to use any names for the following anecdote but rest assured that it&#8217;s true.</p>
<p>Recently we were approached because a website wasn&#8217;t showing up in search results, even when you searched the domain name itself. This was absolutely horrible for the site. What&#8217;s the point in having a website if it can&#8217;t be found, right? The problem was that the whole navigation was coded in Flash and like I said earlier, this means that the search engines can&#8217;t read it and therefore couldn&#8217;t find any of the other pages on the website. The content itself was also coded in Flash, again not readable. It was no wonder that this site wasn&#8217;t showing up anywhere. Combined with a number of glaring search engine optimization errors, the site was a disaster. After a couple hours rebuilding the framework and recoding the site it was good to go and was relaunched. Within a few days it was indexed by search engines and quickly skyrocketed to the top of search results. Its been holding steady at or near the top of the results ever since.</p>
<p>I ask again, why was your site coded in Flash? To do some fancy rollovers and your navigation that can be done using CSS and HTML and maybe a little Javascript? Combine that with the fact that Flash isn&#8217;t viewable on iPhones or iPads and you&#8217;ve got yourself one hell of a problem. That&#8217;s right, if I go to your website on my iPhone (which happens A LOT) and your navigation is in Flash then I hit a dead end and I can&#8217;t go any further and immediately start looking at competitors&#8217; sites. I&#8217;m not the only one. How many people do you know that have an iPhone? Ask them to go to your site.</p>
<p>Maybe it&#8217;s time to re-examine why your site was built using Flash, eh?</p>
<h3>I Can Help</h3>
<p>I can. It&#8217;s true. I wouldn&#8217;t lie. What&#8217;s stopping you from sending me an email to get the ball rolling? Is it the lack of a contact form? I can help with that too. <strong>VOILA!</strong></p>
<div id="contact">
<form action="http://www.robbclarke.com/sendmail-contact.php" method="POST">
<ul>
<li>Full Name</li>
<li class="input">
<input id="name" name="name" type="text" /></li>
<li>Email</li>
<li class="input">
<input id="email" name="email" type="text" /></li>
<li>Phone</li>
<li class="input">
<input id="phone" name="phone" type="text" /></li>
<li>Message</li>
<li class="input"><textarea id="message" cols="50" rows="4" name="message"></textarea></li>
<li class="captcha"><script src="http://api.recaptcha.net/challenge?k=6LefIgsAAAAAANaHRYFjJ50kdCs5NOrQU5vRbINY" type="text/javascript"></script><noscript><br />
<iframe src="http://api.recaptcha.net/noscript?k=6LefIgsAAAAAANaHRYFjJ50kdCs5NOrQU5vRbINY" height="300" width="500" frameborder="0"></iframe></p>
<p><textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea></p>
<input type="hidden" name="recaptcha_response_field" value="manual_challenge"/>
</noscript></li>
<li class="buttons">
<input name="Submit" type="submit" value="Submit" /></li>
</ul>
</form>
</div>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/news/your-website-might-be-outdated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Search Engine Optimization?</title>
		<link>http://robbclarke.com/search-engine-optimization/why-search-engine-optimization/</link>
		<comments>http://robbclarke.com/search-engine-optimization/why-search-engine-optimization/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 00:59:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[Fredericton]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://robbclarke.com/?p=571</guid>
		<description><![CDATA[Search engine optimization (SEO) is, in its simplest form, making your web site easy to find via search engines with targeted keywords and key phrases. The main goal is to increase the volume and quality of organic search engine traffic to your web site. Search engine optimization starts with the coding of your web pages [...]]]></description>
			<content:encoded><![CDATA[<p><a href="/search-engine-optimization/why-search-engine-optimization/"><img class="alignnone size-full wp-image-572" title="htmltag" src="http://robbclarke.com/wp-content/uploads/2010/07/htmltag.jpg" alt="" width="600" height="200" /></a></p>
<p>Search engine optimization (SEO) is, in its simplest form, making your web site easy to find via search engines with targeted keywords and key phrases. The main goal is to increase the volume and quality of organic search engine traffic to your web site.</p>
<p>Search engine optimization starts with the coding of your web pages (including meta tags, meta descriptions, browser titles, etc.), proper keyword placement within the content of your web site as well as other techniques used to increase the effectiveness of search engine indexing.</p>
<p>Many SEO companies focus on pushing as much traffic to your web site as possible. There are many methods used to achieve high rankings with search engines, and some of these methods (known as &#8220;black hat SEO&#8221; or Spamdexing&#8221;) are not considered relevant or proper by search engines and can have negative results such as lower ranking or even blacklisting from the search engines themselves. All of our SEO techniques conform to search engines&#8217; guidelines and involves no deception.</p>
<p>When we work with our clients to search engine optimize their web site, we focus on one key metric, quality of traffic first, then quantity of (relevant) traffic.  In the end, the main goal for many companies&#8217; web sites is to sell more products or services, and/or provide valuable information to their current clients.</p>
<p>Pushing as much traffic to a web site for the sake of getting traffic does not benefit the web site owner in the least, and performing simple web site traffic analysis will quickly show you if the traffic to your site is relevant or not.</p>
<p>Essentially, a search engine optimization strategy should be no different than a basic business strategy &#8211; provide answers and solutions to people’s problems and needs. With this focus in mind, you will not only achieve higher rankings (as you will be addressing the needs that people are searching for) you will also increase the conversion of these leads into customers! This is really what search engine optimization is all about &#8211; connecting people with questions and needs to web sites that answer or fulfill those needs. Converting your web site traffic into relationships is much more successful with highly targeted and relevant traffic!</p>
<p>Search engine optimization is really just a piece of puzzle. The first step is to make sure you have a web site with focused goals and methods of tracking success. Understanding these goals will help you optimize your site to attain relevant traffic to reach your goals. Once this is achieved, your search engine optimization and marketing starts to pay off!</p>
<p>Now you are getting traffic on your web site. This is where the fun begins! With traffic analysis, you can determine how people are finding your web site, and how that traffic is interacting with your web site. Adjustments must be made on your web site to better service and fulfill your visitor’s needs. Analyzing the keywords they are currently using to find your web site will allow you to search out and find other keywords that your target audience may be using to find similar products and services you are offering.</p>
<p>The loop starts over.  You optimize your web site for these new (and sometimes better) keywords and key phrases and analyze the traffic that comes in from them to determine if the conversion rate is improving.</p>
<p>You can probably see now that merely shoving non-relevant traffic to your web site will not help you convert traffic into client relationships, but only increase the number of people that leave your web site annoyed that they wasted time on your site looking for something you did not offer.</p>
<p><small>Source: http://www.connetik.com/website_seo_services.php</small></p>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/search-engine-optimization/why-search-engine-optimization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dirt Cheap Summer Special</title>
		<link>http://robbclarke.com/news/dirt-cheap-summer-special/</link>
		<comments>http://robbclarke.com/news/dirt-cheap-summer-special/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 23:21:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Content Management System]]></category>
		<category><![CDATA[Dirt Cheap]]></category>
		<category><![CDATA[Fredericton]]></category>
		<category><![CDATA[Summer Special]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://robbclarke.com/?p=547</guid>
		<description><![CDATA[For the summer of 2010 I&#8217;m offering a dirt cheap special on websites and blogs. Sign up now and get your website for only $30 a month for as long as you have your website with me. Get your web presence up and running and get a leg up on your competition! What does that [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-548" style="margin: 0 0 10px 10px;" title="30dollar" src="http://robbclarke.com/wp-content/uploads/2010/06/30dollar.png" alt="" width="191" height="144" align="right" />For the summer of 2010 I&#8217;m offering a dirt cheap special on websites and blogs. Sign up now and get your website for only $30 a month for as long as you have your website with me. Get your web presence up and running and get a leg up on your competition!</p>
<p>What does that $30 get you?</p>
<ul>
<li>One domain name.</li>
<li>Installed WordPress content management system (letting you update and modify your website at your own leisure).</li>
<li>40+ themes for you to choose from to style your website, these themes are changeable at any time!</li>
<li>The ability to upload your own themes and plugins to further customize your site!</li>
</ul>
<p>Want to save even more money? Pay for a year up front and save $60 on the annual cost. That&#8217;s right, for only $300 a year you can get a domain name and a website up and running!</p>
<p><small>* A custom designed and built website is not included in this special.</small></p>
<h2>Interested? Fire off an email now!</h2>
<div id="contact">
<form action="http://www.robbclarke.com/sendmail-contact.php" method="POST">
<ul>
<li>Full Name</li>
<li class="input">
<input id="name" name="name" type="text" /></li>
<li>Email</li>
<li class="input">
<input id="email" name="email" type="text" /></li>
<li>Phone</li>
<li class="input">
<input id="phone" name="phone" type="text" /></li>
<li>Message</li>
<li class="input"><textarea id="message" cols="50" rows="4" name="message"></textarea></li>
<li class="captcha"><script src="http://api.recaptcha.net/challenge?k=6LefIgsAAAAAANaHRYFjJ50kdCs5NOrQU5vRbINY" type="text/javascript"></script><noscript><br />
<iframe src="http://api.recaptcha.net/noscript?k=6LefIgsAAAAAANaHRYFjJ50kdCs5NOrQU5vRbINY" height="300" width="500" frameborder="0"></iframe></p>
<p><textarea name="recaptcha_challenge_field" rows="3" cols="40"></textarea></p>
<input type="hidden" name="recaptcha_response_field" value="manual_challenge"/>
</noscript></li>
<li class="buttons">
<input name="Submit" type="submit" value="Submit" /></li>
</ul>
</form>
</div>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/news/dirt-cheap-summer-special/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>River Valley Arts Alliance Site Launch</title>
		<link>http://robbclarke.com/site-builds/river-valley-arts-alliance-site-launch/</link>
		<comments>http://robbclarke.com/site-builds/river-valley-arts-alliance-site-launch/#comments</comments>
		<pubDate>Sun, 16 May 2010 15:25:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Site Builds]]></category>
		<category><![CDATA[Content Management System]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Dooryard Arts Festival]]></category>
		<category><![CDATA[Fredericton]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[RiVA]]></category>
		<category><![CDATA[River Valley Arts Alliance]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Woodstock]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://robbclarke.com/?p=437</guid>
		<description><![CDATA[<a rel="attachment wp-att-436" href="http://robbclarke.com/?attachment_id=436"><img class="alignnone size-full wp-image-436" title="riva" src="http://robbclarke.com/wp-content/uploads/2010/05/riva.jpg" alt="riva" width="600" height="200" /></a>]]></description>
			<content:encoded><![CDATA[<p><a href="/site-builds/river-valley-arts-alliance-site-launch/"><img class="alignnone size-full wp-image-436" title="riva" src="http://robbclarke.com/wp-content/uploads/2010/05/riva.jpg" alt="riva" width="600" height="200" /></a></p>
<p>This week I&#8217;m proud to announce the launch of the new <a title="River Valley Arts Alliance" href="http://www.rivervalleyarts.net" target="_blank">River Valley Arts Alliance website</a>. The website is build on the WordPress content management system, letting the client update the website at their leisure.</p>
<p>The site features:</p>
<ul>
<li>an events calendar</li>
<li>photo slideshow</li>
<li>photo gallery</li>
<li>member application forms</li>
<li>donation forms</li>
<li>an artist database</li>
<li>a microsite for their annual Dooryard Arts Festival</li>
</ul>
<p>The website is going to be a great resources for keeping up to date with RiVA and the arts community in and around the Saint John River Valley. Be sure to check back frequently as we near the festival dates for Dooryard as more events and festivities are announced.</p>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/site-builds/river-valley-arts-alliance-site-launch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>York Street Dental Site Launch</title>
		<link>http://robbclarke.com/site-builds/york-street-dental-site-launch/</link>
		<comments>http://robbclarke.com/site-builds/york-street-dental-site-launch/#comments</comments>
		<pubDate>Thu, 13 May 2010 00:39:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Site Builds]]></category>
		<category><![CDATA[Dr. Andrew Smyth]]></category>
		<category><![CDATA[Fredericton]]></category>
		<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[York Street Dental]]></category>

		<guid isPermaLink="false">http://robbclarke.com/?p=428</guid>
		<description><![CDATA[I&#8217;m proud today to announce the launch of the new York Street Dental website, the new online home for Drs. Andrew Smyth and Jim Roxborough. The York Street Dental website features information about the practice&#8217;s team members, services and includes online appointment request forms as well as patient education software and videos. You can view [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-429" href="http://robbclarke.com/site-builds/york-street-dental-site-launch/attachment/yorkstreetdental/"><img class="alignnone size-full wp-image-429" title="yorkstreetdental" src="http://robbclarke.com/wp-content/uploads/2010/05/yorkstreetdental.jpg" alt="yorkstreetdental" width="600" height="200" /></a></p>
<p>I&#8217;m proud today to announce the launch of the new <a href="http://www.drsmyth.com" target="_blank" title="York Street Dental">York Street Dental</a> website, the new online home for Drs. Andrew Smyth and Jim Roxborough. The York Street Dental website features information about the practice&#8217;s team members, services and includes online appointment request forms as well as patient education software and videos.</p>
<p>You can view the website at <a href="http://www.drsmyth.com" target="_blank" title="York Street Dental">http://www.drsmyth.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/site-builds/york-street-dental-site-launch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mythbusters: SEO Edition</title>
		<link>http://robbclarke.com/search-engine-optimization/mythbusters-seo-edition/</link>
		<comments>http://robbclarke.com/search-engine-optimization/mythbusters-seo-edition/#comments</comments>
		<pubDate>Sat, 30 Jan 2010 14:08:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[Fredericton]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Meta]]></category>
		<category><![CDATA[Meta Keywords]]></category>
		<category><![CDATA[Rankings]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://clarkegraphics.com/?p=394</guid>
		<description><![CDATA[Search Engine Optimization is one of those things that most people think they can do easily, while this is somewhat true, there are a lot of common mistakes that are made which either hurt you or do absolutely nothing to help your ranking. Search Engine Optimization is not as easy as you might think. It [...]]]></description>
			<content:encoded><![CDATA[<p><a href="/search-engine-optimization/mythbusters-seo-edition/" title="Mythbusters: SEO Edition"><img class="alignnone size-full wp-image-393" title="htmltag" src="http://clarkegraphics.com/wp-content/uploads/2010/01/htmltag.jpg" alt="htmltag" width="600" height="200" /></a></p>
<p>Search Engine Optimization is one of those things that most people think they can do easily, while this is somewhat true, there are a lot of common mistakes that are made which either hurt you or do absolutely nothing to help your ranking. </p>
<p>Search Engine Optimization is not as easy as you might think. It requires a lot more effort than just adding a couple of keywords here and there and waiting for the Google Fairy to come along and rocket you to the moon. That being said, Search Engine Optimization isn&#8217;t complicated either. Whoa! Hold the phone! I just said that it wasn&#8217;t easy and then I turn around and say that it&#8217;s not complicated? What the deuce? It&#8217;s hard work and you need to be on top of things but it&#8217;s not overly complicated at all. The underlying principles of Search Engine Optimization are pretty simple; use keywords wisely, focus on your target market and don&#8217;t be stupid. It&#8217;s not rocket surgery.</p>
<p>With all that said, I’m going to talk a little bit about common misconceptions and mistakes made with Search Engine Optimization which for sanity&#8217;s sake we&#8217;ll refer to as its more common abbreviation; SEO.</p>
<h3>Myth: Meta-tags carry the most weight in rankings</h3>
<p>What is this, 1995? This couldn&#8217;t be further from the truth. Meta-tags are essentially one of the most useless things on your website as far as SEO is concerned. <a href="http://googlewebmastercentral.blogspot.com/2009/09/google-does-not-use-keywords-meta-tag.html" target="_blank">Google has even said it themselves</a>, they don&#8217;t look at meta-tags like meta-keywords anymore. They have absolutely no weight in SEO and rankings anymore. None. Zip. Zero. Zilch. Who is to blame for that? Porn. Plain and simple. The porn industry used to, and still does for that matter, flood their websites with keywords not related to their content just to get you on their sites. Search engines saw through this ploy and opted to focus on other aspects for rankings.</p>
<p>Fast-forward from 1995 to today and you&#8217;ll find that search engines now use hundreds of variables to determine rankings including title tags, content and the freshness of said content, incoming and outgoing links, alt and title attributes as well as your header tags.</p>
<p>All that being said, not all meta-tags are bad. Meta-descriptions help users find out more about your site on their search results. You can also add in useful data like your geo-location, the author, copyright information and much more so don&#8217;t write off meta-tags altogether – just meta-keywords, toss those buggers to the curb.</p>
<h3>Myth: Hidden text is a your key to success</h3>
<p>Designers and developers used to think that they were clever when they hid content on a website by making it the same colour as the background (white text on a white background). These clever chaps flood their websites with keywords that may or may not (usually the case) be related to the content of their website. Their train of thought was that they were being clever hiding the content this way because you as a user couldn&#8217;t see it but the search engines could.</p>
<p>Well Hot Shot, guess what. It doesn&#8217;t work. It does absolutely nothing to help you out. In fact, it actually hurts you. That&#8217;s right, it hinders your ranking. Search engines aren&#8217;t dumb robots that troll through websites collecting data and throwing it in a database. Like the T-800s in Terminator, they&#8217;re &#8220;learning computahs&#8221;. They&#8217;re smart and they know what to look for and most importantly they know when someone is trying to trick them. When search engines find that someone has attempted to trick them by flooding their sites with hidden keywords red flags shoot up and you get classified as a jerk for your shenanigans.</p>
<p>Long story short; hidden text on your website is a no-no.</p>
<h3>Myth: If you build it, they will come</h3>
<p>So, you paid good money to have a website designed and coded by a world class designer and your site goes &#8220;live&#8221;. Days pass and no matter how much you search yourself on Google or Bing you just don&#8217;t show up. The first thing that shoots through your head is that you&#8217;ve been had! That SOB walked away with your hard earned money! Sue that sumbitch!</p>
<p>Ok don&#8217;t. Simmer.</p>
<p>This semester my students have been building their portfolio sites and a week after one of their sites went live one of them asked me why he couldn&#8217;t find himself on Google. The answer is simple – Google didn&#8217;t know that the was there yet. Their bots hadn&#8217;t stumbled across his corner of the Interweb. Patience is a virtue. It takes time for search engines to crawl your website for the first time. Having incoming links to your site will help speed up the process so get on those social media sites and share your URL with people.</p>
<p>Before you run off to Twitter and Facebook and piss off all of your friends by flooding your status with &#8220;Check out my new website&#8221; and &#8220;I done got me one-a-dem-der websites&#8221; you also need to consider that there&#8217;s more to it than just patience and incoming links. According to Google, &#8220;[c]rawls are based on many factors such as PageRank, links to a page, and crawling constraints such as the number of parameters in a URL. Any number of factors can affect the crawl frequency of individual sites.&#8221;</p>
<p>A website not only needs to be built in a search engine friendly way but once it&#8217;s launched it will need an Internet marketing campaign or at least a reason for people to visit your site. Hopefully you&#8217;ve already taken this into consideration before you decided to get a website and paid someone to design and code it. If you haven&#8217;t then what the hell?</p>
<p>Competing websites are probably already using some sort of marketing campaign so a site without a campaign of its own will fall to by the wayside pretty quickly – and no one wants to be by the wayside, it smells there.</p>
<p>Remember that it will take days, if not weeks for search engines to find you in the first place and then even more time for you to climb your way up the rankings. Keep your content fresh with blog posts and changing content. Give the search engines and ultimately more importantly, the users, a reason to come back to your site more and more often.</p>
<h3>Myth: Your website will be &#8220;number one on Google&#8221;</h3>
<p>This is such a common request for designers and developers to come across. Mary Sue Internetexpert wants her website to be &#8220;number one on Google.&#8221; It&#8217;s not going to happen for a couple of reasons. The first being that the number one ranked website on Google <em>is</em> Google. Go ahead, try to get ahead of them. If you do it, I&#8217;ll give you a buck. The second reason being that I&#8217;m fully aware that when the client wants to be &#8220;number one on Google&#8221; that they don&#8217;t mean the first ranked site on Google itself but that they want to be the first ranked site under a certain keyword but they don&#8217;t know how to articulate that.</p>
<p>That being said, chances are that you won&#8217;t be the number one ranked site for your search term either unless your search term is something completely obscure like &#8220;The mating rituals of the Lower Shibobian Albino Alpaca&#8221;, in which case, it&#8217;s yours for the taking.</p>
<p>Vague search terms are not your friend. You really need to narrow down what search terms users will find you with. Personally, I know that I&#8217;m not going to be ranked anywhere near the top of the Google search results for the phrase &#8220;<a href="http://www.google.ca/search?q=web+design&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a" target="_blank">web design</a>&#8221; but if I narrow it down to &#8220;<a href="http://www.google.ca/search?q=fredericton+web+design&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a" target="_blank">Fredericton Web Design</a>&#8221; I’m not doing too bad. It&#8217;s in your best interest as well as your client&#8217;s to focus where and how you want your website to be found. A broader, more vague search term is going to lead to millions of results but if you narrow your focus then you&#8217;re going to find it easier to step into the spotlight.</p>
<h3>Myth: Flooding your content with keywords helps</h3>
<p>It&#8217;s a common misconception that flooding your website&#8217;s content with keywords over and over again will do wonders for your ranking and search results. The reality of it is that it couldn&#8217;t be further from the truth.</p>
<p>Flooding your &lt;title&gt; tag, alt and title attributes and content with keywords is not going to help you. Like good old hidden text; it&#8217;s probably going to end up hurting you. Search engines will begin to avoid you like the plague if you start using the same keywords over and over again. Search engines see repetition of the same keywords as spam. The best way to avoid this is to read your content out loud. Have you used the same word 15 times in the span of three sentences? Does what you&#8217;re reading sound really awkward to you? If the answer is yes, then you need to cut back on the keywords. Don&#8217;t forget; the content on a website isn&#8217;t there just for the search engines to read – there are real people out there that will (hopefully) be reading that content as well. If you repeat &#8220;[your city]&#8216;s number one night club&#8221; 15 times in a paragraph then they&#8217;re going to think that you&#8217;re a bit of an oaf. So be smart when you&#8217;re writing your content and placing keywords.</p>
<p>What have we learned today class?<br />
	•	Meta-tags like meta-keywords do absolutely jack for your rankings.<br />
	•	Hidden text is for amateurs.<br />
	•	SEO doesn&#8217;t happen overnight so stop assuming that it will.<br />
	•	Vague search terms are like camouflage; you won&#8217;t be found.<br />
	•	Read your content out loud, does it sound stupid? If so, change it.</p>
<p>Search Engine Optimization isn&#8217;t the most complicated thing in the world. A lot of it is common sense. If you know when and where to place keywords as well as to use &lt;title&gt; tags, header tag and alt and title attributes you&#8217;re going to go a lot farther than Mary Sue Internetexpert. </p>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/search-engine-optimization/mythbusters-seo-edition/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>3.5 Things You Need To Know About SEO</title>
		<link>http://robbclarke.com/coding-tricks/3-5-things-you-need-to-know-about-seo/</link>
		<comments>http://robbclarke.com/coding-tricks/3-5-things-you-need-to-know-about-seo/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 23:46:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coding Tricks]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[alt]]></category>
		<category><![CDATA[Bing]]></category>
		<category><![CDATA[Fredericton]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Meta Keywords]]></category>
		<category><![CDATA[Meta Tag]]></category>
		<category><![CDATA[ranking]]></category>
		<category><![CDATA[search result]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Title]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://clarkegraphics.com/?p=283</guid>
		<description><![CDATA[Search Engine Optimization is one of those things that most people think they can do easily, while this is somewhat true, there are a lot of common mistakes that are made which either hurt you or do absolutely nothing to help your ranking. I’m going to talk a little bit about common misconceptions and mistakes [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://clarkegraphics.com/2009/11/3-5-things-you-need-to-know-about-seo"><img class="alignnone size-full wp-image-282" title="htmltag" src="http://clarkegraphics.com/wp-content/uploads/2009/11/htmltag.jpg" alt="htmltag" width="600" height="200" /></a></p>
<p>Search Engine Optimization is one of those things that most people think they can do easily, while this is somewhat true, there are a lot of common mistakes that are made which either hurt you or do absolutely nothing to help your ranking. I’m going to talk a little bit about common misconceptions and mistakes made with Search Engine Optimization (SEO).</p>
<h3>You Will <em>Not</em> Be “Number One on Google”</h3>
<p>You would not believe how often I receive requests from people that “want to be number one on Google”. It’s not going to happen for a couple of reasons. The first being that the number one ranked site on Google &#8211; is Google. Good luck getting ahead of them. The second being that I’m fully aware that you don’t mean that you want to be the first ranked site on Google, you want to be the first ranked site under a certain keyword but you don’t know how to articulate that.</p>
<p>Vague search terms are not your friend. You really need to narrow down what search terms users will find you with. I know that I’m not going to be ranked anywhere near the top on the Google search results for the phrase “<a href="http://www.google.ca/search?q=web+design&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a" target="”_blank”">web design</a>” but if I narrow it down to “<a href="http://www.google.ca/search?q=fredericton+web+design&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=org.mozilla:en-US:official&amp;client=firefox-a" target="_blank">Fredericton Web Design</a>” I’m not doing too bad. It&#8217;s in your best interest to focus where you want to be found. A broader, more vague search is going to lead to millions of results but if you narrow your focus then you&#8217;re going to find it easier to step into the spotlight.</p>
<p>In August when I launched my friend <a href="http://www.nickforret.com" target="_blank">Nick Forret&#8217;s photographer site</a> he wasn&#8217;t even registering under the most common search term for local photographers; &#8220;Fredericton Photographer&#8221; but now, 2 months later, Nick has sky rocketed up to the first page and is quickly overtaking established sites. What&#8217;s this doing for Nick? Well, it&#8217;s increasing his business for one. People are now able to find him.</p>
<p>This leads me to my next point…</p>
<h3>Search Engine Optimization Does <em>Not</em> Happen Over Night</h3>
<p>No, it doesn&#8217;t. It happens more often than not that people pay to have SEO applied to their site and then they call the next day or week and ask why they &#8220;aren&#8217;t the first result on Google.&#8221; Half of the answer to that is above, the other half is simply because it takes a while for search engines like Google, Bing and Yahoo to <abbr title="Crawling is when a search engine goes through and reads your site and updates its database.">crawl</abbr> your site. It takes time for these bots to travel around the internet and read sites. According to Google &#8220;[c]rawls are based on many factors such as PageRank, links to a page, and crawling constraints such as the number of parameters in a URL. Any number of factors can affect the crawl frequency of individual sites.&#8221;</p>
<p>Expect the time between crawls to be a week to a month for a low traffic website. Sites with much higher traffic with more incoming links get crawled more frequently and thus have their reports updated quicker.</p>
<h3>Flooding Your Site With Keywords Does <em>Not</em> Help Your Ranking</h3>
<p>Flooding your &lt;title&gt; tag, alt and title attributes, meta description and content with keywords is not going to help you, if anything it&#8217;s going to make search engines avoid you like the plague. Using the same keywords over and over again raises flags with search engines and they see it as spam. The best way to avoid this is to read what&#8217;s your writing out loud. Have you used the same word 15 times in the span of three sentences? Does what you&#8217;re reading sound really awkward to you? If the answer is yes, then you need to cut back on the keywords. Don&#8217;t forget, that content isn&#8217;t there just for the search engines to read &#8211; there are real people that will hopefully be reading the content on your site as well and if you repeat &#8220;Fredericton Web Design&#8221; 15 times in a paragraph then they&#8217;re going to think that you&#8217;re a bit of an oaf. So be smart when writing your content and placing keywords.</p>
<h3>Meta Keywords Do <em>Not</em> Do Anything Anymore</h3>
<p>This doesn&#8217;t count as a full item so it only gets half a point. It&#8217;s been speculated for years that search engines don&#8217;t see much weight in Meta Keywords and just recently Google announce that they don&#8217;t even look at them. It&#8217;s true, <a href="http://googlewebmastercentral.blogspot.com/2009/09/google-does-not-use-keywords-meta-tag.html" target="_blank">Google said it themselves</a>. Adding them to your site does absolutely jack. You can thank the porn industry and spam sites for that.</p>
<p>I hope this has helped clear up a few misconceptions about search engine optimization. So next time you&#8217;re going to talk to your web guy about being the &#8220;first on Google&#8221; just stop and think for a second and remember what you just learned.</p>
<p>Thoughts? Feedback? Hate mail?</p>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/coding-tricks/3-5-things-you-need-to-know-about-seo/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>What You Need to Know About Social Media</title>
		<link>http://robbclarke.com/social-media/what-you-need-to-know-about-social-media/</link>
		<comments>http://robbclarke.com/social-media/what-you-need-to-know-about-social-media/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 17:32:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://clarkegraphics.com/?p=275</guid>
		<description><![CDATA[Before you start promoting yourself or your company via social media there’s a lot that you really need to know. It’s not as clear cut as some people might lead you to believe; that being said, it’s not rocket surgery (see what I did there?) either. Without further ado, here are some thing that you [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://clarkegraphics.com/2009/11/things-that-you-need-to-know-about-social-media/"><img class="aligncenter size-full wp-image-274" title="twitter" src="http://clarkegraphics.com/wp-content/uploads/2009/11/twitter.jpg" alt="twitter" width="600" height="200" /></a></p>
<p>Before you start promoting yourself or your company via social media there’s a lot that you really need to know. It’s not as clear cut as some people might lead you to believe; that being said, it’s not rocket surgery (see what I did there?) either.</p>
<p>Without further ado, here are some thing that you need to know about social media before you start promoting yourself using Twitter, Facebook, Digg, etc.</p>
<p>It’s not as easy as you might think. It requires a lot more effort than just signing up for an account and making the occasional post or Tweet. Social media isn’t like the old standard of creating an ad for television or print and letting the ad do the work. You must constantly be engaging your followers and users and promoting interaction.</p>
<p>That being said, social media isn’t complicated. Yeah, yeah, hold the phone, I just said that it wasn’t easy so why isn’t it complicated? It’s hard work and you need to be on top of things but it’s not overly complicated at all. The underlying principles of social media are pretty simple; sharing, communication, relevance, being helpful, engaging. The major failures out there have come from people’s or company’s inability to share, communicate, be relevant, be helpful and engage their members or followers.</p>
<p>Things can and will go wrong. You can’t forget that things posted on the internet are visible by anyone and everyone. Social media can and will hurt companies. Does everyone remember the infamous Dominos employees in the United States that taped themselves picking their noses and putting it in pizzas? They posted that on YouTube and it immediately hurt Dominos. How about fellow East Coaster Dave Carroll? Dave spent months trying to get United Airlines to fix a guitar that they had broken, when they refused he posted a video on YouTube about the incident (here: <a href="http://www.youtube.com/watch?v=5YGc4zOqozo&amp;feature=fvst" target="_blank">http://www.youtube.com/watch?v=5YGc4zOqozo&amp;feature=fvst</a>. Almost immediately United Airlines felt the hit and their stock dropped nearly 20% to the tune of somewhere near $18 million. All that because they didn’t want to replace a $1,500 guitar that they broke. Of course these are all examples of the public using social media to show how the companies had wronged them. Companies should be using social media as a barometer for consumer opinion and acknowledge concerns and try to remedy issues as soon as possible. Use social media as a way to monitor current chatter about yourself or your business. <a href="http://www.radian6.com" target=”_blank">Radian6</a> a Fredericton based company has made a name for themselves doing just that.</p>
<p>In spite of some of the ads floating around Twitter and Facebook at the moment, social media is not a get rich quick scheme. Doing anything type of marketing via social media requires a lot of time and effort on your part. Personally I’ve been actively networking for about a year now and only now am I starting to really communicate with more people in my field and start to get my name out there – although my name usually incites a “who?” but I digress. Building relationships with others and users takes time and commitment on your end. With millions of people promoting themselves on social media and you need to stand out. It’s all about the quality of your relationships and posts over the quantity of followers and friends. Simply because you have thousands of friends or followers doesn’t mean that you’re doing things correctly. Are they really your target market? Did you start following them or did they start following you? These are all questions that you need to ask yourself.</p>
<p>Can anyone do social media? In short, no. Not everyone is willing to put themselves out there and engage users as much as they should be. Some people just don’t like sharing like others do. Organizations and businesses are often uneasy about the lack of control that social media gives them. The risk of making a very public mistake and having that mistake broadcast world wide in the blink of an eye is something that everyone must be aware of. The other day Scott Stratten from <a href="http://www.un-marketing.com" target="_blank">UnMarketing</a> made a great <a href="http://twitter.com/robbclarke/status/5259190307" target="”_blank”">Tweet</a> about posting on Twitter but it applies to all social media. He said “Don’t tweet anything you wouldn’t want to see on a billboard with your name/face/logo/phone # and your mom driving by.” Sure, not everyone can commit to having a presence on Twitter, Facebook, YouTube, Delicious, Digg, LinkedIn and others all at once. Try focusing on one or two or if you’re a business, delegate different sites to different people.</p>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/social-media/what-you-need-to-know-about-social-media/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My Top 10 Web People to Follow on Twitter</title>
		<link>http://robbclarke.com/social-media/my-top-10-web-people-to-follow-on-twitter/</link>
		<comments>http://robbclarke.com/social-media/my-top-10-web-people-to-follow-on-twitter/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 12:30:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[follow]]></category>
		<category><![CDATA[Fredericton]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://clarkegraphics.com/?p=257</guid>
		<description><![CDATA[Back in August I wrote an article about My Top 10 People to Follow on Twitter and I&#8217;ve decided to expand on that and narrow the field down my Top 10 people to follow in the design and web industry. This list includes designers, developers, social media folk and much more, it&#8217;s list of people [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://clarkegraphics.com/2009/10/my-top-10-web-tweople-to-follow-on-twitter/"><img class="aligncenter size-full wp-image-202" title="twitter" src="http://clarkegraphics.com/wp-content/uploads/2009/08/twitter.jpg" alt="twitter" width="600" height="200" /></a></p>
<p>Back in August I wrote an article about <a title="My Top 10 People to Follow on Twitter" href="http://clarkegraphics.com/2009/08/my-top-ten-people-to-follow-on-twitter/" target="_blank">My Top 10 People to Follow on Twitter</a> and I&#8217;ve decided to expand on that and narrow the field down my Top 10 people to follow in the design and web industry. This list includes designers, developers, social media folk and much more, it&#8217;s list of people that I draw inspiration and learn from on a daily basis.</p>
<p>I use Twitter not only as a social communications tool but also as a resource for learning more about the industry and with the amount of people posting on it, it&#8217;s very easy to keep up with the latest trends and learn new techniques. So, without much more rambling, here is my list (in no particular order).</p>
<h4>Naldz Graphics / Ronald Bien</h4>
<p><strong>URL:</strong> <a href="http://www.twitter.com/naldzgraphics" target="_blank">http://www.twitter.com/naldzgraphics</a><br />
<strong>Why:</strong> Naldz Graphics is a design blog for designers and design lovers. They showcase the best tutorials, freebies, inspirations and other useful and informative resources to help and give love to design community.</p>
<h4>Smashing Magazine</h4>
<p><strong>URL:</strong> <a href="http://www.twitter.com/smashingmag" target="_blank">http://www.twitter.com/smashingmag</a><br />
<strong>Why:</strong> Smashing Magazine is an amazing source for design techniques, inspiration and new lines of code. They&#8217;re always updating their Twitter with not only site updates but also useful posts from around the web. Following them has helped me improve my design skill and coding ability a lot.</p>
<h4>Site Point</h4>
<p><strong>URL:</strong> <a href="http://www.twitter.com/sitepointdotcom" target="_blank">http://www.twitter.com/sitepointdotcom</a><br />
<strong>Why:</strong> The official Twitter for Site Point, they generally keep users updated with what&#8217;s going on on their own site, not that that&#8217;s a bad thing. Site Point is a fantastic resource for designers, developers and anyone in the industry.</p>
<h4>Unmarketing / Scott Stratten</h4>
<p><strong>URL:</strong> <a href="http://www.twitter.com/unmarketing" target="_blank">http://www.twitter.com/unmarketing</a><br />
<strong>Why:</strong> Unmarketing is the Twitter account for Toronto based marketing and social media guru Scott Stratten. Scott is always giving great advice on new social media trends.</p>
<h4>Orange Sprocket / Bill McGrath</h4>
<p><strong>URL:</strong> <a href="http://www.twitter.com/orangesprocket" target="_blank">http://www.twitter.com/orangesprocket</a><br />
<strong>Why:</strong> Bill McGrath, the CEO of Orange Sprocket, is a social media addict. Being very into tech and web trends, Bill is always updating his Twitter account with industry news. Following him on Twitter has helped me keep up to date with a lot of new things in the industry.</p>
<h4>Carter McLaughlin</h4>
<p><strong>URL:</strong> <a href="http://www.twitter.com/carter_vagrant" target="_blank">http://www.twitter.com/carter_vagrant</a><br />
<strong>Why:</strong> The personal Twitter account of Vagrant Web Services owner/operator Carter McLaughlin. Like Bill McGrath, he&#8217;s always updating his Twitter with industry news. Following him has been a great way to improve my knowledge and skills.</p>
<h4>LogoMotives / Jeff Fisher</h4>
<p><strong>URL:</strong> <a href="http://www.twitter.com/logomotives" target="_blank">http://www.twitter.com/logomotives</a><br />
<strong>Why:</strong> LogoMotives is the Twitter account for Portland, Oregon based designer and author Jeff Fisher. Jeff&#8217;s creations have been an inspiration for me since I started following him on Twitter and watching what he does has definitely helped me improve with my logo design.</p>
<h4>Mashable / Pete Cashmore</h4>
<p><strong>URL:</strong> <a href="http://www.twitter.com/mashable" target="_blank">http://www.twitter.com/mashable</a><br />
<strong>Why:</strong> Mashable&#8217;s CEO Pete Cashmore is a social media/networking guru. Following him as helped me improve my knowledge of the industry(?) ten fold. With over 1.3 million followers, the guy definitely knows what he&#8217;s talking about. If you want to learn anything about Twitter and/or social media, this is the guy to follow.</p>
<h4>Colorburned / Grant Friedman</h4>
<p><strong>URL:</strong> <a href="http://www.twitter.com/colorburned" target="_blank">http://www.twitter.com/colorburned</a><br />
<strong>Why:</strong> Colorburned is the Twitter home of the website of the same name as well as owner/creator Grant Friedman. Colorburned is a great design resource featuring tips, tricks and tutorials. If you want to learn any of the new design techniques floating around the web, chances are that these guys can help. Check them out.</p>
<h4>Radian6</h4>
<p><strong>URL:</strong> <a href="http://www.twitter.com/radian6" target="_blank">http://www.twitter.com/radian6</a><br />
<strong>Why:</strong> Founded in 2006, Radian6 was created with the idea that companies need to be listening to the social web in order to effectively participate. Intelligence about online conversations is critical: companies need to know what’s being said about their brand, industry, and competitors online. So, they built a listening platform designed to help companies do just that.</p>
<p>Oh, and don&#8217;t forget to follow me @ <a href="http://www.twitter.com/robbclarke" target="_blank">http://www.twitter.com/robbclarke</a>.</p>
<p>Did I miss anyone? Thoughts? Feedback?</p>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/social-media/my-top-10-web-people-to-follow-on-twitter/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How To: Add a Dotted Underline to Your Links</title>
		<link>http://robbclarke.com/coding-tricks/how-to-add-a-dotted-underline-to-your-links/</link>
		<comments>http://robbclarke.com/coding-tricks/how-to-add-a-dotted-underline-to-your-links/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 18:34:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coding Tricks]]></category>
		<category><![CDATA[border]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[dotted]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Underline]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://clarkegraphics.com/?p=120</guid>
		<description><![CDATA[Sick and tired of boring old underlines to show that a bit of text is a link? Here&#8217;s a really quick bit of CSS to show a dotted underline on your links (like this). It&#8217;s so easy to do this that it hurts. We&#8217;re just swapping the underline for a border. Dotted Underline on Hover [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://clarkegraphics.com/2009/09/how-to-add-a-dotted-underline-to-your-links/"><img class="alignright size-full wp-image-213" title="dotted" src="http://clarkegraphics.com/wp-content/uploads/2009/09/dotted.jpg" alt="dotted" width="600" height="200" /></a></p>
<p>Sick and tired of boring old underlines to show that a bit of text is a link? Here&#8217;s a really quick bit of CSS to show a dotted underline on your links (like this).</p>
<p><img class="alignnone size-full wp-image-121" title="dotted-url" src="http://clarkegraphics.com/wp-content/uploads/2009/09/dotted-url.jpg" alt="dotted-url" width="156" height="22" /></p>
<p>It&#8217;s so easy to do this that it hurts. We&#8217;re just swapping the underline for a border.</p>
<h4>Dotted Underline on Hover Only</h4>
<pre class="css"><span class="cssSelector">a:link, a:visited {</span>
<span class="cssProperty">text-decoration</span><span class="cssRest">:</span><span class="cssValue"> none</span><span class="cssRest">;</span> <span class="cssSelector">}</span>
<span class="cssSelector">a:hover {</span>
<span class="cssProperty">border-bottom</span><span class="cssRest">:</span><span class="cssValue"> 1px dotted #000</span><span class="cssRest">;</span> <span class="cssSelector">}</span></pre>
<p>What this does is remove the underline from the text so that when it&#8217;s not being hovered over there&#8217;s no underline. On hover, the dotted border appears.</p>
<h4>Dotted Underline At All Times</h4>
<pre class="css"><span class="cssSelector">a:link, a:visited {</span>
<span class="cssProperty">text-decoration</span><span class="cssRest">:</span><span class="cssValue"> none</span><span class="cssRest">;</span>
<span class="cssProperty">border-bottom</span><span class="cssRest">:</span><span class="cssValue"> 1px dotted #000</span><span class="cssRest">;</span> <span class="cssSelector">}</span></pre>
<p>This removes the underline and replaces it with the dotted border at all times.</p>
<p>Obviously a dotted border isn&#8217;t the only option out there. Play around with the other options and see what looks good and fits your site the best. Here&#8217;s the list of all of the types of borders that you can do.</p>
<h4>CSS Border Types</h4>
<pre class="css">
<span class="cssSelector">p.solid {</span><span class="cssProperty">border-style</span><span class="cssRest">:</span><span class="cssValue"> solid</span><span class="cssRest">;</span> <span class="cssSelector">}</span>
<span class="cssSelector">p.double {</span><span class="cssProperty">border-style</span><span class="cssRest">:</span><span class="cssValue"> double</span><span class="cssRest">;</span> <span class="cssSelector">}</span>
<span class="cssSelector">p.groove {</span><span class="cssProperty">border-style</span><span class="cssRest">:</span><span class="cssValue"> groove</span><span class="cssRest">;</span> <span class="cssSelector">}</span>
<span class="cssSelector">p.dotted {</span><span class="cssProperty">border-style</span><span class="cssRest">:</span><span class="cssValue"> dotted</span><span class="cssRest">;</span> <span class="cssSelector">}</span>
<span class="cssSelector">p.dashed {</span><span class="cssProperty">border-style</span><span class="cssRest">:</span><span class="cssValue"> dashed</span><span class="cssRest">;</span> <span class="cssSelector">}</span>
<span class="cssSelector">p.inset {</span><span class="cssProperty">border-style</span><span class="cssRest">:</span><span class="cssValue"> inset</span><span class="cssRest">;</span> <span class="cssSelector">}</span>
<span class="cssSelector">p.outset {</span><span class="cssProperty">border-style</span><span class="cssRest">:</span><span class="cssValue"> outset</span><span class="cssRest">;</span> <span class="cssSelector">}</span>
<span class="cssSelector">p.ridge {</span><span class="cssProperty">border-style</span><span class="cssRest">:</span><span class="cssValue"> ridge</span><span class="cssRest">;</span> <span class="cssSelector">}</span>
<span class="cssSelector">p.hidden {</span><span class="cssProperty">border-style</span><span class="cssRest">:</span><span class="cssValue"> hidden</span><span class="cssRest">;</span> <span class="cssSelector">}</span>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/coding-tricks/how-to-add-a-dotted-underline-to-your-links/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Why You Can&#8217;t Afford to Not Join the Social Media Revolution</title>
		<link>http://robbclarke.com/social-media/why-you-cant-afford-to-not-join-the-social-media-revolution/</link>
		<comments>http://robbclarke.com/social-media/why-you-cant-afford-to-not-join-the-social-media-revolution/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 01:07:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Hulu]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[QZone]]></category>
		<category><![CDATA[Socialnomics]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Wikipedia]]></category>
		<category><![CDATA[YouTube]]></category>

		<guid isPermaLink="false">http://clarkegraphics.com/?p=105</guid>
		<description><![CDATA[Is Social Media a Fad? Or is it the biggest shift since the Industrial Revolution? A lot of people are hesitant to make the leap into Social Media because they just don&#8217;t see the benefits. People also said that Television was a fad&#8230; the same went for the Internet, iPods and even Blu-Ray. Yup, those [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://clarkegraphics.com/2009/09/why-you-cant-afford-to-not-join-the-social-media-revolution/"><img class="alignright size-full wp-image-210" title="revolution" src="http://clarkegraphics.com/wp-content/uploads/2009/09/revolution.jpg" alt="revolution" width="600" height="200" /></a></p>
<p>Is Social Media a Fad?<br />
Or is it the biggest shift since the Industrial Revolution?</p>
<p>A lot of people are hesitant to make the leap into Social Media because they just don&#8217;t see the benefits. People also said that Television was a fad&#8230; the same went for the Internet, iPods and even Blu-Ray. Yup, those were fads alright &lt;/sarcasm&gt;.</p>
<h4>Some fun facts for you about Social Media:</h4>
<ul>
<li>By 2010 <strong><abbr title="Generation Y, also known as The Millennial Generation, is a term used to describe the demographic cohort following Generation X.">GenY</abbr></strong> will outnumber Baby Boomers</li>
<li>96% of them have joined a social network</li>
<li>Social Media has overtaken porn as the #1 activity on the Web</li>
<li>1 out of 8 couples married in the US last year met via Social Media</li>
</ul>
<h4>Years to reach 50 million users:</h4>
<ul>
<li>Radio: 38 years</li>
<li>TV: 13 years</li>
<li>Internet: 4 years</li>
<li>iPod: 3 years</li>
<li><a title="Facebook" href="http://www.facebook.com" target="_blank">Facebook</a> added 100 million users in less than 9 months</li>
<li>iPod Application downloads hit 1 billion in 9 months</li>
</ul>
<h4>Other Information:</h4>
<ul>
<li>If Facebook were a country it would be the world&#8217;s 4th largest</li>
<li>Chin&#8217;a <a title="QZone" href="http://www.qzone.qq.com" target="_blank">QZone</a> is larger with over 300 million using their services</li>
<li>2009 US Department of Education study revealed that on average, online students out performed those receiving face-to-face instruction</li>
<li>1 in 6 higher education students are enrolled in online cirriculum</li>
<li>80% of companies are using <a title="LinkedIn" href="http://www.linkedin.com" target="_blank">LinkedIn</a> as their primary tool to find employees</li>
<li>The fastest growing segment on Facebook is 55-65 year-old females</li>
<li><a title="Ashton Kutcher's Twitter" href="http://www.twitter.com/APlusK" target="_blank">Ashton Kutcher</a> and <a title="Ellen Degeneres' Twitter" href="http://www.twitter.com/theEllenShow" target="_blank">Ellen DeGeneres</a> have more <a title="Twitter" href="http://www.twitter.com" target="_blank">Twitter</a> followers than the entire population of Ireland, Norway and Panama</li>
<li>80% of Twitter usage is on mobile devices; people update anywhere, anytime. Imagine what that means for bad customer experiences&#8230;</li>
<li>Generation Y and Z consider email passe</li>
<li>In 2009 Boston College stopped distributing email addresses to incoming freshmen</li>
<li><a title="YouTube" href="http://www.youtube.com" target="_blank">YouTube</a> is the <strong>2nd</strong> largest search engine in the world</li>
<li>YouTube has more than 100,000,000 videos</li>
<li><a title="Wikipedia" href="http://www.wikipedia.com" target="_blank">Wikipedia</a> has over 13 million articles</li>
<li>Studies show it&#8217;s more accurate than Encyclopedia Britannica</li>
<li>78% of these articles are non-English</li>
<li>If you were paid $1 for every time an article was posted on Wikipedia you would earn $156.23 a per hour</li>
<li>There are over 200,000,000 Blogs</li>
<li>54% of bloggers post content or <abbr title="A 'Tweet' is a post made on Twitter">Tweet</abbr> daily</li>
<li>25% of search results for the World&#8217;s Top 20 largest brands are links to user-generated content</li>
<li>34% of bloggers post opinions about products &amp; brands</li>
<li>People care more about how their social graph ranks products and services than how <a title="Google" href="http://www.google.com" target="_blank">Google</a> ranks them</li>
<li>78% of consumers trust peer recommendations</li>
<li>Only 14% trust advertisements</li>
<li>Only 18% of traditional TV campaigns generate a positive <acronym title="ROI (return on investment) is 'the bottom line' on how successful an ad or campaign was in terms of what the returns are">ROI</acronym></li>
<li>90% of people that can TiVo ads do</li>
<li><a title="Hulu" href="http://www.hulu.com" target="_blank">Hulu</a> has grown from 63 million total streams in April 2008 to 373 million in April 2009</li>
<li>70% of 18 to 34 year-olds have watched TV on the Web</li>
<li>Only 33% have ever viewed a show on DVR/TiVo</li>
<li>25% of Americans in the past month said they watched a short video on their phones</li>
<li>35% of book sales on Amazon are for the Kindle</li>
<li>24 of the 25 largest newspapers are experiencing record declines in circulation</li>
<li>We no longer search for news&#8230; the news finds us</li>
<li>In the near future we will no longer search for products and services&#8230; they will find us via Social Media</li>
<li>Social Media isn&#8217;t a fad. It&#8217;s a fundamental shift in the way we communicate</li>
<li>More than 1.5 million pieces of content (web links, news stories, blog posts, notes, photos etc) are shared on Facebook&#8230; daily</li>
<li>Successful companies in Social Media act more like Dale Carnegie and less like David Ogilvy&#8230; listening first, selling second</li>
<li>Successful companies in Social Media act more like party planners, aggregators, and content providers than traditional advertisers</li>
</ul>
<p>Still think Social Media is a fad?</p>
<p>What did we learn today? Companies that aren&#8217;t utilizing Social Media are going to quickly fall to the wayside when it comes to Customer Service. A large number of companies use Social Media as alerts for poor customer satisfaction and even have response teams to address issues as they arise.</p>
<p>Large numbers of people turn to Social Media, especially Twitter&#8217;s &#8220;Trending Topics&#8221; and Facebook &#8220;Statuses&#8221; as a source for breaking news. Large news providers like <a title="CNN Breaking News on Twitter" href="http://www.twitter.com/cnnbrk" target="_blank">CNN</a>, <a title="CBC News on Twitter" href="http://www.twitter.com/cbcNews" target="_blank">CBC</a> and <a title="BBC News on Twitter" href="http://www.twitter.com/BBc" target="_blank">BBC</a> are turning to Twitter as a way to keep people informed.</p>
<p>Did you know that many of the largest newspapers in the world are preparing to be paperless within the next 10 years?</p>
<p>So who can benefit from Social Media? Absolutely anyone! Small companies can keep clientele informed of specials, Realtors can post new listings, big corporations can monitor customer satisfaction, restaurants can monitor reviews&#8230; the list goes on and on.</p>
<p>Still on the fence? That&#8217;s your loss.</p>
<p>Wanna chat about Social Media? Want some advice on the subject? Feel free to <a title="Contact Robb Clarke" href="/#contact" target="_blank">drop me a line</a> or comment below&#8230; whatever floats your boat.</p>
<p><small>Source: <a title="Socialnomics" href="http://www.socialnomics.com" target="_blank">http://www.socialnomics.com</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/social-media/why-you-cant-afford-to-not-join-the-social-media-revolution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Top Ten People to Follow on Twitter</title>
		<link>http://robbclarke.com/social-media/my-top-ten-people-to-follow-on-twitter/</link>
		<comments>http://robbclarke.com/social-media/my-top-ten-people-to-follow-on-twitter/#comments</comments>
		<pubDate>Mon, 31 Aug 2009 00:18:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[follow]]></category>
		<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://clarkegraphics.com/?p=93</guid>
		<description><![CDATA[If you&#8217;re like me then you&#8217;re using Twitter for a lot more than social networking. Sure, I use the service for what it was intended for but I use it for more than following what personal friends are doing. I follow a lot of people that have great advice on life, coding and so much [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://clarkegraphics.com/2009/08/my-top-ten-people-to-follow-on-twitter/"><img class="alignright size-full wp-image-202" title="twitter" src="http://clarkegraphics.com/wp-content/uploads/2009/08/twitter.jpg" alt="twitter" width="600" height="200" /></a></p>
<p>If you&#8217;re like me then you&#8217;re using Twitter for a lot more than social networking. Sure, I use the service for what it was intended for but I use it for more than following what personal friends are doing. I follow a lot of people that have great advice on life, coding and so much more. Below is a list of the top ten people that I follow on Twitter and why. Oh, and they&#8217;re in no particular order.</p>
<h4>Ben Popken</h4>
<p><strong>URL:</strong> <a href="http://www.twitter.com/bpopken" target="_blank">http://www.twitter.com/bpopken</a><br />
<strong>Why:</strong> Ben Popken is the creator of The Consumerist and is always posting great financial advice. I turned my financial situation around about a year ago based on advice from his website.</p>
<h4>Smashing Magazine</h4>
<p><strong>URL:</strong> <a href="http://www.twitter.com/smashingmag" target="_blank">http://www.twitter.com/smashingmag</a><br />
<strong>Why:</strong> Smashing Magazine is an amazing source for design techniques, inspiration and new lines of code. They&#8217;re always updating their Twitter with not only site updates but also useful posts from around the web. Following them has helped me improve my design skill and coding ability a lot.</p>
<h4>LogoMotives / Jeff Fisher</h4>
<p><strong>URL:</strong> <a href="http://www.twitter.com/logomotives" target="_blank">http://www.twitter.com/logomotives</a><br />
<strong>Why:</strong> LogoMotives is the Twitter account for Portland, Oregon based designer and author Jeff Fisher. Jeff&#8217;s creations have been an inspiration for me since I started following him on Twitter and watching what he does has definitely helped me improve with my logo design.</p>
<h4>Unmarketing / Scott Stratten</h4>
<p><strong>URL:</strong> <a href="http://www.twitter.com/unmarketing" target="_blank">http://www.twitter.com/unmarketing</a><br />
<strong>Why:</strong> Unmarketing is the Twitter account for Toronto based marketing and social media guru Scott Stratten. Scott is always giving great advice on new social media trends.</p>
<h4>TimCAD / Tim Absath</h4>
<p><strong>URL:</strong> <a href="http://www.twitter.com/timcad" target="_blank">http://www.twitter.com/timcad</a><br />
<strong>Why:</strong> TimCAD is the official Twitter account for web based comic series CTRL+ALT+DEL and its creator Tim Absath. Not only do I follow Tim because I&#8217;m a fan of his comic but he also has a lot of insight into a lot of great games coming to both PC and consoles&#8230; not that I do much gaming anymore&#8230; but he&#8217;s still interesting to follow.</p>
<h4>Matt Good</h4>
<p><strong>URL:</strong> <a href="http://www.twitter.com/mattgood" target="_blank">http://www.twitter.com/mattgood</a><br />
<strong>Why:</strong> Matt Good is a fantastic Canadian musician. I&#8217;ve been a fan of him for well over a decade and not much is going to change that. Good uses his Twitter to keep follows up to date with his music and website updates. While on tour he updates quite frequently as well which can get really interesting.</p>
<h4>CBC News</h4>
<p><strong>URL:</strong> <a href="http://www.twitter.com/cbcnews" target="_blank">http://www.twitter.com/cbcnews</a><br />
<strong>Why:</strong> CBC News is putting Twitter to good use by posting breaking news as it happens. Their Tweets link back to the full story on the CBC website and it&#8217;s a great way to keep informed with what&#8217;s happening around the world as well as Canada.</p>
<h4>Mashable / Pete Cashmore</h4>
<p><strong>URL:</strong> <a href="http://www.twitter.com/mashable" target="_blank">http://www.twitter.com/mashable</a><br />
<strong>Why:</strong> Mashable&#8217;s CEO Pete Cashmore is a social media/networking guru. Following him as helped me improve my knowledge of the industry(?) ten fold. With over 1.3 million followers, the guy definitely knows what he&#8217;s talking about. If you want to learn anything about Twitter and/or social media, this is the guy to follow.</p>
<h4>Colorburned / Grant Friedman</h4>
<p><strong>URL:</strong> <a href="http://www.twitter.com/colorburned" target="_blank">http://www.twitter.com/colorburned</a><br />
<strong>Why:</strong> Colorburned is the Twitter home of the website of the same name as well as owner/creator Grant Friedman. Colorburned is a great design resource featuring tips, tricks and tutorials. If you want to learn any of the new design techniques floating around the web, chances are that these guys can help. Check them out.</p>
<h4>Chris Brogan</h4>
<p><strong>URL:</strong> <a href="http://www.twitter.com/chrisbrogan" target="_blank">http://www.twitter.com/chrisbrogan</a><br />
<strong>Why:</strong> Chris Brogan is a marketing savant based out of Boston, Mass. He doesn&#8217;t reveal all of his good tips on his Twitter account, and rightfully so, but you can pick up a lot of good tips and tricks by following him. I&#8217;ve always found what he&#8217;s talking about to be interesting and helps me as a designer/marketer.</p>
<h4>Honourable Mentions</h4>
<p>Wil Wheaton @ <a href="http://www.twitter.com/wilw" target="_blank">http://www.twitter.com/wilw</a><br />
Daiv Russell @ <a href="http://www.twitter.com/daivrawks" target="_blank">http://www.twitter.com/daivrawks</a><br />
Nathan Fillion @ <a href="http://www.twitter.com/nathanfillion" target="_blank">http://www.twitter.com/nathanfillion</a><br />
Radian6 @ <a href="http://www.twitter.com/radian6" target="_blank">http://www.twitter.com/radian6</a></p>
<p>Oh, and don&#8217;t forget to follow me @ <a href="http://www.twitter.com/robbclarke" target="_blank">http://www.twitter.com/robbclarke</a>.</p>
<p>Did I miss anyone? Thoughts? Feedback?</p>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/social-media/my-top-ten-people-to-follow-on-twitter/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Different Ways to Generate URLs in WordPress</title>
		<link>http://robbclarke.com/coding-tricks/different-ways-to-generate-urls-in-wordpress/</link>
		<comments>http://robbclarke.com/coding-tricks/different-ways-to-generate-urls-in-wordpress/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 22:37:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coding Tricks]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Dynamic URL]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[URL Generator]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://clarkegraphics.com/?p=81</guid>
		<description><![CDATA[I&#8217;m big on WordPress, in fact, I&#8217;m using it for this site and most of the other sites that I&#8217;ve coded. Recently (when working on this blog) I decided that I wanted to generate the URL of the current page so that I could submit that specific page to social media sites, not just the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://clarkegraphics.com/2009/08/different-ways-to-generate-urls-in-wordpress/"><img class="alignright size-full wp-image-88" title="robbclarke-wordpress" src="http://clarkegraphics.com/wp-content/uploads/2009/08/wordpress.jpg" alt="robbclarke-wordpress" width="600" height="200" /></a><br />
I&#8217;m big on WordPress, in fact, I&#8217;m using it for this site and most of the other sites that I&#8217;ve coded. Recently (when working on this blog) I decided that I wanted to generate the URL of the current page so that I could submit that specific page to social media sites, not just the root URL. I search everywhere but couldn&#8217;t find the solution that I was looking for and then it hit me.</p>
<p>If you want to dynamically generate the URL of the page/post that you are currently viewing then all you need to enter is:</p>
<pre class="php"></pre>
<p>This code generates and displays the current URL, which is great for submitting articles to Digg, Facebook, Twitter etc. etc.</p>
<p>What a big sigh of relief it was when I found that. The funny thing is that it&#8217;s been staring me in the face all along.</p>
<h4>Various Codes to Generate Different URLs in WordPress</h4>
<p>Below is a list of a number of variables used to generate various URLs using WordPress. The variable is on the left and the result is on the right.</p>
<pre class="php">admin_email <span class="phpOperator">=</span> admin@example
atom_url <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home/feed/atom
</span>charset <span class="phpOperator">=</span> UTF-<span class="phpNumber">8</span>
comments_atom_url <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home/comments/feed/atom
</span>comments_rss2_url <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home/comments/feed
</span>description <span class="phpOperator">=</span> Just another WordPress blog
home <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home
</span>html_type <span class="phpOperator">=</span> text/html
language <span class="phpOperator">=</span> en-US
name <span class="phpOperator">=</span> Testpilot
pingback_url <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home/wp/xmlrpc<span class="phpOperator">.</span>php
</span>rdf_url <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home/feed/rdf
</span>rss2_url <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home/feed
</span>rss_url <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home/feed/rss
</span>siteurl <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home
</span>stylesheet_directory <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home/wp/wp-content/themes/largo
</span>stylesheet_url <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home/wp/wp-content/themes/largo/style.css
</span>template_directory <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home/wp/wp-content/themes/largo
</span>template_url <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home/wp/wp-content/themes/largo
</span>text_direction <span class="phpOperator">=</span> ltr
url <span class="phpOperator">=</span> http<span class="phpOperator">:</span><span class="phpComment">//example/home
</span>version <span class="phpOperator">=</span> <span class="phpNumber">2</span><span class="phpOperator">.</span><span class="phpNumber">7</span>
wpurl <span class="phpOperator">=</span> http<span class="phpOperator">:</span>//example/home/wp</pre>
<p>You can easily display this information by substituting the variable in the following code for the desired URL:</p>
<pre class="php"></pre>
<p>Did that help? Share your thoughts below!</p>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/coding-tricks/different-ways-to-generate-urls-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Article in the Daily Gleaner</title>
		<link>http://robbclarke.com/press/article-in-the-daily-gleaner/</link>
		<comments>http://robbclarke.com/press/article-in-the-daily-gleaner/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 00:37:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Press]]></category>
		<category><![CDATA[Daily Gleaner]]></category>
		<category><![CDATA[Fredericton]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://clarkegraphics.com/?p=58</guid>
		<description><![CDATA[On Tuesday of this past week I got a phone call at the office from a reporter from the local Fredericton newspaper, The Daily Gleaner. He was looking to speak to a graphic designer about what they do and to comment on the industry. I just so happened to answer the phone at the time [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://clarkegraphics.com/2009/08/article-in-the-daily-gleaner/"><img class="alignright size-full wp-image-59" title="robbclarke-dailygleaner" src="http://clarkegraphics.com/wp-content/uploads/2009/08/robbclarke-dailygleaner.jpg" alt="robbclarke-dailygleaner" width="600" height="200" /></a></p>
<p>On Tuesday of this past week I got a phone call at the office from a reporter from the local Fredericton newspaper, The Daily Gleaner. He was looking to speak to a graphic designer about what they do and to comment on the industry. I just so happened to answer the phone at the time and was more than happy to help him out.</p>
<p>On Wednesday, reporter Chris Fox came into the office and interviewed me and was followed a short time later by a photographer who took some pictures.</p>
<p>The end result was <a title="Demand for graphic designers is growing" href="http://nbbusinessjournal.canadaeast.com/gleaner/article/768359" target="_blank">this article</a> that ran on Saturday, August 22, 2009. For the most part everything was great in the article except for two minor things. The first being that I don&#8217;t &#8220;handle all the programming and coding for the entire operation.&#8221; He got that part mixed up with freelance (for friends and family). I worked with a great team of programmers at Red Cow, Oliver Dueck and Sean Dunphy who have the hardest jobs of them all, they have to make my coded sites actually work. Without them, Red Cow wouldn&#8217;t work nearly as well.</p>
<p>The second issue was a mix up of timelines. The article states that I work at Red Cow and teach in the evenings, which is true, but the next paragraph jumps back in time 4 years to when I was doing my Bachelor&#8217;s degree and decided that I didn&#8217;t want to get into teaching, which is about all you can do with a History Major. It&#8217;s a little awkwardly worded but past that, it was good.</p>
<p>I first read the article online when I woke up that morning because, of course, I was incredibly exicted. It wasn&#8217;t until later in the day when I grabbed an actual paper copy that I noticed <strong>I WAS THE WHOLE FRONT PAGE OF THE BUSINESS SECTION</strong>! It was pretty frickin&#8217; cool.</p>
<p>Wait&#8230; why are you still reading this? Go <a title="Demand for graphic designers is growing" href="http://nbbusinessjournal.canadaeast.com/gleaner/article/768359" target="_blank">read the article!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/press/article-in-the-daily-gleaner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To: H1 as an Image While Maintaining SEO</title>
		<link>http://robbclarke.com/coding-tricks/how-to-h1-as-an-image-while-maintaining-seo/</link>
		<comments>http://robbclarke.com/coding-tricks/how-to-h1-as-an-image-while-maintaining-seo/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 12:14:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Coding Tricks]]></category>
		<category><![CDATA[Engine]]></category>
		<category><![CDATA[h1]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[Optimization]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://clarkegraphics.com/?p=45</guid>
		<description><![CDATA[If you check out the header of this site you&#8217;ll notice that it&#8217;s an image but if you look at the code there&#8217;s no image there, just some text for Search Engine Optimization (SEO) purposes. You&#8217;re probably wondering how and why, well here&#8217;s the math: As you know, having the H1 on your site filled [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://clarkegraphics.com/2009/08/how-to-h1-as-an-image-while-maintaining-seo/"><img class="alignright size-full wp-image-47" title="H1" src="http://clarkegraphics.com/wp-content/uploads/2009/08/h1.jpg" alt="H1" width="600" height="200" /></a></p>
<p>If you check out the header of this site you&#8217;ll notice that it&#8217;s an image but if you look at the code there&#8217;s no image there, just some text for Search Engine Optimization (SEO) purposes. You&#8217;re probably wondering how and why, well here&#8217;s the math:</p>
<p>As you know, having the H1 on your site filled in does wonders for your <acronym title="Search Engine Optimization">SEO</acronym>, and aside from your Title tag and meta tags, it&#8217;s the first thing on your site that&#8217;s read by browsers. On this site I have &#8220;my name is robb clarke and i build websites&#8221; as the information in my H1 tag.  Obviously that text isn&#8217;t what&#8217;s displayed on the site, I have an image, all nicely styled, in its place. Now, obviously text on images are readable by search engines, so how do display an image while maintaining your SEO?</p>
<p>Here&#8217;s how.</p>
<p><strong>HTML</strong></p>
<pre class="html">
<span class="htmlOtherTag">&lt;h1&gt;</span><span class="htmlOtherTag">&lt;span&gt;</span>my name is robb clarke and i build websites<span class="htmlOtherTag">&lt;/span&gt;</span><span class="htmlOtherTag">&lt;/h1&gt;</span>
</pre>
<p><strong>CSS</strong></p>
<pre class="css"><span class="cssSelector">h1 {</span>
<span class="cssProperty">font-size</span><span class="cssRest">:</span><span class="cssValue"> 18px</span><span class="cssRest">;</span>
<span class="cssProperty">font-weight</span><span class="cssRest">:</span><span class="cssValue"> bold</span><span class="cssRest">;</span>
<span class="cssProperty">width</span><span class="cssRest">:</span><span class="cssValue"> 900px</span><span class="cssRest">;</span>
<span class="cssProperty">height</span><span class="cssRest">:</span><span class="cssValue"> 198px</span><span class="cssRest">;</span>
<span class="cssProperty">background</span><span class="cssRest">:</span><span class="cssValue"> url(images/header.jpg) top left no-repeat</span><span class="cssRest">;</span>
<span class="cssProperty">display</span><span class="cssRest">:</span><span class="cssValue"> block</span><span class="cssRest">;</span>
<span class="cssProperty">margin</span><span class="cssRest">:</span><span class="cssValue"> 10px 0 10px 0</span><span class="cssRest">;</span> <span class="cssSelector">}</span>
<span class="cssSelector">h1 span {</span> <span class="cssProperty">display</span><span class="cssRest">:</span><span class="cssValue"> none</span><span class="cssRest">;</span> <span class="cssSelector">}</span></pre>
<p>So what this does is takes the text inside of the SPAN tag and applies the &#8220;display: none;&#8221; to it, thus hiding it from your sight but not the search engine&#8217;s. Then to display the image in its place we make the image the background of the H1 tag and set the height and width accordingly.</p>
<p>You can also do it another way without the SPAN tag by just using text-indent.</p>
<p><strong>HTML</strong></p>
<pre class="html">
<span class="htmlOtherTag">&lt;h1&gt;</span>my name is robb clarke and i build websites<span class="htmlOtherTag">&lt;/h1&gt;</span>
</pre>
<p><strong>CSS</strong></p>
<pre class="css"><span class="cssSelector">h1 {</span>
<span class="cssProperty">font-size</span><span class="cssRest">:</span><span class="cssValue"> 18px</span><span class="cssRest">;</span>
<span class="cssProperty">font-weight</span><span class="cssRest">:</span><span class="cssValue"> bold</span><span class="cssRest">;</span>
<span class="cssProperty">width</span><span class="cssRest">:</span><span class="cssValue"> 900px</span><span class="cssRest">;</span>
<span class="cssProperty">height</span><span class="cssRest">:</span><span class="cssValue"> 198px</span><span class="cssRest">;</span>
<span class="cssProperty">background</span><span class="cssRest">:</span><span class="cssValue"> url(images/header.jpg) top left no-repeat</span><span class="cssRest">;</span>
<span class="cssProperty">display</span><span class="cssRest">:</span><span class="cssValue"> block</span><span class="cssRest">;</span>
<span class="cssProperty">margin</span><span class="cssRest">:</span><span class="cssValue"> 10px 0 10px 0</span><span class="cssRest">;</span>
<span class="cssProperty">text-indent</span><span class="cssRest">:</span><span class="cssValue"> -9999px</span><span class="cssRest">;</span> <span class="cssSelector">}</span></pre>
<p>This will send any text 9999px to the left and out of sight.</p>
<p>Questions? Comments? Concerns?</p>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/coding-tricks/how-to-h1-as-an-image-while-maintaining-seo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Nick Forret Photography</title>
		<link>http://robbclarke.com/site-builds/nick-forret-photography/</link>
		<comments>http://robbclarke.com/site-builds/nick-forret-photography/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 14:18:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Site Builds]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Fredericton]]></category>
		<category><![CDATA[Lightbox]]></category>
		<category><![CDATA[Nick Forret]]></category>
		<category><![CDATA[Photographer]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://clarkegraphics.com/?p=38</guid>
		<description><![CDATA[Good friend and photographer, Nick Forret, approached me in early July about relaunching his website and I was more than happy to help him out. Nick&#8217;s old website, while nice looking, wasn&#8217;t set up to be easily edited by Nick who has little coding background. Our solution was to set up his new site using [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://clarkegraphics.com/2009/08/nick-forret-photography/"><img class="alignright size-full wp-image-39" title="Nick Forret Photography" src="http://clarkegraphics.com/wp-content/uploads/2009/08/nickforret.jpg" alt="Nick Forret Photography" width="600" height="200" /></a></p>
<p>Good friend and photographer, <a title="Nick Forret Photography" href="http://www.nickforret.com" target="_self">Nick Forret</a>, approached me in early July about relaunching his website and I was more than happy to help him out. Nick&#8217;s old website, while nice looking, wasn&#8217;t set up to be easily edited by Nick who has little coding background. Our solution was to set up his new site using WordPress which let him easily update his website and even keep a blog. The new site is set up to automatically add Lightbox to his uploaded images, thus creating a bit of a fancy gallery for his users to view his work.</p>
<p>We&#8217;ve also set up a blog with comments enabled to promote discussion about various topics.</p>
<p>Nick is still in the process of adding content to the site but you can view the active site here:<br />
<a title="Nick Forret Photography" href="http://www.nickforret.com" target="_blank">http://www.nickforret.com</a></p>
<p>Don&#8217;t forget, Nick is always available for work!</p>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/site-builds/nick-forret-photography/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Unfiltered Smoke</title>
		<link>http://robbclarke.com/site-builds/creating-unfiltered-smoke/</link>
		<comments>http://robbclarke.com/site-builds/creating-unfiltered-smoke/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 02:08:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Site Builds]]></category>
		<category><![CDATA[Fredericton]]></category>
		<category><![CDATA[Music Player]]></category>
		<category><![CDATA[Smoke]]></category>
		<category><![CDATA[Unfiltered]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Woodstock]]></category>

		<guid isPermaLink="false">http://clarkegraphics.com/?p=32</guid>
		<description><![CDATA[Unfiltered Smoke is the brain child of journalist, opinion writer, movie reviewer and good friend Jason Wilson. A while back Jason contacted me about working on this project and I jumped on the opportunity. He was looking for a site where he could showcase the works of the many talented people that he has known [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://clarkegraphics.com/2009/08/creating-unfiltered-smoke/"><img class="alignright size-full wp-image-33" title="Unfiltered Smoke" src="http://clarkegraphics.com/wp-content/uploads/2009/08/unfiltered1.jpg" alt="Unfiltered Smoke" width="600" height="200" /></a></p>
<p><a title="Unfiltered Smoke" href="http://www.unfilteredsmoke.com" target="_blank">Unfiltered Smoke</a> is the brain child of journalist, opinion writer, movie reviewer and good friend Jason Wilson. A while back Jason contacted me about working on this project and I jumped on the opportunity. He was looking for a site where he could showcase the works of the many talented people that he has known over the years. He was looking for a site that he could post articles, short stories, videos, photo series and music. The end result is a site that I&#8217;m really proud of.</p>
<p>The site features an integrated Lightbox gallery for displaying photo series and dynamic music players which are only activated when the user selects them.</p>
<p>Unfiltered Smoke has very quickly gone from a pet project into a largely popular website that is growing by leaps and bounds every day.</p>
<p>You can take a look at the site by clicking <a title="Unfiltered Smoke" href="http://www.unfilteredsmoke.com" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/site-builds/creating-unfiltered-smoke/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unfiltered Smoke Makes the News</title>
		<link>http://robbclarke.com/press/unfiltered-smoke-makes-the-news/</link>
		<comments>http://robbclarke.com/press/unfiltered-smoke-makes-the-news/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 23:06:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Press]]></category>
		<category><![CDATA[Article]]></category>
		<category><![CDATA[Bugle Observer]]></category>
		<category><![CDATA[Fredericton]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Smoke]]></category>
		<category><![CDATA[Unfiltered]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Woodstock]]></category>

		<guid isPermaLink="false">http://clarkegraphics.com/?p=18</guid>
		<description><![CDATA[Back in June, good friend Jason Wilson approached me about the creation of a website that would be a showcase &#8220;for the creatively gifted.&#8221; The website just officially launched this past Friday, August 14th and has already received some press. The Bugle Observer in Woodstock, NB ran an article on Jason and Unfiltered Smoke on [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://clarkegraphics.com/2009/08/unfiltered-smoke-makes-the-news/"><img class="alignright size-full wp-image-19" title="Unfiltered Smoke" src="http://clarkegraphics.com/wp-content/uploads/2009/08/unfiltered.jpg" alt="Unfiltered Smoke" width="600" height="200" /></a></p>
<p>Back in June, good friend Jason Wilson approached me about the creation of a website that would be a showcase &#8220;for the creatively gifted.&#8221; The website just officially launched this past Friday, August 14th and has already received some press.</p>
<p>The Bugle Observer in Woodstock, NB ran an article on Jason and Unfiltered Smoke on July 28th in which I get a mention.</p>
<blockquote><p>He&#8217;s been meeting with Robb Clarke, a friend and webdesigner, concerning the look of the website.</p></blockquote>
<p>You can read the full article here:<br />
<a title="Creating Unfiltered Smoke in the Bugle Observer" href="http://bugleobserver.canadaeast.com/rss/article/742262" target="_blank">http://bugleobserver.canadaeast.com/rss/article/742262</a></p>
<p>If you want to check out Unfiltered Smoke you can do so by clicking <a title="Unfiltered Smoke" href="http://www.unfilteredsmoke.com">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://robbclarke.com/press/unfiltered-smoke-makes-the-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
