<rss version="2.0">	
  <channel>
    <title>Tom Wilson's web Spot</title>
    <link>http://tommwilson.com/web/</link>
    <description>Tom Wilson's web.</description>
    <language>en-us</language>
    <pubDate>Wed, 19 Jul 2006 08:00:00 EST</pubDate>
    <lastBuildDate>Wed, 19 Jul 2006 08:00:00 EST</lastBuildDate>
    <docs>http://tommwilson.com/web/rss.xml</docs>
    <managingEditor>tmwilson1@wisc.edu</managingEditor>
    <webMaster>tmwilson1@wisc.edu</webMaster>
	

		<item>
		  <title>Local Targeting With Adsense</title>
		  <link>http://tommwilson.com/web/local-targeting-with-adsense.php</link>
		  <pubDate>Tue, 02 Oct 2007 01:20:05 EST</pubDate>
		  <description>
				<![CDATA[<p>I've been doing some research and I've been thinking about ways to increase the payout of my currently running Adsense Ads.  If you go to the <a href="https://adwords.google.com/select/KeywordToolExternal">Google Keyword Tool</a>, you can check how much advertisers are paying to have certain keywords displayed.  If you type in the name of a relatively large city, you can find that some of the top keywords associated with that city are: real estate, hotels, </p>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/local-targeting-with-adsense.php</guid>
		
		
	  </item>
		<item>
		  <title>Product SEO: beating Amazon</title>
		  <link>http://tommwilson.com/web/product-seo-beating-amazon.php</link>
		  <pubDate>Mon, 10 Sep 2007 01:49:07 EST</pubDate>
		  <description>
				<![CDATA[<p>Product SEO is optimizing a page that is dedicated to a specific product. When a searcher searches for a product, your page lands within the top placements, so visitors can land.  It is incredibly valuable to rank high for a product's title because the searcher is seeking out information on that product, and if you have it, you have a very good chance of selling the product or referring them to where they can buy it to gain a nice commission.</p>

<p>The website that is dominating Product SEO is currently Amazon with it's tremendous database of products, it's loyal users, and its great trust with Google.  I will explore the ways that Amazon got to the top, to give you a better idea on how to beat out Amazon, or at least come a close second.</p>


<h2>Amazon Affiliate Program</h2>
<p>The Amazon Affiliate Program gives web publishers a change to gain a commission every time the publisher sends traffic to amazon.  A publisher can write a review about a book, and then give a link to that book, and if a visitors visits the Amazon Affiliate link and purchases a product, the web publisher will get a 4% commission on ALL items purchased, not just the product referred.  For Amazon, they generate traffic to their site, and convert that traffic into purchases.  But what it also does is generates a backlinks to the Amazon product page.  The page with the backlink usually has descriptive text about the book, and the anchor text of the link is generally the title of the book.  This ranks has heavy link juice for Amazon.  Since Amazon has millions of targeted links pointing to a specific product page, that page usually shows up very high in search results, good for amazon, bad for you.</p>

<h2>Quality Content</h2>
<p>The best way to rank higher in search results is to do SEO.  It might be hard to beat out Amazon for the number 1 spot on Google, but coming in a close second doesn't hurt.  Considering the run down, taken from <a href="http://seoblackhat.com/2006/08/11/tool-clicks-by-rank-in-google-yahoo-msn/">Worth To Rank in Google</a> <br />
Ranking Number 1 receives 42.1 percent of click through.<br />
Ranking Number 2 receives 11.9 percent of click through.<br />
Ranking Number 3 receives 8.5 percent of click through.<br />
The next step is getting high quality backlinks to your site.  There are many ways to create link-bait, but the best possibly way is to create solid content that other bloggers or web publishers think is worthy enough to link to.  This can come in the form of product reviews, descriptions, photos, taking videos of the product and showing it in use.  Amazon offers the option for it's users to review products on their site.
</p>

<h2>Google Product Base</h2>
<p>One way to beat out Amazon is to embrace the Google Product Base.  When a specific product is searched for in Google, and the product is found in it's base, supplementary results usually show up in Google's Search Results at the number one spot. Example, [<a href="http://www.google.com/search?q=nord+electro+2">Nord Electro 2</a>].  The product is also displayed with the price, and what site the product is hosted on.  Of course,  you will need to be selling the product to take advantage of this, but it is a simple way to get ahead of Amazon.</p>

<h2>Amazon Reviews</h2>
<p>Amazon allows users to write product reviews and give their opinions.  This helps amazon immensely.  It creates unique user generated content for them that is always getting refreshed my users adding in new reviews, Google loves this.  It also increases the relevancy of the page, many times people love reading reviews on a product and getting opinions before they dive into buying a product.  This is where you come in, let users write reviews on your site to begin with to start generating comments, but also create your own reviews on Amazon with a link pointing back to your site's product page.  This will give your site some link juice, and show people looking at the product page that you know what your talking about, in case they visit your site in the future.</p>

<h2>Amazon URL's and Title</h2>
<p>Take a look at Amazon Titles and their url for a specific product page.  It has the name of the product in both the title, and the url, as well as the product's name embedded within the content of the page numerous times.  This helps google trigger what the page is about and meant to rank for.  It is a basic SEO tip that Amazon uses to it's advantage, and so should you.</p>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/product-seo-beating-amazon.php</guid>
		
		
	 </item>
		<item>
		  <title>AJAX No Form Submit On Enter</title>
		  <link>http://tommwilson.com/web/ajax-no-form-submit-on-enter.php</link>
		  <pubDate>Thu, 09 Aug 2007 00:29:43 EST</pubDate>
		  <description>
				<![CDATA[<p>For an AJAX application I am currently making, I need to check if a user presses enter when typing into an input text field.  Usually when enter is pressed, the form is automatically submitted and the page is refreshed.  However, when building an AJAX application, the point is to not have page refreshed, and instead to have the enter trigger the AJAX trigger to process the request.</p>

<p>I searched through the web to try and find something that could help me out but couldn't find anything, so decided to write this post in hopes to help other that have the same problem, and since AJAX is turning into the norm on alot of websites lately, this could save people alot of time.</p>

<p>So, the solution.. It's pretty easy actually...<br />
In the form tag, just enter</p>
<blockquote> onsubmit="return false;"  </blockquote>

<p>This way, when the form is trying to submit and refresh, the form returns false and doesn't. </p>

<p> Now that gets you through stage one.  Now you have to check weather a key that is pressed is the enter key, and if it is the enter key, you need to trigger the AJAX function to work.  Here is the enter key form...</p>

<blockquote>function enter_pressed(e){<br/>
        var keycode;<br />
        if (window.event) keycode = window.event.keyCode; <br />
        else if (e) keycode = e.which; <br />
        else return false; <br />
        return (keycode == 13); <br />
}</blockquote>

<p>This checks every keypress that is done on a text input, and checks if enter is pressed.  Ok, so now that we know if enter is pressed, we need to trigger the AJAX funciton, here we go...</p>

<blockquote>onKeyPress="if(enter_pressed(event)){ search_results('amazon')  }"</blockquote>

<p>So we check all key presses, and if our enter_pressed returns true, we trigger the search AJAX function which is search_results.  Pretty neat eh?</p>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/ajax-no-form-submit-on-enter.php</guid>
		
		
	 </item>
		<item>
		  <title>Money in Blogging About Money</title>
		  <link>http://tommwilson.com/web/money-in-blogging-about-money.php</link>
		  <pubDate>Wed, 08 Aug 2007 00:13:02 EST</pubDate>
		  <description>
				<![CDATA[<p>Here, Here, come one come all, get rich quick online from your house, it's free, it's easy and you can be making [insert huge amount] in no time!</p>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/money-in-blogging-about-money.php</guid>
		
		
	 </item>
		<item>
		  <title>Yslow Performance Grades Alexa Top 10</title>
		  <link>http://tommwilson.com/web/yslow-performance-grades-alexa-top-10.php</link>
		  <pubDate>Fri, 03 Aug 2007 00:03:42 EST</pubDate>
		  <description>
				<![CDATA[<p>Yahoo has come out with a new firefox add-on called <a href="http://developer.yahoo.com/yslow/">YSlow</a>.  Yslow gives 13 <a href ="http://developer.yahoo.com/performance/index.html#rules" title="Rules for High Performance Web Sites">Rules for High Performance Web Sites</a> and analyzes those 13 aspects on your site, giving you a letter grade for each of the rules, and possible ways you can fix the problem to ensure your high trafficked server is performing up to par.  The add-on integrates with the firefox firebug add-on, and helps debug possible points of slowdown on a web server.  The 13 benchmarks are listed here.. </p>


<ol>
   <li>Make fewer HTTP requests</li>
  <li>Use a CDN</li>
<li>Add an Expires header</li>
<li>Gzip components</li>
<li>Put CSS at the top</li>
<li>Move scripts to the bottom</li>
<li>Avoid CSS expressions</li>
<li>Make JS and CSS external</li>
<li>Reduce DNS lookups</li>
<li>Minify JS</li>
<li>Avoid redirects</li>
<li>Remove duplicate scripts</li>
<li>Configure ETags</li>
</ol>

<p>Alright, so what performance grade does Yslow give most trafficked sites?  Lets take a look at Alexa's top ten most visited sites and see how they hold up to YSlow's performance check.</p>

<table width="95%" cellspacing="0" cellpadding="2">
<tr><th colspan="15">YSlow Performance Grade on Alexa Top 10 Websites</th></tr>
<tr>
   <th>Site</th>
   <th>Grade</th>
   <th>1</th>
   <th>2</th>
   <th>3</th>
   <th>4</th>
   <th>5</th>
   <th>6</th>
   <th>7</th>
   <th>8</th>
   <th>9</th>
  <th>10</th>
<th>11</th>
<th>12</th>
<th>13</th>
</tr>
<tr>
   <td>#1 <a href="http://yahoo.com">Yahoo</a></td>
   <td>A (92)</td>
   <td>C</td>
   <td>A</td>
   <td>B</td>
   <td>A</td>
   <td>B</td>
   <td>A</td>
   <td>A</td>
   <td>n/a</td>
   <td>B</td>
   <td>A</td>
   <td>A</td>
   <td>A</td>
   <td>A</td>
</tr>
<tr>
   <td>#2 <a href="http://msn.com">MSN</a></td>
   <td>F (42)</td>
   <td>F</td>
   <td>F</td>
   <td>F</td>
   <td>F</td>
   <td>B</td>
   <td>A</td>
   <td>A</td>
   <td>n/a</td>
   <td>F</td>
   <td>A</td>
   <td>D</td>
   <td>A</td>
   <td>F</td>
</tr>
<tr>
   <td>#3 <a href="http://google.com">Google</a></td>
   <td>A (99)</td>
   <td>A</td>
   <td>A</td>
   <td>A</td>
   <td>A</td>
   <td>A</td>
   <td>A</td>
   <td>A</td>
   <td>n/a</td>
   <td>A</td>
   <td>A</td>
   <td>A</td>
   <td>A</td>
   <td>A</td>
</tr>
<tr>
   <td>#4 <a href="http://youtube.com">Youtube</a></td>
   <td>D (64)</td>
   <td>C</td>
   <td>F</td>
   <td>F</td>
   <td>A</td>
   <td>A</td>
   <td>D</td>
   <td>A</td>
   <td>n/a</td>
   <td>A</td>
   <td>A</td>
   <td>A</td>
   <td>A</td>
   <td>F</td>
</tr>
<tr>
   <td>#5 <a href="http://live.com">Windows Live</a></td>
   <td>B (85)</td>
   <td>A</td>
   <td>F</td>
   <td>B</td>
   <td>B</td>
   <td>A</td>
   <td>A</td>
   <td>A</td>
   <td>n/a</td>
   <td>A</td>
   <td>A</td>
   <td>A</td>
   <td>A</td>
   <td>F</td>
</tr>
<tr>
   <td>#6 <a href="http://myspace.com">MySpace</a></td>
   <td>D (62)</td>
   <td>B</td>
   <td>F</td>
   <td>F</td>
   <td>A</td>
   <td>B</td>
   <td>A</td>
   <td>A</td>
   <td>n/a</td>
   <td>D</td>
   <td>C</td>
   <td>A</td>
   <td>A</td>
   <td>F</td>
</tr>
<tr>
   <td>#7 <a href="http://Baidu.com">Baidu.com</a></td>
    <td>A (97)</td>
  <td>A</td>
   <td>B</td>
   <td>A</td>
   <td>A</td>
   <td>A</td>
   <td>A</td>
   <td>A</td>
   <td>n/a</td>
   <td>A</td>
   <td>A</td>
   <td>A</td>
   <td>A</td>
   <td>C</td>
</tr>
<tr>
   <td>#8 <a href="http://Orkut.com">Orkut</a></td>
   <td>B (89)</td>
   <td>A</td>
   <td>F</td>
   <td>A</td>
   <td>A</td>
   <td>A</td>
   <td>A</td>
   <td>A</td>
   <td>n/a</td>
   <td>C</td>
   <td>A</td>
   <td>A</td>
   <td>A</td>
   <td>A</td>
</tr>

<tr>
   <td>#9 <a href="http://wikipedia.com">Wikipedia</a></td>
   <td>D (66)</td>
   <td>A</td>
   <td>F</td>
   <td>F</td>
   <td>C</td>
   <td>B</td>
   <td>A</td>
   <td>A</td>
   <td>n/a</td>
   <td>A</td>
   <td>A</td>
   <td>A</td>
   <td>A</td>
   <td>F</td>
</tr>
<tr>
   <td>#10 <a href="http://qq.com">qq.com</a></td>
   <td>?</td>
    <td>?</td>
  <td>?</td>
   <td>?</td>
   <td>?</td>
   <td>?</td>
   <td>?</td>
   <td>?</td>
   <td>?</td>
   <td>?</td>
   <td>?</td>
   <td>?</td>
   <td>?</td>
   <td>?</td>
</tr>
</table>

<p>Some pretty cool results, what is really surprising is MSN getting a 42 or an equivalent of an F.  But what is not surprising is Google clocking in a 99, don't you always hate the kid in class who gets a 100% on everything? Not saying that I hate google, maybe just a bit jealous.  Some other low rankers were myspace, no surprise, and wikipedia.  Very cool tool by YSlow, I already started to optimize this site, and have configured my site to my get a grade of 88 on some pages, which used to be around 54.</p>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/yslow-performance-grades-alexa-top-10.php</guid>
		
		
	 </item>
		<item>
		  <title>GoDaddy VPS Memory Upgrade</title>
		  <link>http://tommwilson.com/web/godaddy-vps-memory-upgrade.php</link>
		  <pubDate>Fri, 03 Aug 2007 07:40:31 EST</pubDate>
		  <description>
				<![CDATA[<p>Here is a recent conversation with the GoDaddy Support team.  My questions was asking how I would be able to upgrade memory on my machine, since currently I am running 256MB, and when I run a memory bash script on my server, it is telling me that my VPS is using 560 MB of ram, which is 215% of my quota.  Unfortunately, if I would like to upgrade memory, I am going to have to move to an entirely new server, and pay $15 a month for an upgrade of 256MB.  Thats not the greatest deal I've ever heard of, since it was a pain in the first place setting up the server and getting all software like PHP and MySQL upgraded, and then getting all the domain names and name servers set up correctly.  Plus if I run into the same problem of memory load, and want to upgrade in the future, I will be experted to do the same.  I am thinking about getting a dedicated server just so I won't have to worry about CPU problems for a while, but the price is pretty steep at $80, which is alow more than my economical VPS  which is only costing me $25.</p>

<p>Here is my conversation with the GoDaddy support team, which took about 2 hours to respond, so if you find this post by Google, hopefully it saved you some time instead of having to talk to the Godaddy Support team.</p>

<p>Customer Inquiry<br/><br />

I need to upgrade my memory for the VPS machine. Please inform me on the necessary steps I need to take to get this done.<br/><br />

Thanks,<br/><br />

Tom<br/>
TMWilson1@wisc.edu</p>

<p>Dear Tom,<br/><br />

Thank you for contacting Online Support. Unfortunately, you cannot upgrade the memory on your existing virtual dedicated server. You will have to purchase a new virtual dedicated server with RAM accelerator, and cancel the existing server after you have a backup.<br/><br />

Please let us know if we can help you in any other way.<br/><br />

Sincerely,<br/>
Server Support</p>


<p>What does the crowd say about that? BOOOOO</p>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/godaddy-vps-memory-upgrade.php</guid>
		
		
	 </item>
		<item>
		  <title>Godaddy VPS Server Load Problem</title>
		  <link>http://tommwilson.com/web/godaddy-vps-server-load-problem.php</link>
		  <pubDate>Thu, 02 Aug 2007 09:30:03 EST</pubDate>
		  <description>
				<![CDATA[<p>Well my site's been having some trouble lately, and I can figure out whats wrong.  Either if I'm getting too much traffic and my VPS server can't hold it or what.  I've show back and forth 8 e-mail to the GoDaddy VPS Support group and they have not really been helpful at all.  This is one of their e-mails they sent me.  WARNING AND HELPFUL HINT: if you have a problem, call their customer support, they are 100 times more likely to help you out and give you constructive information you can actually used, compared to their e-mail customer support.</p>

<p>Dear Tom,<br /><br />

<p>Thank you for contacting Godaddy VPS Server Support. After further review of your issue we have determined that there is now a known issue with the physical network between our servers and different parts of the world. Unfortunately this is not an issue we have an ETA for, given that is is off of our networks and out of our hands. This could very well be accounting for all of your current problems accessing your website.</p>

<p>So I guess the internet is going down, just like CNN predicted.  But wait, I asked them another question about a nameserver being set up correctly, this is what they responded with, note that Godaddy tried to sell me their Server Maintinence plan, awesome.</p>

<p>Thank you for contacting Server Support. Please note that your request falls outside our realm of support, as the virtual dedicated/dedicated server in your account is currently on our unmanaged support policy. These servers are sold with the understanding that the client will be able to administer their own server, which includes configuration of security and applications of the server. If you do not have server administration experience, it is strongly recommended that you hire a server administrator or purchase an assisted service plan.</p>

<p>However, we currently offer a paid-for support service for our Virtual and Dedicated Server customers who need help beyond what we can offer through a general call or support ticket. This service is intended for customers that can maintain their server but are struggling with a task and would prefer for us to assist them with resolving the issue.

<p>It is $75 for the first 30 minutes. If you find you will want to utilize this service please reply with the details of the task you will need assistance with so that we may accurately reply with a quote for the estimated time to fix the problem.</p>

<pre>Services available include:

* Advanced technical support for system problems, such as server availability and other network or system related issues
* Version upgrades and advanced troubleshooting on Plesk, Apache, Qmail and others
* Database assistance, such as data import/export
* Installation of GoDaddy SSL certificates (Blue Razor and Private Label will also apply)
* Setup of Plesk, Simple Control Panel and cPanel Domains and DNS
* Setup of your Hosting account
* Product and Environment Q&A, including versions, limitations and restrictions
* Walk-through for the Getting Started Guide
* Password Checks</pre>

<pre>Services NOT available include:

* Direct phone access for advanced hosting support
* Installation of 3rd party software and scripts
* Migrations from other servers and 3rd parties
* Backups/Restores
* OS Hardening
* IP Tables Configuration
* Custom scripting or code development </pre>


<p>Boo to you GoDaddy VPS server!  You worked so well!</p>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/godaddy-vps-server-load-problem.php</guid>
		
		
	 </item>
		<item>
		  <title>blogging money thebillivard.com</title>
		  <link>http://tommwilson.com/web/blogging-money-thebillivard.com.php</link>
		  <pubDate>Wed, 01 Aug 2007 00:01:51 EST</pubDate>
		  <description>
				<![CDATA[<p>I am pondering the thought of switching the web section on this blog into a separate site based on making money through SEO techniques.  This will narrow down my niche, and hopefully create a site where I can gain some readership, and start promoting a marketable site, not that Tom M Wilson.com isn't marketable.</p>

<p>Before I jump in and create the site though, I want to research keywords to target.  I entered the obvious keyword in <a href="http://inventory.overture.com/d/searchinventory/suggestion/">Overture's Inventory Keyword Tool</a>, "Money" and here are some of the results that I received...</p>
<ul>
<li>621419 	 money</li>
<li>322519 	 money market savings account</li>
<li>105016 	 make money</li>
<li>44151 	 make money online</li>
<li>42983 	 free money</li>
<li>40525 	 auction coin money paper</li>
<li>40441 	 <strong>blogging money thebillivard.com</strong></li>
<li>38303 	 <strong>money site thebillivard.com web</strong></li>
<li>33457 	 cnn money</li>
<li>32596 	 making money program thebillivard.com</li>
<li>31532 	 money in the bank</li>
<li>30735 	 unclaimed money</li>
</ul>

<p>What was interesting was seeing the phrase ["<a href="http://www.google.com/search?q=blogging+money+thebillivard.com">blogging money thebillivard.com</a>"] searched for 40441 in the month of January.  I don't know if this is an error from the keyword tool, but I can't see to fathom how that many people could search for "blogging money thebillivard.com".  If anyone has any ideas, please enlighten me.</p>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/blogging-money-thebillivard.com.php</guid>
		
		
	 </item>
		<item>
		  <title>I need money now</title>
		  <link>http://tommwilson.com/web/i-need-money-now.php</link>
		  <pubDate>Tue, 31 Jul 2007 03:58:50 EST</pubDate>
		  <description>
				<![CDATA[<p><strong>UPDATE:</strong><br/>I am now accepting applications for content generators.  I am creating a portfolio of sites based our high paying targeted niches.  I will walk you through exactly how to tap into a high paying niche and start making serious cash.  To apply, please <a href="/contact.php">Contact Me</a> and give a quick summary of a high paying topic you can write about.</p>

<p>Do you really need money now?  According to Yahoo's Overture Traffic Estimator, 700 people searched for the term <strong>"I need money now"</strong> in the month of January.  I checked out the google search query for [<a href="http://www.google.com/search?q=I+need+money+now">I need money now</a>] and found out that most of the results were for make money instantly scams, no surprise.</p>

<p>The internet has ample opportunity for anyone to easily start making money online.  It's as easy as setting up a blog and writing interesting posts that engage visitors.  Pick an interest, and start writing about it, the more expensive that interest, the better.  Do you like plasma screen TV's?  Create a blog that reviews plasma screen TV's and sign up for affiliate programs that direct your visitors to where they can purchase a plasma screen TV.  Websites usually give you 5% commission of visitors you send them.  5% of a plasma screen TV can easily solve your money issues.</p>

<p>I checked out the price of the "I need money now" keyword using the <a href="https://adwords.google.com/select/KeywordTool">Google Adwords Keyword Tool</a> and found out that advertisers are paying around the $8.00 range to have their ad displayed in search results and on a page for the term, need money now.  Now if 700 people a month are searching the phrase I need money, and I rank #1 for that phrase, lets say 500 a month visit my site.  Of those 500, say 50 click an ad, with Google taking approximately 30% of the cut, that leaves me with $5.60 a click, and times that by 50 clicks equates to $280 a month.</p>

<p>Ok, Ok, so what I'm basically doing is creating a page dedicated to the phrase I need money now, and embedding it into the title, the url, and placing the keyword phrase, I need money now, inside the text of the article so that Google Adsense will deliver the high paying ads for needing money now!</p>

<p>You can do it too, all you need to do is start a blog and target some keywords that pay a lot, do a google search for [<a href="http://www.google.com/search?q=top+paying+keywords">top paying keywords</a>].  Make sure that your page is search engine optimized, then you can generate free traffic to your blog, and have visitors read your post, and hopefully click on a relevant ad that is displayed by Google Adsense.  That is my advice is  you really need money now!</p>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/i-need-money-now.php</guid>
		
		
	 </item>
		<item>
		  <title>DoFollow Keyword AJAX Search</title>
		  <link>http://tommwilson.com/web/dofollow-keyword-ajax-search.php</link>
		  <pubDate>Tue, 31 Jul 2007 01:58:59 EST</pubDate>
		  <description>
				<![CDATA[<p>With blog plugin's popping up everywhere to fix link comments with rel="nofollow", a new standard of DoFollow comments are appearing throughout the web.  DoFollow links allows users commenting on a blog to have more link juice by stripping the rel="nofollow" tag and allowing page rank to flow to their homepage.  This gives website visitors more incentive to comment on a blog, and to generate meaningful content, since they will receive a reciprocal link for their commenting efforts.</p>

<p>With so many sites popping up, I decided to create a DoFollow Keyword AJAX Search tool.  The idea is to use the google custom search engine to search only sites that have DoFollow.  You can then search only websites with DoFollow enabled your targeted keyword and then comment on those posts to receive a link back to your site.  Pretty cool eh?</p>


<h2>DoFollow Site Search</h2>
<div id="searchcontrol"></div>

<h2>DoFollow Search Example</h2>

<p>Here is an example, say you own a travel blog, and you are targeting a specific keyword, "Florida Vacations".  All you have to do is search for "Florida Vacations" and blog posts which have DoFollow links on them will show up, you can then write an informative comment on their blog, and receive a link back to any page of your website, with correct anchor text.</p>

<p>If you would like your site added to the DoFollow Keyword Search, leave a comment with a link to your blog, and  I will add it as soon as I can.  Also, if you stumble upon a site that does not have doFollow enabled, contact me right away so I can take them off the DoFollow search list.</p>



<script src="http://www.google.com/uds/api?file=uds.js&v=1.0&source=uds-bbw&key=ABQIAAAAczT81E_5ZTX16BYLarA5rRT5rJeW0njIOab7pgGoaTr31Gtr8hRwx8mR-3kHArBLPfdm-0UoIOzEOA"
    type="text/javascript"></script>
  <style type="text/css">
    @import url("http://www.google.com/uds/css/gsearch.css");
  </style>

<style type="text/css">
.gsc-control {width:650px;}
</style>


<script type="text/javascript">
    function LoadBookBar() {
    var searchControl = new GSearchControl();
    
    searchControl.setResultSetSize(GSearch.LARGE_RESULTSET);
    var siteSearch = new GwebSearch();
    searchControl.addSearcher(siteSearch);
    siteSearch.setSiteRestriction("006772264896740971025:np6qqem4fqq");
   searchControl.draw(document.getElementById("searchcontrol"));

searchControl.execute('DoFollow');
    }
    // arrange for this function to be called during   body.onload
    // event processing
    GSearch.setOnLoadCallback(LoadBookBar);
  </script>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/dofollow-keyword-ajax-search.php</guid>
		
		
	 </item>
		<item>
		  <title>Link Train or Link Spam?</title>
		  <link>http://tommwilson.com/web/link-train-or-link-spam.php</link>
		  <pubDate>Wed, 25 Jul 2007 09:26:19 EST</pubDate>
		  <description>
				<![CDATA[<p>A new bandwagon just rolled into the SEO world, one called the "<strong>link train</strong>".  It works similar to the notorious <a href="http://en.wikipedia.org/wiki/Chain_letter" title="chain letter">chain letter</a> schemes.  It starts with a list of links to a couple websites, consist of a theme (<a href="http://www.seorefugee.com/seoblog/2007/05/16/charity-link-meme/">The Charity Meme</a>) and continues to grow like a snowball effect as the link train gets copied to more blogs.  Just like the "Send this e-mail to 10 of your friends, or else you will have bad luck forever", this link trains grow exponentially as webmasters and bloggers try and hop on the link train list to generate back links to their site.</p>

<p>What benefit does a link train do for a site?  In the search engine world, creating back links is essential for gaining respect from search engines to be placed in search engines results.</p>

<p>One criterion Google looks for in links is differentiating anchor text, example: <a href="http://en.wikipedia.org/wiki/Anchor_text">This is Anchor Text</a>.  If you participate in a link train, the backlink to your site will contain the same anchor text since it is being copied over and over.  John Chow, a professional blogger about making money online devised a scheme to create backlinks to his site with the anchor text, "how to make money".  Thousands of links started to pour in, and Google viewed all these links, with the same anchor text, as link spam, and banned John Chows site from the Google index, even for his own <a href="http://www.google.com/search?q=john+chow">John Chow's name</a>.</p>

<p>Google has incredible software engineers working on solving problems to detect link spam.  I can almost guarantee the are aware of these new link train schemes popping up, and are already adjusting their algorithm to make sure these link trains don't affect search rankings.  Google results return the most relevant content to a user, however, these posts create nothing more than duplicate content, and create no useful information to a user.   Often times blog posts contain the same exact title, same description, and almost the same link train list.  This will surely trigger a red flag in Google's algorithm, and all link value will be lost.  Check out Google's Policy on <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=66356&query=link+exchange&topic=&type">Link Schemes</a> at Google's webmaster center.</p>

<p>For bloggers and webmasters looking for the easy way out,  don't try these new link train schemes. Link trains will only hurt the respect of your site by creating spammy links coming from duplicate content sites.  As a case study, I participated in one <a href="http://tommwilson.com/web/dean-hunt-google-page-rank-scheme.php">link train scheme</a>, and my technorati authority went from 7 to 26 in a day.  However, what is worse, getting banned from Google for link spam, or having a low Technorati rank?  The best way to get back links is through relevant informative content and creating relationships.  Check out the search engine journal f you need advice on creating quality <a href="http://www.searchenginejournal.com/link-baiting-effective-link-building/2797/">link baiting</a>content.</p>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/link-train-or-link-spam.php</guid>
		
		
	 </item>
		<item>
		  <title>Dean Hunt Google Page Rank Scheme</title>
		  <link>http://tommwilson.com/web/dean-hunt-google-page-rank-scheme.php</link>
		  <pubDate>Mon, 23 Jul 2007 01:11:18 EST</pubDate>
		  <description>
				<![CDATA[<p>In a ploy to do link exchanging, the blog <a href="http://deanhunt.com">Dean Hunt</a>  has decided to come up with a link scheme, and form a group of webmasters that think the Google Page Rank should be abolished.</p>

<p>Google Page Rank is a scaling system ranking sites on a scale of 1-10 based on their web authority.  The higher page Rank a website has, the more it is viewed as an authority page.  There are many factors that go into determining page rank, such as the age of the domain, topics of the site, incoming links, and other factors.</p>

<p>Many sites on the web use the Google Page rank to determine the worth of a site.  Sites like <a href="http://reviewme.com">ReviewMe</a> and TextLink Ads use the Google Page Rank of a site in factoring advertising costs.  The Google Page Rank algorithm is always changing on a daily basis, however updates are only released to the public periodically. </p>

<p>I believe the Google Page Rank should be made more  public. I would like to know what Google thinks of a page, if it is well respected, before I visit it and take in that information.  If I visit a site that has a page rank of 2, then I know that the site is most likely not going to be beneficial.</p>

<p>Props goes out to Dean Hunt for coming up with a link scheme to try and rank for the terms Google PageRank though. I am always looking to take part in link building schemes.</p>

<p>Here is the list of websites that are on the "SAY NO TO PAGE RANK" bandwagon.</p>
<h2>*** SAY NO TO PAGE RANK, YES TO LIFE WEBMASTERS LIST***</h2>
<p><a href="http://www.deanhunt.com/">Buzz Marketing Blog</a><br/>
<a href="http://www.retiredat21.com/">Young Entrepreneurs Blog</a><br/>
<a href="http://www.streetlessons.com/">No Nonsense Business Advice</a><br/>
<a href="http://www.midascode.co.uk/blog">Sell your blog</a><br/>
<a href="http://www.cs-developer.com/">CS Developer</a><br/>
<a href="http://www.appliancejournal.com/">Aplliance Journal</a><br/>
<a href="http://www.madkane.com/humor_blog/">Madkane Humor Blog</a><br/>
<a href="http://www.findnewleads.com/resources.htm">Find New Leads</a><br/>
<a href="http://www.phpied.com/">PHPied</a><br/>
<a href="http://ukseodirectory.wordpress.com/">UK SEO Directory</a><br/>
<a href="http://bikinifigur.at/">Bikinifigur: Abnehmen ohne Hunger</a><br/>
<a href="http://bobmeetsworld.com/">Bob Meets World</a><br/>
<a href="http://www.bluejar.com/">BlueJar Webmasters Guide</a><br/>
<a href="http://allsux.com/">All Sux Dot Com</a><br/>
<a href="http://codingpad.maryspad.com/">CodingPad</a><br/>
<a href="http://www.thenextpost.com/2007/07/get-over-that-pr-jitters-and-get-life.html">The Next Post</a><br/>
<a href="http://crystalcoasttech.com/blog">Tech Blog</a><br/>
<a href="http://www.realitywired.com">Reality Wired</a></p>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/dean-hunt-google-page-rank-scheme.php</guid>
		
		
	 </item>
		<item>
		  <title>EBay Product Reviews Taking Back SERP's</title>
		  <link>http://tommwilson.com/web/ebay-product-reviews-taking-back-serps.php</link>
		  <pubDate>Sat, 21 Jul 2007 08:31:22 EST</pubDate>
		  <description>
				<![CDATA[<p>Looking at my google search history the other day, I noticed I average about 2000 Google Searches in a month.  I've realized that when I search for a particular product in Google, I rarely ever run into an Ebay page.  I started to think about how the Google Page Ranking Algorithm is designed, and have come up with a possible reason Ebay is non-existent from the Google <a href="http://en.wikipedia.org/wiki/Search_engine_results_page" title="Search Engine Result Placement">SERP(Search Engine Result Placement)</a>.  Considering that Ebay used to spend somewhere under a reported $25 million on Google Adwords advertising, it would be highly beneficial to take advantage of free traffic from Google search results, which they current activity on Ebay's Product Reviews site indicates a trend of moving away from payed advertising, and a move towards Free search engine result placements.</p>

<p>So, lets analyze Ebay's site and how it works.  Ebay is filled with auction listings of products.  Each listing has a dedicated page, and the page life itself exists for the duration of the auction period, 7 days.  What use is it for Google to index Ebay product pages if they only last 7 days, and then are not useful anymore?  </p>

<p>Ebay has just come out with the <a href="http://reviews.ebay.com">Ebay Product Review</a> sub-site.  This Review subsite hosts landing pages for particular products with: links to auction listings, reviews for that product, and an Ebay product description.  Google searchers often search for a particular product, and having this useful page with multiple sources of relevant content streaming in on products should boost Ebay's placement in search results.  The content on this page is always changing, due to product reviews, and auction listings always changing, giving the page new relevant content.  In doing this, Ebay is creating very useful permanent product pages for Google to index and return in it's SERP's.</p>

<p>One question... Ebay, where are you in the <a href="http://en.wikipedia.org/wiki/Google_Product_Search" title="Google Product Search" >Google Product Search</a>(formerly Froogle)?  This is a free service offered by Google that you aren't taking advantage.  When searching for an exact product in Google, if that product is in the Google Base, your product will show up to be #1 since most of your products are priced very low.  This is all free too, no more spending $25 million.  The Google Base also feeds of reviews of everything, now with Ebay's Product Review site, Ebay could submit their massive database of product reviews and generate a whole new stream of free traffic.</p>

<p>For the future, I see reviews dominating the search engines.  I believe search engines will be returning relevant useful information, and when searching for a product, searchers want to find a product, cheaply, and have a wealth of information on that product from descriptions to user reviews and opinions.  Ebay is setting itself up to be a major contender in the search engine results to Amazon with it's new Product Reviews and Details service, so it will be interesting to see how Ebay's strategy will play out in the end.</p>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/ebay-product-reviews-taking-back-serps.php</guid>
		
		
	 </item>
		<item>
		  <title>Fat Fingers Delivers Fat Ebay Deals</title>
		  <link>http://tommwilson.com/web/fat-fingers-delivers-fat-ebay-deals.php</link>
		  <pubDate>Thu, 19 Jul 2007 00:10:00 EST</pubDate>
		  <description>
				<![CDATA[<p>Today I was informed of an innovative website that's service is to deliver you products on ebay with typos in the title.  These products get extremely low traffic since their titles have typos and are rarely found using ebay's search features.  <a href="http://fatfingers.com">Fat Fingers</a> changes all that by letting you type in a word, and finding all the common misspelled variations of that word, and then searching <a href="http://ebay.com">ebay's</a> database, allowing you to see products with typos for that specific word.  These items have hardly any bids on them, allowing you to swoop in and take the item for an incredibly low price.  </p>

<p>Pretty ingenious if you ask me, one of my partners who I am working on a project with has used Fat Fingers exclusively, and ended up winning a laptop value at $2600 for $800.  Ebay usually doesn't sell products for top value, but that is an incredible savings.  Obviously, this is going to work better for items that have more listings, since you will have a better probability of finding a typo item.  During the grabd rush for Xbox 360's and Playstation 3's, Fat Fingers could deliver some finger licking good prices on overpriced items.</p>

<p>Have you had any experience, good or bad, with Fat Fingers?  Let me know!  Or if you find any other innovative sites such as Fat Fingers, be sure to let me know!</p>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/fat-fingers-delivers-fat-ebay-deals.php</guid>
		
		
	 </item>
		<item>
		  <title>John Chow Selling Links - Banned From Google</title>
		  <link>http://tommwilson.com/web/john-chow-selling-links-banned-from-google.php</link>
		  <pubDate>Wed, 18 Jul 2007 02:06:23 EST</pubDate>
		  <description>
				<![CDATA[<p>So it is almost midnight, and I just finished John Chows, <a href="http://www.johnchow.com/book/make-money-online.pdf">"Make Money Online With John Chow"</a>.  This is John Chows, how to book he released, which consists of some of his more notable blog posts on how to, you guessed it, make money online.  The e-book is free, and I printed it out with my unlimited paper quota at work.  The 59 pages include blogging tips, wordpress tips, affiliate tips, and anything you can think of that has to do with making money from blogs.</p>

<p>One affiliate John Chow rants and raves about is TextLinkAds, a company that sells targeted ads on a site, for the purpose of ranking well in search engines.  As posted on Pronet Advertising, <a href="http://www.pronetadvertising.com/articles/why-we-rank-1-for-john-chow-and-why-you-shouldnt-mess-with-google.html">Why John Chow gets owned by Google</a>, John Chow has evidently asked bloggers to link to his blog with the phrase, "make money online", a ploy to manipulate search results.  However, in Google's algorithm, it checks the text of every link to make sure that it was naturally made, and not posted by a spammer.  Google's algorithm must have mistaken John Chow's ploy to rank for the term "make money online" as a way to manipulate Google's algorithm, and thus getting banned from Google Search results, even if you search the exact domain name, <a href="http://www.google.com/search?q=john+chow">Google Search [John Chow]</a>, it still doesn't show up.</p>

<p>When coming up with ideas for sites, I always take into perspective how search engines will play into the site. Look at the tremendous success wikipedia is having, due to it's high traffic from it's Google search results.  One of the main benefits of having a blog, and using blogging software is that it is optimized for search engines right out of the box.  I wonder how long it will take John Chow to reclaim and get his site unblocked from the Google bots.  Any how, good luck with your blog John Chow, we are all rooting for you to fail!</p>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/john-chow-selling-links-banned-from-google.php</guid>
		
		
	 </item>
		<item>
		  <title>5 Adsense Tips</title>
		  <link>http://tommwilson.com/web/5-adsense-tips.php</link>
		  <pubDate>Wed, 18 Jul 2007 08:08:26 EST</pubDate>
		  <description>
				<![CDATA[<p>Want to make money online using adsense?  Need some helpful pointers on where to start and what some of the best tools out there are, well here are 5 adsense tools I use to do research and find the highest paying keywords.</p>

<p>This is the adwords tool I use. It is designed for advertisers in mind, but what I do is do a search for "Madison", then Choose data to display: => "Cost and Ad Position Estimate", put in a high value like $15, and then it shows how much advertisers are willing to pay for that certain keyword.</p>

<p>I think the best way to go is to target places by city. This could play heavily into what sections we have go into the site, ect if we really want to make some cash.</p>

<p>In order to get those ads to show up, we have to place keywords all over the site, a good percentage would be around 5%, so we should have "Madison WI", or a variation to get high paying Madison keywords.</p>



Pro Blogger
<p>Adsense Tips and Tricks
Mike Cheney's Adsense Videos <= This guy makes his own videos on how to make alot of money from adsense, he gives one short preview lesson, but the video set is $97, this might be something to look into as far as a business expense.</p>

<h2>Localize It</h2>
<p>Right now I am getting around 10-20 cents a click, but if we target our areas towards specific cities, i think we can raise that even higher. 10% of the time someone views a page in my blog they click on it. So if were getting anywhere close to wiscolinks pageviews, which we should easy surpass, this means alot of cash, and this means that we could possibly bypass the venture capitalists and do this site on our own.</p>

<h2>Ad Positioning and Color</h2>
<p>Also another thing that improves click through rates, the rate of people who click on the ads per page view dramatically increases depending on where you position the ad. Such as on the template Steve printed off for me, he had the google ad on the bottom left corner, this is pretty much useless since a user almost always tunes those ads out. What I would suggest is having the google ajax search bar at the stop, with a horizontal leaderboard ad under that, and then the ajax webportal that houses all the information. This way the ad is inbetween two key things, the search bar, and the relevant content that we will have.</p>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/5-adsense-tips.php</guid>
		
		
	 </item>
		<item>
		  <title>Google Keyword Tool</title>
		  <link>http://tommwilson.com/web/google-keyword-tool.php</link>
		  <pubDate>Tue, 17 Jul 2007 00:17:04 EST</pubDate>
		  <description>
				<![CDATA[<p>For sometime now I have stumbled upon and have been using the <a href="https://adwords.google.com/select/KeywordToolExternal">Google Keyword Tool</a>.  It's intent is give <a href="http://adwords.google.com">Google Adwords</a>, (an advertising publisher tool that serves targeted ads to potential customers) users a keyword tool to research and target potential advertising keywords, since all google adwords are targeted towards specific keyword, when searched. </p>

<p>The huge benefit of using this tool comes with the huge database of keyword information that google houses. 
Here is a list of all the different search options the Google Keyword tool lets you hone in on.</p>

<ul><li>Keyword Search Volume<li>
<li>Cost and Ad Position Estimates</li>
<li> Search Volume Trends</li>   
<li>Possible Negative Keywords</option>   </li>
</ul>


<p>From an adsense publishers point of view (selling google ads on a website to make money), I like to see how much advertisers are paying for their ad to show up for a specific keyword. Just click the Cost and Ad Position Estimates option and type in a your keyword, and a high price, such as $15.  You can then sort each specific keyword by search volume, advertiser competition, and how much an advertiser pays to have their ad displayed in one of the top 3 positions.  Are you thinking about starting a blog and want to make money from it?  Use this exact example to target specific high paying keywords, and start generating content to that specific keyword and display Google Adsense ads, and in no time, you will be bringing home large checks, and you might even start to pay the <a href="http://tommwilson.com/blog/paying-the-rent-blogging.php">rent by blogging</a>.</p>

<p>This is Google's suggestion on what the tool is used for..</p>
<blockquote>Use the Keyword Tool to get new keyword ideas. Pick one of the tabs below and enter keywords or URLs that are relevant to your business.  Keyword Tool Tips

Important note: We cannot guarantee that these keywords will improve your campaign performance. We reserve the right to disapprove any keywords you add. You are responsible for the keywords you select and for ensuring that your use of the keywords does not violate any applicable laws.
</blockquote>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/google-keyword-tool.php</guid>
		
		
	 </item>
		<item>
		  <title>Godaddy VPS w/ PHP5 MySQL5 and Lightning Speed</title>
		  <link>http://tommwilson.com/web/godaddy-vps-w-php5-mysql5-and-lightning-speed.php</link>
		  <pubDate>Thu, 24 May 2007 09:22:12 EST</pubDate>
		  <description>
				<![CDATA[<p>Well I've finally made the transition and have upgraded from  shared hosting account to a Virtual Dedicated Server.  It took me the whole weekend to transfer all of my files over, and update all the configurations and get everything working properly, but it is finally over with, and now my website loads with lightning fast speed.  I decided to upgrade since I have a couple new web projects that are database intensive, so this will definitely speed the development process up as well as speeding my website up.  I'm sure there is still a bunch of stuff not copied over correctly, so if you find something that looks goofy, please write me a comment or use the contact form.  Muah!</p>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/godaddy-vps-w-php5-mysql5-and-lightning-speed.php</guid>
		
		
	 </item>
		<item>
		  <title>Wisco Links, Madison Campus Homepage Hotspot</title>
		  <link>http://tommwilson.com/web/wisco-links-madison-campus-homepage-hotspot.php</link>
		  <pubDate>Mon, 26 Mar 2007 05:43:21 EST</pubDate>
		  <description>
				<![CDATA[<p>Yesterday I met with the owner of the student run website, <a href="http://www.wiscolinks.com">wiscolinks</a>.  He said he was looking for someone to take over the web design duties for the site, and give it an overhaul.  I have been looking for projects to work on, and this one looked like a perfect fit.  Wiscolinks already boasts a steady visitor rate of 10,000 visitors a day, most of the UW-Madison students.  The site is a web portal that gives you links and information that would be useful to a college student.</p>

<p>Upon that, the owner of the website would like most of the stuff hosted on the front page, and also to make is so there is no page refreshing to get new content.  So this will let me put my new book I just bought, php and ajax, to good use, and will also let me implement some cool mini ajax applications, such as a drink special catalog for bars around Madison, and possibly a menu viewer that shows menus from restaurants around campus.  There are many features that can be packed into the site, and I have only started to program them, but hopefully within the near future, you shall see a sweet Wiscolinks website.</p>

<p>UPDATE:<br />
Well things didn't seem to work out too well with Wiscolinks.  To be quite frank, the owner has no knowledge of how to run an online website.  One of his ideas to make money was to gather people's information, and then sell it.  As a web developer that considers himself to have "web standards" this was not looked upon as a good idea.  After spending my entire spring break working on the site, and repeatedly asking for help and information from the owner, he was unresponsive, and plain out disrespectful.  So, I've decided to part ways and will not be working on Wiscolinks any longer. The website is a great idea, but the owner is a complete douche bag that shows no respect for Web Developers, which is no surprise considering he made the site using Front Page and frame, hello? Please step outside of 1990 and come join us in 2007.</p>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/wisco-links-madison-campus-homepage-hotspot.php</guid>
		
		
	 </item>
		<item>
		  <title>Firefox, the new OS, fueled by Google and Linux</title>
		  <link>http://tommwilson.com/web/firefox-the-new-os-fueled-by-google-and-linux.php</link>
		  <pubDate>Thu, 15 Mar 2007 07:35:11 EST</pubDate>
		  <description>
				<![CDATA[<p>I enjoy to follow technology, especially technology related to the enhancement of the Internet.  The Internet has turned into a huge network, full of rich data.  The glory of the Internet is it's interconnectedness. With google as the power house search engine, information is at your finger tips within seconds.  In some cases, google can retrieve search results faster than your Windows search.</p>

<p>My prediction for the future is that computing will be straight through a browser.  As web browsing and scripting languages such as PHP and AJAX are getting more powerful by the day, and browsers are being more standard compliant, it is ever more clear that applications that were once only available as a desktop application, will be moved to the browser.  For example, check out key moves by Google, Google Gmail, an ajax application that mimics Microsofts Outlook, Google Docs, the equivalent of Microsoft Word and Excel.</p>

<p>Even though these applications are not as powerful as much the desktop applications, they are being equipped with more functionality each day.  As web technology increases, and the internet starts becoming more reliable, there will be a shift from operating systems to the browser. The key advantage to this is, one can use Linux which is free, and cut out Windows or Mac OS, thus saving alot of money.  Also the huge benefit would be your computer can travel anywhere with the rise of mobile technology all your files are within reach of a server.  With the combination of better internet connetivity and the development of new and better web applications, the browser will soon take over as the primary users tool, leaving Microsoft in the dust.</p>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/firefox-the-new-os-fueled-by-google-and-linux.php</guid>
		
		
	 </item>
		<item>
		  <title>Madison Web Design Back in Business</title>
		  <link>http://tommwilson.com/web/madison-web-design-back-in-business.php</link>
		  <pubDate>Wed, 14 Mar 2007 01:06:58 EST</pubDate>
		  <description>
				<![CDATA[<p>Well over the past month I've written an article, and visits to my site have went through the roof.  I was used to getting about 15-20 visits on a good day, and now I am up to averaging around 400, with a high of 1400 in a single day.  Pretty impressive eh?</p>

<p>Now that I have my website in place, and pretty much finned tuned to be a search engine optimized machine, I can start focusing my time on other things.  I recently joined the UPL WebSig group, and we are working on making a game called CampusWars which is a risk type game that is based on the UW-Madison campus using Google maps to implement the game play.  It's currently under major development, but you can check out the development at <a href="http://www.upl.cs.wisc.edu/campuswars">UW-CampusWars</a></p>

<p>I am also planning on joining the UW-disc golf club, and their website was in a sorry state, but I have taken some responsibility duties, and am taking over the web design duties for the club.  I am not sure of all the features that are going to go into this site, but I thought it would be nice to have a tool that records your disc golf scores, and shows you improvement throughout the season.  It would be a helpful tool, and give me some experience building a cool web application.</p>

<p><a href="http://caplanggroup.com">Capital Language Group</a> has also asked me to build them a website for their translation company.  It is preceding into the final stages of development and hopefully will be released very soon.</p>

<p>I am also looking for new projects and ideas, if you have a project that you need help with, shoot me an e-mail or feel free to contact me!  Thanks for tunin in!</p>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/madison-web-design-back-in-business.php</guid>
		
		
	 </item>
		<item>
		  <title>Hittail, Hit or Miss Keyword Tracking</title>
		  <link>http://tommwilson.com/web/hittail-hit-or-miss-keyword-tracking.php</link>
		  <pubDate>Thu, 08 Mar 2007 01:11:24 EST</pubDate>
		  <description>
				<![CDATA[<p>Today I stumbled upon a cool little start up company that is still in Beta Testing.  Their main product is offering keyword tracking and letting you know what keywords people were searching for to get to </p>
<p></p>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/hittail-hit-or-miss-keyword-tracking.php</guid>
		
		
	 </item>
		<item>
		  <title>SEO Poker Link Tournament</title>
		  <link>http://tommwilson.com/web/seo-poker-link-tournament.php</link>
		  <pubDate>Sat, 03 Mar 2007 04:06:21 EST</pubDate>
		  <description>
				<![CDATA[<p>I was browsing seoblackhat.com, and found out that they are hosting a poker tournament where you ante in with a link from your site, and the winner of the tournament gets a link pointing to their page from all the losers.  If your a winner, this means some serious links coming into your page.  I figure, I have nothing to lose except putting a link to someone's page on my website, and if by chance I might take the tournament down, I get some recognition, and a bunch of links, sort of a win win situation, that is if I win.  We shall see, the tournament will be held on March 24th, 2007 at 9:00am.  Good luck to all those entering.</p>

<p>You can find out all the rules at <a href="http://poker.seoblackhat.com/">poker.seoblackhat.com</a>
</p>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/seo-poker-link-tournament.php</guid>
		
		
	 </item>
		<item>
		  <title>New And Completed Features To TomMWilson.com</title>
		  <link>http://tommwilson.com/web/new-and-completed-features-to-tommwilson.com.php</link>
		  <pubDate>Fri, 23 Feb 2007 03:13:44 EST</pubDate>
		  <description>
				<![CDATA[<p>It's almost been a year since I've had this wonderful domain name, and throughout that year, there has been many changes, from a simple page that I joked around with, to a Web Design Company page, and now this full featured content management system.  I've added alot of features and would like to add more, but I've created a list of things that I've accomplished, and things that still need work.</p>

<H2>completed</h2>
<ul>
<li>Full div table-less layout - search engine optimized</li>
<li>Content Management Through Administration Panel Allowing</li>
<ul><li>MySQL data storage of articles, images, videos, and code</li>
<li>Easy </li>
</ul>
<li>Google Adsense integration to start making money</li>
<li>Calendar System that tracks when Posts are made</li>
<li>XML sitemap that automatically updates when a post is made or edited</li>
<li>RSS content feeds for each directory</li>
<li>Insanely sweet layout</li>
<li>Music Player</li>
</ul>

<h2>In Progress</h2>
<ul>
<li>Multiple Images Per Post</li>
<li>Possibly some flash games, and a link farm to free tv shows</li>

</ul>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/new-and-completed-features-to-tommwilson.com.php</guid>
		
		
	 </item>
		<item>
		  <title>Over the Adsense Hump - Website overhaul</title>
		  <link>http://tommwilson.com/web/over-the-adsense-hump-website-overhaul.php</link>
		  <pubDate>Thu, 08 Feb 2007 01:05:56 EST</pubDate>
		  <description>
				<![CDATA[<p>Well I just launched the new version of my website about a month ago, and have it set up so I can easily add articles from within an administration panel inside my website.  This allows me to write and post anything I want, as long as I have an internet connection. </p><p> Recently I wrote an article on Alluc, and how it provides it's users with links to pirated content.  I used some of my SEO knowledge and came up with a title, "Alluc org-asmic pirated content"  So now whenever anyone searches for alluc.org, which a fair amount of people do, my result shows up in 3rd place, lending to a huge surge in traffic for my website.  </p><p>Before this article got ranked in google search, I was averaging about 20 visits a day, now I am in the range of averaging 375.  This has led to a positive result in my adsense account since the more people that visit my site, the more chances there are to click on an ad, thus making me some cash.  </p><p>In order for you to cash out money in an adsense account, you must reach over $100.  With my meager 20 visitors a day average, this was seeming impossible and I was on track of meeting the $100 mark in about 3 months, but with the surge of traffic from being able to post articles on the fly and manipulating the title so that my article would show up for a specific search term, "alluc.org" has paid off. </p><p> I am not allowed to disclose exactly how much I am making from adsense, but I can greatfully say that I am over the $100 hump, and have surpassed it with grace.  Thank you alluc.org for lending me a topic to write an article on, as well as providing us all with pirated content!</p>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/over-the-adsense-hump-website-overhaul.php</guid>
		
		
	 </item>
		<item>
		  <title>New Re-design of TomMWilson.com!</title>
		  <link>http://tommwilson.com/web/new-redesign-of-tommwilson.com.php</link>
		  <pubDate>Sun, 14 Jan 2007 00:02:12 EST</pubDate>
		  <description>
				<![CDATA[<p>Well, I've had some time on my hands so I decided to do a re-design of this website because most of the directories on the site were all jumbled up, without any conformity.  So, I decided to go about building myself a website that is back end database driven, and pretty much like a blog, but with a little more power, since I am now able to post to any section within this website through an administration panel.</p>
<p>My first task was to come up with a solid layout that I could base everything off of.  This is what took the most time because I wanted to create a layout based on div's and css code.  This is harder than it seems since different web browsers display css code differently, and Internet Explorer is a real hassle to deal with.  I decided on going with a basic blog type layout with fixed widths.  This way I will know everything will render in the correct spot on different screen sizes and in different browsers.</p> <p>Once I got the layout done, it was time to start the hardcore php programming.  I created a layout class which controls the header, navigation bar, content area, sidebar and the footer.  My main goal was to create something that I could build upon in the future, and something that I could easily update whenever I feel like it.  There are six main directories that most of the content is held in with four of the directories being main content ones.  Pretty neat eh?  Overall, I just wanted to test my design and php abilities to try and create something that is powerful and sleek.  Let me know what you think!</p>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/new-redesign-of-tommwilson.com.php</guid>
		
		
	 </item>
		<item>
		  <title>New Job With Condor!</title>
		  <link>http://tommwilson.com/web/new-job-with-condor.php</link>
		  <pubDate>Fri, 12 Jan 2007 09:53:55 EST</pubDate>
		  <description>
				<![CDATA[<p>I just got hired as a php/mysql programmer for the group Condor. Condor is a group that writes software to create a grid of computers that are pooled together to create a super computer that is capable of doing huge amounts of processing work, such as rendering graphics for 3d movies and doing intense computations on scientific research.</p><p>I will mostly be doing php programming and creating web applications that interact with mysql databases using ajax.  I'm new to ajax, but have always wanted to learn how to use it, since it is hyped up to be the next best technology to take over the browser.  It allows you to interact with a database and fetch and display data without having to refresh a page, which creates web pages that are very user friendly and elegant.</p>
<p>I am also going to start doing contract work for my old job at the <a href="http://www.aspi.wisc.edu">Alliance of State Pain Initiatives</a>, still doing web design work for the updates that they might need to their website.  This means that I'll have to open up a bank account under a business name, and it will be pretty much like I am running my own business.  So, if you are in need of a website or any programming working, you can hire my services, and it will be tax deductible.</p>
<p>Thats about it for now, keep it real..</p>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/new-job-with-condor.php</guid>
		
		
	 </item>
		<item>
		  <title>Google Page Rank Update</title>
		  <link>http://tommwilson.com/web/google-page-rank-update.php</link>
		  <pubDate>Tue, 07 Nov 2006 02:42:14 EST</pubDate>
		  <description>
				<![CDATA[<p>I have the trustry PageRank calculator on my firefox browser, and was visiting my webpage which used to be a page rank 4, and now has seemed to drop to a 2.</p> <p>I have been doing some re-organizing and such to my entire site and had some broken links that could be the cause of the degrade.  </p><p>From what I've read, there are many other factors that are taken into account when calculating rank in search results, such as title, keywords, incoming links.</p>
<p>I've been working on trying to get my site to be run through php and mysql databases so it will be alot easier to update, and keep content fresh, thus being more serach engine friendly.  I'm still devising a way to get more incoming links which I have very few of.</p><p>This upcoming weekend I will be taking part in a Undergraduate Progamming Leauge (UPL) Hack, which is where you program for 24 hours straight and try and get one project done in a group or individually.  I'm going to try and do something with php and ajax and hopefully post it on here.  I am thinking about making a tool that will be usefull to everyone, possibly something with the facebook API, we shall see.</p>

<p>Hope everyone got out to vote today!</p>]]> 
		  </description>
		  <guid>http://tommwilson.com/web/google-page-rank-update.php</guid>
		
		
	 </item>
  		</channel>
	</rss>

