<?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>TKDigital</title>
	<atom:link href="http://www.tkdigital.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tkdigital.com</link>
	<description>The Internet Marketing Site</description>
	<lastBuildDate>Mon, 03 May 2010 20:13:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Get Credit And Backlinks For Your Content</title>
		<link>http://www.tkdigital.com/inbound-links/protect-your-copy-and-get-backlinks/</link>
		<comments>http://www.tkdigital.com/inbound-links/protect-your-copy-and-get-backlinks/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 15:00:20 +0000</pubDate>
		<dc:creator>Tom K</dc:creator>
				<category><![CDATA[Inbound Links]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Tracking]]></category>
		<category><![CDATA[backlinks]]></category>

		<guid isPermaLink="false">http://www.tkdigital.com/?p=13</guid>
		<description><![CDATA[Imagine if you could monitor every time someone copies and pastes something off your site. To make it even better, what if you can insert a backlink when you text is pasted somewhere else. It&#8217;s a great way for attribution, tracking what content is popular, and gaining some inbound links. There is a service called [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter size-full wp-image-15 smcf-link" title="Protect-Copy-Tynt-Tracer-Tynt-Insight" src="http://www.tkdigital.com/wp-content/uploads/2009/11/Protect-Copy-Tynt-Tracer-Tynt-Insight.png" alt="Protect-Copy-Tynt-Tracer-Tynt-Insight" width="390" height="250" /></p>
<p>Imagine if you could monitor every time someone copies and pastes something off your site. To make it even better, what if you can insert a backlink when you text is pasted somewhere else. It&#8217;s a great way for attribution, tracking what content is popular, and gaining some inbound links.</p>
<p>There is a service called Tynt Insight that allows you to do this. It&#8217;s a free service and there is even a slick reporting dashboard. You simply signup, generate your unique bit of JavaScript and insert it into your site.</p>
<p><span id="more-13"></span>Load time is barely impacted since the script is lightweight and Tynt&#8217;s servers have been super quick. There&#8217;s some customizable options offered by Tynt like changing the attribution link, being able to recognize the number of visits generated by these attribution links. You to see the total number of copies for text or images, see what pages on your site are getting copied the most, what words are getting copied the most and heat map overlays . Mike Wong at Tynt Insight is a great guy and Tynt&#8217;s product is jaw dropping.</p>
<p>I have Tynt Insight running on this site. Give it a try by copying and pasting a chunk of text from this site.</p>
<p>To get your own copy, visit <a href="http://www.tynt.com/">http://www.tynt.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.tkdigital.com/inbound-links/protect-your-copy-and-get-backlinks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A Robots.txt File Instructs Search Engines And Bots</title>
		<link>http://www.tkdigital.com/bots/robots-txt-file/</link>
		<comments>http://www.tkdigital.com/bots/robots-txt-file/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 15:00:28 +0000</pubDate>
		<dc:creator>Tom K</dc:creator>
				<category><![CDATA[Bots]]></category>
		<category><![CDATA[user agents]]></category>

		<guid isPermaLink="false">http://www.tkdigital.com/?p=27</guid>
		<description><![CDATA[There are times when you may want to block search engines (or other robots) from including certain directories or files in search engine results. One way to do this is to create a text file called a robots file. You can use Notepad or any other text editor to create the file. If you wanted [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-medium wp-image-28" title="Robots.txt File" src="http://www.tkdigital.com/wp-content/uploads/2009/11/robotsfile-264x300.jpg" alt="Robots.txt File" width="264" height="300" /></p>
<p>There are times when you may want to block search engines (or other robots) from including certain directories or files in search engine results. One way to do this is to create a text file called a robots file. You can use Notepad or any other text editor to create the file.</p>
<p>If you wanted to block robots (like Google, Yahoo, Bing, etc) from everything on your website you can use:</p>
<p>User-agent: *<br />
Disallow: /</p>
<p>Is that it? Yes. Simply copy and past that into a blank text file and upload the file to your top-level directory. You can test it by accessing your robots.txt file @ www.yourdomain.com/robots.txt</p>
<p>When the bots visit your page they will read this file and get instruction.</p>
<p>Below, I&#8217;ve included some other examples of usage:</p>
<p><span id="more-27"></span>If you wanted to give all robots complete access you can use:</p>
<p>User-agent: *<br />
Disallow:</p>
<p>What if you wanted to block all robots from a certain directory or from multiple directories? Use the following in your robots.txt file:</p>
<p>User-agent: *<br />
Disallow: /directory/<br />
Disallow: /directory2/</p>
<p>What if you wanted to block a certain bot? Use the following as your robots.txt file:</p>
<p>User-agent: Bot<br />
Disallow: /</p>
<p>Alternatively, you can allow only a certain bot by using the following:</p>
<p>User-agent: Google<br />
Disallow:</p>
<p>What if you don&#8217;t know the &#8220;user-agent&#8221; name for the bot? I typically rely on a list like the one found at <a title="User Agents For Robots.txt" href="http://www.user-agents.org/" target="_blank">User-Agents.org</a></p>
<p>All though this method is definitely not foolproof, using the robots.txt file is a good way to communicate with bots. If there is an extremely sensitive directory you should make that directory password protected.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tkdigital.com/bots/robots-txt-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Better Tracking In Google Analytics With Custom URLs</title>
		<link>http://www.tkdigital.com/tracking/tagging-your-url-google-analytics-tool-builder/</link>
		<comments>http://www.tkdigital.com/tracking/tagging-your-url-google-analytics-tool-builder/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 15:00:20 +0000</pubDate>
		<dc:creator>Tom K</dc:creator>
				<category><![CDATA[Tracking]]></category>
		<category><![CDATA[google analytics]]></category>

		<guid isPermaLink="false">http://www.tkdigital.com/?p=31</guid>
		<description><![CDATA[Google Analytics is hands down one of the most popular free analytics  platforms.  It is used by large sites as well as personal blogs. There is a ton of information provided in the reports that Google Analytics generates and since the reports are customizable you can slice and dice the information any way you see [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-46" title="IdentifySourceOfVisitor" src="http://www.tkdigital.com/wp-content/uploads/2009/11/IdentifySourceOfVisitor1.jpg" alt="IdentifySourceOfVisitor" width="442" height="271" /></p>
<p>Google Analytics is hands down one of the most popular free analytics  platforms.  It is used by large sites as well as personal blogs.</p>
<p>There is a ton of information provided in the reports that Google Analytics generates and since the reports are customizable you can slice and dice the information any way you see fit.</p>
<p>Google Analytics helps you identify where visitors are coming from, how long they stay on your site, which products are selling, which keywords lead to the highest conversion rates, which pages are most popular, and so on. I will have plenty of posts in the future discussing Google Analytics (including some advanced tweaks), but in this post I&#8217;d like to discuss the  &#8221;Traffic Sources&#8221; sources portion in Google Analytics. In particular, how to include information into your URLs to help you and Google Analytics identify a source of traffic.</p>
<p><span id="more-31"></span>A good example of why Google Analytics needs your help with identifying a source of traffic is when a newsletter has been sent out. Let&#8217;s assume that in your newsletter is a link back to your homepage.</p>
<p>When a reader clicks this link, Google Analytics usually will just count the visit as a referral and your visitor&#8217;s email service as the referrer.  This visit will be displayed in Google Analytics with something like this: webmail.aol.com / referral.</p>
<p>But what if you send out a number of newsletters a month? Shouldn&#8217;t you be able to tell the different between visits coming from one email vs another? Without this type of info, it would be hard to optimize your email campaigns.</p>
<p>This is where Google’s URL Builder tool comes into play. This tool will help you generate URLs that you can include in newsletters, press releases or anywhere you would like to pass more information regarding the visitor&#8217;s source.</p>
<p>The tool is pretty straightforward. You can find it here: <a href="http://www.google.com/support/googleanalytics/bin/answer.py?hl=en&amp;answer=55578">http://www.google.com/support/googleanalytics/bin/answer.py?hl=en&amp;answer=55578</a> or you can Google &#8220;url builder&#8221;.</p>
<p>If you wanted to send traffic from your newsletter, press release, etc to your homepage you would enter your website address into the field labeled &#8220;Website URL&#8221;. Next, enter a &#8220;campaign source&#8221; (newsletter, or bing, etc), &#8220;campaign medium&#8221; (email, or cpc, etc),  &#8221;campaign name&#8221; (winter2009, etc) and click &#8220;Generate URL&#8221;. Now you can use your new custom URL in your campaigns and the info will be associated with the visit.</p>
<p>You will now be able to find visit information in Google Analytics under Traffic Sources &#8211;&gt; Campaigns.</p>
<p>This is a great way to tag cpc campaigns for Yahoo, Bing, Facebook, and others.</p>
<p>Note: Assuming you have Adwords auto-tagging enabled and your Analytics account properly linked, data from Google Adwords is automatically included in your Analytics reports.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tkdigital.com/tracking/tagging-your-url-google-analytics-tool-builder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Choosing A Web Host &#8211; Dedicated, VPS, Shared or Cloud</title>
		<link>http://www.tkdigital.com/web-hosts/choosing-a-web-host/</link>
		<comments>http://www.tkdigital.com/web-hosts/choosing-a-web-host/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 15:00:11 +0000</pubDate>
		<dc:creator>Tom K</dc:creator>
				<category><![CDATA[Web Hosts]]></category>
		<category><![CDATA[web hosting]]></category>

		<guid isPermaLink="false">http://www.tkdigital.com/?p=39</guid>
		<description><![CDATA[What is a web hosting service? How do I choose one? Some people at Wikipedia have said: A web hosting service is a type of Internet hosting service that allows individuals and organizations to make their own website accessible via the World Wide Web. Web hosts are companies that provide space on a serverthey own [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-40" title="WebHost-WebServer" src="http://www.tkdigital.com/wp-content/uploads/2009/11/WebHost-WebServer.jpg" alt="WebHost-WebServer" width="400" height="300" /></p>
<p>What is a web hosting service? How do I choose one?</p>
<p>Some people at Wikipedia have said:</p>
<blockquote><p>A web hosting service is a type of Internet hosting service that allows individuals and organizations to make their own website accessible via the World Wide Web. Web hosts are companies that provide space on a serverthey own or lease for use by their clients as well as providing Internet connectivity, typically in a data center.</p></blockquote>
<p>Basically, a host is a computer where your webpages, images, video, etc are located. When a person types into their web browser http://www.yourcompany.com. Their computer contacts your website and says &#8220;hello, would you like to show me anything&#8221; and your web host responds immediately with &#8220;Yes, you&#8217;ve come to the right place and I know what you are looking for&#8230;here it is&#8221; and sends the information (webpage, images, etc) over to their computer where their browser displays everything the way you intended it to be displayed.</p>
<p>There are different types of web hosts. Some hosting services handle almost everything for you, some you are almost entirely on your own, some are powerful, and some are extremely inexpensive. I will cover some of the most common choices:</p>
<p><span id="more-39"></span>Shared Hosting<br />
With a shared host the price is typically the lowest and your &#8220;site&#8221; is on a computer with MANY (possibly 1000&#8242;s) of other sites.  The two most popular are HostGator and Bluehost.</p>
<p>Bluehost is the best shared host in my opinion. It is super cheap, has great customer service, will handle decent traffic, and gives you unlimited storage and bandwidth, allows you to host unlimited domains, gives you SSH access, and an extensive amount of optional scripts and ecommerce options. To me, this is the best choice for small to medium sites. It&#8217;s only like 4$ a month when you click on a coupon like this!</p>
<p>Once you outgrow the site (database issues, slow response time, etc) then you need to consider a VPS (virtual private server) or a dedicated server.</p>
<p>A good VPS service (like SliceHost) gives you root access so you can really get into the your hands into the system on fast machines, is completely scalable, has no contract and no setup fees. I like slicehost because of the price and performance. Also: Take a look at some of the tutorials available at articles.slicehost.com. The articles, mostly provided by “PickledOnion” are unmatched in their ease of reading, and thoroughness. If you have questions about setting up mySQL, Postfix, Apache, Nginx (basically anything you can thing of) it&#8217;s there. I highly recommend this company and those tutorials.</p>
<p>Dedicated.Rackspace</p>
<p>If you have outgrown your VPS, the next logical step is a dedicated server (you are the only one running processes, etc on the system) and Rackspace or The Planet are both great choices. Visit their site for more info.</p>
<p>Cloud<br />
People pay for what they use versus what they can use. Cloud hosting is gaining popularity and revolves around load balancing. It seems like someone new is entering the cloud market everyday.</p>
<p>If you have any questions or comments, please leave them! I will try my best to answer them and I am sure others have some insight as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tkdigital.com/web-hosts/choosing-a-web-host/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search Craigslists</title>
		<link>http://www.tkdigital.com/finding-work/search-all-craigslist-sites-at-once/</link>
		<comments>http://www.tkdigital.com/finding-work/search-all-craigslist-sites-at-once/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 15:00:52 +0000</pubDate>
		<dc:creator>Tom K</dc:creator>
				<category><![CDATA[Finding Work]]></category>
		<category><![CDATA[craigslist]]></category>
		<category><![CDATA[jobs]]></category>

		<guid isPermaLink="false">http://www.tkdigital.com/?p=49</guid>
		<description><![CDATA[It&#8217;s pretty well known that Craigslist is one of the most popular sites in the world and many of the top companies in the world as well as small businesses post their job announcements in the Jobs categories. It&#8217;s easy. You visit craigslist.org and either search in the &#8220;Jobs&#8221; category or in one of the [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-51" title="craigslist-logo" src="http://www.tkdigital.com/wp-content/uploads/2009/11/craigslist-logo.png" alt="craigslist-logo" width="278" height="95" /></p>
<p>It&#8217;s pretty well known that Craigslist is one of the most popular sites in the world and many of the top companies in the world as well as small businesses post their job announcements in the Jobs categories.</p>
<p>It&#8217;s easy. You visit craigslist.org and either search in the &#8220;Jobs&#8221; category or in one of the subcategories.</p>
<p>But what happens when you close the window? What if you didn&#8217;t enter the right search term? What if your dream job was posted in another state and allowed telecommuting? Simple, you&#8217;ll miss the opportunity.</p>
<p><span id="more-49"></span>A trick I learned early on was to use the Craigslist RSS feeds to keep me updated on all the opportunities available for my industry. I know that each person probably has his or her own way and I invite people to share their tips/tricks to help other readers, but below I will explain how I do this.</p>
<p>First, I visit a site called crazedlist.org. I like this site because here you can search as many craigslist sites as you want with one search box and the best part is you can generate an RSS feed of the results.</p>
<p>Next, I import the newly generated feed into an RSS feed reader. I personally use WhizRSS Feed Reader for those who are curious.</p>
<p>Lastly, just click on one of the search feeds in WhizRSS and voila! The newest opportunities are displayed (I typically have WhizRSS feed reader in the left column of my browser window so I can work on other things and occasionally glance and react to any new opportunities.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tkdigital.com/finding-work/search-all-craigslist-sites-at-once/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Visualize Website Relationships &#8211; Touchgraph</title>
		<link>http://www.tkdigital.com/tools/visualize-website-relationships-research-a-niche-touchgraph/</link>
		<comments>http://www.tkdigital.com/tools/visualize-website-relationships-research-a-niche-touchgraph/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 15:00:13 +0000</pubDate>
		<dc:creator>Tom K</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[backlinks]]></category>
		<category><![CDATA[research]]></category>

		<guid isPermaLink="false">http://www.tkdigital.com/?p=55</guid>
		<description><![CDATA[One of my favorite applications on the web is a free Java application called TouchGraph Google Browser. I use it to help in everything from finding inbound link opportunities to planning a linkwheel strategy and even helps with reputation management projects. There are a couple tools available on the TouchGraph site, but the one I use [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter size-full wp-image-138" title="TouchGraph Browser" src="http://www.tkdigital.com/wp-content/uploads/2009/11/touchgraph1.png" alt="TouchGraph Browser" width="432" height="305" /></p>
<p style="text-align: left;">One of my favorite applications on the web is a free Java application called TouchGraph Google Browser. I use it to help in everything from finding inbound link opportunities to planning a linkwheel strategy and even helps with reputation management projects.</p>
<p>There are a couple tools available on the TouchGraph site, but the one I use is the free TouchGraph Google Browser tool and you can find it here: <a href="http://www.touchgraph.com/TGGoogleBrowser.html">http://www.touchgraph.com/TGGoogleBrowser.html</a></p>
<p><span id="more-55"></span>You can type a keyword or website into the search bar and this free Java application will build a graph of related sites. It uses Google&#8217;s database of related websites to generate the graphs, but it&#8217;s the presentation of that information that keeps me coming back.</p>
<p>The image above is an example of running the application for the keyword &#8220;golf&#8221;. I really recommend you visit the site and give it a try. It&#8217;s free &#8211; you&#8217;ve got nothing to lose! Again, you can type in a keyword, phrase, or site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tkdigital.com/tools/visualize-website-relationships-research-a-niche-touchgraph/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
