<?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>Vortx Live Wire Blog &#187; Tools</title>
	<atom:link href="http://blog.vortx.com/category/tools/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.vortx.com</link>
	<description>Vortx eCommerce Blog</description>
	<lastBuildDate>Fri, 03 Sep 2010 16:03:39 +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>Using JavaScript to Make Your Navigation Search Engine-Friendly</title>
		<link>http://blog.vortx.com/seo/using-javascript-to-make-your-navigation-search-engine-friendly/</link>
		<comments>http://blog.vortx.com/seo/using-javascript-to-make-your-navigation-search-engine-friendly/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 15:31:01 +0000</pubDate>
		<dc:creator>Stephanie A.</dc:creator>
				<category><![CDATA[Coder's Corner]]></category>
		<category><![CDATA[Navigation]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://blog.vortx.com/?p=2399</guid>
		<description><![CDATA[Historically the SEO industry has warned against using JavaScript menus, cautioning that bots (software applications used by search engines to run automated tasks over the Internet) cannot successfully crawl JavaScript. The result? Online retailers concerned their sites are unwelcoming to search engines.  No traffic, no business.
It is correct to say that if poorly implemented, [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-1254 alignleft" style="margin: 10px;" title="code" src="http://blog.vortx.com/wp-content/uploads/2008/12/skilllevelintermediate.jpg" alt="" width="100" height="100" />Historically the SEO industry has warned against using JavaScript menus, cautioning that bots (software applications used by search engines to run automated tasks over the Internet) cannot successfully crawl JavaScript. The result? Online retailers concerned their sites are unwelcoming to search engines.  No traffic, no business.</p>
<p>It is correct to say that if poorly implemented, JavaScript can hide valuable content from search engines. The dangerous execution of incorrectly programmed JavaScript is ultimately destructive to a site’s traffic. However, search engines have come a long way.  The idea that one cannot use JavaScript to create a feature-rich and interactive experience for customers without compromising a site’s SEO is simply dated.  It can be done.</p>
<p>Many people are confused about JavaScript and SEO, and how to do things correctly. Whether you’re building a new site from the ground up or implementing new changes to optimize your existing site, implementing the following is sure to bring search engine success.</p>
<p><span id="more-2399"></span><br />
<strong>Create a Stable and Stylish Structure (with HTML)</strong></p>
<p>Just as a department store uses mannequins and fixtures to display the latest styles in order to appease their shoppers and generate sales, your online store’s look and feel work the same way. If your website is appealing to your customer they are more likely to make a purchase.  JavaScript enabled menus are found on just about every major online retail site. The beauty of this menu is not only the aesthetic appeal, but the ability to provided shoppers with a variety of choices while not feeling overwhelmed.</p>
<p>The successful implementation of JavaScript will be determined by how easy a customer can navigate through a site and at the same time achieve search engine victory. Search engine bots love HTML because it’s easy to crawl. Code should be very simple and very straightforward.</p>
<p>JavaScript should be written in such a way that the HTML holds all of the links and content on one layer so it can be easily crawled. Stores with several sub-categories that uses some JavaScript (external) coded directly into the HTML with text-based links are easily searched by bots to spider and index.  Create your top navigation categories using plain text full of rich key words and then style them using Cascading Style Sheets (CSS) for the presentation layer. The CSS is SEO-neutral, so there should be no negative effect on how a page is indexed.</p>
<p><strong>Best Practices for Best Success</strong></p>
<p>Where Java Script is kept and placement is most important, this cannot be emphasized enough. The best practices for successful bot crawls is to have JavaScript placed in one of two places either (1) external load (as mentioned above) after the head on HTML or (2) at the very bottom of the body. It looks something like this.</p>
<blockquote><p>&lt;Head&gt;<br />
Where external load would be placed (1)&lt;Head&gt;<br />
&lt;Body&gt;</p>
<p>GA Tracking Code (so Java Script loads last) (2)<br />
&lt;Body&gt;)</p></blockquote>
<p>A different file can be created to keep all the JavaScript codes separately. This file has an extension of .js. It is a simple file that can be created using notepad. It has nothing except the JavaScript code. You can place functions, code and style sheets into this external .js file and refer to the file with one line from each web page that wants to use the functions contained in it.</p>
<p>Using external JavaScript files saves bandwidth, which is achieved by caching any JavaScripts and Cascading Style Sheets (CSS) these are often repeated in websites.  Also, the length of the page reduces therefore creating a faster download.  In addition, .js files allow search engines to crawl the site fast therefore receiving information quickly.</p>
<p><strong>Test, Test, and Test Again</strong><br />
Testing a website for errors and search engine optimization issues will almost certainly result in success. If indeed there are some issues with the crawling of your site, you will be able to determine this by testing. A good way of testing to ensure your website is search engine friendly is to crawl it using a web crawler. We recommend using seo-browser.com. In addition set up Google Webmaster Tools and use “Fetch” as a Google Bot tool. Then you will be able to easily determine the crawl-ability of your site.</p>
<p><strong>Ready, Set, Go</strong><br />
There are no set “rules” of where code can go, only “best practices”.  The bottom line, JavaScript codes are not going to disrupt SEO Optimization. The point is WHERE to keep the codes.  There is great confusion that has been created in regards to the use of JavaScript code and SEO optimization, which is unnecessary.</p>
<p>In addition, if a page is full of unique and valuable information then the JavaScript code can be a trivial matter.  If your site is rich in worthy content you’re on the right track. Follow the best practices of coding JavaScript correctly, creating useful content and providing your shoppers with great customer service and they will become your customer for life.</p>
Written by Stephanie A.<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.vortx.com%2Fseo%2Fusing-javascript-to-make-your-navigation-search-engine-friendly%2F&amp;title=Using+JavaScript+to+Make+Your+Navigation+Search+Engine-Friendly" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.vortx.com%2Fseo%2Fusing-javascript-to-make-your-navigation-search-engine-friendly%2F&amp;title=Using+JavaScript+to+Make+Your+Navigation+Search+Engine-Friendly" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.vortx.com%2Fseo%2Fusing-javascript-to-make-your-navigation-search-engine-friendly%2F&amp;title=Using+JavaScript+to+Make+Your+Navigation+Search+Engine-Friendly" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.vortx.com%2Fseo%2Fusing-javascript-to-make-your-navigation-search-engine-friendly%2F&amp;headline=Using+JavaScript+to+Make+Your+Navigation+Search+Engine-Friendly" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Using+JavaScript+to+Make+Your+Navigation+Search+Engine-Friendly&amp;url=http%3A%2F%2Fblog.vortx.com%2Fseo%2Fusing-javascript-to-make-your-navigation-search-engine-friendly%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Using+JavaScript+to+Make+Your+Navigation+Search+Engine-Friendly&amp;u=http%3A%2F%2Fblog.vortx.com%2Fseo%2Fusing-javascript-to-make-your-navigation-search-engine-friendly%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Using+JavaScript+to+Make+Your+Navigation+Search+Engine-Friendly&amp;url=http%3A%2F%2Fblog.vortx.com%2Fseo%2Fusing-javascript-to-make-your-navigation-search-engine-friendly%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Using+JavaScript+to+Make+Your+Navigation+Search+Engine-Friendly&amp;url=http%3A%2F%2Fblog.vortx.com%2Fseo%2Fusing-javascript-to-make-your-navigation-search-engine-friendly%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Using+JavaScript+to+Make+Your+Navigation+Search+Engine-Friendly&amp;url=http%3A%2F%2Fblog.vortx.com%2Fseo%2Fusing-javascript-to-make-your-navigation-search-engine-friendly%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.vortx.com%2Fseo%2Fusing-javascript-to-make-your-navigation-search-engine-friendly%2F&amp;title=Using+JavaScript+to+Make+Your+Navigation+Search+Engine-Friendly&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.vortx.com%2Fseo%2Fusing-javascript-to-make-your-navigation-search-engine-friendly%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.vortx.com%2Fseo%2Fusing-javascript-to-make-your-navigation-search-engine-friendly%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.vortx.com%2Fseo%2Fusing-javascript-to-make-your-navigation-search-engine-friendly%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.vortx.com/seo/using-javascript-to-make-your-navigation-search-engine-friendly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You’ve Got Google Apps – Now What?</title>
		<link>http://blog.vortx.com/google/you%e2%80%99ve-got-google-apps-%e2%80%93-now-what/</link>
		<comments>http://blog.vortx.com/google/you%e2%80%99ve-got-google-apps-%e2%80%93-now-what/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 18:51:11 +0000</pubDate>
		<dc:creator>Judson G.</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Improve Your Workday]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[Google Apps]]></category>
		<category><![CDATA[Google Apps Migration]]></category>
		<category><![CDATA[Google Apps Mobile]]></category>
		<category><![CDATA[Google Calendar]]></category>
		<category><![CDATA[Google Docs]]></category>
		<category><![CDATA[Google Groups]]></category>
		<category><![CDATA[Google Sites]]></category>

		<guid isPermaLink="false">http://blog.vortx.com/?p=2005</guid>
		<description><![CDATA[There is so much more to Google Apps than a branded email solution. Once you start looking into everything the entire free suite can do, you will be just as amazed as I was.
Email
Google Apps gives you a stable and branded email solution that complements your website.  It&#8217;s your own email, addressed to your domain, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.vortx.com/wp-content/uploads/2010/03/google-apps.jpg"><img class="alignleft size-full wp-image-2096" title="google-apps" src="http://blog.vortx.com/wp-content/uploads/2010/03/google-apps.jpg" alt="google-apps" width="100" height="100" /></a>There is so much more to Google Apps than a branded email solution. Once you start looking into everything the entire free suite can do, you will be just as amazed as I was.</p>
<p><strong>Email</strong></p>
<p>Google Apps gives you a stable and branded email solution that complements your website.  It&#8217;s your own email, addressed to your domain, and stays with you for as long as you own your domain.</p>
<p><span id="more-2005"></span></p>
<p>But what about my Outlook? Don’t worry, you can still use Outlook (and other email clients) on your desktop, and you can also access your email from anywhere using a web browser – on your laptop, home computer, and even handheld mobile devices.</p>
<p>Google Apps email is based on Google&#8217;s already popular Gmail, which gives you a scalable, world class email system without the need to invest in additional hardware, software, and technical support resources. Gmail couples the concept of labels with Google’s powerful search engine that makes creating folders and sorting through hundreds of emails a thing of the past. Google provides a massive, ever-increasing storage capacity (currently over 7400 MB), which makes saving and archiving all your critical email a goal you can reach.</p>
<p>And that&#8217;s just the email!</p>
<p>Google Apps also provides a suite of applications using the “software as a service” concept, which are designed to increase your productivity, mobility and ability to collaborate. Included in your Google Apps account is the Calendar, Google Docs, Google Groups, and Google Sites, each with your own domain branded web address, or URL.</p>
<p><strong>Calendar</strong></p>
<p>Google Calendar is competitive with Outlook and other group aware calendar packages. It is customizable, web and mobile accessible, and designed with collaboration and group sharing capabilities. Here are just some of the things you can do with Google Calendar:</p>
<ul>
<li>Schedule  and manage appointments</li>
<li>Overlay multiple calendars to see when people are available. Google Calendar can send invitations and manage RSVPs.</li>
<li>Google Calendar works with Gmail and can easily be integrated into most desktop email clients.</li>
<li>Share project calendars</li>
<li>Calendars can be shared company-wide or with select co-workers. A range of sharing permission controls help maintain security and privacy.</li>
<li>Access with your mobile device &#8211; View and edit event details, add new events, and invite guests on mobile devices like the BlackBerry and iPhone. Even receive calendar notifications via SMS.</li>
<li>Publish calendars &#8211; Publicize external company events by publishing a calendar to make it searchable in the Google Calendar gallery. Calendars are easily embedded into web pages.</li>
<li>Manage meetings online with Google Calendar</li>
</ul>
<p><strong>Google Groups</strong></p>
<p>Google Groups allows you to create and manage multiple distribution lists for email, and also provides a way to organize sharing and permissions for access to calendars, Google Docs, and Google Sites. Here are some basic facts about Google Groups:</p>
<ul>
<li>Groups are fast and easy to setup</li>
<li>Easily managed without the need for additional IT support</li>
<li>Easy for employees to share docs, calendars, sites, shared folders, and videos with groups instead of individual employees. You have complete control over access through managing the members of the group</li>
<li>Group discussions are archived by default and easily searched, allowing for retrieval and compliance with records policies</li>
<li>Groups act as a centralized communications point with the ability to receive and send replies on behalf a group</li>
</ul>
<p><strong>Google Docs</strong></p>
<p>Google Docs are a web-based document collaboration application, combining documents, spreadsheets and presentations into shareable, group accessible locations that allow users to edit the same file, ensuring that you always have the latest version. You can create documents, spreadsheets and presentations right there online, or upload and edit documents. Here are some things you can do with Google Docs:</p>
<ul>
<li>Upload and convert Word documents, OpenOffice, RTF, HTML, text (.txt), Open Office (.odt), and StarOffice Writer (.sxw) files (or create documents from scratch)</li>
<li>Easily format your documents, spell-check them, etc.</li>
<li>Invite others by email to edit or view your documents and edit documents online</li>
<li>View your documents&#8217; revision history and roll back to any version</li>
<li>Publish documents online to the world, as web pages or post documents to your blog or email your documents out as attachments</li>
<li>Download documents to your desktop as Word, OpenOffice, RTF, PDF, HTML or zip</li>
</ul>
<p>Google Docs gives you more functionality and flexibility with your spreadsheets and presentations, too. Here are some things you can do with spreadsheets:</p>
<ul>
<li>Import and convert .xls, .csv, .txt and .ods formatted data</li>
<li>Export .xls, .csv, .txt and .ods formatted data and PDF and HTML files</li>
<li>Use formatting and formula editing so you can calculate results and make your data look the way you want it</li>
<li>Chat in real time with others who are editing your spreadsheet</li>
<li>Embed a spreadsheet, or individual sheets of your spreadsheet, in your blog or website</li>
</ul>
<p>And your presentations:</p>
<ul>
<li>Share and edit presentations with your friends and coworkers</li>
<li>Import and convert existing presentations in .ppt and .pps file types</li>
<li>Download your presentations as a PDF, a PPT, or a TXT file</li>
<li>Easily edit your presentations</li>
<li>Insert images and videos, and format your slides to fit your preferences</li>
<li>Allow real-time viewing of presentations, online, from separate remote locations</li>
<li>Publish and embed your presentations in a website, allowing access to a wide audience.</li>
</ul>
<p><strong>Google Sites</strong></p>
<p>Google gives you an easy way to create a website. Do you need a company intranet page? How about setting a Team Project Portfolio? Have you thought about putting up employee profile pages, but didn’t think you could do it on your own. Google Sites can do all that and more. Here are some quick facts:</p>
<ul>
<li>You can create a new page for your Google Site with just a single click</li>
<li>No HTML required &#8211; creating a Google Site is as easy as editing a document, which means there&#8217;s no markup language or fancy code for you to learn</li>
<li>Get started quickly and easily with website templates. You can choose from an ever growing list of page types &#8212; web page, announcements, file cabinet, dashboard and list &#8212; to help you get started with your Google Sites pages</li>
<li>Use the file cabinet to upload files and documents up to 10MB in size. Each Google Apps Standard account receives at least 10GB of storage in Google Sites</li>
<li>Google Sites are integrated with other Google products, so you can insert videos, docs, spreadsheets, presentations, photo slide shows, and calendars directly onto your Google Sites pages</li>
<li>Collaboration allows you to set permissions and designate owners, viewers and collaborators (meaning they can edit pages) for your site. And you can make your Google Sites available to just a few people, only your company, or the entire world</li>
</ul>
<p><strong>Google Apps Mobile</strong></p>
<p>Google Apps is not just for your desktop. You can setup and access all your Google Apps email, sites, groups and documents right from your Smartphone. Here are just some of the things you can do with Google Apps and your Smartphone:</p>
<ul>
<li>Google Mobile App – download to your Smartphone to search fast</li>
<li>Mail – access to your email, calendar, sites and docs, no matter where you are</li>
<li>Use your Google Calendar with no syncing necessary. Set up mobile phone notifications</li>
<li>View your Google documents, spreadsheets, and presentations, from anywhere and at any time</li>
<li>Google Tasks keeps your to do list with you wherever you go</li>
</ul>
<p>All of this and more come with the free Google Apps Standard account, proving that Google Apps is so much more than just “email”. For more information on how Google Apps can work for you, or to or have Vortx setup your own Google Apps migration, go here:<a title="Vortx Google Apps Migration Information " href="http://www.vortx.com/p-58-google-apps-migration-service.aspx." target="_blank"> http://www.vortx.com/p-58-google-apps-migration-service.aspx.</a></p>
Written by Judson G.<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fyou%25e2%2580%2599ve-got-google-apps-%25e2%2580%2593-now-what%2F&amp;title=You%E2%80%99ve+Got+Google+Apps+%E2%80%93+Now+What%3F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fyou%25e2%2580%2599ve-got-google-apps-%25e2%2580%2593-now-what%2F&amp;title=You%E2%80%99ve+Got+Google+Apps+%E2%80%93+Now+What%3F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fyou%25e2%2580%2599ve-got-google-apps-%25e2%2580%2593-now-what%2F&amp;title=You%E2%80%99ve+Got+Google+Apps+%E2%80%93+Now+What%3F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fyou%25e2%2580%2599ve-got-google-apps-%25e2%2580%2593-now-what%2F&amp;headline=You%E2%80%99ve+Got+Google+Apps+%E2%80%93+Now+What%3F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=You%E2%80%99ve+Got+Google+Apps+%E2%80%93+Now+What%3F&amp;url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fyou%25e2%2580%2599ve-got-google-apps-%25e2%2580%2593-now-what%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=You%E2%80%99ve+Got+Google+Apps+%E2%80%93+Now+What%3F&amp;u=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fyou%25e2%2580%2599ve-got-google-apps-%25e2%2580%2593-now-what%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=You%E2%80%99ve+Got+Google+Apps+%E2%80%93+Now+What%3F&amp;url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fyou%25e2%2580%2599ve-got-google-apps-%25e2%2580%2593-now-what%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=You%E2%80%99ve+Got+Google+Apps+%E2%80%93+Now+What%3F&amp;url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fyou%25e2%2580%2599ve-got-google-apps-%25e2%2580%2593-now-what%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=You%E2%80%99ve+Got+Google+Apps+%E2%80%93+Now+What%3F&amp;url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fyou%25e2%2580%2599ve-got-google-apps-%25e2%2580%2593-now-what%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fyou%25e2%2580%2599ve-got-google-apps-%25e2%2580%2593-now-what%2F&amp;title=You%E2%80%99ve+Got+Google+Apps+%E2%80%93+Now+What%3F&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fyou%25e2%2580%2599ve-got-google-apps-%25e2%2580%2593-now-what%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fyou%25e2%2580%2599ve-got-google-apps-%25e2%2580%2593-now-what%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fyou%25e2%2580%2599ve-got-google-apps-%25e2%2580%2593-now-what%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.vortx.com/google/you%e2%80%99ve-got-google-apps-%e2%80%93-now-what/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Analytics: What’s the Deal With All These Numbers?</title>
		<link>http://blog.vortx.com/analytics/analytics-what%e2%80%99s-the-deal-with-all-these-numbers/</link>
		<comments>http://blog.vortx.com/analytics/analytics-what%e2%80%99s-the-deal-with-all-these-numbers/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 23:28:16 +0000</pubDate>
		<dc:creator>Craig H.</dc:creator>
				<category><![CDATA[Analytics]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Web Traffic]]></category>

		<guid isPermaLink="false">http://blog.vortx.com/?p=1702</guid>
		<description><![CDATA[I know you’re excited. We just installed Google Analytics on your site and the dream of increased conversion rates glows brightly in your eyes.  You login and… uh-whaaaaa?  What is this jibber-jabber?  All you see is squiggly lines and a page full of numbers and links to more pages full of even more squiggly lines [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-1794" style="margin-left: 4px; margin-right: 4px;" title="analytics3" src="http://blog.vortx.com/wp-content/uploads/2010/01/analytics3.jpg" alt="analytics3" width="100" height="100" />I know you’re excited. We just installed Google Analytics on your site and the dream of increased conversion rates glows brightly in your eyes.  You login and… uh-whaaaaa?  What is this jibber-jabber?  All you see is squiggly lines and a page full of numbers and links to more pages full of even more squiggly lines and numbers.</p>
<p>This is a common reaction to the Google Analytics Dashboard. The numbers look intimidating but with a little help, they’ll soon be your best friend.  The first step of being able to release the power of your site&#8217;s analytics is to understand the terms used.  After we get you familiar with what the terms mean, we’ll move on to understanding the way they interact with each other.  But that’s for another time.</p>
<p>So, put on a pot of coffee, grab your spectacles and settle in; I’m going to teach you some key definitions that will help you get the most out of Google Analytics.<br />
<span id="more-1702"></span><br />
Common Analytics Terms:</p>
<p><strong>Visits: </strong>An interaction between a visitor’s browser and a particular website. A visit automatically ends if a user is inactive for longer than 30 minutes. Visits are also called sessions.</p>
<p><strong>Visitor:</strong> An estimation of how many distinct peoples use a site over a given period.  Google Analytics uses cookies to track how many times a distinct visitor has visited a site.</p>
<p><strong>Pageview: </strong> Every time a page from your site is loaded in a browser, it’s counted as a pageview.</p>
<p><strong>Pages/Visit:</strong> The average number of pageviews divided by the number of visits over a given period of time.</p>
<p><strong>Bounce Rate:</strong> The percentage of single-page visits in which the person left your site from the same page they entered on.</p>
<p><strong>Ave. Time on Site:</strong> The average duration of a visit over a period of time.</p>
<p><strong>% New Visits:</strong> The number of visitors that are new to a site divided by the total number of visitors over a period of time.  Google Analytics uses cookies to track return visitors, so even if someone has been to your site before, but they deleted their cookies, they’ll be counted as a new visitor.</p>
<p><strong>Referring Sites:</strong> The URL of an HTML page that refers visitors to a site.</p>
<p><strong>Conversion:</strong> A conversion happens whenever a goal page is loaded during a visit.  A goal page can be anything from a purchase confirmation page, to a page that loads after a visitor enters their email address for your newsletter.</p>
<p><strong>Conversion Rate:</strong> The number of visits to your site that load a goal page divided by the total number of visits.</p>
<p>After you’re familiar with the terms, start looking at the numbers that are being recorded.  Do they seem high?  Low? What would have to happen in the real world to create the numbers you’re looking at?   Answering these kinds of questions will be the key to starting to increase your site’s conversion rate.</p>
Written by Craig H.<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.vortx.com%2Fanalytics%2Fanalytics-what%25e2%2580%2599s-the-deal-with-all-these-numbers%2F&amp;title=Analytics%3A+What%E2%80%99s+the+Deal+With+All+These+Numbers%3F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.vortx.com%2Fanalytics%2Fanalytics-what%25e2%2580%2599s-the-deal-with-all-these-numbers%2F&amp;title=Analytics%3A+What%E2%80%99s+the+Deal+With+All+These+Numbers%3F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.vortx.com%2Fanalytics%2Fanalytics-what%25e2%2580%2599s-the-deal-with-all-these-numbers%2F&amp;title=Analytics%3A+What%E2%80%99s+the+Deal+With+All+These+Numbers%3F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.vortx.com%2Fanalytics%2Fanalytics-what%25e2%2580%2599s-the-deal-with-all-these-numbers%2F&amp;headline=Analytics%3A+What%E2%80%99s+the+Deal+With+All+These+Numbers%3F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Analytics%3A+What%E2%80%99s+the+Deal+With+All+These+Numbers%3F&amp;url=http%3A%2F%2Fblog.vortx.com%2Fanalytics%2Fanalytics-what%25e2%2580%2599s-the-deal-with-all-these-numbers%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Analytics%3A+What%E2%80%99s+the+Deal+With+All+These+Numbers%3F&amp;u=http%3A%2F%2Fblog.vortx.com%2Fanalytics%2Fanalytics-what%25e2%2580%2599s-the-deal-with-all-these-numbers%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Analytics%3A+What%E2%80%99s+the+Deal+With+All+These+Numbers%3F&amp;url=http%3A%2F%2Fblog.vortx.com%2Fanalytics%2Fanalytics-what%25e2%2580%2599s-the-deal-with-all-these-numbers%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Analytics%3A+What%E2%80%99s+the+Deal+With+All+These+Numbers%3F&amp;url=http%3A%2F%2Fblog.vortx.com%2Fanalytics%2Fanalytics-what%25e2%2580%2599s-the-deal-with-all-these-numbers%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Analytics%3A+What%E2%80%99s+the+Deal+With+All+These+Numbers%3F&amp;url=http%3A%2F%2Fblog.vortx.com%2Fanalytics%2Fanalytics-what%25e2%2580%2599s-the-deal-with-all-these-numbers%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.vortx.com%2Fanalytics%2Fanalytics-what%25e2%2580%2599s-the-deal-with-all-these-numbers%2F&amp;title=Analytics%3A+What%E2%80%99s+the+Deal+With+All+These+Numbers%3F&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.vortx.com%2Fanalytics%2Fanalytics-what%25e2%2580%2599s-the-deal-with-all-these-numbers%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.vortx.com%2Fanalytics%2Fanalytics-what%25e2%2580%2599s-the-deal-with-all-these-numbers%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.vortx.com%2Fanalytics%2Fanalytics-what%25e2%2580%2599s-the-deal-with-all-these-numbers%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.vortx.com/analytics/analytics-what%e2%80%99s-the-deal-with-all-these-numbers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Go Get Customers! Part 1 &#8211; Feeds</title>
		<link>http://blog.vortx.com/google/content-delivery-better-than-takeout/</link>
		<comments>http://blog.vortx.com/google/content-delivery-better-than-takeout/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 23:45:58 +0000</pubDate>
		<dc:creator>Megan M.</dc:creator>
				<category><![CDATA[Email Marketing]]></category>
		<category><![CDATA[General E-commerce]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Web Traffic]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[content delivery]]></category>
		<category><![CDATA[email marketing]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[facebook marketing]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[marketing blogs]]></category>
		<category><![CDATA[newsletter]]></category>
		<category><![CDATA[newsletters]]></category>
		<category><![CDATA[product feed]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[rss feed]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[twitter marketing]]></category>

		<guid isPermaLink="false">http://blog.vortx.com/?p=1358</guid>
		<description><![CDATA[
Want to deliver content directly to your shoppers instead of relying on them remembering to come back to your site?
That&#8217;s what this series article is all about.  I&#8217;ll give an overview of seven different ways to deliver content to your users instead of waiting for them to visit your site.
In this part I&#8217;ll explain how [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.vortx.com/wp-content/uploads/2009/07/contentdelivery.jpg"><img class="alignleft size-full wp-image-1401" title="contentdelivery" src="http://blog.vortx.com/wp-content/uploads/2009/07/contentdelivery.jpg" alt="" width="100" height="100" /></a></p>
<p>Want to deliver content directly to your shoppers instead of relying on them remembering to come back to your site?</p>
<p>That&#8217;s what this series article is all about.  I&#8217;ll give an overview of seven different ways to deliver content to your users instead of waiting for them to visit your site.</p>
<p>In this part I&#8217;ll explain how to use RSS feeds and product feeds to attract customers.<br />
<span id="more-1358"></span></p>
<h3>RSS Feeds</h3>
<p><strong>What are They?</strong></p>
<div id="attachment_1366" class="wp-caption alignright" style="width: 309px"><a href="http://blog.vortx.com/wp-content/uploads/2009/07/rss.jpg"><img class="size-medium wp-image-1366" title="rss feeds" src="http://blog.vortx.com/wp-content/uploads/2009/07/rss-299x250.jpg" alt="RSS Feeds for Content Delivery" width="299" height="250" /></a><p class="wp-caption-text">RSS Feeds for Content Delivery</p></div>
<p>RSS (Really Simple Syndication) feeds allows content to be easily displayed in a variety of places.  One of the most common pieces of content to be delivered by RSS are blog posts to feed readers.</p>
<p>RSS Feed Readers have become a popular way to read many different blogs without having to visit each blog to check for updates.  Many separate blog rss feeds are  delivered right to your feed reader instead.</p>
<p>RSS feeds can be used in many ways – and are actually the basis of some of the other content delivery systems that will be described later in this article.  Some, like the example at right, are raw RSS feeds that are fed into feed readers.  Other RSS feeds are product feeds that put your products into shopping comparison sites like Google Base and Shopzilla.  Still others display specific information on a website, like the LiveWire Blog section of the <a title="Vortx.com" href="http://www.vortx.com" target="_blank">Vortx.com</a> homepage.</p>
<p><strong>How Can They Help You?</strong></p>
<p>If you have content that is updated frequently, like a blog, products, sales or promotions an RSS feed can effectively deliver your content to your subscribers without them ever having to visit your website or blog, and the easier it is for them to read your content, the more likely they <em>will</em> read it!</p>
<h3>Product Feeds</h3>
<p><strong>What are They?</strong></p>
<div id="attachment_1371" class="wp-caption alignright" style="width: 309px"><a href="http://blog.vortx.com/wp-content/uploads/2009/07/productfeeds1.jpg"><img class="size-medium wp-image-1371" title="productfeeds" src="http://blog.vortx.com/wp-content/uploads/2009/07/productfeeds1-299x250.jpg" alt="Product Feeds for Content Delivery" width="299" height="250" /></a><p class="wp-caption-text">Product Feeds for Content Delivery</p></div>
<p>Product feeds are specially formatted feeds (some are RSS feeds!) that take a list of your eCommerce products and insert them into a comparison shopping site like Google Base or Shopzilla.  When a shopper visits one of these comparison shopping sites, they search for a product and can narrow or sort the search results to find the ‘best deal’ from all eCommerce stores that have submitted their products.</p>
<p><strong>How Can They Help You?</strong></p>
<p>By inserting your products into a comparison shopping site via a product feed, you increase the visibility of your products, your store, and add links to your site from trusted sites.</p>
<p>Even if your product isn’t the ‘best deal’ in the search results, quality descriptions and product photos could bring that shopper into your store to look around.  Inbound links are precious – product feeds provide that many more ways someone could find your products and your site.</p>
<h3>Remember&#8230;</h3>
<p><em>To take full advantage of these tools, consistency is key.  It takes work to create and promote content, but that effort will pay off in dividends as you see your web presence improve.</em></p>
<p>All of these content delivery options can be used together to place your content (marketing!) into as many channels as possible, effectively increasing the number of people who are exposed to your business and your products or services.</p>
<p><em>Subscribe to our RSS feed or our newsletter to make sure you don&#8217;t miss Part 2: Email Marketing</em></p>
<p><strong>Which of these tools have you used?  What&#8217;s worked well for you?  Any suggestions?  Our current poll on the right is a quick and easy way to respond!</strong></p>
Written by Megan M.<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fcontent-delivery-better-than-takeout%2F&amp;title=How+to+Go+Get+Customers%21+Part+1+-+Feeds" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fcontent-delivery-better-than-takeout%2F&amp;title=How+to+Go+Get+Customers%21+Part+1+-+Feeds" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fcontent-delivery-better-than-takeout%2F&amp;title=How+to+Go+Get+Customers%21+Part+1+-+Feeds" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fcontent-delivery-better-than-takeout%2F&amp;headline=How+to+Go+Get+Customers%21+Part+1+-+Feeds" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=How+to+Go+Get+Customers%21+Part+1+-+Feeds&amp;url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fcontent-delivery-better-than-takeout%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=How+to+Go+Get+Customers%21+Part+1+-+Feeds&amp;u=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fcontent-delivery-better-than-takeout%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=How+to+Go+Get+Customers%21+Part+1+-+Feeds&amp;url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fcontent-delivery-better-than-takeout%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=How+to+Go+Get+Customers%21+Part+1+-+Feeds&amp;url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fcontent-delivery-better-than-takeout%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=How+to+Go+Get+Customers%21+Part+1+-+Feeds&amp;url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fcontent-delivery-better-than-takeout%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fcontent-delivery-better-than-takeout%2F&amp;title=How+to+Go+Get+Customers%21+Part+1+-+Feeds&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fcontent-delivery-better-than-takeout%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fcontent-delivery-better-than-takeout%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fcontent-delivery-better-than-takeout%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.vortx.com/google/content-delivery-better-than-takeout/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>AspDotNetStorefront&#8217;s Google Sitemap</title>
		<link>http://blog.vortx.com/google/aspdotnetstorefronts-google-sitemap/</link>
		<comments>http://blog.vortx.com/google/aspdotnetstorefronts-google-sitemap/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 17:11:32 +0000</pubDate>
		<dc:creator>Scott F.</dc:creator>
				<category><![CDATA[AspDotNetStoreFront]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[ADNSF]]></category>
		<category><![CDATA[sitemap]]></category>
		<category><![CDATA[Web Traffic]]></category>

		<guid isPermaLink="false">http://blog.vortx.com/?p=1202</guid>
		<description><![CDATA[AspDotNetStorefront has a built-in Google sitemap that not many people know about.
Google allows website owners to submit sitemaps via Google Webmaster Tools. Submitting a sitemap to Google helps ensure that Google knows about all the pages on your site.
The built-in AspDotNetStorefront Google sitemap is dynamic; it changes as you add new categories, topics, and products [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.vortx.com/wp-content/uploads/2009/05/code.jpg"><img class="alignleft size-medium wp-image-1254" style="margin-left: 4px; margin-right: 4px;" title="code" src="http://blog.vortx.com/wp-content/uploads/2009/05/code.jpg" alt="" width="100" height="100" /></a>AspDotNetStorefront has a built-in Google sitemap that not many people know about.</p>
<p>Google allows website owners to submit sitemaps via Google Webmaster Tools. Submitting a sitemap to Google helps ensure that Google knows about all the pages on your site.</p>
<p>The built-in <abbr title="ADNSF">AspDotNetStorefront</abbr> Google sitemap is dynamic; it changes as you add new categories, topics, and products to your site.</p>
<p>To get to the Google sitemap, type “googleindex.aspx” onto the end of your URL: www.YOURSITE.com/googleindex.aspx</p>
<p>You should see a page that looks something like this:<span id="more-1202"></span></p>
<p><img class="alignnone size-full wp-image-1204" title="sitemap" src="http://blog.vortx.com/wp-content/uploads/2009/05/sitemap.gif" alt="" width="500" height="414" /></p>
<h3>Submitting The Sitemap</h3>
<p>To submit your sitemap to Google you first need to create a free account with <a href="https://www.google.com/webmasters/tools">Google Webmaster Tools</a>.</p>
<p>Once you get your account setup correctly you’ll find all kinds good information that Google has about your website. You are looking for the &#8220;sitemaps&#8221; tab on the left hand side of the Webmaster Tools overview screen.</p>
<p><img class="alignnone size-full wp-image-1211" title="webmastertools" src="http://blog.vortx.com/wp-content/uploads/2009/05/webmastertools1.gif" alt="" width="500" height="430" /></p>
<p>From here submitting a sitemap to Google is pretty easy. You just need to provide Google with the correct URL: YOURSITE.com/googleindex.aspx</p>
<p>Be aware &#8211; it’s common for some warnings to show up in the Google Webmaster Tools sitemap statistics when you submit this sitemap. This is usually because the priority level given to each page in the site map is the same since there is no way to flag different pages with a different priority level in the backend of AspDotNetStorefront. You do have the ability to set the priority per page type (Product, Entity, Topic) though.</p>
<h3>Configuration</h3>
<p>Login to the backend of your <abbr title="ADNSF">AspDotNetStorefront</abbr> website and navigate to Configuration&gt;Advanced&gt;AppConfig Parameters. If you search for “googlesitemap” you will see all of the appconfigs that apply to the Google Sitemap.</p>
<p>These appconfigs allow you to adjust the change frequency and the priority level of entities, topics, and products.</p>
<p><img class="alignnone size-full wp-image-1213" title="sitemapconfigs" src="http://blog.vortx.com/wp-content/uploads/2009/05/sitemapconfigs.gif" alt="" width="500" height="419" /></p>
<p>For more information about Google sitemaps, <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=40318&amp;hl=en">take a look at this article</a>.<br />
<a href="http://www.google.com/support/webmasters/bin/answer.py?answer=40318&amp;hl=en" target="_blank"><br />
</a></p>
Written by Scott<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Faspdotnetstorefronts-google-sitemap%2F&amp;title=AspDotNetStorefront%27s+Google+Sitemap" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Faspdotnetstorefronts-google-sitemap%2F&amp;title=AspDotNetStorefront%27s+Google+Sitemap" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Faspdotnetstorefronts-google-sitemap%2F&amp;title=AspDotNetStorefront%27s+Google+Sitemap" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Faspdotnetstorefronts-google-sitemap%2F&amp;headline=AspDotNetStorefront%27s+Google+Sitemap" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=AspDotNetStorefront%27s+Google+Sitemap&amp;url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Faspdotnetstorefronts-google-sitemap%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=AspDotNetStorefront%27s+Google+Sitemap&amp;u=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Faspdotnetstorefronts-google-sitemap%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=AspDotNetStorefront%27s+Google+Sitemap&amp;url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Faspdotnetstorefronts-google-sitemap%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=AspDotNetStorefront%27s+Google+Sitemap&amp;url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Faspdotnetstorefronts-google-sitemap%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=AspDotNetStorefront%27s+Google+Sitemap&amp;url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Faspdotnetstorefronts-google-sitemap%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Faspdotnetstorefronts-google-sitemap%2F&amp;title=AspDotNetStorefront%27s+Google+Sitemap&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Faspdotnetstorefronts-google-sitemap%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Faspdotnetstorefronts-google-sitemap%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Faspdotnetstorefronts-google-sitemap%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.vortx.com/google/aspdotnetstorefronts-google-sitemap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Coder&#8217;s Corner &#8211; Developer Tools You Can&#8217;t Live Without</title>
		<link>http://blog.vortx.com/coders-corner/coders-corner-developer-tools-you-cant-live-without/</link>
		<comments>http://blog.vortx.com/coders-corner/coders-corner-developer-tools-you-cant-live-without/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 16:30:51 +0000</pubDate>
		<dc:creator>Nicole S.</dc:creator>
				<category><![CDATA[Coder's Corner]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[coding environment]]></category>
		<category><![CDATA[debugging]]></category>
		<category><![CDATA[developer tools]]></category>

		<guid isPermaLink="false">http://blog.vortx.com/?p=681</guid>
		<description><![CDATA[In an earlier post, Ryan posted a few links to some tools to help you increase productivity. Here is a similar list of development related tools that I simply cannot live without.
In development, especially for AspDotNetStorefront, there are two tools which you absolutely must have in order to do any kind of extensive development in [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="margin-left: 4px; margin-right: 4px;" title="Beginner Skill Level" src="http://blog.vortx.com/wp-content/uploads/2008/12/skilllevelbeginner.jpg" alt="" width="100" height="100" />In an <a href="http://blog.vortx.com/ecommerce/work-faster-work-better-tips-to-turbo-charge-your-desktop/" target="_blank">earlier post</a>, Ryan posted a few links to some tools to help you increase productivity. Here is a similar list of development related tools that I simply cannot live without.</p>
<p>In development, especially for AspDotNetStorefront, there are two tools which you absolutely must have in order to do any kind of extensive development in the .Net Framework.<span id="more-681"></span></p>
<ol>
<li><a href="http://www.microsoft.com/express/product/default.aspx" target="_blank"><strong>Visual Studio Express Edition</strong></a><br />
Visual Studio is an editor that will help you make modifications to any pages throughout your site. Visual Studio Express is absolutely free, as it is a lightweight version of Microsoft&#8217;s Visual Studio. Visual Studio  has many different Express options which are geared toward different types of development. Depending on what you&#8217;re familiar with, you may choose a different version. If you&#8217;re not sure, choose the Visual Web Developer Express edition.</li>
<li><a href="http://www.microsoft.com/express/sql/default.aspx" target="_blank"><strong>SQL Server Express</strong></a><br />
SQL Server Express is also free, as it is a lightweight version of SQL Server. With SQL Server Express, you can set up a new database, perhaps a copy of your <abbr title="ADNSF">AspDotNetStorefront</abbr> database, and configure your application to use the new database on your local machine. This way, you can make changes to your site using Visual Studio, and you can see the changes locally, instead of making changes directly to your live site.</li>
</ol>
<p>Beyond those two must-haves, there are several other tools I use on a daily basis:</p>
<ul>
<li><strong><a href="http://www.mozilla.com/en-US/firefox/" target="_blank">Firefox</a></strong><br />
Generally, I do all of my initial skinning and development in Mozilla Firefox. We always test in all the <a href="http://www.w3schools.com/browsers/browsers_stats.asp" target="_blank">top browsers</a> before releasing code into the wild, but Firefox is my favorite browser to work in because of all of the great tools available.</li>
<li><strong><a href="http://getfirebug.com/" target="_blank">Firebug</a></strong><br />
Firebug is a Firefox extension that helps enormously with debugging Javascript, CSS, and HTML issues. Because this is an add to to Firefox, you can easily use this tool to check errors and issues directly on the site you&#8217;re browsing.</li>
<li><strong><a href="https://addons.mozilla.org/en-US/firefox/addon/60" target="_blank">Web Developer Toolbar</a></strong></li>
<p>This nifty Firefox add-on is something I end up using every day, on every project. Installing this will add a toolbar to Firefox that provides a multitude of options. It also comes with handy keyboard shortcuts to enable and disable certain features. One of my favorites is the CSS View Style Information feature. You can activate this by selecting it from your toolbar, or by pressing Ctrl + Shift + Y on your keyboard. When activated, a red border will appear around certain elements on the page, and the red border will follow your mouse movement. Once you&#8217;ve highlighted an area you want more detail on, clicking will open up a pane in the bottom of your browser window and give you all of the CSS styles that are associated with that element. Another great tool with this add-on is the resize window feature, which allows you to resize your browser window to different dimensions with a single click. You can set your own dimensions so you can always have the dimensions you like to test in readily available in a dropdown menu.</ul>
<p>These tools allow efficient <a href="http://www.vortx.com/t-adnsf.aspx">AspDotNetStorefront Development and Customization</a> for your online store.</p>
Written by Nicole<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.vortx.com%2Fcoders-corner%2Fcoders-corner-developer-tools-you-cant-live-without%2F&amp;title=Coder%27s+Corner+-+Developer+Tools+You+Can%27t+Live+Without" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.vortx.com%2Fcoders-corner%2Fcoders-corner-developer-tools-you-cant-live-without%2F&amp;title=Coder%27s+Corner+-+Developer+Tools+You+Can%27t+Live+Without" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.vortx.com%2Fcoders-corner%2Fcoders-corner-developer-tools-you-cant-live-without%2F&amp;title=Coder%27s+Corner+-+Developer+Tools+You+Can%27t+Live+Without" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.vortx.com%2Fcoders-corner%2Fcoders-corner-developer-tools-you-cant-live-without%2F&amp;headline=Coder%27s+Corner+-+Developer+Tools+You+Can%27t+Live+Without" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Coder%27s+Corner+-+Developer+Tools+You+Can%27t+Live+Without&amp;url=http%3A%2F%2Fblog.vortx.com%2Fcoders-corner%2Fcoders-corner-developer-tools-you-cant-live-without%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Coder%27s+Corner+-+Developer+Tools+You+Can%27t+Live+Without&amp;u=http%3A%2F%2Fblog.vortx.com%2Fcoders-corner%2Fcoders-corner-developer-tools-you-cant-live-without%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Coder%27s+Corner+-+Developer+Tools+You+Can%27t+Live+Without&amp;url=http%3A%2F%2Fblog.vortx.com%2Fcoders-corner%2Fcoders-corner-developer-tools-you-cant-live-without%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Coder%27s+Corner+-+Developer+Tools+You+Can%27t+Live+Without&amp;url=http%3A%2F%2Fblog.vortx.com%2Fcoders-corner%2Fcoders-corner-developer-tools-you-cant-live-without%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Coder%27s+Corner+-+Developer+Tools+You+Can%27t+Live+Without&amp;url=http%3A%2F%2Fblog.vortx.com%2Fcoders-corner%2Fcoders-corner-developer-tools-you-cant-live-without%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.vortx.com%2Fcoders-corner%2Fcoders-corner-developer-tools-you-cant-live-without%2F&amp;title=Coder%27s+Corner+-+Developer+Tools+You+Can%27t+Live+Without&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.vortx.com%2Fcoders-corner%2Fcoders-corner-developer-tools-you-cant-live-without%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.vortx.com%2Fcoders-corner%2Fcoders-corner-developer-tools-you-cant-live-without%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.vortx.com%2Fcoders-corner%2Fcoders-corner-developer-tools-you-cant-live-without%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.vortx.com/coders-corner/coders-corner-developer-tools-you-cant-live-without/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Work Faster, Work Better &#8211; Tips to Turbo Charge your Desktop</title>
		<link>http://blog.vortx.com/tools/work-faster-work-better-tips-to-turbo-charge-your-desktop/</link>
		<comments>http://blog.vortx.com/tools/work-faster-work-better-tips-to-turbo-charge-your-desktop/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 02:37:45 +0000</pubDate>
		<dc:creator>Ryan S.</dc:creator>
				<category><![CDATA[Improve Your Workday]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[application launcher]]></category>
		<category><![CDATA[computer tips]]></category>
		<category><![CDATA[desktop search]]></category>
		<category><![CDATA[e-commerce]]></category>
		<category><![CDATA[efficiency]]></category>
		<category><![CDATA[text editors]]></category>

		<guid isPermaLink="false">http://blog.vortx.com/?p=176</guid>
		<description><![CDATA[Using your computer effectively takes some practice. These tips save me time and headaches each day and I&#8217;m sure they&#8217;ll do the same for you.
Read through and give these a try &#8211; you&#8217;ll be surprised at the great tools available and what you can do with them!
Get the Tools:

Desktop Search &#8211; Google or Microsoft, they&#8217;re [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.vortx.com/wp-content/uploads/2009/01/cleancomputer.jpg"><img class="alignleft" style="margin-left: 4px; margin-right: 4px;" title="&quot;Clean House&quot; in Your Computer for Speed" src="http://blog.vortx.com/wp-content/uploads/2009/01/cleancomputer.jpg" alt="&quot;Clean House&quot; in Your Computer for Superior Speed" width="100" height="100" /></a>Using your computer effectively takes some practice. These tips save me time and headaches each day and I&#8217;m sure they&#8217;ll do the same for you.</p>
<p>Read through and give these a try &#8211; you&#8217;ll be surprised at the great tools available and what you can do with them!</p>
<p><strong>Get the Tools:</strong></p>
<ol>
<li><em>Desktop Search &#8211; </em><a href="http://desktop.google.com/" target="_blank">Google</a> or <a href="http://www.microsoft.com/windows/products/winfamily/desktopsearch/choose/windowssearch4.mspx?tab=Install%20It" target="_blank">Microsoft</a>, they&#8217;re both good. The second you don&#8217;t know where something is, search for it.</li>
<li><em>Application Launcher -</em> Launchers allow you to get to the screen, folder, or application you want without taking your hands off of the keyboard.I use <a href="http://www.bayden.com/SlickRun/" target="_blank">Slickrun</a>. Another launcher that is used around the office is <a href="http://www.launchy.net/" target="_blank">Launchy</a>.There are lots of these applications available for free.  Find one that works for you and set up your browsers, email, business applications, common folders paths and anything you use on a weekly basis. Get comfortable with this app and read the manual or help file.  You should be using it all the time.</li>
<li><em>A New T</em><em>ext Editor</em> &#8211; For me, Word is too slow to load and Notepad is too limited in options. I use <a href="http://www.flos-freeware.ch/notepad2.html" target="_blank">Notepad2</a> and I am very happy with it.  I use <a href="http://www.textpad.com/index.html" target="_blank">Textpad</a> as well, but mostly for searching text within a bunch of files.  If you need to search many files in a folder, Textpad is still the best I’ve found. <a href="http://sourceforge.net/projects/notepad-plus/" target="_blank">Notepad++</a> is also a very good alternative to Notepad2.</li>
<li><em>Multiple  Monitors</em> -<a href="http://www.realtimesoft.com/ultramon/" target="_blank"> Ultramon</a> gives you a taskbar on all monitors and helps you manage your windows on multiple screens.</li>
</ol>
<p>My new favorite browser is <a href="http://www.google.com/chrome" target="_blank">Google Chrome</a>.  I like the way it uses space, the flexibility of the tabs, and plenty more.  I also have the latest releases of <a href="http://www.mozilla.com/en-US/firefox/" target="_blank">Firefox</a> and <a href="http://www.microsoft.com/windows/downloads/ie/getitnow.mspx" target="_blank">IE7</a> on my machine.<br />
<span id="more-176"></span><br />
The <a href="http://getfirebug.com/" target="_blank">Firebug</a> add-on for Firefox is a must-have for anyone involved with website design or implementation. It lets you see into the HTML of a webpage to find problems while they are rendered.  You can debug JavaScript, CSS, and HTML from this tool.</p>
<p>Use a <em>RSS Feed reader</em>.  Don&#8217;t browse or search for the information you know you want.  Find a feed that will deliver that content to you.  (Power Users should try <a href="http://pipes.yahoo.com/pipes/" target="_blank">Yahoo Pipes</a>.)</p>
<p><strong>Organize</strong><br />
<em>Your File Structure</em><br />
Manage your file structure by starting with broad-themed folders and moving to very specific folders.</p>
<ul>
<li>For example, when I organize my project folder structure I start with &#8220;C:/Clients/Client/Project/Files.&#8221; Yours would most likely be different.</li>
<li>I always have a shortcut in my launcher to get to &#8220;C:/Clients&#8221; folder and I have shortcuts to get to most client and project folders too.</li>
<li>Other folders I keep in the root of my drives are &#8220;Development,&#8221; &#8220;Sandbox,&#8221; and &#8220;General.&#8221;</li>
</ul>
<p>I try to keep all my files out of the roots of my drives and in a folder that is descriptive to what it contains.</p>
<p><em>Your Desktop</em><br />
Go through all the icons on your desktop and move the files and folders to the correct place in your file structure.  Move all program shortcuts into your launcher application or into the Quick Launch bar.</p>
<p>During my workday:</p>
<ul>
<li>I generally drop files and folders onto my desktop that are relevant to the projects I am working on.  I use my desktop as a reminder that I need to do something with these files.</li>
<li>At the end of the day it&#8217;s a combination of Outlook, our task management program and my desktop where I look for any loose strings that I need to clean up before work is done for the day.</li>
</ul>
<p><em>Your Start Menu</em><br />
My launcher application has minimized my use of the start menu, but I still organize it so when I do need to use it the programs are where I can find them.  Keep the initial menu short and use the flyouts to refine your programs.</p>
<p><em>Get Help</em><br />
These handy apps help you remove temp files from your machine and help detect and remove spyware.</p>
<ul>
<li>CCleaner: <a href="http://www.ccleaner.com/">http://www.ccleaner.com/</a></li>
<li>Spybot Search and Destroy: <a href="http://www.safer-networking.org/en/spybotsd/index.html">http://www.safer-networking.org/en/spybotsd/index.html</a></li>
</ul>
<p>What programs do you use that save time and manage your computer?  Share your favorites below in the comments section.</p>
Written by Ryan S.<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.vortx.com%2Ftools%2Fwork-faster-work-better-tips-to-turbo-charge-your-desktop%2F&amp;title=Work+Faster%2C+Work+Better+-+Tips+to+Turbo+Charge+your+Desktop" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.vortx.com%2Ftools%2Fwork-faster-work-better-tips-to-turbo-charge-your-desktop%2F&amp;title=Work+Faster%2C+Work+Better+-+Tips+to+Turbo+Charge+your+Desktop" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.vortx.com%2Ftools%2Fwork-faster-work-better-tips-to-turbo-charge-your-desktop%2F&amp;title=Work+Faster%2C+Work+Better+-+Tips+to+Turbo+Charge+your+Desktop" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.vortx.com%2Ftools%2Fwork-faster-work-better-tips-to-turbo-charge-your-desktop%2F&amp;headline=Work+Faster%2C+Work+Better+-+Tips+to+Turbo+Charge+your+Desktop" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=Work+Faster%2C+Work+Better+-+Tips+to+Turbo+Charge+your+Desktop&amp;url=http%3A%2F%2Fblog.vortx.com%2Ftools%2Fwork-faster-work-better-tips-to-turbo-charge-your-desktop%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=Work+Faster%2C+Work+Better+-+Tips+to+Turbo+Charge+your+Desktop&amp;u=http%3A%2F%2Fblog.vortx.com%2Ftools%2Fwork-faster-work-better-tips-to-turbo-charge-your-desktop%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=Work+Faster%2C+Work+Better+-+Tips+to+Turbo+Charge+your+Desktop&amp;url=http%3A%2F%2Fblog.vortx.com%2Ftools%2Fwork-faster-work-better-tips-to-turbo-charge-your-desktop%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=Work+Faster%2C+Work+Better+-+Tips+to+Turbo+Charge+your+Desktop&amp;url=http%3A%2F%2Fblog.vortx.com%2Ftools%2Fwork-faster-work-better-tips-to-turbo-charge-your-desktop%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=Work+Faster%2C+Work+Better+-+Tips+to+Turbo+Charge+your+Desktop&amp;url=http%3A%2F%2Fblog.vortx.com%2Ftools%2Fwork-faster-work-better-tips-to-turbo-charge-your-desktop%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.vortx.com%2Ftools%2Fwork-faster-work-better-tips-to-turbo-charge-your-desktop%2F&amp;title=Work+Faster%2C+Work+Better+-+Tips+to+Turbo+Charge+your+Desktop&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.vortx.com%2Ftools%2Fwork-faster-work-better-tips-to-turbo-charge-your-desktop%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.vortx.com%2Ftools%2Fwork-faster-work-better-tips-to-turbo-charge-your-desktop%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.vortx.com%2Ftools%2Fwork-faster-work-better-tips-to-turbo-charge-your-desktop%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.vortx.com/tools/work-faster-work-better-tips-to-turbo-charge-your-desktop/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Best AspDotNetStorefront Feature You’re Not Using – GoogleBase</title>
		<link>http://blog.vortx.com/google/the-most-useful-aspdnsf-feature-you%e2%80%99re-not-using-%e2%80%93-googlebase-feed/</link>
		<comments>http://blog.vortx.com/google/the-most-useful-aspdnsf-feature-you%e2%80%99re-not-using-%e2%80%93-googlebase-feed/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 01:09:18 +0000</pubDate>
		<dc:creator>Craig H.</dc:creator>
				<category><![CDATA[AspDotNetStoreFront]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[ShopVortx]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[google shopping]]></category>
		<category><![CDATA[googlebase]]></category>

		<guid isPermaLink="false">http://blog.vortx.com/?p=6</guid>
		<description><![CDATA[Storefront has a feature that will get your products in front of a whole new audience, and you’re probably not using it.

A GoogleBase feed lets you keep Google Shopping updated on your products automatically. Buried at the bottom of the “Products” section of the ASPDNSF Admin section, you’ll find an item called “feeds.” Then click “Create New Feed” and configure your XML file. After that, set up a GoogleBase account, submit the feed and you’re set. ]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.vortx.com/wp-content/uploads/2008/12/googlebase.jpg"><img class="alignleft size-medium wp-image-67" style="margin-left: 4px; margin-right: 4px;" title="googlebase" src="http://blog.vortx.com/wp-content/uploads/2008/12/googlebase.jpg" alt="" width="100" height="100" /></a>AspDotNetStorefront has a feature that will get your products in front of a whole new audience, and you’re probably not using it.</p>
<p>Setting up product feeds for GoogleBase lets you keep Google Shopping updated on your products automatically. Buried at the bottom of the “Products” section of the ASPDNSF Admin section, you’ll find an item called “feeds.” Then click “Create New Feed” and configure your XML file. After that, set up a GoogleBase account, submit the feed and you’re set.</p>
<p>But, that’s just the beginning. Getting your products placed highly is another story completely.<br />
<span id="more-6"></span><br />
Optimizing your product feeds means modifying the XML template and making sure that the right product data maps to the correct XML tag.</p>
<p><a title="GoogleBase Feed" href="http://vortx.com/p-50-google-base-feeds.aspx">Learn how Vortx can help you optimize your product feed…</a></p>
Written by Craig H.<div class="lightsocial_container"><a class="lightsocial_a" href="http://digg.com/submit?url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fthe-most-useful-aspdnsf-feature-you%25e2%2580%2599re-not-using-%25e2%2580%2593-googlebase-feed%2F&amp;title=The+Best+AspDotNetStorefront+Feature+You%E2%80%99re+Not+Using+%E2%80%93+GoogleBase" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/digg.png" alt="Digg This" title="Digg This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.reddit.com/submit?url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fthe-most-useful-aspdnsf-feature-you%25e2%2580%2599re-not-using-%25e2%2580%2593-googlebase-feed%2F&amp;title=The+Best+AspDotNetStorefront+Feature+You%E2%80%99re+Not+Using+%E2%80%93+GoogleBase" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/reddit.png" alt="Reddit This" title="Reddit This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fthe-most-useful-aspdnsf-feature-you%25e2%2580%2599re-not-using-%25e2%2580%2593-googlebase-feed%2F&amp;title=The+Best+AspDotNetStorefront+Feature+You%E2%80%99re+Not+Using+%E2%80%93+GoogleBase" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/stumbleupon.png" alt="Stumble Now!" title="Stumble Now!" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://buzz.yahoo.com/buzz?targetUrl=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fthe-most-useful-aspdnsf-feature-you%25e2%2580%2599re-not-using-%25e2%2580%2593-googlebase-feed%2F&amp;headline=The+Best+AspDotNetStorefront+Feature+You%E2%80%99re+Not+Using+%E2%80%93+GoogleBase" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/yahoo_buzz.png" alt="Buzz This" title="Buzz This" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dzone.com/links/add.html?title=The+Best+AspDotNetStorefront+Feature+You%E2%80%99re+Not+Using+%E2%80%93+GoogleBase&amp;url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fthe-most-useful-aspdnsf-feature-you%25e2%2580%2599re-not-using-%25e2%2580%2593-googlebase-feed%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/dzone.png" alt="Vote on DZone" title="Vote on DZone" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.facebook.com/sharer.php?t=The+Best+AspDotNetStorefront+Feature+You%E2%80%99re+Not+Using+%E2%80%93+GoogleBase&amp;u=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fthe-most-useful-aspdnsf-feature-you%25e2%2580%2599re-not-using-%25e2%2580%2593-googlebase-feed%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/facebook.png" alt="Share on Facebook" title="Share on Facebook" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://delicious.com/save?title=The+Best+AspDotNetStorefront+Feature+You%E2%80%99re+Not+Using+%E2%80%93+GoogleBase&amp;url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fthe-most-useful-aspdnsf-feature-you%25e2%2580%2599re-not-using-%25e2%2580%2593-googlebase-feed%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/delicious.png" alt="Bookmark this on Delicious" title="Bookmark this on Delicious" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.dotnetkicks.com/kick/?title=The+Best+AspDotNetStorefront+Feature+You%E2%80%99re+Not+Using+%E2%80%93+GoogleBase&amp;url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fthe-most-useful-aspdnsf-feature-you%25e2%2580%2599re-not-using-%25e2%2580%2593-googlebase-feed%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/dotnetkicks.png" alt="Kick It on DotNetKicks.com" title="Kick It on DotNetKicks.com" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://dotnetshoutout.com/Submit?title=The+Best+AspDotNetStorefront+Feature+You%E2%80%99re+Not+Using+%E2%80%93+GoogleBase&amp;url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fthe-most-useful-aspdnsf-feature-you%25e2%2580%2599re-not-using-%25e2%2580%2593-googlebase-feed%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/dotnetshoutout.png" alt="Shout it" title="Shout it" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fthe-most-useful-aspdnsf-feature-you%25e2%2580%2599re-not-using-%25e2%2580%2593-googlebase-feed%2F&amp;title=The+Best+AspDotNetStorefront+Feature+You%E2%80%99re+Not+Using+%E2%80%93+GoogleBase&amp;summary=&amp;source=" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/linkedin.png" alt="Share on LinkedIn" title="Share on LinkedIn" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.technorati.com/faves?add=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fthe-most-useful-aspdnsf-feature-you%25e2%2580%2599re-not-using-%25e2%2580%2593-googlebase-feed%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/technorati.png" alt="Bookmark this on Technorati" title="Bookmark this on Technorati" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://twitter.com/home?status=Reading+http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fthe-most-useful-aspdnsf-feature-you%25e2%2580%2599re-not-using-%25e2%2580%2593-googlebase-feed%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/twitter.png" alt="Post on Twitter" title="Post on Twitter" /></a>&nbsp;&nbsp;<a class="lightsocial_a" href="http://www.google.com/buzz/post?url=http%3A%2F%2Fblog.vortx.com%2Fgoogle%2Fthe-most-useful-aspdnsf-feature-you%25e2%2580%2599re-not-using-%25e2%2580%2593-googlebase-feed%2F" ><img class="lightsocial_img" src="http://blog.vortx.com/wp-content/plugins/light-social/google_buzz.png" alt="Google Buzz (aka. Google Reader)" title="Google Buzz (aka. Google Reader)" /></a>&nbsp;&nbsp;</div>]]></content:encoded>
			<wfw:commentRss>http://blog.vortx.com/google/the-most-useful-aspdnsf-feature-you%e2%80%99re-not-using-%e2%80%93-googlebase-feed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
