<?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>The CodeGeek Blog &#187; Resources</title>
	<atom:link href="http://www.codegeek.net/blog/category/resources/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codegeek.net/blog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 10 Jan 2012 22:14:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Responsive Web Design Techniques</title>
		<link>http://www.codegeek.net/blog/2011/responsive-web-design-techniques/</link>
		<comments>http://www.codegeek.net/blog/2011/responsive-web-design-techniques/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 17:59:13 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Responsive Web Design]]></category>

		<guid isPermaLink="false">http://www.codegeek.net/blog/?p=227</guid>
		<description><![CDATA[In the always awesome 24ways.org (the advent calendar for web geeks) there have been three excellent articles on specific Responsive Web Design techniques so far this month. The first is by Jeremy Keith and discusses conditional loading of content for websites designed using Responsive Web Design techniques. The technique Jeremy describes allows you to have [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.codegeek.net/blog/wp-content/uploads/2011/12/24ways-three-authors-dec-2011.jpg"><img class="left" src="http://www.codegeek.net/blog/wp-content/uploads/2011/12/24ways-three-authors-dec-2011.jpg" alt="" width="255" height="85" /></a>In the always awesome 24ways.org (the advent calendar for web geeks) there have been three excellent articles on specific Responsive Web Design techniques so far this month.</p>
<p>The first is by Jeremy Keith and discusses conditional loading of content for websites designed using Responsive Web Design techniques. The technique Jeremy describes allows you to have one web page for mobile devices and desktop browsers alike, show just the necessary content on the small form factor mobile web browsers, but show additional content for the larger sized browsers too loading that additional website content only when needed. This saves on bandwidth for people viewing your website using a mobile web browser allowing your site to load quickly and not cost them more time or data than necessary.<br />
<a href="http://bit.ly/siNiYY"> http://bit.ly/siNiYY</a></p>
<p>Two solutions to the RWD Image Problem. One challenge when designing using Responsive Web Design techniques is the issue of serving appropriately sized images for different devices. The basic RWD technique is to use the largest images required for any device in the HTML, and just change the scale at which the image is displayed to make it smaller for smaller devices. The problem with this basic approach is that it&#8217;s not very mobile-friendly. All devices would be downloading images with large file sizes. This is particularly an issue with mobile devices that are likely to have slower internet connections and caps on bandwidth. Your site will take longer to load than necessary and for users who are paying for every bit of data as they go, downloading all those large images can add up to a substantial penalty.</p>
<p>Techniques continue to be refined for downloading small images for mobile devices and the largest images only when appropriate. Here are two of the latest techniques available:</p>
<p>The first by Matt Wilcox is a server-side solution involving PHP, cookies, and Javascript on the client:<br />
<a href="http://bit.ly/uEioLu"> http://bit.ly/uEioLu</a></p>
<p>The second by Jake Archibald is a client-side only solution with fascinating benefits. But in the words of the author, it&#8217;s a dirty, dirty solution:<br />
<a href="http://bit.ly/vJlbcy"> http://bit.ly/vJlbcy</a></p>
<p>Check them out and comment. Which method do you like better?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codegeek.net/blog/2011/responsive-web-design-techniques/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>24Ways: HTML5 heads toward desktop apps</title>
		<link>http://www.codegeek.net/blog/2009/24ways-html5-desktop-apps/</link>
		<comments>http://www.codegeek.net/blog/2009/24ways-html5-desktop-apps/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 19:22:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[Web standards]]></category>

		<guid isPermaLink="false">http://aaawebdesign.net/blog/?p=82</guid>
		<description><![CDATA[&#8220;Breaking Out the Edges of the Browser&#8221; by Remy Sharp reveals the future: HTML5 has features that enable web developers to write applications that work both online and offline. One commenter stated that &#8220;When this really starts to grow (with wider browser support and consumer awareness), you can forget [Adobe] AIR.&#8221; Remy reviews two HTML5 [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;<a href="http://24ways.org/2009/breaking-out-the-edges-of-the-browser">Breaking Out the Edges of the Browser</a>&#8221; by Remy Sharp reveals the future: HTML5 has features that enable web developers to write applications that work both online and offline. One commenter stated that &#8220;When this really starts to grow (with wider browser support and consumer awareness), you can forget <span>[Adobe] AIR</span>.&#8221;</p>
<p>Remy reviews two HTML5 features: <strong></strong></p>
<ol>
<li><strong>Storage</strong> including <em>localStorage</em> and <em>sessionStorage</em> which are local data storage capabilites that surpass the capabilities of cookies (to say the least), and</li>
<li><strong>Offline Apps</strong>: specific techniques so you can tell an offline browser to load required files for a web site or web app from a local cache, thus making the web site renderable or the web app functional without a connection to the Internet. Supported presently by Safari and Firefox though the <code>applicationCache methods</code>.</li>
</ol>
<p>Pretty interesting stuff to keep an eye on. These capabilities alone are a good reason to me to start using HTML5 now. As more browsers support these features we can create web sites using just HTML5 and Javascript with capabilities of full blown web apps. And they&#8217;ll work even when not connected to the Internet. Awesome.</p>
<p>I&#8217;ve been fascinated with the idea of &#8220;occasionally connected apps&#8221; since Macromedia Central was introduced in 2003 (since discontinuted, <a href="http://www.adobe.com/support/centraldev/">Adobe Central Developer Support Center</a>, <a href="http://www.communitymx.com/content/article.cfm?cid=81F25">Anatomy of a Central App</a>, <a href="http://central.twisty.com/">Central Blog</a>). <a href="http://www.adobe.com/products/air/">Adobe AIR</a> is making good inroads as the present platform of choice for occasionally connected apps. It would be a major improvement to have this capability without the requirement of a proprietary pluigin, i.e. the Flash Player. I&#8217;m excited to see active progress in that direction.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codegeek.net/blog/2009/24ways-html5-desktop-apps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS: Attaching style sheets</title>
		<link>http://www.codegeek.net/blog/2009/css-attaching-style-sheets/</link>
		<comments>http://www.codegeek.net/blog/2009/css-attaching-style-sheets/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 17:27:22 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[Web standards]]></category>

		<guid isPermaLink="false">http://www.codegeek.net/blog/?p=64</guid>
		<description><![CDATA[What are the differences between using @import vs. &#60;link&#62; when attaching an external style sheet to your HTML web page? i liked this article &#8220;What&#8217;s the Difference Between @import and link for CSS?&#8221; from About.com. It&#8217;s comprehensive and well written. Also has additional useful links to CSS topics at the end of the article.]]></description>
			<content:encoded><![CDATA[<p>What are the differences between using @import vs. &lt;link&gt; when attaching an external style sheet to your HTML web page? i liked this article &#8220;<a href="http://webdesign.about.com/od/beginningcss/f/css_import_link.htm">What&#8217;s the Difference Between @import and link for CSS?</a>&#8221; from About.com. It&#8217;s comprehensive and well written. Also has additional useful links to CSS topics at the end of the article.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codegeek.net/blog/2009/css-attaching-style-sheets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iStockPhoto now has royalty-free Audio</title>
		<link>http://www.codegeek.net/blog/2009/istockphoto-now-has-royalty-free-audio/</link>
		<comments>http://www.codegeek.net/blog/2009/istockphoto-now-has-royalty-free-audio/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 13:29:23 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Usability]]></category>

		<guid isPermaLink="false">http://www.codegeek.net/blog/?p=49</guid>
		<description><![CDATA[A great resource if you are looking for audio for web site projects. At CodeGeek.net, we&#8217;ve used iStockPhoto for several years now for low-cost, high-quality stock photos for many of our web site developement projects. We were excited to learn that they now also carry royalty-free audio for web sites. Over 10,000 tracks are now [...]]]></description>
			<content:encoded><![CDATA[<p>A great resource if you are looking for <a href="http://www.istockphoto.com/audio.php">audio for web site projects.</a></p>
<p>At CodeGeek.net, we&#8217;ve used iStockPhoto for several years now for low-cost, high-quality stock photos for many of our web site developement projects. We were excited to learn that they now also carry <a href="http://www.istockphoto.com/audio.php">royalty-free audio for web sites</a>. Over 10,000 tracks are now available. This makes it easy to comply with copyright laws, help creative musicians make a living, and provide your web site customers with high quality content.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codegeek.net/blog/2009/istockphoto-now-has-royalty-free-audio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>For Prospect and Clients:  5 Ideas For Understanding The Web Development Process</title>
		<link>http://www.codegeek.net/blog/2008/for-prospect-and-clients-5-ideas-for-understanding-the-web-development-process/</link>
		<comments>http://www.codegeek.net/blog/2008/for-prospect-and-clients-5-ideas-for-understanding-the-web-development-process/#comments</comments>
		<pubDate>Thu, 01 May 2008 23:28:10 +0000</pubDate>
		<dc:creator>Regina Zasadzinski</dc:creator>
				<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.codegeek.net/blog/?p=29</guid>
		<description><![CDATA[. Preparedness: If interested in having a website developed for you, it is helpful that you are prepared to articulate your ideas clearly to your web developer – this includes design ideas, images, and/or content. We encourage you to research other websites, including your competitors, to discover what you do and do not want for [...]]]></description>
			<content:encoded><![CDATA[<p>.</p>
<ol style="margin-top: 0in" start="1" type="1">
<li class="MsoNormal"><strong>Preparedness:<span>  </span></strong>If interested in having a      website developed for you, it is helpful that you are prepared to      articulate your ideas clearly to your web developer – this includes design      ideas, images, and/or content.<span>  </span>We encourage      you to research other websites, including your competitors, to discover      what you do and do not want for own website’s development.<span>   </span><o:p></o:p></li>
</ol>
<p class="MsoNormal" style="margin-left: 0.25in"><o:p> </o:p></p>
<ol style="margin-top: 0in" start="2" type="1">
<li class="MsoNormal"><strong>Team      Work!</strong><span>  </span>Creating a successful      website is a team effort and requires the participation of both the web      developer and you, the client.<span>  </span>This      is because you <span> </span>understand your line      of business best, while CodeGeek best knows the web development industry.<span>  </span>The partnering of these two disciplines results      in an exceptional website.<span>  </span>At      CodeGeek we value our business relationships.<span>  </span>To find out more, click here. [link to      the CG homepage, “Why choose CodeGeek?” section]<o:p></o:p></li>
</ol>
<p class="MsoNormal" style="margin-left: 0.25in"><o:p> </o:p></p>
<ol style="margin-top: 0in" start="3" type="1">
<li class="MsoNormal"><strong>Providing      Content:</strong><span>  </span>If you will be      responsible for providing the content, it’s important to understand two      factors.<span>  </span>One is that this step is      the longest part of the web development process.<span>  </span>And two is that well-written content is      imperative &#8212; it is the message and reputation of your business.<span>   </span>Be sure to be conscious of the      content-development-time-factor in the overall web development project      timeline.<span>  </span><o:p></o:p></li>
</ol>
<p class="MsoNormal" style="margin-left: 0.25in"><o:p> </o:p></p>
<ol style="margin-top: 0in" start="4" type="1">
<li class="MsoNormal"><strong>Understanding      why a good web site costs what it does:</strong><span>  </span>Yes, it is cliché, but…you get what you      pay for.<span>  </span>Remember that the lowest      bidder is the lowest bidder for a reason.<span>       </span>CodeGeek puts quality effort into your website’s design, usability,      functionality, content, coding, search engine optimization and any special      requests that are specific to your site.<span>       </span>It takes time and attention to create an exceptional website.<span>  </span><o:p></o:p></li>
</ol>
<p class="MsoNormal" style="margin-left: 0.25in"><o:p> </o:p></p>
<ol style="margin-top: 0in" start="5" type="1">
<li class="MsoNormal"><strong>CodeGeek’s      Design Capabilities!</strong><span>  </span>CodeGeek’s      design capabilities are much broader than what our portfolio displays.<span>  </span>The sites we’ve developed reflect each      individual client’s particular needs and wants for their industry.<span>  </span>The team of professionals working at CodeGeek      is capable of creating any site you can imagine.<span>  </span>Contact CodeGeek.net today to have your      website vision become a reality!<o:p></o:p></li>
</ol>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codegeek.net/blog/2008/for-prospect-and-clients-5-ideas-for-understanding-the-web-development-process/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Improving your web site &#8211; upcoming classes</title>
		<link>http://www.codegeek.net/blog/2008/improving-your-web-site-upcoming-classes/</link>
		<comments>http://www.codegeek.net/blog/2008/improving-your-web-site-upcoming-classes/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 18:01:45 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Presentations]]></category>
		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.codegeek.net/blog/?p=27</guid>
		<description><![CDATA[I will be teaching a two hour class about web sites along with my colleague and co-presenter Laurie Macomber. The class will be presented twice: on April 10 and April 17, from 8 to 10 AM. Topics: What makes a web site great? The best web sites take into account the visitor’s perspective first. For [...]]]></description>
			<content:encoded><![CDATA[<p><font size="-1"><font face="Arial"> I will be teaching a two hour class about web sites along with my colleague and co-presenter Laurie Macomber.<br />
The class will be presented twice: on<br />
April 10 and April 17, from 8 to 10 AM.</font></font></p>
<p><font size="-1"><font face="Arial">Topics:</font></font></p>
<p><font size="-1"><font face="Arial"><strong>What makes a web site great?</strong> The best web sites take into account the visitor’s perspective first. For your web site visitors, the three most important factors are:</font></font></p>
<p><font size="-1"><font face="Arial">1. Content &amp; functionality<br />
2. Navigation &amp; usability<br />
3. Design</font></font></p>
<p><font size="-1"><font face="Arial">An effective web site will also achieve the business objectives of its owner. During this presentation we will discuss all of these elements and give you concrete steps to improve your own web site.</font></font></p>
<p><font size="-1"><font face="Arial">Ron Zasadzinski is the lead developer and owner of CodeGeek.net, a Fort Collins based web design agency serving clients from California to New York City.</font></font></p>
<p><font size="-1"><font face="Arial"><strong>All About Internet Marketing, </strong>or how to gain a solid foothold for your small business on line!<br />
Are you wondering what Internet Marketing could do for your business? You’ve heard all the buzz about taking your marketing to the web, but do you need help understanding the New Media terms and what to do to improve your Marketing Mix effectively on line?</font></font></p>
<p><font size="-1"><font face="Arial">Laurie is someone who GETS the Internet and Web 2.0 modern marketing. She’ll explain Search Engine Optimization (SEO) and how to have your small website win the ranking wars! She’ll examine the key components of a sure fire internet marketing plan and in a fun and open session explain all the terminology, tactics and trip-points of the online marketing wave. You’ll come away with easy- to- understand insights into the opportunities the web uniquely presents to small and medium sized businesses.</font></font></p>
<p><font size="-1"><font face="Arial"><strong>Price and Registration:</strong><br />
The cost to attend is $49. The class is presented as part of Adrienne Zoble&#8217;s Marketing Forum, and you can sign up for the class on her web site:<br />
<a href="http://www.azobleassoc.com/buy.htm#forum" class="moz-txt-link-freetext">http://www.azobleassoc.com/buy.htm#forum</a></font></font></p>
<p><font size="-1"><font face="Arial">Scroll half way down the page to the Marketing Forums (Thursdays) or (Downtown) Fort Collins section.</font></font></p>
<p><font size="-1"><font face="Arial"><strong>Dates &amp; Locations:</strong><br />
April 10 the class will be at the Compass Bank, 3131 S College Ave, Fort Collins 80525<br />
April 17 the class will be at The Executive Center, 123 N. College Ave. Suite 200, Fort Collins 80524 (in the Opera Galleria building)</font></font></p>
<p><font size="-1"><font face="Arial">I hope you&#8217;ll join us!<br />
</font></font></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codegeek.net/blog/2008/improving-your-web-site-upcoming-classes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Improve your web site &#8211; resources</title>
		<link>http://www.codegeek.net/blog/2008/improve-your-web-site-resources/</link>
		<comments>http://www.codegeek.net/blog/2008/improve-your-web-site-resources/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 17:58:11 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.codegeek.net/blog/?p=28</guid>
		<description><![CDATA[I&#8217;ll be teaching several classes on &#8220;What makes a great web site&#8221; over the next few months. In anticipation of that, here is a great article of 101 things you can do to improve your web site. http://www.insidecrm.com/features/101-web-site-fixes-031808/  Enjoy!]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll be teaching several classes on &#8220;What makes a great web site&#8221; over the next few months. In anticipation of that, here is a great article of 101 things you can do to improve your web site.</p>
<p><a href="http://www.insidecrm.com/features/101-web-site-fixes-031808/ ">http://www.insidecrm.com/features/101-web-site-fixes-031808/ </a></p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codegeek.net/blog/2008/improve-your-web-site-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A giant leap forward for web accessibility</title>
		<link>http://www.codegeek.net/blog/2008/a-giant-leap-forward-for-web-accessibility/</link>
		<comments>http://www.codegeek.net/blog/2008/a-giant-leap-forward-for-web-accessibility/#comments</comments>
		<pubDate>Sun, 02 Mar 2008 01:33:59 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[Web standards]]></category>

		<guid isPermaLink="false">http://www.codegeek.net/blog/?p=24</guid>
		<description><![CDATA[As of 26 February 2008, the WCAG Samurai errata for Web Content Accessibility Guidelines 1.0 are available. The WCAG Samurai was a group of developers, led by Joe Clark, that publishes corrections for, and extensions to, the Web Content Accessibility Guidelines (WCAG) 1.0.What a huge leap forward for the web! Web accessibility is a crucial [...]]]></description>
			<content:encoded><![CDATA[<p>As of 26 February 2008, the <a href="http://wcagsamurai.org/">WCAG Samurai errata for Web Content Accessibility Guidelines 1.0</a> are available.  The <acronym>WCAG</acronym> Samurai was a group of developers, led by Joe Clark, that publishes corrections for, and extensions to, the Web Content Accessibility Guidelines (WCAG) 1.0.What a huge leap forward for the web! Web accessibility is a crucial factor for real users of web sites, but I&#8217;ll bet most web site owners have never heard of it, and that many web developers don&#8217;t bother to even try to comply with WCAG 1.0. And for those that have and do bother to try, the official guidelines outlined in WCAG 1.0 are outdated, hard to understand in some cases, difficult to follow in others, and impossible to follow in some. The W3C (World Wide Web Consortium) has been working on the very controversial WCAG 2 for some time, but many experienced web developers feeling it will be a huge step backward.The WCAG Samurai have done all web developers a great favor by publishing their well thought out errata to the WCAG 1.0 guidelines, making them more practical and far more clear. They&#8217;ve also eliminated the guidelines that were impossible to follow. The intent of the Samurai is that we should not follow WCAG 2. Their errata provides with with a clear set of guidelines that we can use right now, and after WCAG 2 is published.Many thanks to the WCAG Samuri!Web developers &#8211; I hope we&#8217;ll all read and use these updated guidelines.I also strongly encourage web site owners to become more familiar with accessibility issues for the web, and to insist that their web sites be created in accordance with WCAG + Samurai errata.To learn more about web accessibility,  start with the <a href="http://www.w3.org/TR/WAI-WEBCONTENT/#Introduction">W3C Introduction to the Web Content Accessibility Guidelines 1.0</a>.For videos of people using assistive technology, and some scary quotes from ignorant people regarding how and even <em>why</em> disabled people use computers and the Web, check out this <a href="http://adactio.com/journal/1359/">blog post from Jeremy Keith</a>, which has a number of links, or just start with this <a href="http://www.youtube.com/watch?v=ENkjkIypXq4">amazing video of how enabling technology can be</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codegeek.net/blog/2008/a-giant-leap-forward-for-web-accessibility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 100 Blogs on web design, experience design, web standards and accessibility</title>
		<link>http://www.codegeek.net/blog/2007/top-100-blogs-on-web-design-experience-design-web-standards-and-accessibility/</link>
		<comments>http://www.codegeek.net/blog/2007/top-100-blogs-on-web-design-experience-design-web-standards-and-accessibility/#comments</comments>
		<pubDate>Sun, 09 Dec 2007 17:56:47 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Web standards]]></category>

		<guid isPermaLink="false">http://www.codegeek.net/blog/?p=16</guid>
		<description><![CDATA[http://www.virtualhosting.com/blog/2007/top-100-user-centered-blogs/]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.virtualhosting.com/blog/2007/top-100-user-centered-blogs/">http://www.virtualhosting.com/blog/2007/top-100-user-centered-blogs/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.codegeek.net/blog/2007/top-100-blogs-on-web-design-experience-design-web-standards-and-accessibility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Local with Google</title>
		<link>http://www.codegeek.net/blog/2007/get-local-with-google/</link>
		<comments>http://www.codegeek.net/blog/2007/get-local-with-google/#comments</comments>
		<pubDate>Sun, 18 Nov 2007 21:26:56 +0000</pubDate>
		<dc:creator>Ron</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.codegeek.net/blog/?p=10</guid>
		<description><![CDATA[Google recently improved its Local search service for businesses by giving you the opportunity to upload up to ten photographs of your store front, logo, products, and employees. This helps you to stand out from your competition, making it more likely that searchers will click on your Local link. If you haven’t discovered Google Local [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://aaawebdesign.net/blog/wp-content/uploads/2007/11/googlelocal.gif" alt="googlelocal.gif" />Google recently improved its Local search service for businesses by giving you the opportunity to upload up to ten photographs of your store front, logo, products, and employees. This helps you to stand out from your competition, making it more likely that searchers will click on your Local link.</p>
<p>If you haven’t discovered Google Local yet, it’s an important way to promote your business and expand its web presence. You can set up an account by visiting <a href="http://www.google.com/local/add/businessCenter">http://www.google.com/local/add/businessCenter</a>. Once your account is set up, you can enter a few sentences about your company, and have your business listed in multiple pre-defined categories that visitors may be searching for.</p>
<p>Local search is an integral part of Google Maps when you type in a location along with your search phrase. For example, go to http://maps.google.com and search for “web site design Fort Collins”. You’ll get a listing of web design agencies including my company, CodeGeek.net. Local search is fun – try “free wi fi Fort Collins” or “Italian Fort Collins”.</p>
<p>In many cases Local search is activated during regular Google searches too, when you include a location in the search phrase. You can tell you are being served Local search results by the heading “Local business results for [your search phrase]” above the first few listings.</p>
<p>Google Local, along with numerous other local search products including offerings from Yahoo!, MSN, and more, are there to provide targeted results when searchers are seeking services in a particular geographic area. As the web evolves, we are going to see more and more information based on location. Keep an eye on the larger field of geocoding and where it’s heading. Local search is truly just the first wave, so be sure to get on board today.</p>
<p>In addition to providing you space for ten images, Google Local allows you create coupons for your services that appear as a tab in the bubble above your business location in Google Maps. Your customers are using Google more and phone books less every day. Why turn down free advertising?</p>
<p>Finally, your customers can also post reviews of your business in your Google Local listing. Encourage your happy patrons to write a sentence or two about you and post it. We all know that word of mouth is the best advertising there is. This is the web based version!</p>
<p>Your web presence is more than just your web site. Stay on the leading edge by getting local.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.codegeek.net/blog/2007/get-local-with-google/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

