<?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>Christopher Ross</title>
	<atom:link href="http://www.thisismyurl.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thisismyurl.com</link>
	<description>Web Development, Online Marketing &#38; Graphic Design</description>
	<lastBuildDate>Sun, 21 Mar 2010 14:20:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Can I schedule WordPress to take down a post?</title>
		<link>http://www.thisismyurl.com/tutorials/wordpress-help/can-i-schedule-wordpress-to-take-down-a-post/</link>
		<comments>http://www.thisismyurl.com/tutorials/wordpress-help/can-i-schedule-wordpress-to-take-down-a-post/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 14:20:32 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[WordPress Help]]></category>
		<category><![CDATA[code lt]]></category>
		<category><![CDATA[Current Date]]></category>
		<category><![CDATA[Custom Field]]></category>
		<category><![CDATA[Date Function]]></category>
		<category><![CDATA[Fetch]]></category>
		<category><![CDATA[footer]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[options]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Takedown]]></category>

		<guid isPermaLink="false">http://www.thisismyurl.com/?p=15161</guid>
		<description><![CDATA[Everybody knows you can schedule WordPress to put a post up on a specific date but is it possible to schedule WordPress to take down a post on a specific day?]]></description>
			<content:encoded><![CDATA[<p>Everybody knows you can schedule WordPress to put a post up on a specific date but is it possible to schedule WordPress to take down a post on a specific day?</p>
<p>Of course it is but you&#8217;ll need to know a little PHP and understand how WordPress works.</p>
<h2>Setting up your post for a scheduled takedown</h2>
<p>First, you&#8217;ll need to add a custom field to your WordPress post. There are a couple ways to do this, the easiest is to add a custom field with the name &#8220;takedown&#8221; and the date you want WordPress to remove it in the Value field. Technically, the name isn&#8217;t important (nor is the date format) if you know what you&#8217;re doing but let&#8217;s try to work with these two standards for now.</p>
<ol>
<li>Set the Custom Field Name to <em>takedown</em></li>
<li>Set the Value of the Custom Field to <em>2010-05-01</em> (year-month-day)</li>
</ol>
<p>Now save your post and let&#8217;s take a look at the next step.</p>
<h2>Detecting the current date</h2>
<p>PHP allows us to fetch the current date using the <a href="http://ca3.php.net/manual/en/function.date.php">date()</a> function and using some formatting options we can return the value of the date based on the format we need which is <em>date(&#8216;Y-m-d&#8217;);</em>. If you add the code &lt;?php date(&#8216;Y-m-d&#8217;);&gt; after the very last line of your footer file, you&#8217;ll see todays date appear at the bottom of your website.</p>
<p>Now let&#8217;s make sure to remove it from the last line and work on comparing the date instead.</p>
<h2>Comparing the current date</h2>
<p>Now that we know now the actual date, we need to know what day we want the website to stop showing our post. For this, we need to fetch the value stored in <em>takedown</em> using PHP:</p>
<blockquote>
<div id="_mcePaste"><em>$takedown = trim(get_post_meta($post-&gt;ID, &#8216;takedown&#8217;, true));</em></div>
</blockquote>
<div>Now the variable <em>$takedown</em> has the value stored in the custom field takedown, which is great as long as there was a value there. To test if <em>takedown</em> has a value let&#8217;s add a quick check:</div>
<blockquote>
<div><em>$takedown = trim(get_post_meta($post-&gt;ID, &#8216;takedown&#8217;, true));</em></div>
<div><em>if (strlen($takedown)==10) {</em></div>
<div>// your code here</div>
<div><em>}</em></div>
</blockquote>
<p>For some reason, even if the value of the variable is not found WordPress assigned something too it so instead of using <em>isset()</em> or testing for NULL, I&#8217;ve found the safest thing to do is check the string length. Since we know the only variable that is valid will be a YYYY-MM-DD format, testing for a ten character string will ensure we&#8217;re on the right track. You could also use <em>checkdate()</em> if you&#8217;re server supports it.</p>
<p>Finally, I compare the two dates using the code:</p>
<blockquote><p><em>if ($date(&#8216;Y-m-d&#8217;) &gt;= $takedown) { //yourcodehere;}</em></p></blockquote>
<h2>Deleting the post</h2>
<p>There are a couple ways in WordPress to change the status of a post or delete it outright, in my case I simply want to convert posts from <em>Published</em> (which means they&#8217;re live) to Pending (for my review) so that I can manually delete the posts later if I want.</p>
<p>To do this, we will make use of the WordPress function <em>wp_update_post()</em> like so:</p>
<blockquote><p><em>$my_post = array();<br />
$my_post['ID'] = $post-&gt;ID;<br />
$my_post['post_status'] = &#8216;pending&#8217;;<br />
wp_update_post($my_post);</em></p></blockquote>
<p>This code simply tells WordPress to update the current post and set the status to pending which will convert the post from live to hidden.</p>
<p>If you want to completely delete the post on a schedule, you can do so using the <a href="http://codex.wordpress.org/Function_Reference/wp_delete_post">wp_delete_post()</a> function instead of my code above.</p>
<h2>The final code</h2>
<p>Here&#8217;s the full code assembled for you, to make it work you should place it in the single.php file just below the final line of code on your website. It is important to note that this code will only activate after the <em>takedown</em> date, when the specific post is viewed so technically, if a page is to be taken down on the 1st of May but nobody visits until the 10th, it will still be live until the 10th.</p>
<blockquote>
<div><em>$takedown = trim(get_post_meta($post-&gt;ID, &#8216;takedown&#8217;, true));</em></div>
<div><em>if (strlen($takedown)==10) {</em></div>
<div><em>if ($date(&#8216;Y-m-d&#8217;) &gt;= $takedown) {<br />
$my_post = array();<br />
$my_post['ID'] = $post-&gt;ID;<br />
$my_post['post_status'] = &#8216;pending&#8217;;<br />
wp_update_post($my_post);<br />
}</em></div>
<div><em>}</em></div>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.thisismyurl.com/tutorials/wordpress-help/can-i-schedule-wordpress-to-take-down-a-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great Chefs Virtual Products</title>
		<link>http://www.thisismyurl.com/portfolio/photography-portfolio/great-chefs-virtual-products/</link>
		<comments>http://www.thisismyurl.com/portfolio/photography-portfolio/great-chefs-virtual-products/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 15:05:36 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[christopherross.ca]]></category>
		<category><![CDATA[3d Artist]]></category>
		<category><![CDATA[Angles]]></category>
		<category><![CDATA[artwork]]></category>
		<category><![CDATA[Build Website]]></category>
		<category><![CDATA[dozens]]></category>
		<category><![CDATA[fraction]]></category>
		<category><![CDATA[great chefs]]></category>
		<category><![CDATA[Joshua]]></category>
		<category><![CDATA[Photographic Settings]]></category>
		<category><![CDATA[Television Show]]></category>
		<category><![CDATA[Virtual Products]]></category>

		<guid isPermaLink="false">http://christopherross.ca/?p=1005</guid>
		<description><![CDATA[Sometimes the best way to get great shots is to fake it.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.greatchefs.com/">Great Chefs television</a> has over 500 DVD&#8217;s for their multi year television show, so when I was contact to <a href="http://christopherross.ca/great-chefs-great-website/">build a great website for Great Chefs</a>, the first thing I needed to do was update 20 years of DVD&#8217;s to standard angles with modern artwork.</p>
<p>Working with local 3D artist Joshua O&#8217;Neill, I created artwork for dozens of series and hundreds of discs in a fraction of the time it would have taken to setup photographic settings for the discs.</p>
<p><a href="http://christopherross.ca/wp-content/uploads/2010/03/great-chefs-desserts-dvd.png"  rel="lightbox[1005]" rel="lightbox[roadtrip]"><img class="alignleft size-thumbnail wp-image-1008" title="great-chefs-desserts-dvd" src="http://christopherross.ca/wp-content/uploads/2010/03/great-chefs-desserts-dvd-150x150.png" alt="great chefs desserts dvd 150x150 Great Chefs Virtual Products image" width="150" height="150" /></a><a href="http://christopherross.ca/wp-content/uploads/2010/03/great-chefs-cook-italian-dvd.png"  rel="lightbox[1005]" rel="lightbox[roadtrip]"><img class="alignleft size-thumbnail wp-image-1007" title="great-chefs-cook-italian-dvd" src="http://christopherross.ca/wp-content/uploads/2010/03/great-chefs-cook-italian-dvd-150x150.png" alt="great chefs cook italian dvd 150x150 Great Chefs Virtual Products image" width="150" height="150" /></a><a href="http://christopherross.ca/wp-content/uploads/2010/03/great-chefs-big-box-of-chocolates.png"  rel="lightbox[1005]" rel="lightbox[roadtrip]"><img class="alignleft size-thumbnail wp-image-1006" title="great-chefs-big-box-of-chocolates" src="http://christopherross.ca/wp-content/uploads/2010/03/great-chefs-big-box-of-chocolates-150x150.png" alt="great chefs big box of chocolates 150x150 Great Chefs Virtual Products image" width="150" height="150" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thisismyurl.com/portfolio/photography-portfolio/great-chefs-virtual-products/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drop Dead British Designer</title>
		<link>http://www.thisismyurl.com/posts/what-im-reading/drop-dead-british-designer/</link>
		<comments>http://www.thisismyurl.com/posts/what-im-reading/drop-dead-british-designer/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 14:14:54 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[What I'm Reading]]></category>
		<category><![CDATA[David Robinson]]></category>
		<category><![CDATA[Design Web]]></category>
		<category><![CDATA[Disciplines]]></category>
		<category><![CDATA[Fender]]></category>
		<category><![CDATA[Ferrari]]></category>
		<category><![CDATA[Freelance Web Developer]]></category>
		<category><![CDATA[Hussy]]></category>
		<category><![CDATA[Mind Web]]></category>
		<category><![CDATA[Oliver James]]></category>
		<category><![CDATA[Portfolios]]></category>
		<category><![CDATA[Quality Design]]></category>
		<category><![CDATA[Sexiest]]></category>
		<category><![CDATA[Snowstorms]]></category>
		<category><![CDATA[Spectacular Work]]></category>
		<category><![CDATA[Strip Clubs]]></category>
		<category><![CDATA[Subtle Details]]></category>
		<category><![CDATA[web designers]]></category>
		<category><![CDATA[Web Developers]]></category>
		<category><![CDATA[Web Professionals]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://www.thisismyurl.com/?p=15146</guid>
		<description><![CDATA[For those of you who don&#8217;t know me personally, I&#8217;ll let you in on a little secret. I&#8217;m a complete hussy for quality design. I mean honestly, some people like strip clubs and others ogle the fender of a Ferrari but for me? It&#8217;s all about the subtle details of quality design.
This week, while I [...]]]></description>
			<content:encoded><![CDATA[<p>For those of you who don&#8217;t know me personally, I&#8217;ll let you in on a little secret. I&#8217;m a complete hussy for quality design. I mean honestly, some people like strip clubs and others ogle the fender of a Ferrari but for me? It&#8217;s all about the subtle details of quality design.</p>
<p>This week, while I was wildly clicking around looking for something completely unrelated (standards compliant xhtml) I came across a website for <a href="http://www.goslingo.com/">Oliver James Gosling, a freelance web developer in Bristol</a> who&#8217;s got to have one of the sexiest websites I&#8217;ve seen in weeks, if not months. The piece of art came from <a href="http://dropstudio.co.uk/">DropStudio</a>, another Bristol boy named David Robinson. My theory is that the recent snowstorms kept them at the office and if you look at the portfolios for either of them, creating spectacular work.</p>
<p>I don&#8217;t know either of them and this isn&#8217;t a paid advertisement but and so I don&#8217;t mind saying that the two of them (who seem to work together on a number of projects) do a wonderful job combine two very different disciplines, something more web professionals should keep in mind.</p>
<p>Web designers, design. Web developers, develop.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thisismyurl.com/posts/what-im-reading/drop-dead-british-designer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Canadian Job Postings</title>
		<link>http://www.thisismyurl.com/posts/what-im-reading/canadian-job-postings/</link>
		<comments>http://www.thisismyurl.com/posts/what-im-reading/canadian-job-postings/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 20:50:39 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[What I'm Reading]]></category>
		<category><![CDATA[Attitude Problem]]></category>
		<category><![CDATA[Budget Business]]></category>
		<category><![CDATA[Calgary Canada]]></category>
		<category><![CDATA[Canadian Job Postings]]></category>
		<category><![CDATA[Designing Websites]]></category>
		<category><![CDATA[Downtown Vancouver]]></category>
		<category><![CDATA[Edmonton Event]]></category>
		<category><![CDATA[Event Marketing]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[Line Supervision]]></category>
		<category><![CDATA[Lower Mainland]]></category>
		<category><![CDATA[Marketing Campaigns]]></category>
		<category><![CDATA[Marketing Job]]></category>
		<category><![CDATA[Marketing Marketing]]></category>
		<category><![CDATA[Marketing Team]]></category>
		<category><![CDATA[Model Female]]></category>
		<category><![CDATA[Positive Attitude]]></category>
		<category><![CDATA[Toronto Downtown]]></category>
		<category><![CDATA[Verbal Communication Skills]]></category>

		<guid isPermaLink="false">http://www.thisismyurl.com/?p=15142</guid>
		<description><![CDATA[I spend a lot of time reading job postings across Canada, here's a general outline of what the web has to offer.]]></description>
			<content:encoded><![CDATA[<p>One of the more interesting things about the web, as far as I&#8217;m concerned, is it&#8217;s ability to allow somebody <a title="fredericton web designer" href="http://christopherross.ca">designing websites in Fredericton</a> to see what&#8217;s going on across the who country, it allows us as marketing people to see the complete spectrum of employment and in this case, learn what different markets across Canada have for work.</p>
<p>Below is a tag cloud (a visual representation of keywords) for 300 different marketing job searches I conduct each day, it&#8217;s an interesting way to understand what the country is looking for and how it&#8217;s promoting employment across the country.</p>
<div style="text-align: center;">
<p><span href='http://www.thisismyurl.com/?tag=3-years' title='78 topics' class='tag-link-292' style='font-size: 8.9780439121756pt;'  href="">3 Years</span> <span href='http://www.thisismyurl.com/?tag=ajax' title='95 topics' class='tag-link-2538' style='font-size: 9.4530938123752pt;'  href="">Ajax</span> <span href='http://www.thisismyurl.com/?tag=ambassador' title='58 topics' class='tag-link-1674' style='font-size: 8.4191616766467pt;'  href="">Ambassador</span> <span href='http://www.thisismyurl.com/?tag=ambassadors' title='81 topics' class='tag-link-17717' style='font-size: 9.061876247505pt;'  href="">Ambassadors</span> <span href='http://www.thisismyurl.com/?tag=attitude' title='51 topics' class='tag-link-3901' style='font-size: 8.2235528942116pt;'  href="">Attitude</span> <span href='http://www.thisismyurl.com/?tag=bonus' title='58 topics' class='tag-link-1532' style='font-size: 8.4191616766467pt;'  href="">Bonus</span> <span href='http://www.thisismyurl.com/?tag=budget' title='69 topics' class='tag-link-1661' style='font-size: 8.7265469061876pt;'  href="">Budget</span> <span href='http://www.thisismyurl.com/?tag=business-analyst' title='57 topics' class='tag-link-17552' style='font-size: 8.3912175648703pt;'  href="">Business Analyst</span> <span href='http://www.thisismyurl.com/?tag=calgary' title='129 topics' class='tag-link-5284' style='font-size: 10.403193612774pt;'  href="">Calgary</span> <span href='http://www.thisismyurl.com/?tag=canada' title='115 topics' class='tag-link-5309' style='font-size: 10.011976047904pt;'  href="">Canada</span> <span href='http://www.thisismyurl.com/?tag=ca-usa' title='56 topics' class='tag-link-12823' style='font-size: 8.3632734530938pt;'  href="">Ca Usa</span> <span href='http://www.thisismyurl.com/?tag=communication-skills' title='150 topics' class='tag-link-360' style='font-size: 10.99001996008pt;'  href="">Communication Skills</span> <span href='http://www.thisismyurl.com/?tag=cover-letter' title='92 topics' class='tag-link-514' style='font-size: 9.3692614770459pt;'  href="">Cover Letter</span> <span href='http://www.thisismyurl.com/?tag=customer-service' title='52 topics' class='tag-link-1388' style='font-size: 8.251497005988pt;'  href="">Customer Service</span> <span href='http://www.thisismyurl.com/?tag=cv' title='115 topics' class='tag-link-6597' style='font-size: 10.011976047904pt;'  href="">Cv</span> <span href='http://www.thisismyurl.com/?tag=developer' title='78 topics' class='tag-link-2541' style='font-size: 8.9780439121756pt;'  href="">Developer</span> <span href='http://www.thisismyurl.com/?tag=developers' title='49 topics' class='tag-link-13205' style='font-size: 8.1676646706587pt;'  href="">Developers</span> <span href='http://www.thisismyurl.com/?tag=downtown-toronto' title='116 topics' class='tag-link-4837' style='font-size: 10.039920159681pt;'  href="">Downtown Toronto</span> <span href='http://www.thisismyurl.com/?tag=downtown-vancouver' title='69 topics' class='tag-link-13071' style='font-size: 8.7265469061876pt;'  href="">Downtown Vancouver</span> <span href='http://www.thisismyurl.com/?tag=edmonton' title='77 topics' class='tag-link-16912' style='font-size: 8.9500998003992pt;'  href="">Edmonton</span> <span href='http://www.thisismyurl.com/?tag=event-marketing' title='44 topics' class='tag-link-18575' style='font-size: 8.0279441117764pt;'  href="">Event Marketing</span> <span href='http://www.thisismyurl.com/?tag=expert' title='51 topics' class='tag-link-2126' style='font-size: 8.2235528942116pt;'  href="">Expert</span> <span href='http://www.thisismyurl.com/?tag=familiarity' title='44 topics' class='tag-link-797' style='font-size: 8.0279441117764pt;'  href="">Familiarity</span> <span href='http://www.thisismyurl.com/?tag=fast-paced-environment' title='78 topics' class='tag-link-115' style='font-size: 8.9780439121756pt;'  href="">Fast Paced Environment</span> <span href='http://www.thisismyurl.com/?tag=female-model' title='47 topics' class='tag-link-4521' style='font-size: 8.1117764471058pt;'  href="">Female Model</span> <span href='http://www.thisismyurl.com/?tag=female-models' title='66 topics' class='tag-link-1547' style='font-size: 8.6427145708583pt;'  href="">Female Models</span> <span href='http://www.thisismyurl.com/?tag=gig' title='48 topics' class='tag-link-1784' style='font-size: 8.1397205588822pt;'  href="">Gig</span> <span href='http://www.thisismyurl.com/?tag=google' title='99 topics' class='tag-link-1840' style='font-size: 9.564870259481pt;'  href="">Google</span> <span href='http://www.thisismyurl.com/?tag=graphic-design' title='52 topics' class='tag-link-22' style='font-size: 8.251497005988pt;'  href="">Graphic Design</span> <span href='http://www.thisismyurl.com/?tag=graphic-designer' title='143 topics' class='tag-link-253' style='font-size: 10.794411177645pt;'  href="">Graphic Designer</span> <span href='http://www.thisismyurl.com/?tag=gta' title='175 topics' class='tag-link-6642' style='font-size: 11.688622754491pt;'  href="">Gta</span> <span href='http://www.thisismyurl.com/?tag=halifax' title='58 topics' class='tag-link-23151' style='font-size: 8.4191616766467pt;'  href="">Halifax</span> <span href='http://www.thisismyurl.com/?tag=hello' title='106 topics' class='tag-link-1669' style='font-size: 9.7604790419162pt;'  href="">Hello</span> <span href='http://www.thisismyurl.com/?tag=high-energy' title='47 topics' class='tag-link-238' style='font-size: 8.1117764471058pt;'  href="">High Energy</span> <span href='http://www.thisismyurl.com/?tag=hourly-rate' title='47 topics' class='tag-link-1061' style='font-size: 8.1117764471058pt;'  href="">Hourly Rate</span> <span href='http://www.thisismyurl.com/?tag=html-css' title='51 topics' class='tag-link-1287' style='font-size: 8.2235528942116pt;'  href="">Html Css</span> <span href='http://www.thisismyurl.com/?tag=illustrator' title='103 topics' class='tag-link-21' style='font-size: 9.6766467065868pt;'  href="">Illustrator</span> <span href='http://www.thisismyurl.com/?tag=images' title='59 topics' class='tag-link-1654' style='font-size: 8.4471057884232pt;'  href="">Images</span> <span href='http://www.thisismyurl.com/?tag=interpersonal-skills' title='48 topics' class='tag-link-252' style='font-size: 8.1397205588822pt;'  href="">Interpersonal Skills</span> <span href='http://www.thisismyurl.com/?tag=iphone' title='83 topics' class='tag-link-658' style='font-size: 9.1177644710579pt;'  href="">Iphone</span> <span href='http://www.thisismyurl.com/?tag=java-developer' title='53 topics' class='tag-link-17472' style='font-size: 8.2794411177645pt;'  href="">Java Developer</span> <span href='http://www.thisismyurl.com/?tag=london' title='45 topics' class='tag-link-15493' style='font-size: 8.0558882235529pt;'  href="">London</span> <span href='http://www.thisismyurl.com/?tag=love' title='54 topics' class='tag-link-1474' style='font-size: 8.3073852295409pt;'  href="">Love</span> <span href='http://www.thisismyurl.com/?tag=lower-mainland' title='54 topics' class='tag-link-17318' style='font-size: 8.3073852295409pt;'  href="">Lower Mainland</span> <span href='http://www.thisismyurl.com/?tag=marketing' title='75 topics' class='tag-link-48' style='font-size: 8.8942115768463pt;'  href="">Marketing</span> <span href='http://www.thisismyurl.com/?tag=marketing-campaigns' title='51 topics' class='tag-link-2237' style='font-size: 8.2235528942116pt;'  href="">Marketing Campaigns</span> <span href='http://www.thisismyurl.com/?tag=marketing-company' title='77 topics' class='tag-link-1226' style='font-size: 8.9500998003992pt;'  href="">Marketing Company</span> <span href='http://www.thisismyurl.com/?tag=marketing-team' title='67 topics' class='tag-link-3176' style='font-size: 8.6706586826347pt;'  href="">Marketing Team</span> <span href='http://www.thisismyurl.com/?tag=microsoft' title='69 topics' class='tag-link-2847' style='font-size: 8.7265469061876pt;'  href="">Microsoft</span> <span href='http://www.thisismyurl.com/?tag=mississauga' title='92 topics' class='tag-link-4817' style='font-size: 9.3692614770459pt;'  href="">Mississauga</span> <span href='http://www.thisismyurl.com/?tag=models' title='44 topics' class='tag-link-3162' style='font-size: 8.0279441117764pt;'  href="">Models</span> <span href='http://www.thisismyurl.com/?tag=money' title='83 topics' class='tag-link-4438' style='font-size: 9.1177644710579pt;'  href="">Money</span> <span href='http://www.thisismyurl.com/?tag=montreal' title='265 topics' class='tag-link-4733' style='font-size: 14.203592814371pt;'  href="">Montreal</span> <span href='http://www.thisismyurl.com/?tag=opportunity' title='62 topics' class='tag-link-1580' style='font-size: 8.5309381237525pt;'  href="">Opportunity</span> <span href='http://www.thisismyurl.com/?tag=oracle' title='55 topics' class='tag-link-18042' style='font-size: 8.3353293413174pt;'  href="">Oracle</span> <span href='http://www.thisismyurl.com/?tag=ottawa' title='134 topics' class='tag-link-5386' style='font-size: 10.542914171657pt;'  href="">Ottawa</span> <span href='http://www.thisismyurl.com/?tag=passion' title='50 topics' class='tag-link-1316' style='font-size: 8.1956087824351pt;'  href="">Passion</span> <span href='http://www.thisismyurl.com/?tag=people' title='53 topics' class='tag-link-1001' style='font-size: 8.2794411177645pt;'  href="">People</span> <span href='http://www.thisismyurl.com/?tag=phone-number' title='53 topics' class='tag-link-1000' style='font-size: 8.2794411177645pt;'  href="">Phone Number</span> <span href='http://www.thisismyurl.com/?tag=photo' title='106 topics' class='tag-link-1544' style='font-size: 9.7604790419162pt;'  href="">Photo</span> <span href='http://www.thisismyurl.com/?tag=photos' title='117 topics' class='tag-link-1554' style='font-size: 10.067864271457pt;'  href="">Photos</span> <span href='http://www.thisismyurl.com/?tag=php-developer' title='50 topics' class='tag-link-163' style='font-size: 8.1956087824351pt;'  href="">Php Developer</span> <span href='http://www.thisismyurl.com/?tag=php-mysql' title='53 topics' class='tag-link-3852' style='font-size: 8.2794411177645pt;'  href="">Php Mysql</span> <span href='http://www.thisismyurl.com/?tag=positive-attitude' title='73 topics' class='tag-link-725' style='font-size: 8.8383233532934pt;'  href="">Positive Attitude</span> <span href='http://www.thisismyurl.com/?tag=problem-solving-skills' title='43 topics' class='tag-link-2084' style='font-size: 8pt;'  href="">Problem Solving Skills</span> <span href='http://www.thisismyurl.com/?tag=programmer' title='97 topics' class='tag-link-8759' style='font-size: 9.5089820359281pt;'  href="">Programmer</span> <span href='http://www.thisismyurl.com/?tag=promotions' title='55 topics' class='tag-link-2843' style='font-size: 8.3353293413174pt;'  href="">Promotions</span> <span href='http://www.thisismyurl.com/?tag=reply' title='180 topics' class='tag-link-1229' style='font-size: 11.828343313373pt;'  href="">Reply</span> <span href='http://www.thisismyurl.com/?tag=sales-marketing' title='51 topics' class='tag-link-6723' style='font-size: 8.2235528942116pt;'  href="">Sales Marketing</span> <span href='http://www.thisismyurl.com/?tag=self-starter' title='61 topics' class='tag-link-1135' style='font-size: 8.502994011976pt;'  href="">Self Starter</span> <span href='http://www.thisismyurl.com/?tag=short-film' title='52 topics' class='tag-link-1987' style='font-size: 8.251497005988pt;'  href="">Short Film</span> <span href='http://www.thisismyurl.com/?tag=subject-line' title='61 topics' class='tag-link-257' style='font-size: 8.502994011976pt;'  href="">Subject Line</span> <span href='http://www.thisismyurl.com/?tag=supervision' title='47 topics' class='tag-link-349' style='font-size: 8.1117764471058pt;'  href="">Supervision</span> <span href='http://www.thisismyurl.com/?tag=surrey' title='44 topics' class='tag-link-19297' style='font-size: 8.0279441117764pt;'  href="">Surrey</span> <span href='http://www.thisismyurl.com/?tag=team-environment' title='68 topics' class='tag-link-955' style='font-size: 8.6986027944112pt;'  href="">Team Environment</span> <span href='http://www.thisismyurl.com/?tag=team-player' title='77 topics' class='tag-link-466' style='font-size: 8.9500998003992pt;'  href="">Team Player</span> <span href='http://www.thisismyurl.com/?tag=toronto' title='499 topics' class='tag-link-4810' style='font-size: 20.74251497006pt;'  href="">Toronto</span> <span href='http://www.thisismyurl.com/?tag=vancouver' title='302 topics' class='tag-link-3707' style='font-size: 15.2375249501pt;'  href="">Vancouver</span> <span href='http://www.thisismyurl.com/?tag=vancouver-bc' title='80 topics' class='tag-link-15339' style='font-size: 9.0339321357285pt;'  href="">Vancouver Bc</span> <span href='http://www.thisismyurl.com/?tag=verbal-communication-skills' title='47 topics' class='tag-link-25' style='font-size: 8.1117764471058pt;'  href="">Verbal Communication Skills</span> <span href='http://www.thisismyurl.com/?tag=web-designer' title='70 topics' class='tag-link-1197' style='font-size: 8.7544910179641pt;'  href="">Web Designer</span> <span href='http://www.thisismyurl.com/?tag=web-developer' title='93 topics' class='tag-link-1709' style='font-size: 9.3972055888224pt;'  href="">Web Developer</span> <span href='http://www.thisismyurl.com/?tag=winnipeg' title='49 topics' class='tag-link-2799' style='font-size: 8.1676646706587pt;'  href="">Winnipeg</span> <span href='http://www.thisismyurl.com/?tag=written-communication-skills' title='74 topics' class='tag-link-157' style='font-size: 8.8662674650699pt;'  href="">Written Communication Skills</span></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.thisismyurl.com/posts/what-im-reading/canadian-job-postings/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Canadian Web Hosting</title>
		<link>http://www.thisismyurl.com/tutorials/canadian-web-hosting/</link>
		<comments>http://www.thisismyurl.com/tutorials/canadian-web-hosting/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 14:40:29 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[Learning]]></category>
		<category><![CDATA[bluehost]]></category>
		<category><![CDATA[Business Privacy]]></category>
		<category><![CDATA[Canadian Dollar]]></category>
		<category><![CDATA[Canadian Web]]></category>
		<category><![CDATA[Department Of Homeland]]></category>
		<category><![CDATA[Department Of Homeland Security]]></category>
		<category><![CDATA[Digital Millennium]]></category>
		<category><![CDATA[Dollar Costs]]></category>
		<category><![CDATA[Downside]]></category>
		<category><![CDATA[Fluctuations]]></category>
		<category><![CDATA[Great Web Services]]></category>
		<category><![CDATA[Hand Web]]></category>
		<category><![CDATA[Homeland Security]]></category>
		<category><![CDATA[Hosting Canada]]></category>
		<category><![CDATA[Millennium Act]]></category>
		<category><![CDATA[Poor Performance]]></category>
		<category><![CDATA[Privacy Issues]]></category>
		<category><![CDATA[Privacy Office]]></category>
		<category><![CDATA[Us Department Of Homeland Security]]></category>
		<category><![CDATA[Web Hosting]]></category>

		<guid isPermaLink="false">http://www.thisismyurl.com/?p=15140</guid>
		<description><![CDATA[What are the advantages to hosting your website in Canada vs. the United States?]]></description>
			<content:encoded><![CDATA[<p>Regular readers of my blog will know that I&#8217;ve been a huge fan of <a title="Hosting" href="http://www.bluehost.com/track/getawaygraphics/">BlueHost</a> for a number of years, they&#8217;re a quality outfit with great web services and tremendous support but they&#8217;re based out if the United States which, while many of you are US citizens and choose to be patriotic &#8230; has it&#8217;s downside as well.</p>
<h2>The US Dollar</h2>
<p>The first, and most obvious flaw in hosting anything in the United States is the US dollar itself, with poor performance over the past year a US dollar costs between 95¢ and $1.05 per Canadian dollar but in recent years past, it could have costed up to $1.50 to purchase a US dollar! That means that the $6.95 a month I pay with BlueHost actually costs me anywhere from $6.60 per month to $10.40 per month depending on influences outside my control.</p>
<p>On the other hand, <a title="web hosting" href="http://www.canadianwebhosting.com">web hosting</a> in Canada would have cost a US customer $6.95 Canadian per month, or as low as $4.63 per month with fluctuations in the currency giving US based business a savings of up to 33% per year for <a title="hosting" href="http://www.canadianwebhosting.com">hosting</a> here in Canada.</p>
<h2>Privacy Issues</h2>
<p>When it comes to <a title="hosting" href="http://www.canadianwebhosting.com">domain hosting</a> for the average business, privacy is not something most think about but for larger businesses or membership based websites, hosting a website in Canada has the often unforeseen advantage of being regulated by the <a href="http://www.priv.gc.ca/">Privacy Office of Canada</a>, not the US Department of Homeland Security or the Digital Millennium Act. While it could be fair to say that US based businesses should abide by these laws, businesses not based in the US may find themselves benefiting from Canadian rules over US based laws.</p>
<p>options</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thisismyurl.com/tutorials/canadian-web-hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cutting down on Website Spam</title>
		<link>http://www.thisismyurl.com/news/cutting-down-on-website-spam/</link>
		<comments>http://www.thisismyurl.com/news/cutting-down-on-website-spam/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 13:34:12 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[regentware.com]]></category>
		<category><![CDATA[countless hours]]></category>
		<category><![CDATA[Cutting]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[Successful Business]]></category>
		<category><![CDATA[Unwanted Email]]></category>

		<guid isPermaLink="false">http://regentware.com/?p=123</guid>
		<description><![CDATA[Building a successful business is hard enough without having to waist countless hours dealing with unwanted email, here's a quick way to help avoid it.]]></description>
			<content:encoded><![CDATA[<p>Building a successful business is hard enough without having to waist countless hours dealing with unwanted email, here&#8217;s a quick way to help avoid it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thisismyurl.com/news/cutting-down-on-website-spam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to center a header, with HTML and CSS</title>
		<link>http://www.thisismyurl.com/tutorials/design-tutorials/html-programming/how-to-center-a-header-with-html-and-css/</link>
		<comments>http://www.thisismyurl.com/tutorials/design-tutorials/html-programming/how-to-center-a-header-with-html-and-css/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 12:49:39 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[HTML Programming]]></category>
		<category><![CDATA[Attribute]]></category>
		<category><![CDATA[Class Center]]></category>
		<category><![CDATA[Css Html]]></category>
		<category><![CDATA[h1]]></category>
		<category><![CDATA[Heading]]></category>
		<category><![CDATA[Hello World]]></category>
		<category><![CDATA[Html Css]]></category>
		<category><![CDATA[Html Document]]></category>
		<category><![CDATA[Html Extension]]></category>
		<category><![CDATA[little bit]]></category>
		<category><![CDATA[lt]]></category>
		<category><![CDATA[Notepad]]></category>
		<category><![CDATA[Style Sheet]]></category>
		<category><![CDATA[Style Text]]></category>
		<category><![CDATA[tag]]></category>
		<category><![CDATA[Text Document]]></category>
		<category><![CDATA[Text Html]]></category>

		<guid isPermaLink="false">http://www.thisismyurl.com/?p=15134</guid>
		<description><![CDATA[Here's a quick tip that'll help you centre a heading using nothing more than a little bit of HTML and CSS.]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick tip that&#8217;ll help you centre a heading using nothing more than a little bit of HTML and CSS.</p>
<p>First, in a new HTML document (which you can create using something as simple as NotePad or Textedit simply by saving your text document with the .html extension), you&#8217;ll want to create a new heading. You can do it by including the following code in your document:</p>
<p><em>&lt;h1&gt;Hello World&lt;/h1&gt;</em></p>
<p>This text adds a standard heading to your website but what if you want to centre the heading on the page? Easy! Let&#8217;s modify the standard <em>&lt;h1&gt;</em> tag to apply a style sheet directly to it:</p>
<p><em>&lt;h1 style=&#8217;text-align:center;&#8217;&gt;Hello World&lt;/h1&gt;</em></p>
<p>You&#8217;ll notice that I don&#8217;t need to setup an individual style sheet to accomplish this task, simply adding the style attribute will allow me to make the changes to this one specific item. If I want to be able to centre multiple items, I could use a style sheet class to accomplish the task:</p>
<p><em>&lt;style&gt;<br />
.center {text-align: center;}<br />
&lt;/style&gt;<br />
&lt;h1 class=&#8217;center&#8217;&gt;Hello World&lt;/h1&gt;</em></p>
<p>Note the class is represented in the style sheet as a period (.) plus the name of the class. Similarly, if I wanted to assign the centre to all occorances of the <em>&lt;h1&gt;</em> tag I could use:</p>
<p><em>&lt;style&gt;<br />
h1{text-align: center;}<br />
&lt;/style&gt;<br />
&lt;h1&gt;Hello World&lt;/h1&gt;</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thisismyurl.com/tutorials/design-tutorials/html-programming/how-to-center-a-header-with-html-and-css/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Marketing Mistakes &amp; Bashing Your Sponsors</title>
		<link>http://www.thisismyurl.com/tutorials/marketing/marketing-mistakes-bashing-your-sponsors/</link>
		<comments>http://www.thisismyurl.com/tutorials/marketing/marketing-mistakes-bashing-your-sponsors/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 19:41:24 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[Marketing Advice]]></category>
		<category><![CDATA[Attractive Girls]]></category>
		<category><![CDATA[Aussies]]></category>
		<category><![CDATA[Bad Idea]]></category>
		<category><![CDATA[Civil Servants]]></category>
		<category><![CDATA[common sense]]></category>
		<category><![CDATA[Company Names]]></category>
		<category><![CDATA[Decade]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Internet Company]]></category>
		<category><![CDATA[Laurel Sutton]]></category>
		<category><![CDATA[Marketing Mistakes]]></category>
		<category><![CDATA[Marketing Profs]]></category>
		<category><![CDATA[Mortimer]]></category>
		<category><![CDATA[Naming Your Business]]></category>
		<category><![CDATA[Olympics]]></category>
		<category><![CDATA[Sense Of Humour]]></category>
		<category><![CDATA[Sucker]]></category>
		<category><![CDATA[Technology Staff]]></category>
		<category><![CDATA[Vancouver]]></category>
		<category><![CDATA[Vanoc]]></category>

		<guid isPermaLink="false">http://www.thisismyurl.com/?p=15132</guid>
		<description><![CDATA[What better time of year than the new year to begin reading some new marketing blogs? ]]></description>
			<content:encoded><![CDATA[<p>I love reading new blogs, especially ones that have little or nothing to do with my area of focus, that way I can always get to see different points of view! This week is no exception, I&#8217;ve found a great collection of marketing blogs since I started this year and I&#8217;d love to share some with you.</p>
<p>Laurel Sutton has a great article on Marketing Profs called <a href="http://www.marketingprofs.com/articles/2009/3278/10-best-and-worst-internet-company-names-of-the-decade">10 Best and Worst Internet Company Names of the Decade</a> that reads like a dummy&#8217;s guide to naming your business. I wish I could say that these are common sense examples but a lot of the companies Laurel references spent HUGE money to screw up. Speaking of &#8220;common sense&#8221;, there&#8217;s a good piece at Knowthis.com about <a href="http://www.knowthis.com/blog/postings/classic-marketing-mistakes-that-may-never-go-away/">common mistakes in marketing</a>, I wish I could say that I&#8217;ve avoided these in the past but &#8230; I&#8217;d be lying.</p>
<p>I&#8217;m a sucker for <a href="http://brandstrategy.wordpress.com/2010/01/08/when-jargon-gets-a-little-too-creative/">Ruth Mortimer&#8217;s blog about marketing</a>, it&#8217;s not just that she&#8217;s a wickedly cool writer or that she got a sense of humour about her industry. I think it might be because she&#8217;s hot. Speaking of which, I read an article in the fall about the ratio of clicks on Facebook for ads with attractive girls vs. normal ads which I can&#8217;t find now but &#8230; her rock&#8217;in blog reinforces that data.</p>
<p>Those wacky Aussies have a great article about <a href="http://www.marketingmag.com.au/blogs/view/do-cities-speak-2-0-1842">marketing (or the lack thereof) and cities</a>, which again reinforces my opinion of most civil servants but also leaves me wondering why cities can&#8217;t seem to get the hang of technology. Speaking of people who can&#8217;t get the hang of technology, staff at the  VANOC (Vancouver Olympics) can&#8217;t seem to understand <a href="http://www.marketingmag.ca/english/news/marketer/article.jsp?content=20100107_171315_8128">bitching about major sponsors</a> is a bad idea.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thisismyurl.com/tutorials/marketing/marketing-mistakes-bashing-your-sponsors/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Working the kinks out!</title>
		<link>http://www.thisismyurl.com/posts/what-im-writing/regentware/working-the-kinks-out/</link>
		<comments>http://www.thisismyurl.com/posts/what-im-writing/regentware/working-the-kinks-out/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 17:57:54 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[regentware.com]]></category>
		<category><![CDATA[Kinks]]></category>
		<category><![CDATA[Lot]]></category>

		<guid isPermaLink="false">http://regentware.com/?p=89</guid>
		<description><![CDATA[If you&#8217;ve been visiting the website today, you&#8217;ll have notices a lot of changes throughout the day as we finish the design and testing of the new site layout. There are still a lot of kinks to be worked out but we made the call to forgo our usual testing environment and work directly on [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve been visiting the website today, you&#8217;ll have notices a lot of changes throughout the day as we finish the design and testing of the new site layout. There are still a lot of kinks to be worked out but we made the call to forgo our usual testing environment and work directly on [...]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thisismyurl.com/posts/what-im-writing/regentware/working-the-kinks-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using the Blind to Build Your Bottom Line</title>
		<link>http://www.thisismyurl.com/tutorials/marketing/using-the-blind-to-build-your-bottom-line/</link>
		<comments>http://www.thisismyurl.com/tutorials/marketing/using-the-blind-to-build-your-bottom-line/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 16:00:48 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[Marketing Advice]]></category>
		<category><![CDATA[christopherross.ca]]></category>
		<category><![CDATA[Aging Population]]></category>
		<category><![CDATA[American Foundation For The Blind]]></category>
		<category><![CDATA[Attribute]]></category>
		<category><![CDATA[Audience Members]]></category>
		<category><![CDATA[Bottom Line]]></category>
		<category><![CDATA[Captions]]></category>
		<category><![CDATA[Creating A Website]]></category>
		<category><![CDATA[Greek Restaurant]]></category>
		<category><![CDATA[Hamilton Ontario]]></category>
		<category><![CDATA[Interactive Element]]></category>
		<category><![CDATA[Loss Of Vision]]></category>
		<category><![CDATA[Memory]]></category>
		<category><![CDATA[Modern Computers]]></category>
		<category><![CDATA[Multimedia Elements]]></category>
		<category><![CDATA[People With Visual Impairments]]></category>
		<category><![CDATA[Technological Capacity]]></category>
		<category><![CDATA[Use Computer]]></category>
		<category><![CDATA[Wheel]]></category>
		<category><![CDATA[Wheel Chairs]]></category>
		<category><![CDATA[Wheelchair Ramp]]></category>

		<guid isPermaLink="false">http://christopherross.ca/?p=373</guid>
		<description><![CDATA[Building a visual medium for the blind may seem counter productive but it's more than socially responsible, it's profitable.]]></description>
			<content:encoded><![CDATA[<p>There was a story about a restaurant in Hamilton Ontario, if memory serves correctly it was a Greek restaurant but the details seem reasonably unimportant. In this story, a man is hired to build a wheelchair ramp for the restaurant and he brings his young son along to help.</p>
<p>The boy was confused because the owners didn&#8217;t need to use wheelchairs and so he asked his father why they choose to spend the money on putting in an expensive ramp. His father then explained that the ramp wasn&#8217;t for the owners but it was for the customers. Still confused, the boy pointed out that not a lot of people used wheelchairs and his father, always patient agreed yet also pointed out that since there was only one restaurant in town that was inviting to people in wheel chairs, they would all eat here.</p>
<p>Regardless of your business, the web is not unlike the restaurants of Hamilton in that there are not a lot of people with visual impairments yet those few websites which make the effort to accommodate them, get all their business.</p>
<p><strong>Helping the Visually Impaired View Your Website</strong></p>
<p>When creating a website, it is vital to remember not all your audience members have the physical or technological capacity to see the web the same way you do. In fact according to the <a href="http://www.afb.org/">American Foundation for the Blind</a>, roughly one in ten people suffer from significant loss of vision. That means that over 30,000,000 Americans have difficulties reading poorly designed websites.</p>
<p>Building better websites to help an aging population, as well as those who simply lack modern computers (15% of people surfing our websites use computer monitors of 800&#215;600 pixels or less) is easy if you take the time to follow some basic tips:</p>
<ol>
<li>Ensure all images are properly labeled using the ALT attribute</li>
<li>In an image is used as an interactive element, describing the function of the element</li>
<li>Provide captions for multimedia elements such as audio, video and rich media</li>
<li>Use verbose text links, avoid using &#8220;click here&#8221; whenever possible</li>
<li>Use CSS structure for design and W3C compliant layouts for websites</li>
<li>Make the most of lists and headings to help identify key elements</li>
<li>Summarize charts, graphics and images with the longdesc attribute</li>
<li>Avoid unnecessary scripts, frames and applets</li>
</ol>
<p><strong>How Helping the Blind will Help Build Your Business</strong></p>
<p>While ensuring that people with disabilities have free and easy access to your website should be motivation enough to build a great website, there&#8217;s a wonderful side benefit for modern companies which should never be overlooked, <a href="http://www.google.com">Google</a>.</p>
<p>Over the past decade, Google has dominated the online search market and is responsible for <a href="http://mashable.com/2009/08/15/google-loses-to-yahoo/">two thirds of all searches</a> in the world, that&#8217;s over 6,000,000,000 (six billion) searches per month for 2009 and the titan of search engines shows little sign of stopping. The objective of every business with a website is to appear in the coveted top of a Search Engine Result Page (SERP) to drive more traffic to their website site but to understand how this is accomplished, a basic understanding of Google is required.</p>
<p>At the very core of what makes Google capable of delivering such great search results is a small software application called a spider. These spiders are constantly crawling the web, searching for new content, indexing pages and reporting back to Google with the most updated information possible and these spiders, are blind. Therefore, if you want to help Google drive traffic to your website, it is imperative that your website effectively be readable by people with visual difficulties. With that in mind, let&#8217;s take another look at why out simple steps to helping the visually impaired are important to Google and other major search engines:</p>
<ol>
<li><strong>Ensure all images are properly labeled using the ALT attribute<br />
</strong>this allows search engines to know what a specific photo contains and focus the page relevance as well as return results on the <a href="http://images.google.com">Images</a> search engine</li>
<li><strong>In an image is used as an interactive element, describing the function of the element</strong><br />
this allows Google to transfer the description from the element to the target page which increases the visibility of the link in Google&#8217;s results</li>
<li><strong>Provide captions for multimedia elements such as audio, video and rich media<br />
</strong>Google is unable to view the contents of interactive rich media such as Flash or audio files, the caption is Google&#8217;s only way of knowing what the file is about</li>
<li><strong>Use verbose text links, avoid using &#8220;click here&#8221; whenever possible</strong><br />
Google uses the hyperlinked words to help determine what a link is about, for example linking the phrase <a title="Fredericton web design" href="http://christopherross.ca">Fredericton web design</a> to our homepage  helps the search engine understand which keywords we want to promote</li>
<li><strong>Use CSS structure for design and W3C compliant layouts for websites</strong><br />
At their core, a webpage is nothing more than a computer document just like a Microsoft Word file but readable by web browsers. Similar to Word documents, these files must be compatible with the software reading them or problems occur and in the case of webpages this file format is defined by the <a href="http://www.w3c.com/">W3C standard</a>. If you want Google and other search engines to be able to read your website, you need to comply to these standards.</li>
<li><strong>Make the most of lists and headings to help identify key elements<br />
</strong>When a person looks at a webpage, some words appear bold or larger. These elements help us see when words and phrases are important, similarly search engines use heading tags and formatting elements to assign importance to phrases</li>
<li><strong>Summarize charts, graphics and images with the longdesc attribute<br />
</strong>As with all graphics,  spiders are unable to read the content of a photo or chart.</li>
<li><strong>Avoid unnecessary scripts, frames and applets</strong><br />
While  helpful for displaying information to 90% of the audience, frames, scripts and applets make surfing the Internet almost impossible for the visually impaired as well as major search engines.</li>
</ol>
<p>Ensuring your website is <a title="Creating websites for the visually impaired" href="http://christopherross.ca/design/">optimized for both search engines and the visually impaired</a> is just one of the many services offered by Ross Creative, if your business would like an <a title="Website Accessibility Reports" href="http://christopherross.ca/website-accessibility-reports/">Accessibility Report</a> completed on a web property <a title="Web strategy planning" href="http://christopherross.ca/about/">please contact our web strategy team today</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thisismyurl.com/tutorials/marketing/using-the-blind-to-build-your-bottom-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creative Web Solutions</title>
		<link>http://www.thisismyurl.com/portfolio/web-design-portfolio/creative-web-solutions/</link>
		<comments>http://www.thisismyurl.com/portfolio/web-design-portfolio/creative-web-solutions/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 15:43:12 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[Print]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[christopherross.ca]]></category>
		<category><![CDATA[Based Web Site Design]]></category>
		<category><![CDATA[creative design]]></category>
		<category><![CDATA[Creative Solutions]]></category>
		<category><![CDATA[Creative Web Solutions]]></category>
		<category><![CDATA[logo design]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[Web Logo]]></category>
		<category><![CDATA[web site design]]></category>
		<category><![CDATA[Web Site Design Company]]></category>

		<guid isPermaLink="false">http://christopherross.ca/?p=286</guid>
		<description><![CDATA[Logo design for a Florida based web site design company.]]></description>
			<content:encoded><![CDATA[<p>Logo design for a Florida based web site design company.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thisismyurl.com/portfolio/web-design-portfolio/creative-web-solutions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What does a PageRank really mean?</title>
		<link>http://www.thisismyurl.com/tutorials/marketing/what-does-a-pagerank-really-mean/</link>
		<comments>http://www.thisismyurl.com/tutorials/marketing/what-does-a-pagerank-really-mean/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 17:57:57 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[Marketing Advice]]></category>
		<category><![CDATA[christopherross.ca]]></category>
		<category><![CDATA[Banner Ads]]></category>
		<category><![CDATA[cnn]]></category>
		<category><![CDATA[Consumers]]></category>
		<category><![CDATA[Espn]]></category>
		<category><![CDATA[Exact Formula]]></category>
		<category><![CDATA[Free Links]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[high quality]]></category>
		<category><![CDATA[Important Things]]></category>
		<category><![CDATA[Nbc]]></category>
		<category><![CDATA[organic marketing]]></category>
		<category><![CDATA[pagerank]]></category>
		<category><![CDATA[Patent]]></category>
		<category><![CDATA[Poor Quality]]></category>
		<category><![CDATA[Proprietary Technology]]></category>
		<category><![CDATA[Reliability]]></category>
		<category><![CDATA[search engine results]]></category>
		<category><![CDATA[search engines]]></category>
		<category><![CDATA[Sheer Volume]]></category>
		<category><![CDATA[Sponsorships]]></category>

		<guid isPermaLink="false">http://christopherross.ca/?p=242</guid>
		<description><![CDATA[When it comes to marketing on the web, a PageRank can be the most important asset your company ever acquires, but what exactly is it?]]></description>
			<content:encoded><![CDATA[<p>When it comes to marketing your business on the Internet there are two basic ways to promote yourself, the first is through paid advertising such as banner ads and sponsorships but the second is called Organic Marketing and it&#8217;s the process of people finding your website through free methods such as search engines, social media and other forms of free links to your website.</p>
<p>The most important form of Organic Marketing is being found on the results pages of a popular search engine such as Google but how does Google rank those results and how does it know who&#8217;s the best to link to? In order to determine which websites to return as part of their Search Engine Results Pages (SERP&#8217;s), Google employees a proprietary technology called <strong>PageRank</strong>, this system of ranking webpages does two important things:</p>
<ol>
<li>PageRank returns high quality links for visitors, which in turn increases Google&#8217;s reliability and;</li>
<li>PageRank removes poor quality links for visitors, also increasing Google&#8217;s value to consumers</li>
</ol>
<h2>How PageRank Works</h2>
<p>The exact formula&#8217;s used to calculate the PageRank system are hidden but based on the original patent and filed documents, PageRank works by calculating a value for your website based on both the volume and quality of websites which link to your website. What that means is that making your website popular is not only a matter of increasing the number of links from websites to your website but also the quality of links from those websites to your website.</p>
<p>For example, here are the PageRanks for some popular websites:</p>
<ul>
<li><a href="http://CNN.com">CNN.com</a> &#8211; 10</li>
<li><a href="http://Google.com">Google.com</a> &#8211; 10</li>
<li><a href="http://Yahoo.com">Yahoo.com</a> &#8211; 9</li>
<li><a href="http://Microsoft.com">Microsoft.com</a> &#8211; 9</li>
<li><a href="http://ESPN.com">ESPN.com</a> &#8211; 8</li>
<li><a href="http://Apple.com">Apple.com</a> &#8211; 8</li>
<li><a href="http://NBC.com">NBC.com</a> &#8211; 7</li>
</ul>
<p>These PageRank results are based on a number of factors but primarily, the sheer volume of websites which are linking to each. For example, 45,000 websites link to CNN.com while only 12,000 link to NBC.com but if you delve deeper into the PageRank formula you&#8217;ll also discover that the CNN.com links are most likely a higher PageRank value themselves.</p>
<h3>A Simplified Understanding of PageRank</h3>
<p>To make it easier to understand how Google calculates PageRank, let&#8217;s assume that each PageRank value is worth a certain number of votes but since we know that higher PageRanks are worth more, we can assign more weight to each.</p>
<table style="text-align: center;" border="0">
<tbody>
<tr>
<td style="text-align: center;">PageRank</td>
<td style="text-align: center;">Vote Weight</td>
</tr>
<tr>
<td>0</td>
<td>0</td>
</tr>
<tr>
<td>1</td>
<td>1</td>
</tr>
<tr>
<td>2</td>
<td>4</td>
</tr>
<tr>
<td>3</td>
<td>8</td>
</tr>
<tr>
<td>4</td>
<td>16</td>
</tr>
<tr>
<td>5</td>
<td>32</td>
</tr>
<tr>
<td>6</td>
<td>64</td>
</tr>
<tr>
<td>7</td>
<td>128</td>
</tr>
<tr>
<td>8</td>
<td>256</td>
</tr>
<tr>
<td>9</td>
<td>512</td>
</tr>
<tr>
<td>10</td>
<td>1024</td>
</tr>
</tbody>
</table>
<p>If we use the chart above as a rough indicator of the PageRank model (remember nobody really knows how they assign values) than we can determine that the best way to increase the positioning of a website on Google is to increase the number of people linking, but also the quality of people linking.</p>
<p>For example,receiving 1,000 links from poor quality website (PageRank 1) would return 1,000 votes but a single link from a popular website such as CNN.com (PageRank 10) would be worth 1024 votes.</p>
<p>Using the same example, receiving a million links from websites Google considers to be worthless (PageRank 0) or damaging (spam websites, sites that spread viruses etc), would result in no bonus to your website.</p>
<h3>What does a PageRank really mean?</h3>
<p>With this understanding of how Google calculates PageRank, it is easy to understand then that Google uses PageRank to determine the value of your business and it&#8217;s website simply be determining both the quantity and quality of websites which link to your business.</p>
<p>Websites with a high PageRank rank higher on Search Engine Results Pages, which allows more potential customers to find them but PageRank is just one of many factors which leads to higher visibility and should be treated as just one step in your Organic Marketing campaign. You can download the <a href="http://www.google.com/toolbar/">Google Toolbar</a> for free to see the PageRank of each website you&#8217;re visiting or if you would like to learn more about our <a title="Social Media Marketing" href="http://christopherross.ca/marketing/social-media-marketing/">Social Media Marketing, including Organic Link Building</a> please feel free to <a href="http://christopherross.ca/about/">contact Ross Creative.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thisismyurl.com/tutorials/marketing/what-does-a-pagerank-really-mean/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OntoLove</title>
		<link>http://www.thisismyurl.com/posts/what-im-writing/christopherross-ca/ontolove/</link>
		<comments>http://www.thisismyurl.com/posts/what-im-writing/christopherross-ca/ontolove/#comments</comments>
		<pubDate>Tue, 15 Dec 2009 15:02:01 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[christopherross.ca]]></category>
		<category><![CDATA[Avatars]]></category>
		<category><![CDATA[Community Members]]></category>
		<category><![CDATA[Datasets]]></category>
		<category><![CDATA[Dating Website]]></category>
		<category><![CDATA[Dating Websites]]></category>
		<category><![CDATA[Fr]]></category>
		<category><![CDATA[Friendships]]></category>
		<category><![CDATA[High Profile]]></category>
		<category><![CDATA[Hobbies]]></category>
		<category><![CDATA[Like Minded People]]></category>
		<category><![CDATA[Meat Market]]></category>
		<category><![CDATA[Media Profiles]]></category>
		<category><![CDATA[Notion]]></category>
		<category><![CDATA[Online Communities]]></category>
		<category><![CDATA[Personal Traits]]></category>
		<category><![CDATA[Personalities]]></category>
		<category><![CDATA[Prettiest Girls]]></category>
		<category><![CDATA[Privacy Protections]]></category>
		<category><![CDATA[Television Shows]]></category>
		<category><![CDATA[User Experience]]></category>

		<guid isPermaLink="false">http://christopherross.ca/?p=235</guid>
		<description><![CDATA[Helping people find love, freely.]]></description>
			<content:encoded><![CDATA[<p><a href="http://christopherross.ca/wp-content/uploads/2009/12/ontolove.jpg"  rel="lightbox[roadtrip]"><img class="size-medium wp-image-236 alignright" title="ontolove" src="http://christopherross.ca/wp-content/uploads/2009/12/ontolove-217x300.jpg" alt="ontolove 217x300 OntoLove image" width="217" height="300" /></a>Years ago we started a project called OntoLove as a free online dating website with a simple goal, to help people find love freely. It wasn&#8217;t enough for us to offer the service as a free web based dating tool, we also wanted to help people meet the love of their life without traditional limitations such as those found commonly on dating websites.</p>
<p>From this concept, OntoLove was born. The website is a free online dating tool designed from the ground up to be user friendly and allow people to build dynamic social media profiles without creating a &#8216;meat market&#8217; feel.</p>
<p>What was important to us is that people be able to explore their personalities and meet people freely, to be able to join online communities, talk about their favourite television shows, bands and hobbies as part of the process. OntoLove isn&#8217;t about searching through avatars in hopes of picking out the prettiest girls, it&#8217;s about trying to form friendships with like minded people which could lead to love.</p>
<p>The OntoLove model uses an Ontology based system for matching people through social and personal traits, the site doesn&#8217;t restrict users to simple datasets but instead allows them to explore and interact with other users, while also offering the type of privacy protections which can enhance the user experience.</p>
<p>The website is a closed community, members are allowed to invite new members on a regular basis but are encouraged to only invite members who will add to the community. Because of this, the website growth is slow but members are active in a wide variety of areas.</p>
<p><strong>The Idea</strong><br />
The idea for OntoLove came from watching our friends and specifically sisters try and fail at online dating. It wasn&#8217;t enough that free online dating websites failed but even high profile, paid websites tended to result in dates that nobody would want their sisters to go on so we build OntoLove as a means to help women meet men but this lead to an interesting notion, what if the website was more like a friends site than a dating site? What if a dating website wasn&#8217;t about &#8216;hooking up&#8217; but instead about getting to know people? OntoLove helps people meet new friends, because the best lovers aren&#8217;t the ones with great profiles but the ones who can make you smile. Visit <a href="http://ontolove.com">http://ontolove.com</a> today to learn more about Ontology based romance.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thisismyurl.com/posts/what-im-writing/christopherross-ca/ontolove/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving to Regent Software</title>
		<link>http://www.thisismyurl.com/software/web-based/wordpress-downloads/wordpress-plugins/auto-copyright/moving-to-regent-software/</link>
		<comments>http://www.thisismyurl.com/software/web-based/wordpress-downloads/wordpress-plugins/auto-copyright/moving-to-regent-software/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 17:26:28 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[Auto Copyright]]></category>
		<category><![CDATA[No More Frames]]></category>
		<category><![CDATA[WordPress Admin Quick Menu]]></category>
		<category><![CDATA[WordPress.com Stats Smiley Remover]]></category>
		<category><![CDATA[couple weeks]]></category>
		<category><![CDATA[Current]]></category>
		<category><![CDATA[Loose Ends]]></category>
		<category><![CDATA[Moving]]></category>
		<category><![CDATA[New Homes]]></category>
		<category><![CDATA[New Skin]]></category>
		<category><![CDATA[Software Packages]]></category>

		<guid isPermaLink="false">http://www.thisismyurl.com/?p=15123</guid>
		<description><![CDATA[Over the next couple weeks I&#8217;ll be cleaning up some loose ends here on thisismyurl.com and part of that includes moving several software packages from their current home here, to new website homes. Eventually, all my tools will be located at http://regentware.com.
Once everything&#8217;s moved, the new design for my website will be ready to go [...]]]></description>
			<content:encoded><![CDATA[<p>Over the next couple weeks I&#8217;ll be cleaning up some loose ends here on <a href="http://thisismyurl.com">thisismyurl.com</a> and part of that includes moving several software packages from their current home here, to new website homes. Eventually, all my tools will be located at <a href="http://regentware.com">http://regentware.com</a>.</p>
<p>Once everything&#8217;s moved, the new design for my website will be ready to go online as well as the new skin for <a href="http://regentware.com">http://regentware.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thisismyurl.com/software/web-based/wordpress-downloads/wordpress-plugins/auto-copyright/moving-to-regent-software/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to market your restaurant with Facebook</title>
		<link>http://www.thisismyurl.com/tutorials/marketing/how-to-market-your-restaurant-with-facebook/</link>
		<comments>http://www.thisismyurl.com/tutorials/marketing/how-to-market-your-restaurant-with-facebook/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 13:53:28 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[Marketing Advice]]></category>
		<category><![CDATA[getawaygraphics.com]]></category>

		<guid isPermaLink="false">http://www.getawaygraphics.com/?p=320</guid>
		<description><![CDATA[According to Facebook&#8217;s own data (http://www.facebook.com/press/info.php?statistics) there are over 350 million people actively using the social media website, it&#8217;s possibly the most successful website ever build and it&#8217;s a virtual gold mine for restaurants looking to effectively market themselves online, often for free.
Why Use Facebook?
Beyond the simple and staggering number of people who use Facebook, [...]]]></description>
			<content:encoded><![CDATA[<p>According to Facebook&#8217;s own data (http://www.facebook.com/press/info.php?statistics) there are over 350 million people actively using the social media website, it&#8217;s possibly the most successful website ever build and it&#8217;s a virtual gold mine for restaurants looking to effectively market themselves online, often for free.</p>
<p><strong>Why Use Facebook?<br />
</strong>Beyond the simple and staggering number of people who use Facebook, there&#8217;s a certain mindset to the community website, it&#8217;s about sharing positive experiences and linking to content worth sharing with friends. Since Facebook is about social community, linking to favourite pubs and eating establishments is just one more way for people to tell their friends who they really are.</p>
<p><strong>How much does it cost to market with Facebook?<br />
</strong>It&#8217;s free. Seriously, building a Facebook page costs nothing except an hour of your time to assemble some text, a few photographs and  a little bit of technical know how. Once you have the basic content together, setting up a Facebook profile is completely free for your company.</p>
<p><strong>How to setup a Facebook profile for your restaurant</strong><br />
Setting up a Facebook page is actually very simple, first you need to visit Facebook at http://www.facebook.com/pages/ and click the  <em>Create Page</em> link.  The next step will ask you to select your business type, just follow the picture here and select your local business as a restaurant.</p>
<p><a href="http://www.getawaygraphics.com/wp-content/uploads/2009/12/facebook-restaurant-setup.jpg"   rel="lightbox[roadtrip]" rel="lightbox[roadtrip]"><img class="aligncenter size-full wp-image-321" title="facebook restaurant setup" src="http://www.getawaygraphics.com/wp-content/uploads/2009/12/facebook-restaurant-setup.jpg" alt="facebook restaurant setup" width="701" height="417" /></a></p>
<p>Next, let&#8217;s add the title of your page. This should be the name of your restaurant or something very similar, often if you have a commonly named restaurant (There are over 700 Crown Pub&#8217;s in England for example) you may need to add a descriptive phrase such as the town or area to the title.</p>
<p>Finally, you need to verify that you are in fact a human being by typing a series of letters and then you can create your restaurant&#8217;s Facebook page. If you don&#8217;t already have a personal profile, Facebook will ask you to create one but don&#8217;t worry, it&#8217;s also free and easy.</p>
<p><strong>Marketing with Facebook</strong><br />
Once your restaurant has a page of Facebook, you can easily upload some photographs and a brief description. It&#8217;s also possible for you to add your restaurant&#8217;s hours of operation, specials etc to help people know more about your business.</p>
<p>Since Facebook works through social networking, you&#8217;ll want to tell your local &#8216;real world&#8217; customers about the new addition, you can run a small promotion in store and give away a free lunch once a month to somebody on your new fan list. Once your fan list starts building, each friend of your new addition will see that they&#8217;ve joined your page! That&#8217;s the best &#8220;word of mouth&#8221; advertising you could ask you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thisismyurl.com/tutorials/marketing/how-to-market-your-restaurant-with-facebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to market your restaurant with Facebook</title>
		<link>http://www.thisismyurl.com/tutorials/marketing/how-to-market-your-restaurant-with-facebook/</link>
		<comments>http://www.thisismyurl.com/tutorials/marketing/how-to-market-your-restaurant-with-facebook/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 13:53:28 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[Marketing Advice]]></category>
		<category><![CDATA[getawaygraphics.com]]></category>

		<guid isPermaLink="false">http://www.getawaygraphics.com/?p=320</guid>
		<description><![CDATA[According to Facebook&#8217;s own data (http://www.facebook.com/press/info.php?statistics) there are over 350 million people actively using the social media website, it&#8217;s possibly the most successful website ever build and it&#8217;s a virtual gold mine for restaurants looking to effectively market themselves online, often for free.
Why Use Facebook?
Beyond the simple and staggering number of people who use Facebook, [...]]]></description>
			<content:encoded><![CDATA[<p>According to Facebook&#8217;s own data (http://www.facebook.com/press/info.php?statistics) there are over 350 million people actively using the social media website, it&#8217;s possibly the most successful website ever build and it&#8217;s a virtual gold mine for restaurants looking to effectively market themselves online, often for free.</p>
<p><strong>Why Use Facebook?<br />
</strong>Beyond the simple and staggering number of people who use Facebook, there&#8217;s a certain mindset to the community website, it&#8217;s about sharing positive experiences and linking to content worth sharing with friends. Since Facebook is about social community, linking to favourite pubs and eating establishments is just one more way for people to tell their friends who they really are.</p>
<p><strong>How much does it cost to market with Facebook?<br />
</strong>It&#8217;s free. Seriously, building a Facebook page costs nothing except an hour of your time to assemble some text, a few photographs and  a little bit of technical know how. Once you have the basic content together, setting up a Facebook profile is completely free for your company.</p>
<p><strong>How to setup a Facebook profile for your restaurant</strong><br />
Setting up a Facebook page is actually very simple, first you need to visit Facebook at http://www.facebook.com/pages/ and click the  <em>Create Page</em> link.  The next step will ask you to select your business type, just follow the picture here and select your local business as a restaurant.</p>
<p><a href="http://www.getawaygraphics.com/wp-content/uploads/2009/12/facebook-restaurant-setup.jpg"   rel="lightbox[roadtrip]" rel="lightbox[roadtrip]"><img class="aligncenter size-full wp-image-321" title="facebook restaurant setup" src="http://www.getawaygraphics.com/wp-content/uploads/2009/12/facebook-restaurant-setup.jpg" alt="facebook restaurant setup" width="701" height="417" /></a></p>
<p>Next, let&#8217;s add the title of your page. This should be the name of your restaurant or something very similar, often if you have a commonly named restaurant (There are over 700 Crown Pub&#8217;s in England for example) you may need to add a descriptive phrase such as the town or area to the title.</p>
<p>Finally, you need to verify that you are in fact a human being by typing a series of letters and then you can create your restaurant&#8217;s Facebook page. If you don&#8217;t already have a personal profile, Facebook will ask you to create one but don&#8217;t worry, it&#8217;s also free and easy.</p>
<p><strong>Marketing with Facebook</strong><br />
Once your restaurant has a page of Facebook, you can easily upload some photographs and a brief description. It&#8217;s also possible for you to add your restaurant&#8217;s hours of operation, specials etc to help people know more about your business.</p>
<p>Since Facebook works through social networking, you&#8217;ll want to tell your local &#8216;real world&#8217; customers about the new addition, you can run a small promotion in store and give away a free lunch once a month to somebody on your new fan list. Once your fan list starts building, each friend of your new addition will see that they&#8217;ve joined your page! That&#8217;s the best &#8220;word of mouth&#8221; advertising you could ask you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thisismyurl.com/tutorials/marketing/how-to-market-your-restaurant-with-facebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Packaging for Success</title>
		<link>http://www.thisismyurl.com/tutorials/marketing/packaging-for-success/</link>
		<comments>http://www.thisismyurl.com/tutorials/marketing/packaging-for-success/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 13:20:53 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[Marketing Advice]]></category>
		<category><![CDATA[christopherross.ca]]></category>
		<category><![CDATA[amp]]></category>
		<category><![CDATA[Cash Register]]></category>
		<category><![CDATA[christmas]]></category>
		<category><![CDATA[Consumers]]></category>
		<category><![CDATA[designers]]></category>
		<category><![CDATA[funny thing]]></category>
		<category><![CDATA[Grocery Store]]></category>
		<category><![CDATA[little bit]]></category>
		<category><![CDATA[Many People]]></category>
		<category><![CDATA[Marketplace]]></category>
		<category><![CDATA[Media Attention]]></category>
		<category><![CDATA[Original Design]]></category>
		<category><![CDATA[Packaging]]></category>
		<category><![CDATA[paint]]></category>
		<category><![CDATA[Rebellion]]></category>
		<category><![CDATA[taking the time]]></category>
		<category><![CDATA[Trade Shows]]></category>
		<category><![CDATA[Tropicana Orange Juice]]></category>
		<category><![CDATA[Wrapping Paper]]></category>

		<guid isPermaLink="false">http://christopherross.ca/?p=218</guid>
		<description><![CDATA[Packaging, the after thought of the marketing business. It turns out, people want to like the look of what they're buying. Who'd of thought?]]></description>
			<content:encoded><![CDATA[<p>Have you ever judged a book by its cover? Actually I guess a better way to ask that question is, have you ever not judged a book by its cover? Of course not, how things look are important to us and as consumers we&#8217;re always looking for more than the product inside the container, we&#8217;re also looking for the packaging &#8230; it&#8217;s a little like wrapping paper at Christmas, we want to feel spoiled when we buy it.</p>
<p>Packaging isn&#8217;t limited to a grocery store (although it is a perfect example of packaging), we also judge the quality of a product based on its packaging at trade shows and industrial equipment, taking the time to put a little bit of trim work and paint on an old house almost always increases its value in the marketplace so why then, do so many people forget to properly package their own products?</p>
<p><strong>Tropicana&#8217;s branding gamble</strong><br />
Packaging is such a funny thing that  we often don&#8217;t even notice how powerful it is but take the below example of what happened when Tropicana Orange Juice changed the packaging for its iconic orange juice from the traditional design on the left (with a great big orange) to a more upscale, generic style on the right.</p>
<p>The result (beyond a ton of media attention) was a consumer rebellion at the cash register, <a href="http://design-crit.com/blog/2009/05/13/tropicana-packaging/">designers seem to like the new design but consumers hated it</a>. The result? The company switched back to their original design. More importantly it helps designers and marketing people remember that packaging, whether it be retail or commercial is critical to the success of a product.</p>
<p><img class="aligncenter size-full wp-image-219" title="tropicana-packaging" src="http://christopherross.ca/wp-content/uploads/2009/12/tropicana-packaging.jpg" alt="tropicana packaging Packaging for Success image" width="396" height="361" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thisismyurl.com/tutorials/marketing/packaging-for-success/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Selling Your Business – Why not to Network</title>
		<link>http://www.thisismyurl.com/tutorials/marketing/selling-your-business-%e2%80%93-why-not-to-network/</link>
		<comments>http://www.thisismyurl.com/tutorials/marketing/selling-your-business-%e2%80%93-why-not-to-network/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 14:34:53 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[Marketing Advice]]></category>
		<category><![CDATA[christopherross.ca]]></category>
		<category><![CDATA[amp]]></category>
		<category><![CDATA[business cards]]></category>
		<category><![CDATA[Business Network]]></category>
		<category><![CDATA[Businesses Owners]]></category>
		<category><![CDATA[clutter]]></category>
		<category><![CDATA[Local Events]]></category>
		<category><![CDATA[Low Signal]]></category>
		<category><![CDATA[marketing campaign]]></category>
		<category><![CDATA[marketing channels]]></category>
		<category><![CDATA[Marketing Magazines]]></category>
		<category><![CDATA[Networking Events]]></category>
		<category><![CDATA[Networking Forum]]></category>
		<category><![CDATA[Networking Function]]></category>
		<category><![CDATA[Networking Functions]]></category>
		<category><![CDATA[Old Fashion]]></category>
		<category><![CDATA[Room 39]]></category>
		<category><![CDATA[Sales Staff]]></category>
		<category><![CDATA[Select Companies]]></category>
		<category><![CDATA[Selling Business]]></category>
		<category><![CDATA[Selling Your Business]]></category>
		<category><![CDATA[Signal To Noise]]></category>
		<category><![CDATA[Signal To Noise Ratio]]></category>
		<category><![CDATA[small businesses]]></category>

		<guid isPermaLink="false">http://christopherross.ca/?p=215</guid>
		<description><![CDATA[Read every book on marketing written since the 1960's and they'll tell you to work a room and hope for sales. Here's why they're all wrong.]]></description>
			<content:encoded><![CDATA[<p>Read every book on marketing written since the 1960&#8217;s and they&#8217;ll tell you to work a room and hope for sales. Here&#8217;s why they&#8217;re all wrong.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thisismyurl.com/tutorials/marketing/selling-your-business-%e2%80%93-why-not-to-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We’re Getting There!</title>
		<link>http://www.thisismyurl.com/tutorials/marketing/we%e2%80%99re-getting-there/</link>
		<comments>http://www.thisismyurl.com/tutorials/marketing/we%e2%80%99re-getting-there/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 21:48:45 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[Marketing Advice]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[regentware.com]]></category>
		<category><![CDATA[Brain Child]]></category>
		<category><![CDATA[Building Software]]></category>
		<category><![CDATA[Calculator]]></category>
		<category><![CDATA[christopher ross]]></category>
		<category><![CDATA[Custom Database Solutions]]></category>
		<category><![CDATA[Database Solutions]]></category>
		<category><![CDATA[Eve]]></category>
		<category><![CDATA[Junkie]]></category>
		<category><![CDATA[Logos]]></category>
		<category><![CDATA[Mean Time]]></category>
		<category><![CDATA[Software Developer]]></category>
		<category><![CDATA[Software Tools]]></category>
		<category><![CDATA[Split Personality]]></category>

		<guid isPermaLink="false">http://regentware.com/?p=1</guid>
		<description><![CDATA[Thanks for visiting Regent Software, we&#8217;re pretty busy working on the new design and layout for the website but for now you can download a couple of our plugins and a cargo calculator for EVE while we wrap up the finishing touches.
Regent Software is the brain child of Christopher Ross, a Fredericton website designer, online [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks for visiting Regent Software, we&#8217;re pretty busy working on the new design and layout for the website but for now you can download a couple of our plugins and a cargo calculator for EVE while we wrap up the finishing touches.</p>
<p>Regent Software is the brain child of Christopher Ross, a <a href="http://christopherross.ca">Fredericton website designer</a>, <a href="http://thisismyurl.com">online marketing junkie</a> and <a href="http://regentware.com">software developer </a>with a split personality. When he&#8217;s not busy creating awesome logos and websites, he&#8217;s building software tools for marking companies, custom database solutions and helping businesses market themselves on the internet.</p>
<p>The new design will be ready for Regent Software over the next few weeks but in the mean time, the website is here so our software is available for download.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thisismyurl.com/tutorials/marketing/we%e2%80%99re-getting-there/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Make Your Product Sell – Be Different</title>
		<link>http://www.thisismyurl.com/posts/what-im-writing/christopherross-ca/how-to-make-your-product-sell-%e2%80%93-be-different/</link>
		<comments>http://www.thisismyurl.com/posts/what-im-writing/christopherross-ca/how-to-make-your-product-sell-%e2%80%93-be-different/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 17:32:03 +0000</pubDate>
		<dc:creator>Christopher Ross</dc:creator>
				<category><![CDATA[christopherross.ca]]></category>
		<category><![CDATA[Car Amp]]></category>
		<category><![CDATA[Car Rental Companies]]></category>
		<category><![CDATA[Car Rental Company]]></category>
		<category><![CDATA[Car Service]]></category>
		<category><![CDATA[Common Marketing]]></category>
		<category><![CDATA[Competitor]]></category>
		<category><![CDATA[Consumers]]></category>
		<category><![CDATA[Differential]]></category>
		<category><![CDATA[Discount Car]]></category>
		<category><![CDATA[Goals]]></category>
		<category><![CDATA[Marketing Mistakes]]></category>
		<category><![CDATA[Marketing Phrase]]></category>
		<category><![CDATA[Marketplace]]></category>
		<category><![CDATA[National Car]]></category>
		<category><![CDATA[Slogan]]></category>
		<category><![CDATA[small businesses]]></category>
		<category><![CDATA[T Claim]]></category>
		<category><![CDATA[taking the time]]></category>

		<guid isPermaLink="false">http://christopherross.ca/?p=212</guid>
		<description><![CDATA[Selling your product to consumers involves taking the time educate the marketplace about your product and how it's different than others in the same space.]]></description>
			<content:encoded><![CDATA[<p>Selling your product to consumers involves taking the time educate the marketplace about your product and how it&#8217;s different than others in the same space.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thisismyurl.com/posts/what-im-writing/christopherross-ca/how-to-make-your-product-sell-%e2%80%93-be-different/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
