<?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>Danifer Web Services</title>
	<atom:link href="http://www.danifer.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.danifer.com</link>
	<description>The official web site for Danifer Web Services</description>
	<lastBuildDate>Wed, 11 Nov 2009 16:37:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Event Feedback with Joind.In</title>
		<link>http://www.danifer.com/event-feedback-with-joind-in</link>
		<comments>http://www.danifer.com/event-feedback-with-joind-in#comments</comments>
		<pubDate>Wed, 11 Nov 2009 16:37:51 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/?p=262</guid>
		<description><![CDATA[I had a chance to talk with the lead developer for Joind.in, an online service designed to provide speakers with efficient and timely feedback from their audience.  They have a really well-designed service and I can definitely recommend it if you&#8217;re a public speaker or event organizer.
From their web site:

Like the talk? Let &#8216;em [...]]]></description>
			<content:encoded><![CDATA[<p>I had a chance to talk with the lead developer for <a href="http://www.joind.in/">Joind.in</a>, an online service designed to provide speakers with efficient and timely feedback from their audience.  They have a really well-designed service and I can definitely recommend it if you&#8217;re a public speaker or event organizer.</p>
<p>From their web site:</p>
<blockquote><p>
<strong>Like the talk? Let &#8216;em know!</strong></p>
<p>Joind.in provides the missing link between the people attending a conference and the ones that presented. The usual method of handing out paper forms is outdated and needs to be replaced. That&#8217;s where we come in &#8211; attendees can post their comments directly to each of the talks they attended, giving the speaker direct feedback on how they did and what they can do to improve.</p>
<p>Joind.in also has something to offer the speakers &#8211; you can track your record across the conferences and see how changes in your talk might have made a difference in your ratings.
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/event-feedback-with-joind-in/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LinkTrack Facelift</title>
		<link>http://www.danifer.com/linktrack-facelift</link>
		<comments>http://www.danifer.com/linktrack-facelift#comments</comments>
		<pubDate>Thu, 09 Apr 2009 18:27:37 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/?p=254</guid>
		<description><![CDATA[For those of you familiar with our link tracking service, you might have noticed with recently upgraded it with lots of new features and an account management system.  Please check it out and send us your feedback!
]]></description>
			<content:encoded><![CDATA[<p>For those of you familiar with our <a href="http://linktrack.info/nsblfxkk">link tracking</a> service, you might have noticed with recently upgraded it with lots of new features and an account management system.  Please check it out and send us your feedback!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/linktrack-facelift/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DallasPHP Strategic MySql</title>
		<link>http://www.danifer.com/dallasphp-strategic-mysql</link>
		<comments>http://www.danifer.com/dallasphp-strategic-mysql#comments</comments>
		<pubDate>Wed, 11 Feb 2009 16:45:54 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/?p=253</guid>
		<description><![CDATA[I attended the DallasPHP group last night.  The topic was &#8220;Strategic MySql&#8221; which was well presented and concise.  Here&#8217;s what I took away from the presentation/discussion:

&#8216;Limit&#8217; statements do not reduce the size of a query.  Instead it fetches the complete result set, and then serves the limited portion to you.
Rather than deleting [...]]]></description>
			<content:encoded><![CDATA[<p>I attended the <a href="http://dallasphp.org">DallasPHP</a> group last night.  The topic was &#8220;Strategic MySql&#8221; which was well presented and concise.  Here&#8217;s what I took away from the presentation/discussion:</p>
<ul>
<li>&#8216;Limit&#8217; statements do not reduce the size of a query.  Instead it fetches the complete result set, and then serves the limited portion to you.</li>
<li>Rather than deleting data with one-to-one queries, consider marking your data &#8220;to be deleted&#8221; and handling it in a single automated query.</li>
<li>A utility table containing aggregate information like row counts is a great place to store and retrieve commonly accessed database information without the need for a high overhead query.</li>
<li>MyISAM is 10-40% faster at writing than InnoDB, but is not as flexible.</li>
<li>Mixing table types (MyISAM/InnoDB) based on the type of data they&#8217;re holding might sound like a good idea, but the extra overhead of handling two table types cancels out the benefits.  Best to choose one and stick with it throughout.</li>
<li>Storing IP Addresses as a numeric value using inet_aton() is a far better idea that a 14 character varchar() field.</li>
<li>I need to learn more about something called MySql Slow Log.</li>
<li>Definitely need to look at something called &#8220;memcache&#8221;.  Was described as &#8220;the easy button&#8221;.</li>
<li>Benchmarking tools to Google: MySqlslap and ApacheBench</li>
<li>Monitoring/reporting tool to Google: sqlyog</li>
<li>MySql caching is turned on by default in my.conf.</li>
</ul>
<p>Those are my notes &#8211; hope you found them useful.  Some things I need to do more research on, others are just tidbits I might not have thought to look up on my own.</p>
<p>This is actually the most valuable part of any developer&#8217;s group for me.  Without other programmers to talk to, I&#8217;m essentially developing in my own bubble.  It&#8217;s one thing to go and look up an answer to a question, but it&#8217;s another thing entirely to know which questions to ask.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/dallasphp-strategic-mysql/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Colo4Dallas.com Review</title>
		<link>http://www.danifer.com/colo4dallasc-review</link>
		<comments>http://www.danifer.com/colo4dallasc-review#comments</comments>
		<pubDate>Mon, 10 Nov 2008 22:57:37 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/?p=249</guid>
		<description><![CDATA[I finally made the decision to move the web server that powers this site and the bulk of my online businesses out of my office and into a collocation facility.  This was a big step for me since I&#8217;ve been running this server out of my office on the Verizon FIOS business network for [...]]]></description>
			<content:encoded><![CDATA[<p>I finally made the decision to move the web server that powers this site and the bulk of my online businesses out of my office and into a collocation facility.  This was a big step for me since I&#8217;ve been running this server out of my office on the Verizon FIOS business network for the last two years and it generates a good bit of daily income.</p>
<p>I&#8217;m located in Lewisville, Texas so it was important that my collocation facility be located in the DFW metroplex, be reasonably priced, and have a good reputation.  After searching some of my favorite online discussion forums, I finally settled on <a href="http://www.colo4dallas.com/">colo4dallas.com</a> located in Irving, Texas.  I found several good online reviews, lots personal unsolicited testimonials and very few negative reports.  Their pricing to house my Dell SC430 tower server and my small firewall was $109.00/month with a $50.00 one time setup fee.  My plan includes 1000gb of transfer which is plenty for me.  I estimate I&#8217;m using less than 100gb/month now serving database driven web pages.</p>
<p>I placed my order on Monday night and was contacted by a sales rep via email the next day.  I gave them details about the equipment I would be bringing and scheduled a time to come by.  The sales/tech reps were responsive and helpful.  They assigned me IP information the same day, and I was ready to go.</p>
<p>I brought my equipment to them at noon on a Saturday.  There were several technicians in the building, and I had to be buzzed in to access the building.  After being greeted by the technician in the monitoring room and showing my ID, another technician came out after about 15 minutes to help me get setup.  They were prepared for my arrival since I had scheduled in advance and were ready for me when I showed up.</p>
<p>Talking to the technician, I learned that I would have 24 hour access to the building and that there was always someone there to open the front door and let me in.  I could use the building&#8217;s wireless access with my laptop, and there were several kiosk computers in the lobby available to me as well.  If I needed hands-on access to my machine I was allowed unrestricted access to the cage where my server was located, and I could use a cart with monitor/keyboard/mouse setup as needed.</p>
<p>Setup on my server did not go very well since there was an issue with the network cable assigned to me and the VLan designated for my equipment.  I was there for a little over three hours &#8211; 20 minutes of that was actually bringing in and plugging in my equipment, and I spent another 30 minutes configuring my router and server.  The remainder of that time was spent waiting on the technician to make changes to the cabling and VLan.  Ultimately, however, I had scheduled 1-3 hours to install the server and I didn&#8217;t have any other plans for the day so this wasn&#8217;t a huge issue.  With this kind of thing, I would prefer it be done right rather then quickly.</p>
<p>While I was waiting, I took a few pictures with my phone and plugged my laptop into the network my server was on.  I ran a <a href="http://www.speakeasy.net/speedtest/">speed test</a> and was pleased with 20mb+ speeds (both up and down).</p>
<p>On returning home, I found that I have access to a nice customer web interface that bundles billing and ticket systems together, and can be used to initiate a hands-on reboot (a free service).  The system also has some nice traffic monitoring reports so I can see how much traffic is being generated.  I particularly like their 15 minute reboot promise.</p>
<p>As of writing this article, my server has only been online with colo4dallas for a few days, so I can&#8217;t speak to their uptime or reliability.  I was pleased with their facility (conditioned power, secure access, etc.) as well as their online communication and reporting.</p>
<p>My only concern with my experience is security related.  Although the facility is well monitored, once I had shown an ID I was free to roam, look at and touch most of the other customer&#8217;s servers in the building.  The technician did have to open a locked door to the cage where my server was located, but once there I could have plugged in to any of the 140-150 machines in the same cage.  Other cages in the facility were mostly closed to me, but power cables and network connections were reachable through the bars and I was free to tour the entire floor.  Since I didn&#8217;t pay extra for a locked cage, I don&#8217;t have too much to complain about.  With all the cameras and ID requirements, I don&#8217;t anticipate any issues, but I had a lot of free time in the cage waiting for setup and it came to mind.</p>
<p>My impression with the colo4dallas is positive, and I&#8217;m looking forward to using their service.  Moving the server out of my office will cut back on my electric bill, will reduce my uptime concerns, and will give me more bandwidth to work with.</p>
<p><strong>Some pictures:</strong></p>
<p><a href='http://www.danifer.com/wp-content/uploads/2008/11/img_0337.jpg' rel="lightbox[249]"><img src="http://www.danifer.com/wp-content/uploads/2008/11/img_0337-150x150.jpg" alt="" title="img_0337" width="150" height="150" class="alignnone size-thumbnail wp-image-250" /></a></p>
<p><a href='http://www.danifer.com/wp-content/uploads/2008/11/img_0338.jpg' rel="lightbox[249]"><img src="http://www.danifer.com/wp-content/uploads/2008/11/img_0338-150x150.jpg" alt="" title="img_0338" width="150" height="150" class="alignnone size-thumbnail wp-image-251" /></a></p>
<p><a href='http://www.danifer.com/wp-content/uploads/2008/11/img_0339.jpg' rel="lightbox[249]"><img src="http://www.danifer.com/wp-content/uploads/2008/11/img_0339-150x150.jpg" alt="" title="img_0339" width="150" height="150" class="alignnone size-thumbnail wp-image-252" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/colo4dallasc-review/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Arrow Operator</title>
		<link>http://www.danifer.com/php-arrow-operator</link>
		<comments>http://www.danifer.com/php-arrow-operator#comments</comments>
		<pubDate>Thu, 19 Jun 2008 18:00:14 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/?p=248</guid>
		<description><![CDATA[I&#8217;ve started the journey to learn more about OOP (Object Oriented Programming) with PHP and have seen the &#8216;->&#8217; operator used in most of the code I&#8217;ve encountered.
Although it seems to be called the Arrow Operator, I can&#8217;t find reference to it other than this page on the php.net web site.  Granted, I didn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve started the journey to learn more about OOP (Object Oriented Programming) with PHP and have seen the &#8216;->&#8217; operator used in most of the code I&#8217;ve encountered.</p>
<p>Although it seems to be called the <strong>Arrow Operator</strong>, I can&#8217;t find reference to it other than <a href="http://php.net/manual/en/language.oop5.static.php">this page on the php.net web site</a>.  Granted, I didn&#8217;t search all that long.</p>
<p>From my understanding, the PHP Arrow Operator references the method (a fancy name for a function called from within a class) or a property (a fancy name for a variable called from within a class) <strong>via</strong> a defined class.  In English you would be saying, &#8220;I want to use this (method or property) from this class.  When I see the arrow operator in code, I read it as &#8220;from&#8221; in my head.</p>
<p>Here&#8217;s another statement with an Arrow Operator translated:</p>
<blockquote><p>
$instance = new simpleClass();</p>
<p><em>Open up a new instance of this class and start using its logic.</em></p>
<p>echo $instance->exampleFunction();</p>
<p><em>Look in the class simpleClass and find the function called exampleFunction.  Echo the results. </em>
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/php-arrow-operator/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to sell a product online</title>
		<link>http://www.danifer.com/how-to-sell-a-product-online</link>
		<comments>http://www.danifer.com/how-to-sell-a-product-online#comments</comments>
		<pubDate>Tue, 20 May 2008 16:55:55 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/?p=246</guid>
		<description><![CDATA[Here&#8217;s a loose template for how I sell products online on one of my information-based web sites.  There&#8217;s nothing particularly difficult or crafty about it, I just try and engage the customer at the most opportune moment.
Working Example: http://www.exportrules.com
Product: the downloadable &#8220;Sample Export Compliance Manual&#8221;
1st landing page goal: get people to sign up for [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a loose template for how I sell products online on one of my information-based web sites.  There&#8217;s nothing particularly difficult or crafty about it, I just try and engage the customer at the most opportune moment.</p>
<p><strong>Working Example:</strong> <a href="http://www.exportrules.com">http://www.exportrules.com</a><br />
<strong>Product:</strong> the downloadable &#8220;Sample Export Compliance Manual&#8221;<br />
<strong>1st landing page goal:</strong> get people to sign up for the newsletter<br />
<strong>2nd landing page goal:</strong> upsell visitors on the main product</p>
<p><strong>Methodology:</strong></p>
<ol>
<li>Build a comprehensive, article database from scratch.  If people are going to buy your product, it helps to look like you know what you&#8217;re talking about.  This is also good for attracting free search engine traffic.  Your content should be unique, well written, and useful to your audience.  You can monetize these non-sales pages with AdSense or something similar, but be careful not to drive traffic away from your primary goal.</li>
<li>Bring in qualified traffic.  You can build worthwhile free traffic by writing articles mentioned above.  I also use Google Adwords which brings in the majority of my customers.</li>
<li>Landing page #1 <a href="http://www.exportrules.com/FAQ_Free_Download.php">http://www.exportrules.com/FAQ_Free_Download.php</a>.  If you sign up for the free product, this puts you in the auto-responder queue.  The free product is also directly related to the main product, thereby pre-qualifying potential buyers.</li>
<li>Landing page #2 you&#8217;ll see after you sign up for the free download.  This is where I start pushing the main product.</li>
<li>Autoresponder emails.  A series of 10 emails that soft sell the product and offer helpful information.  Sign up for the mailing list to see examples.</li>
<li>An automated system for processing orders and delivering product.</li>
</ol>
<p><strong>What you need:</strong></p>
<ol>
<li>A professional looking web site built around a content management system.  I like Wordpress.  You can either skin it with a public template or have something custom made for you.  I go both routes for this.</li>
<li>An article database of original, useful articles related to your field.</li>
<li>An email system that ties into an auto-responder like Aweber.</li>
<li>A delivery system for your product.  If you&#8217;re doing affiliate marketing with someone else&#8217;s system this is easy.  If you&#8217;re doing your own deliverable you&#8217;ll need a shopping cart of something similar to process orders.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/how-to-sell-a-product-online/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Downside of Social Networking</title>
		<link>http://www.danifer.com/the-downside-of-social-networking</link>
		<comments>http://www.danifer.com/the-downside-of-social-networking#comments</comments>
		<pubDate>Mon, 12 May 2008 19:03:42 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/?p=245</guid>
		<description><![CDATA[I&#8217;m seeing the concept of social networking pop up all over the internet, and more and more its being touted as a business tool.  If you&#8217;re thinking of investing some time into social marketing to grow your business, make sure you&#8217;re thinking about the big picture and the possible negative consequences to what you&#8217;re [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m seeing the concept of social networking pop up all over the internet, and more and more its being touted as a business tool.  If you&#8217;re thinking of investing some time into social marketing to grow your business, make sure you&#8217;re thinking about the big picture and the possible negative consequences to what you&#8217;re about do.</p>
<p>With that in mind, the most important reason I&#8217;ve found NOT to get into social networking (or at least to be extra careful when you do) is that your contact list and confidential business relationships are some of the most important assets your business has!</p>
<p>This is especially true if you sell any kind of product that relies primarily on customer service as its primary selling point. Let&#8217;s say you&#8217;re an insurance agent contracted with one of the major carriers.  In my experience insurance is a highly competitive field, but can be effectively marketed using face to face networking.  Once you&#8217;ve pounded the pavement to build up a client list, are you sure it&#8217;s a good idea to publicly advertise their names and contact information?  What&#8217;s stopping your competitor from contacting each of your customers with a better deal?</p>
<p>For retail distributors, you might want to think twice before you publish your wholesale supplier&#8217;s contact information on your Facebook friends list.  For those who outsource, you may want to reconsider letting your customers contact your vendors directly.</p>
<p>Information is one of the largest assets most companies have available to them.  While there are many positive aspects of social marketing, it&#8217;s just as important to consider what you have to lose.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/the-downside-of-social-networking/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Decrypting md5 strings</title>
		<link>http://www.danifer.com/decrypting-md5-strings</link>
		<comments>http://www.danifer.com/decrypting-md5-strings#comments</comments>
		<pubDate>Sat, 10 May 2008 20:21:09 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/?p=244</guid>
		<description><![CDATA[I found out today that you can decrypt md5 hashes by comparing the string to a known value database.  Here&#8217;s an md5 decryption search engine designed to do just that.  I got this from procodr which has consumed my morning with interesting articles.
]]></description>
			<content:encoded><![CDATA[<p>I found out today that you can decrypt md5 hashes by comparing the string to a known value database.  Here&#8217;s an <a href="http://md5.rednoize.com/">md5 decryption search engine</a> designed to do just that.  I got this from <a href="http://procodr.com/">procodr</a> which has consumed my morning with interesting articles.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/decrypting-md5-strings/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search Engine Optimization</title>
		<link>http://www.danifer.com/search-engine-optimization</link>
		<comments>http://www.danifer.com/search-engine-optimization#comments</comments>
		<pubDate>Fri, 02 May 2008 14:54:39 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/?p=243</guid>
		<description><![CDATA[The other day, one of my clients got an email from a search engine optimization specialist.  I was thrilled when he asked my opinion regarding the outfit that was wanting to do business with him, and I thought there were some points worth publishing.
Here&#8217;s the original email forwarded by my customer:
xxx,
I just got off [...]]]></description>
			<content:encoded><![CDATA[<p>The other day, one of my clients got an email from a search engine optimization specialist.  I was thrilled when he asked my opinion regarding the outfit that was wanting to do business with him, and I thought there were some points worth publishing.</p>
<p><strong>Here&#8217;s the original email forwarded by my customer:</strong></p>
<blockquote><p>xxx,</p>
<p>I just got off the phone with your assistant; she was calling to find out more information about the message I left you regarding xxx xxx.  She mentioned that you currently have a contract with someone who is optimizing your site to show up in Google for terms such as “Fort Worth bankruptcy lawyer.”  The conversation ended pretty quick when I let her know from a professional standpoint that your website is not showing up for the major terms and probably will never show up if the work done on your site stays consistent (I think you are on page 25). </p>
<p>I mentioned xxx xxx to showcase our capabilities; he is a well know Dallas criminal (DWI) lawyer.  We have optimized his site so that it shows up on the first page for “Dallas DWI lawyer,” and like terms (www.xxx.com).    If you know anything about the market you will recognize that these are probably the most competitive terms in the market.  I have met with 4 other bankruptcy attorneys in Fort Worth and am looking to work exclusively with just one.  If you plan on growing your firm via the internet then it probably makes sense that we set aside time to speak at some point before the end of the week or on Monday.  You may reach me at xxx.xxx.xxxx.  If you would like more information please visit our site www.xxx.com.  </p></blockquote>
<p><strong>And my response:</strong></p>
<blockquote><p>Hi xxx,</p>
<p>His is an extremely competitive industry, and it’s also a very new industry.  There are some legitimate firms out there, but there a lot more snake oil salesmen.  Here are some things to keep in mind:</p>
<ol>
<li>He’s talking about Search Engine Optimization which is designed to help your web site show up in the natural search results.  This is different from the paid search campaign that we’ve been discussing.</li>
<li>If search engine optimization is something you’re interested in, I would ask about their pricing, whether they intend to put you on contract, and whether they can guarantee results.</li>
<li>The first thing most SEO companies will do is come in to work with the structure of the web site.  This generally includes things like title tags, meta tags, proper use of headers, and the actual content of the site.  These were all taken into consideration as we rebuilt the site, and it’s not something I charge for.</li>
<li>Lastly, there are a lot of “tricks” to search engine optimization, but the most successful method is often times the least used because it requires a lot of effort.  There is no substitution for publishing original, valuable content online.  If his estimate comes back as high as I’m guessing, I would consider hiring a content writer to fill out your site rather than an SEO specialist.  This is just an opinion.</li>
</ol>
<p>Call me sometime and we can talk a bit more about this.  I’ve had a good bit of success jockeying two of my projects to the top of the search engines over the last few years and I’m more than happy share what I know.  They are:</p>
<p>Itintl.com<br />
<a href="http://www.google.com/search?q=how+to+import">http://www.google.com/search?q=how+to+import</a></p>
<p>1km1kt.net<br />
<a href="http://www.google.com/search?q=free+rpg+games">http://www.google.com/search?q=free+rpg+games</a></p>
<p>Keeton</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/search-engine-optimization/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pay-Per-Use Web Site Model</title>
		<link>http://www.danifer.com/pay-per-use-web-site-model</link>
		<comments>http://www.danifer.com/pay-per-use-web-site-model#comments</comments>
		<pubDate>Thu, 01 May 2008 15:26:48 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/?p=242</guid>
		<description><![CDATA[I&#8217;m sitting in my office trying to come up with an effective way to make the leap from web site revenue driven by advertising, to one revenue driven by payment for use of the service.
Right now, I have four web sites that are candidates for the pay-per-use business model.  They are:

http://www.firmscode.com &#8211; on online [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sitting in my office trying to come up with an effective way to make the leap from web site revenue driven by advertising, to one revenue driven by payment for use of the service.</p>
<p>Right now, I have four web sites that are candidates for the pay-per-use business model.  They are:</p>
<ul>
<li><a href="http://www.firmscode.com">http://www.firmscode.com</a> &#8211; on online lookup tool for US Customs FIRMS codes.</li>
<li><a href="http://www.signatureconfirm.com">http://www.signatureconfirm.com</a> &#8211; a digital signature service for signing contracts online.</li>
<li><a href="http://www.deliveryconfirm.com">http://www.deliveryconfirm.com</a> &#8211; a web based email return receipt service.</li>
<li>and <a href="http://linktrack.info">http://linktrack.info</a> &#8211; an online link shortening and tracking service.</li>
</ul>
<p>Here are the issues I&#8217;m facing.  FYI &#8211; I don&#8217;t have answers to these questions yet (that will probably come in a later post).</p>
<ul>
<li>How can I implement a pay per use model without losing a significant portion of the users?</li>
<li>What can I reasonably charge for the service?</li>
<li>How should I charge?  Subscriptions? Individual Transactions?</li>
</ul>
<p>I&#8217;m really starting to believe that online services are the next generation of the web, and I want to be a part of it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/pay-per-use-web-site-model/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Paypal Business Update Page Not Working</title>
		<link>http://www.danifer.com/paypal-business-update-page-not-working</link>
		<comments>http://www.danifer.com/paypal-business-update-page-not-working#comments</comments>
		<pubDate>Thu, 10 Apr 2008 20:38:33 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/paypal-business-update-page-not-working</guid>
		<description><![CDATA[I recently tried to update a client&#8217;s PayPal account from an individual account to a business account.  After submitting the update form, I got a page entitled &#8220;Page Not Found&#8221; with a link to retry or go to the PayPal home page.
I assumed that this was a temporary issue and that they were experiencing [...]]]></description>
			<content:encoded><![CDATA[<p>I recently tried to update a client&#8217;s PayPal account from an individual account to a business account.  After submitting the update form, I got a page entitled &#8220;Page Not Found&#8221; with a link to retry or go to the PayPal home page.</p>
<p>I assumed that this was a temporary issue and that they were experiencing an outage or upgrading their system.  After a week of trying at different intervals I sent an email to their support department.  You can see the support message below.</p>
<p>After receiving the reply from the support team, I re-attempted the upgrade process several more times over a few days using different browsers at with a variety of security settings.</p>
<p>Still unable to upgrade my PayPal account, I finally phoned in and was informed that this was a known issue and that they were unable to provide an estimated completion date.  In addition, there was no way to upgrade my account manually and that I should continue to try the online form.</p>
<p>So, if you&#8217;re having trouble upgrading your PayPal account, this might be why.</p>
<p>Here&#8217;s the message I sent to support:</p>
<blockquote><p>
Original Message Follows:<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Form  Message<br />
customer  subject:  Business  upgrade  problem  &#8211;  page  not  found.<br />
customer  message:  What  would  you  like  to  do  with  your  account  type?:<br />
&#8216;upgrd_acct&#8217;<br />
Additional  Information:  &#8216;When  I  fill  out  the  form  to  upgrade  my  account  to  a  business  account,  I  get  a  page  titled  &#8220;page  not  found&#8221;  with  a  link to  retry  the  form.   When  will  this  be  working  again  and  is  there  another way  to  upgrade  my  account?  </p>
<p>Thank  you,  </p>
<p>Keeton
</p></blockquote>
<p>Here&#8217;s the response:</p>
<blockquote><p>
From: webform@paypal.com [mailto:webform@paypal.com]<br />
Sent: Sunday, April 06, 2008 7:57 PM<br />
To: XXX<br />
Subject: Re: MyAccount (Routing Code: XXXX-XXXX-XXXXXX-XXXX-XXXXXXX) (XXXXXXXXXXXXXXXXXXX) :ppk1</p>
<p>Dear XXX,</p>
<p>Thank you for contacting PayPal.</p>
<p>I apologize for the delay of our response. </p>
<p>My name is Solad and I am happy to assist you today. I understand that you are having difficulty upgrading your account to a business account. I apologize for the inconvenience this may have caused you. I&#8217;ll be happy to check that for you.</p>
<p>If you are receiving the error message &#8216;page cannot be displayed&#8217; or &#8216;page cannot be found&#8217; while attempting to access your account or open a new one, it may be because your browser&#8217;s security level is set too low.</p>
<p>For maximum security, you should consider upgrading to a Netscape or Microsoft browser supporting 128-bit encryption. Below are the instructions for viewing your browser security level. </p>
<p>For Microsoft Internet Explorer:</p>
<p>   1.  Open your Internet Explorer browser and select &#8216;Help&#8221; from the toolbar </p>
<p>   2.  Select &#8216;About Internet Explorer&#8217; </p>
<p>   3.  On the About Internet Explorer window, you will be given a version number and a cipher strength (encryption rate) </p>
<p>   4.  If your cipher strength is less than 128-bit, you may update by going to your &#8216;Tools&#8217; tab and select &#8216;Windows Update&#8217;. (You may also click Help, click About Internet Explorer, and then click Update<br />
Information.) </p>
<p>   5.  This will direct you to the Microsoft web site to upgrade your browser </p>
<p>You will also need to check the browser settings:</p>
<p>   1.  Click Start&#8211;>Settings&#8211;>Control Panel and open &#8216;Internet Options&#8217; </p>
<p>   2.  Click the &#8216;Advanced&#8217; tab, scroll to the bottom of the scroll window </p>
<p>   3.  Ensure that &#8216;Use SSL 2.0&#8242;, &#8216;Use SSL 3.0&#8242; and &#8216;Use TLS 1.0&#8242; place a &#8216;check&#8217; in the checkbox next to each of these options </p>
<p>For Netscape Communicator or Navigator:</p>
<p>   1.  Click &#8216;Help&#8217; and then &#8216;About Communicator or Navigator&#8217; </p>
<p>   2.  In the window that opens, look for a section on RSA security </p>
<p>   3.  If this section reads, &#8216;This version supports U.S. security’, then your browser supports 128-bit encryption. </p>
<p>   4.  Otherwise, it will indicate you have an export version, which only supports 40-bit. (Further details are also available by clicking on Security in the Navigator toolbar) </p>
<p>   5.  If you need to upgrade your Netscape browser, go to http://home.netscape.com and click the &#8216;Download&#8217; graphic at the top of the page </p>
<p>For other browsers, please view your help files for more information about upgrading to a more recent version.</p>
<p>If the cipher strength is already set to 128 bit, you will need to clear your cookies. </p>
<p>Double-checking your time and date on your computer may also help with your issue:</p>
<p>   1.  Click the Start button in the lower left hand corner </p>
<p>   2.  Scroll up to Settings and click on Control Panel </p>
<p>   3.  Double click Date/Time </p>
<p>   4.  Make sure the year is set to the correct year </p>
<p>Once your changes have been made, you may need to reboot your computer. </p>
<p>Please Note: If you are getting &#8216;Page Cannot be Displayed&#8217; when trying to open a new account, it could be your cookies are not enabled. Once your cookies are enabled, you should be able to view the PayPal pages.</p>
<p>If this still doesn&#8217;t work, try clearing your cookies and cache on your computer.</p>
<p>If you are experiencing problems with our website that have not been encountered before, it is likely that you have a corrupted cookie. The easiest way to clear cookies is to remove them from your computer rather than the web browser. </p>
<p>Cookies are small text files (usually less than 1K in size) that websites send to your computer&#8217;s hard drive to identify you when you return. Think of them as your ID (identification) badge. Cookies are harmless and cannot affect the performance of your computer. </p>
<p>Without the cookie file, websites you frequent, like PayPal.com, will treat you as a new user each time you return.</p>
<p>Follow these simple steps to clear your cookies:</p>
<p>   1.  Open your Internet Explorer browser by clicking on the blue &#8220;e.&#8221; </p>
<p>   2.  Click &#8220;Tools&#8221; located at the top of the browser and select &#8220;Internet Options.&#8221; </p>
<p>   3.  Click &#8220;Delete Cookies&#8221;. </p>
<p>   4.  Click &#8220;OK&#8221; and &#8220;OK&#8221; again. </p>
<p>   5.  Restart your browser. </p>
<p>These steps should work for most Browsers types. </p>
<p>For IE 7, XP, and Vista users:</p>
<p>   1.  Open your Internet Explorer browser. </p>
<p>   2.  Click &#8220;Tools&#8221; located at the top of the browser and select &#8220;Internet Options.&#8221; </p>
<p>   3.  Under Browsing history, click the &#8220;Settings&#8221; button. </p>
<p>   4.  Click the &#8220;View files&#8221; button. </p>
<p>   5.  Click &#8220;Edit&#8221; at the top of the browser and then &#8220;Select All.&#8221; </p>
<p>   6.  Press the &#8220;Delete&#8221; key on your keyboard. </p>
<p>   7.  Click &#8220;Yes&#8221; if you are prompted with &#8220;Are you sure you want to delete the selected Cookies?&#8221; </p>
<p>   8.  Restart your browser. </p>
<p>To clear cookies for Macintosh using Internet Explorer, follow the steps<br />
below:</p>
<p>   1.  Click &#8220;Explorer&#8221; or &#8220;Edit&#8221; at the top of the screen. </p>
<p>   2.  Click &#8220;Preferences.&#8221; </p>
<p>   3.  Under Web Browser preferences, click &#8220;ADVANCED.&#8221; </p>
<p>   4.  Click &#8220;Empty Now&#8221; on the right. </p>
<p>   5.  Click &#8220;OK&#8221;. </p>
<p>   6.  Restart your browser.</p>
<p>If it still doesn&#8217;t work, kindly contact your internet provider to change some settings on your account with them.</p>
<p>If you have any further questions, please feel free to contact us again.</p>
<p>Sincerely,<br />
Solad<br />
PayPal Consumer Support<br />
PayPal, an eBay Company
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/paypal-business-update-page-not-working/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Adwords display URL policy for Tracking URLs</title>
		<link>http://www.danifer.com/google-adwords-display-url-policy-for-tracking-urls</link>
		<comments>http://www.danifer.com/google-adwords-display-url-policy-for-tracking-urls#comments</comments>
		<pubDate>Sun, 23 Mar 2008 17:46:58 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/google-adwords-display-url-policy-for-tracking-urls</guid>
		<description><![CDATA[Google recently announced that there would be an &#8220;Important Change to URL Policy Enforcement&#8221; primarily focused on matching domain names, Display URLs, Landing page URLs, and Destination URLs.
What I was unaware of prior to the article (and I&#8217;m still not sure) is that Google allows the use of tracking URLs that don&#8217;t match the landing [...]]]></description>
			<content:encoded><![CDATA[<p>Google recently announced that there would be an &#8220;Important Change to URL Policy Enforcement&#8221; primarily focused on matching domain names, Display URLs, Landing page URLs, and Destination URLs.</p>
<p>What I was unaware of prior to the article (and I&#8217;m still not sure) is that Google allows the use of tracking URLs that don&#8217;t match the landing page URL domain name.  I always assumed that the landing page URL had to match the domain of the display URL &#8211; no exceoptions.</p>
<p>Apparently, however, it is acceptable to use a tracking URL from a service like <a href="http://linktrack.info">LinkTrack</a> to monitor link activity.</p>
<p>You learn something new every day I guess, but this is definitely something I will be taking advantage of in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/google-adwords-display-url-policy-for-tracking-urls/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Link Tracking</title>
		<link>http://www.danifer.com/free-link-tracking</link>
		<comments>http://www.danifer.com/free-link-tracking#comments</comments>
		<pubDate>Fri, 29 Feb 2008 22:50:49 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://www.danifer.com/free-link-tracking</guid>
		<description><![CDATA[So here&#8217;s a fun new site from Danifer Web Services!  LinkTrack.info is a free link tracking service that lets you shorten long urls and track when they&#8217;ve been clicked on, and who clicked on them!  The service is free and you don&#8217;t have to signup or give out any personal information.

]]></description>
			<content:encoded><![CDATA[<p>So here&#8217;s a fun new site from Danifer Web Services!  LinkTrack.info is a <a href="http://linktrack.info/">free link tracking service</a> that lets you shorten long urls and track when they&#8217;ve been clicked on, and who clicked on them!  The service is free and you don&#8217;t have to signup or give out any personal information.</p>
<p><a href="http://linktrack.info/"><img src='http://www.danifer.com/wp-content/uploads/2008/02/linktrack.gif' alt='Linktrack' /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/free-link-tracking/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LinkTrack.info</title>
		<link>http://www.danifer.com/linktrackinfo</link>
		<comments>http://www.danifer.com/linktrackinfo#comments</comments>
		<pubDate>Fri, 29 Feb 2008 22:45:28 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.danifer.com/linktrackinfo</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/linktrackinfo/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blue Ribbon Brokers</title>
		<link>http://www.danifer.com/blue-ribbon-brokers</link>
		<comments>http://www.danifer.com/blue-ribbon-brokers#comments</comments>
		<pubDate>Wed, 13 Feb 2008 07:15:57 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://beta.danifer.com/?p=194</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/blue-ribbon-brokers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kiddoosalon</title>
		<link>http://www.danifer.com/kiddoosalon</link>
		<comments>http://www.danifer.com/kiddoosalon#comments</comments>
		<pubDate>Wed, 13 Feb 2008 07:15:35 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://beta.danifer.com/?p=212</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/kiddoosalon/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Frontier Ranch</title>
		<link>http://www.danifer.com/the-frontier-ranch</link>
		<comments>http://www.danifer.com/the-frontier-ranch#comments</comments>
		<pubDate>Wed, 13 Feb 2008 07:15:24 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://beta.danifer.com/?p=200</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/the-frontier-ranch/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Informed Trade International</title>
		<link>http://www.danifer.com/itintl</link>
		<comments>http://www.danifer.com/itintl#comments</comments>
		<pubDate>Wed, 13 Feb 2008 07:14:32 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://beta.danifer.com/?p=156</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/itintl/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Practical Health Insurance</title>
		<link>http://www.danifer.com/practical-health-insurance</link>
		<comments>http://www.danifer.com/practical-health-insurance#comments</comments>
		<pubDate>Wed, 13 Feb 2008 07:13:26 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://beta.danifer.com/?p=203</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/practical-health-insurance/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Guardian Domains</title>
		<link>http://www.danifer.com/guardian-domains</link>
		<comments>http://www.danifer.com/guardian-domains#comments</comments>
		<pubDate>Wed, 13 Feb 2008 07:08:32 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://beta.danifer.com/?p=224</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/guardian-domains/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keller Business Group</title>
		<link>http://www.danifer.com/keller-business-group</link>
		<comments>http://www.danifer.com/keller-business-group#comments</comments>
		<pubDate>Wed, 13 Feb 2008 07:05:46 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://beta.danifer.com/?p=221</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/keller-business-group/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>User Friendly</title>
		<link>http://www.danifer.com/user-friendly</link>
		<comments>http://www.danifer.com/user-friendly#comments</comments>
		<pubDate>Wed, 13 Feb 2008 07:02:50 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://beta.danifer.com/?p=218</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/user-friendly/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Owls Nest Toys</title>
		<link>http://www.danifer.com/owls-nest-toys</link>
		<comments>http://www.danifer.com/owls-nest-toys#comments</comments>
		<pubDate>Wed, 13 Feb 2008 07:00:05 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://beta.danifer.com/?p=215</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/owls-nest-toys/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blue Sun Maids</title>
		<link>http://www.danifer.com/blue-sun-maids</link>
		<comments>http://www.danifer.com/blue-sun-maids#comments</comments>
		<pubDate>Wed, 13 Feb 2008 06:53:59 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://beta.danifer.com/?p=209</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/blue-sun-maids/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Very Texas</title>
		<link>http://www.danifer.com/very-texas</link>
		<comments>http://www.danifer.com/very-texas#comments</comments>
		<pubDate>Wed, 13 Feb 2008 06:51:38 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://beta.danifer.com/?p=206</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/very-texas/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NIBC Online</title>
		<link>http://www.danifer.com/nibc-online</link>
		<comments>http://www.danifer.com/nibc-online#comments</comments>
		<pubDate>Wed, 13 Feb 2008 06:41:21 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://beta.danifer.com/?p=197</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/nibc-online/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dusty Attic Mall</title>
		<link>http://www.danifer.com/dusty-attic-mall</link>
		<comments>http://www.danifer.com/dusty-attic-mall#comments</comments>
		<pubDate>Wed, 13 Feb 2008 06:34:48 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://beta.danifer.com/?p=191</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/dusty-attic-mall/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Arisa Online</title>
		<link>http://www.danifer.com/arisa-online</link>
		<comments>http://www.danifer.com/arisa-online#comments</comments>
		<pubDate>Wed, 13 Feb 2008 06:32:14 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://beta.danifer.com/?p=188</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/arisa-online/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>100% Clean</title>
		<link>http://www.danifer.com/100-clean</link>
		<comments>http://www.danifer.com/100-clean#comments</comments>
		<pubDate>Wed, 13 Feb 2008 06:28:47 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://beta.danifer.com/?p=185</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/100-clean/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JCare Acupuncture</title>
		<link>http://www.danifer.com/jcare-acupuncture</link>
		<comments>http://www.danifer.com/jcare-acupuncture#comments</comments>
		<pubDate>Wed, 13 Feb 2008 06:00:23 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://beta.danifer.com/?p=227</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/jcare-acupuncture/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FIRMS Codes</title>
		<link>http://www.danifer.com/firms-codes</link>
		<comments>http://www.danifer.com/firms-codes#comments</comments>
		<pubDate>Wed, 13 Feb 2008 05:27:48 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://beta.danifer.com/?p=172</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/firms-codes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Danifer Web Services</title>
		<link>http://www.danifer.com/danifer-web-services</link>
		<comments>http://www.danifer.com/danifer-web-services#comments</comments>
		<pubDate>Wed, 13 Feb 2008 05:06:40 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://beta.danifer.com/?p=161</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/danifer-web-services/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RPG Laboratory</title>
		<link>http://www.danifer.com/rpglaboratory</link>
		<comments>http://www.danifer.com/rpglaboratory#comments</comments>
		<pubDate>Tue, 12 Feb 2008 23:15:28 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://beta.danifer.com/?p=159</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/rpglaboratory/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Skinetti</title>
		<link>http://www.danifer.com/skinetti</link>
		<comments>http://www.danifer.com/skinetti#comments</comments>
		<pubDate>Tue, 12 Feb 2008 23:14:54 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://beta.danifer.com/?p=158</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/skinetti/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Focused Marketing</title>
		<link>http://www.danifer.com/focusedmarketing</link>
		<comments>http://www.danifer.com/focusedmarketing#comments</comments>
		<pubDate>Tue, 12 Feb 2008 23:09:07 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://beta.danifer.com/?p=157</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/focusedmarketing/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Diesel Earth</title>
		<link>http://www.danifer.com/dieselearth</link>
		<comments>http://www.danifer.com/dieselearth#comments</comments>
		<pubDate>Tue, 12 Feb 2008 22:41:45 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://beta.danifer.com/?p=155</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/dieselearth/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delivery Confirm</title>
		<link>http://www.danifer.com/deliveryconfirm</link>
		<comments>http://www.danifer.com/deliveryconfirm#comments</comments>
		<pubDate>Tue, 12 Feb 2008 22:20:11 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://beta.danifer.com/?p=153</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/deliveryconfirm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Signature Confirm</title>
		<link>http://www.danifer.com/signatureconfirm</link>
		<comments>http://www.danifer.com/signatureconfirm#comments</comments>
		<pubDate>Tue, 12 Feb 2008 17:40:45 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://beta.danifer.com/?p=142</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/signatureconfirm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clean Atheletes Pure Sports</title>
		<link>http://www.danifer.com/clean-atheletes-pure-sports</link>
		<comments>http://www.danifer.com/clean-atheletes-pure-sports#comments</comments>
		<pubDate>Fri, 04 Jan 2008 19:23:39 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/clean-atheletes-pure-sports.html</guid>
		<description><![CDATA[Not too long ago we put together a site for an up and coming company, 100% Clean.  They&#8217;re starting to sign with some very impressive professional atheletes and are issuing press releases, so I figured I should probably mention them in the blog!
These guys were great to work for, and their campaign against performance [...]]]></description>
			<content:encoded><![CDATA[<p>Not too long ago we put together a site for an up and coming company, <a href="http://100percentclean.com/">100% Clean</a>.  They&#8217;re starting to sign with some very impressive professional atheletes and are issuing press releases, so I figured I should probably mention them in the blog!</p>
<p>These guys were great to work for, and their campaign against performance enhancing drugs is a really fantastic cause.  They&#8217;re launching a clothing line over the next few months, so if you&#8217;re reading this take a few minutes to check it out.</p>
<p><a href="http://100percentclean.com/"><img src="http://www.danifer.com/images/100percentlogo.gif" alt="100% Clean - Clean Atheletes Pure Sports" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/clean-atheletes-pure-sports/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Customer Update</title>
		<link>http://www.danifer.com/customer-update</link>
		<comments>http://www.danifer.com/customer-update#comments</comments>
		<pubDate>Thu, 20 Dec 2007 22:28:48 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/customer-update.html</guid>
		<description><![CDATA[I recently finished a project for a new customer, Kiddos! Kids&#8217; Salon, and I couldn&#8217;t be happier.  I&#8217;m glad when we have the opportunity to depart from the corporate web sites to do something a little more fun, and I couldn&#8217;t be more pleased with the way this one came out.
If you have little [...]]]></description>
			<content:encoded><![CDATA[<p>I recently finished a project for a new customer, <a href="http://www.kiddoosalon.com/">Kiddos! Kids&#8217; Salon</a>, and I couldn&#8217;t be happier.  I&#8217;m glad when we have the opportunity to depart from the corporate web sites to do something a little more fun, and I couldn&#8217;t be more pleased with the way this one came out.</p>
<p>If you have little ones and you&#8217;re in the area, I highly recommend you stop by and check them out.</p>
<p><a href="http://www.kiddoosalon.com/"><img src="http://www.danifer.com/images/kiddoos-screenshot.jpg" alt="Kiddoos! Kids' Salon" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/customer-update/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy Holidays from Danifer Web Services!</title>
		<link>http://www.danifer.com/happy-holidays-from-danifer-web-services</link>
		<comments>http://www.danifer.com/happy-holidays-from-danifer-web-services#comments</comments>
		<pubDate>Tue, 18 Dec 2007 23:28:00 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/happy-holidays-from-danifer-web-services.html</guid>
		<description><![CDATA[My sincerest thanks to everyone for being a part of Danifer Web Services this year. It&#8217;s been a lot of fun and I&#8217;m glad that I&#8217;ve had the opportunity to share it with so many wonderful people. Best wishes to our customers, colleagues, friends and family this holiday season, and I wish you a happy [...]]]></description>
			<content:encoded><![CDATA[<p>My sincerest thanks to everyone for being a part of Danifer Web Services this year. It&#8217;s been a lot of fun and I&#8217;m glad that I&#8217;ve had the opportunity to share it with so many wonderful people. Best wishes to our customers, colleagues, friends and family this holiday season, and I wish you a happy and prosperous New Year.</p>
<p>From everyone at Danifer Web Services, happy holidays!</p>
<p>Thank you,</p>
<p>Keeton</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/happy-holidays-from-danifer-web-services/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grapevine AMBUCS</title>
		<link>http://www.danifer.com/grapevine-ambucs</link>
		<comments>http://www.danifer.com/grapevine-ambucs#comments</comments>
		<pubDate>Wed, 21 Nov 2007 21:46:06 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/grapevine-ambucs.html</guid>
		<description><![CDATA[Last week I attended a meeting for a group called the Grapevine AMBUCS &#8211; a charitable organization of businessmen in the Grapevine area.  My original goal in coming to the meeting was to get involved with a local charity organization that was laid back and would be fun and easy to attend.  I [...]]]></description>
			<content:encoded><![CDATA[<p>Last week I attended a meeting for a group called the Grapevine AMBUCS &#8211; a charitable organization of businessmen in the Grapevine area.  My original goal in coming to the meeting was to get involved with a local charity organization that was laid back and would be fun and easy to attend.  I was particularly pleased with the AMBUCS because they were extremely friendly, fairly well organized, and I already knew a few of the members from some of the business networking events I attend.</p>
<p>From the Grapevine AMBUCS web site:</p>
<blockquote><p>The Grapevine Chapter of AMBUCS is comprised of businessmen from the Grapevine and surrounding communities dedicated to creating independence and opportunities for people with disabilities. AMBUCS meetings, community service projects and special events bring our members together as friends. Some of these friendships last a lifetime.AMBUCS service opportunities provide individuals with the resources to help their community when and if they are unable to do this as an individual. Working together as a group promotes fun, friendship and most of all, enpowers the community and individuals in need. </p>
<p>Creating Independence for People with Disabilities by:</p>
<ul>
<li>Performing Community Service</li>
<li>Providing AmTrykes to Children with Disabilites</li>
<li>Providing Scholarships for Therapists </li>
</ul>
</blockquote>
<p>As of this week, I am officially an AMBUCS member and am proud to be part of their organization.  If you&#8217;re interested in becoming a member yourself, would like to volunteer, or have questions about one of the upcoming events, please feel free to <a href="http://www.danifer.com/contact.php">drop me a line anytime</a>.</p>
<p>For more information on the national organization, please visit their site at <a href="http://www.ambucs.com/">ambucs.com</a>.  For the Grapevine local chapter, please go to <a href="http://grapevineambucs.com/index.htm">grapevineambucs.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/grapevine-ambucs/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spam Bully 4</title>
		<link>http://www.danifer.com/spam-bully-4</link>
		<comments>http://www.danifer.com/spam-bully-4#comments</comments>
		<pubDate>Wed, 31 Oct 2007 15:53:11 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/spam-bully-4.html</guid>
		<description><![CDATA[Today I received a very exciting email from the team at SpamBully.
If you&#8217;ve read my previous article on updating to Windows Vista, you know that I wasn&#8217;t able to migrate the SpamBully software to the new system.  I haven&#8217;t tested it out yet, but this email suggests that the software is now ready to [...]]]></description>
			<content:encoded><![CDATA[<p>Today I received a very exciting email from the team at SpamBully.</p>
<p>If you&#8217;ve read my <a href="http://www.danifer.com/blog/windows-vista-revisit.html">previous article on updating to Windows Vista</a>, you know that I wasn&#8217;t able to migrate the SpamBully software to the new system.  I haven&#8217;t tested it out yet, but this email suggests that the software is now ready to go!</p>
<h2>Their Email</h2>
<blockquote><p>Dear SpamBully user,<br />
We are excited to announce the release of SpamBully 4 for Outlook, Outlook Express and Windows Mail in Vista! </p>
<p>We are offering a FREE 1 year upgrade to users of SpamBully 1, 2, and 3.</p>
<p>SpamBully 4 has many exciting new features and enhancements to help you continue to keep the upper hand against spammers. </p>
<p>New Features and Enhancements Include&#8230;&#8230;.. </p>
<p>Auto-Delete &#8211; Now you can save time by setting SpamBully to immediately delete emails from known spammers on your Block list. </p>
<p>Review Window &#8211; Easily review emails SpamBully has categorized as spam and unsure from one simple window. </p>
<p>Fraudulent Link Detection &#8211; Detect links in phishing email messages that are from potentially fraudulent sources so you don&#8217;t accidentally give out your valuable financial information to thieves. </p>
<p>One Click Empty &#8211; Now with one mouse click you can instantly delete all of the spam in your Spam folder. </p>
<p>SpamBully 4 has also made even more improvements to the core features you have come to depend on daily&#8230;&#8230; </p>
<p>Enhanced Allow/Block List &#8211; Allow or block email addresses, IP&#8217;s and words/phrases you choose from your Inbox from one simple location. From here you also have the option of auto-deleting emails from known spammers on your Block list. </p>
<p>Fight Back &#8211; Easily turn spammers in to their ISP&#8217;s and the FTC with the click of your mouse. You can also bounce spam back to the spammers who sent it. </p>
<p>Unsure Folder &#8211; SpamBully now can place messages it is unable to properly classify as good email or spam into a special folder. This saves you extra time from having to review your Spam folder. </p>
<p>Cellphone Forwarding &#8211; Forward only good emails to your cellphone.</p>
<p>Auto-Delete &#8211; Delete spam emails automatically as they download.</p>
<p>Bayesian Filter &#8211; Cutting edge artificial intelligence that knows which emails you&#8217;ve received are good or spam. Makes sure good emails make it to your Inbox. </p>
<p>Multi-Language Interface &#8211; Lets you easily convert the SpamBully toolbar into English, Spanish, Italian, French, German, Russian, and other popular languages. </p>
<p>Statistics &#8211; Comprehensive graphing and statistics shows you how well SpamBully is performing for you. </p>
<p>Challenge Emails &#8211; Email a special password to an unfamiliar sender that they must type in before the email is allowed to your Inbox. </p>
<p>Try the new SpamBully 4 for 14 days. </p>
<p>Download your copy from: </p>
<p>http://www.spambully.com/download.php </p>
<p>The first time you open Outlook, Outlook Express or Windows Mail with SpamBully 4, it will easily allow you to import all of your SpamBully 3 settings. </p>
<p>We are offering users of SpamBully 1, 2, and 3 a FREE 1 year upgrade to SpamBully 4. </p>
<p>You can instantly get your SpamBully 4 code at: </p>
<p>http://www.spambully.com/upgrade4.php </p>
<p>We truly appreciate your continued support! </p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; </p>
<p>You are being emailed this announcement because you have purchased either SpamBully 1,2 or 3. </p>
<p>If you do not wish to be notified by SpamBully when new versions or upgrades are available, please click the link at bottom and you will be instantly removed fromour updates email database. SpamBully does respect your  privacy and your wishes, we do not sell our customer lists and we will not  email you with SpamBully updates that you do not want. </p>
<p>Axaware, LLC<br />
2153 Wealthy<br />
#150<br />
Grand Rapids, MI<br />
49506</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/spam-bully-4/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Import Duty</title>
		<link>http://www.danifer.com/import-duty-2</link>
		<comments>http://www.danifer.com/import-duty-2#comments</comments>
		<pubDate>Fri, 19 Oct 2007 22:26:56 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/import-duty-2.html</guid>
		<description><![CDATA[If you haven&#8217;t been in a while check out import-duty.com, one of my import/export related web sites.  I recently redesigned this one with a new Wordpress template and added in an email collection utility and some saleable products.
This site has excellent page rank and has generated a steady stream of traffic for import duty [...]]]></description>
			<content:encoded><![CDATA[<p>If you haven&#8217;t been in a while check out import-duty.com, one of my import/export related web sites.  I recently redesigned this one with a new Wordpress template and added in an email collection utility and some saleable products.</p>
<p>This site has excellent page rank and has generated a steady stream of traffic for import duty and import tax related terms.  I&#8217;ve decided to develop it a bit further and try to help importers answer that all important question, &#8220;<a href="http://www.import-duty.com/">how much is import duty?&#8221;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/import-duty-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is a Link Exchange?</title>
		<link>http://www.danifer.com/what-is-a-link-exchange</link>
		<comments>http://www.danifer.com/what-is-a-link-exchange#comments</comments>
		<pubDate>Wed, 17 Oct 2007 17:44:25 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/what-is-a-link-exchange.html</guid>
		<description><![CDATA[What is a Link Exchange?
In order to promote web site visitors to their sites, many web site owners choose to participate in link exchanges.  A link exchange is an agreement between two web site owners wherein they agree to add a click-able link to each of their sites in order to promote each other [...]]]></description>
			<content:encoded><![CDATA[<h2>What is a Link Exchange?</h2>
<p>In order to promote web site visitors to their sites, many web site owners choose to participate in link exchanges.  A link exchange is an agreement between two web site owners wherein they agree to add a click-able link to each of their sites in order to promote each other and share traffic.</p>
<h2>What are the Benefits of a Link Exchange?</h2>
<p>The primary benefit of a link exchange is for unpaid search engine positioning.  Search engines like Google, Yahoo!, and MSN are believed to count the number of incoming links a site has from other web sites in order to determine it&#8217;s relevance when returning search engine results.  It is widely believed that the more incoming links a site has, the higher it will rank for a given search term.</p>
<p>The secondary benefit of a link exchange is an exchange of traffic from one web site to another.  By participating in a link exchange, web site owners actively promote their web site elsewhere on the internet in order to gain more visitors from incoming links.</p>
<p>Although generally overlooked, link exchanges also provide value to your web site&#8217;s visitors.  Assuming that you are planning on linking to sites that have content related to yours, you are providing your visitors with additional resources.</p>
<h2>What are the Problems with Link Exchanges?</h2>
<p>The link exchange system is prone to abuse.  Many sites automate link exchanges with other web masters to generate thousands of incoming links.  These incoming links are less a &#8220;vote of confidence&#8221; from another site and are generally annoying to visitors looking for real information.  Here&#8217;s a sample <a href="http://www.danifer.com/blog/automated-link-exchange-request-from-merchant-service-group.html">automated link exchange request</a> from Merchant Service Group</p>
<h2>How can I get the most out of link exchanges?</h2>
<p>This part can be time consuming, but it&#8217;s definitely worthwhile.  Stick to the following for best results:</p>
<ul>
<li>Have a web site worth linking to.  Fill your site with useful content for your readers and for those sites who would link to you.</li>
<li>Don&#8217;t automate your linking process.  Instead, hand pick sites that compliment yours and contact the owner in a personal way.  Mention who you are and what you like about their web site.  I always write an individual email to each potential link exchange partner.  It&#8217;s definitely more time consuming, but in the long run it has better results.</li>
<li>Contact sites that are relevant to your area of expertise, but not direct competitors.  An example would be a veterinarian&#8217;s web site linking to one for a pet groomer.</li>
<li>Don&#8217;t go overboard.  A few choice links from the right people will get great results.</li>
</ul>
<h2>Is there any terminology I should know?</h2>
<p>This is not a comprehensive list, but should get you started:</p>
<ul>
<li>URL: the address in your address bar.  It normally looks something like http://www.danifer.com/blog/what-is-a-link-exchange.html.</li>
<li>Anchor text: You can use any text to link to another web site.  What you use for anchor text is believed to have an impact on search results.  <a href="http://www.danifer.com/blog/what-is-a-link-exchange.html">This is an example of anchor text.</a>  This is a good place to insert keywords relevant to the site you&#8217;re linking to.</li>
<li>One way link: Not a true link exchange, but rather an incoming link to a site that is not reciprocated.</li>
<li>Banner/Image: You can use an image to link to a site rather than anchor text.</li>
<li>Alt Text: When an image is used, alt text can be added to signify what the image is about to visually impaired or graphics disabled browsers.  This is a good place to insert keywords relevant to the image you&#8217;re using and the site you&#8217;re linking to.</li>
</ul>
<h2>What about buying links?</h2>
<p>The jury is still out on this one.  It definitely makes the process easier, but it might not achieve the results you&#8217;re looking for.  If you&#8217;re going to buy links, do so in moderation and don&#8217;t blow your budget.  There are more proven ways you can spend money to improve your traffic.</p>
<h2>I&#8217;m ready.  What do I do now?</h2>
<p>Here&#8217;s how the link exchange would normally work:</p>
<ul>
<li>Contact the site you would like to exchange links with.</li>
<li>The two of you agree where you would like the links placed and what you will be linking to.</li>
<li>Communicate with your web master where the link should be placed, what it should point to and any other information you worked out with the link exchange partner.</li>
<li>Confirm that your link exchange partner has posted your link.</li>
<li>Check back occasionally to make sure nothing has been changed.</li>
</ul>
<p>Best of luck to would-be link exchangers!  I hope you found some of this worthwhile.</p>
<p>Keeton</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/what-is-a-link-exchange/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automated Link Exchange Request</title>
		<link>http://www.danifer.com/automated-link-exchange-request</link>
		<comments>http://www.danifer.com/automated-link-exchange-request#comments</comments>
		<pubDate>Wed, 17 Oct 2007 17:40:18 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/automated-link-exchange-request-from-merchant-service-group.html</guid>
		<description><![CDATA[Here&#8217;s an example of an automated link exchange request.  Although written in a generically personable way, this is obviously an automated program or bulk distribution email.
As a web site owner I find this kind of thing annoying.  Not only is it spam mail, but I believe bulk link requests like this are actually [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s an example of an automated link exchange request.  Although written in a generically personable way, this is obviously an automated program or bulk distribution email.</p>
<p>As a web site owner I find this kind of thing annoying.  Not only is it spam mail, but I believe bulk link requests like this are actually harmful to both the originating site as well as those that link to it.</p>
<p>If you&#8217;re not sure what all this is about, please check out this related article: <a href="http://www.danifer.com/blog/what-is-a-link-exchange.html">What is a link exchange?</a></p>
<p>Here&#8217;s the email:</p>
<blockquote><p>I came across your website http://www.itintl.com, and would like to propose a link exchange between our sites. <em>*company name removed*</em> provides an array of <em>*service description removed*</em> to retail<em>*potential clients removed*</em> . <em>*service description removed*</em> </p>
<p>Please consider adding our link to your site on your page: http://www.itintl.com/rss/itintl.xml.</p>
<p>Here is our linking information:</p>
<p>Title: <em>*Anchor Text Removed*</em><br />
Description: <em>*description removed*</em><br />
URL: <em>*URL removed*</em> </p>
<p>========== Begin HTML Code ================</p>
<p>&lt;a href=&#8221;<em>*URL removed*</em>&#8221; Target=&#8221;_blank&#8221;&gt;&lt;b&gt;<em>*Anchor Text Removed*</em>&lt;/b&gt;&lt;/a&gt; <em>*description removed*</em> </p>
<p>========== End HTML Code ================</p>
<p>Let us know when our link is placed and we will post your link in the proper category of our resources page listed here: <em>*description removed*</em> . </p>
<p>Please be sure to include your desired title and description. Your link will be posted within hours, however, in some rare cases it may take longer.  Please feel free to let me know if you have any questions.</p>
<p>Thank you for your consideration,</p>
<p><em>*contact information removed*</em> </p>
<p>If you would like not to receive any further communications from <em>*company name removed*</em> , please respond to this email with &#8220;Remove&#8221; in the subject line.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/automated-link-exchange-request/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Important ICANN Notice Regarding Your Domain Name(s)</title>
		<link>http://www.danifer.com/important-icann-notice-regarding-your-domain-names</link>
		<comments>http://www.danifer.com/important-icann-notice-regarding-your-domain-names#comments</comments>
		<pubDate>Fri, 05 Oct 2007 17:17:29 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/important-icann-notice-regarding-your-domain-names.html</guid>
		<description><![CDATA[One of my customers received this notice from ICANN and had some questions.  Read the email from GoDaddy, his question, and my response below.
Email from GoDaddy/ICANN
From: accountupdate@godaddy.com
Sent: Saturday, September 29, 2007 9:18 PM
To:
Subject: Important ICANN Notice Regarding Your Domain Name(s)
***********
Important ICANN Notice Regarding Your Domain Name(s)
***********
Dear Name, 
It&#8217;s that time of year again. ICANN [...]]]></description>
			<content:encoded><![CDATA[<p>One of my customers received this notice from ICANN and had some questions.  Read the email from GoDaddy, his question, and my response below.</p>
<h2>Email from GoDaddy/ICANN</h2>
<blockquote><p>From: accountupdate@godaddy.com<br />
Sent: Saturday, September 29, 2007 9:18 PM<br />
To:<br />
Subject: Important ICANN Notice Regarding Your Domain Name(s)</p>
<p>***********<br />
Important ICANN Notice Regarding Your Domain Name(s)<br />
***********</p>
<p>Dear Name, </p>
<p>It&#8217;s that time of year again. ICANN (the Internet Corporation for Assigned<br />
Names and Numbers) annually requires that all accredited registrars (like Go<br />
Daddy) ask their domain administrators/registrants to review domain name<br />
contact data, and make any changes necessary to ensure accuracy.</p>
<p>To review/update your contact data, simply:<br />
     + Go to www.godaddy.com/?isc=<br />
     + Click on the &#8220;ICANN Domain Confirmation&#8221; icon at the top of the page<br />
     + You will be taken to a landing page and asked to enter your Domain<br />
Information Key: XXX-XXX-XXX-XXX-XXXXXXXXXXX<br />
     + Enter your key and click &#8220;Go.&#8221;</p>
<p>Next, simply review the contact information for each domain name. To make a<br />
correction, log in to &#8220;My Account&#8221; with your customer number or log in name<br />
and password. Click &#8220;Manage Domains,&#8221; select the domain to update, then<br />
click &#8220;Contact.&#8221; If you find that your domain contact data is accurate,<br />
there&#8217;s no need to take action.</p>
<p>If, however, your domain contact information is inaccurate, you must correct<br />
it. (Under ICANN rules and the terms of your registration agreement,<br />
providing false contact information can be grounds for domain name<br />
cancellation.) To review the ICANN policy, visit:<br />
http://www.icann.org/whois/wdrp-registrant-faq.htm</p>
<p>Should you have any questions, please email us at mailto:support@godaddy.com<br />
or call our customer support line at (480) 505-8877.</p>
<p>Thanks for your attention and thank you for being a GoDaddy.com customer.</p>
<p>Sincerely,<br />
GoDaddy.com Domain Support</p>
<p>If you are the domain administrator of more than one GoDaddy.com domain<br />
account, you may receive this notice multiple times.</p></blockquote>
<h2>The Question</h2>
<blockquote><p>Hi Keeton,</p>
<p>Is this something I should worry about or just a clever marketing thing?</p>
<p>Thanks,</p>
<p>Name</p></blockquote>
<h2>My Response</h2>
<blockquote><p>Hi Name,</p>
<p>This is not clever marketing &#8211; ICANN is actually an official organization that regulates domains.  All they are asking you to do is log into your account and make sure your contact details are up to date.  If they haven&#8217;t changed since last year, no updates will be needed.</p>
<p>Hope that helps,</p>
<p>Keeton</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/important-icann-notice-regarding-your-domain-names/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>/~username AliasMatch</title>
		<link>http://www.danifer.com/username-aliasmatch</link>
		<comments>http://www.danifer.com/username-aliasmatch#comments</comments>
		<pubDate>Fri, 05 Oct 2007 16:24:47 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/username-aliasing.html</guid>
		<description><![CDATA[I recently purchased and installed an ssl security certificate on my private web server that hosts nearly 40 of my own web sites.  Since more than one of those sites sells products, I need to use the ssl certificate on multiple sites.  Rather than buy certificates for each one, I instead opted to [...]]]></description>
			<content:encoded><![CDATA[<p>I recently purchased and installed an ssl security certificate on my private web server that hosts nearly 40 of my own web sites.  Since more than one of those sites sells products, I need to use the ssl certificate on multiple sites.  Rather than buy certificates for each one, I instead opted to process transactions on a secure subdomain of this site (secure.danifer.com) and alias the other web sites to subdirectories of the secure subdomain.</p>
<p>For example, instead of making https://howtoadvertise.net/shop I&#8217;ll use https://secure.danifer.com/~howtoadvertise.net/shop to accept encrypted data for credit card transactions.  This way I won&#8217;t have to buy a separate security certificate for each site.</p>
<h2>The problem</h2>
<p>I couldn&#8217;t figure out how to configure the Apache2 virtualhost file to match both the fully qualified domain name as well as a sub-directory of the secure domain.  I&#8217;ve worked with hosting reseller programs using the common Cpanel setup and I know it&#8217;s possible, I just didn&#8217;t know how to do it myself.</p>
<h2>The solution</h2>
<p>As it turns out, all I needed to do was make use of the Apache2 ServerAlias directive.  Here&#8217;s the line that makes it work:</p>
<blockquote><p>AliasMatch ^/~(.*) /home/public_html/$1</p></blockquote>
<p>Which matches https://secure.danifer.com/~username to the public_html directory for any username on the system.  Pretty slick!</p>
<p>Here&#8217;s my complete virtualhost file:</p>
<blockquote><p>
&lt;VirtualHost *:80&gt;<br />
ServerName danifer.com<br />
DocumentRoot /home/public_html/danifer.com<br />
ServerAlias www.danifer.com<br />
AliasMatch ^/~(.*) /home/public_html/$1<br />
ErrorLog &#8220;|/usr/bin/cronolog /home/apache_logs/%Y-%m-%d-danifer.com-error.log&#8221;<br />
CustomLog &#8220;|/usr/bin/cronolog /home/apache_logs/%Y-%m-%d-danifer.com-access.log&#8221; combined<br />
CustomLog &#8220;|/usr/bin/cronolog /home/apache_logs/server_logs/%Y-%m-%d-server-access.log&#8221; combined</p>
<p>#Redirect non-existing requests to the homepage<br />
ErrorDocument 404 /index.php<br />
ErrorDocument 500 /index.php<br />
ErrorDocument 403 /index.php<br />
&lt;/VirtualHost&gt;</p>
<p>&lt;VirtualHost *:443&gt;<br />
ServerName secure.danifer.com<br />
DocumentRoot /home/public_html/danifer.com<br />
AliasMatch ^/~(.*) /home/public_html/$1<br />
ErrorLog &#8220;|/usr/bin/cronolog /home/apache_logs/%Y-%m-%d-danifer.com-error.log&#8221;<br />
CustomLog &#8220;|/usr/bin/cronolog /home/apache_logs/%Y-%m-%d-danifer.com-access.log&#8221; combined<br />
CustomLog &#8220;|/usr/bin/cronolog /home/apache_logs/server_logs/%Y-%m-%d-server-access.log&#8221; combined</p>
<p>SSLEngine on<br />
SSLCertificateFile /etc/apache2/ssl/ssl.crt<br />
SSLCertificateKeyFile /etc/apache2/ssl/ssl.key<br />
SSLCertificateChainFile /etc/apache2/ssl/ssl.crt</p>
<p>#Redirect non-existing requests to the homepage<br />
ErrorDocument 404 /index.php<br />
ErrorDocument 500 /index.php<br />
ErrorDocument 403 /index.php<br />
&lt;/VirtualHost&gt;
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/username-aliasmatch/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A New Logo!</title>
		<link>http://www.danifer.com/a-new-logo</link>
		<comments>http://www.danifer.com/a-new-logo#comments</comments>
		<pubDate>Thu, 04 Oct 2007 19:35:47 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/a-new-look-2.html</guid>
		<description><![CDATA[As part of our company identity project, we&#8217;ve added a logo to the Danifer Web Services portfolio!  See it on our homepage or check it out below.

]]></description>
			<content:encoded><![CDATA[<p>As part of our company identity project, we&#8217;ve added a logo to the Danifer Web Services portfolio!  See it on our homepage or check it out below.</p>
<p><center><img src="http://www.danifer.com/images/danifer-logo.gif" alt-"Danifer Web Services"></center></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/a-new-logo/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Domain Listing Service Search Engine Submission</title>
		<link>http://www.danifer.com/domain-listing-service-search-engine-submission</link>
		<comments>http://www.danifer.com/domain-listing-service-search-engine-submission#comments</comments>
		<pubDate>Mon, 27 Aug 2007 16:40:18 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/domain-listing-service-search-engine-submission.html</guid>
		<description><![CDATA[This is a follow up post to my earlier report on the Domain Listing Service mailers my customers have been receiving.  Looks like they&#8217;ve modified their product a bit, but are still using the same deceptive, high pressure bulk mail to sell it.  I can&#8217;t speak to the quality of the Search Engine [...]]]></description>
			<content:encoded><![CDATA[<p>This is a follow up post to my earlier report on the <a href="http://www.danifer.com/blog/domain-listing-service-corp-scam.html">Domain Listing Service</a> mailers my customers have been receiving.  Looks like they&#8217;ve modified their product a bit, but are still using the same deceptive, high pressure bulk mail to sell it.  I can&#8217;t speak to the quality of the Search Engine Submission product they&#8217;re promoting, but I&#8217;m again disappointed in the sales strategy.</p>
<p>Thanks to Linda for alerting me to this issue with her email:</p>
<blockquote><p>
Recently I received a bill from the above-referenced company for $75.00.  It was not for domain name registration so much as for a website address listing for search engine submissions.  When I looked them up on the internet, your website with the correspondence regarding the bogus bill to one of your clients popped up.  Thought you might like to know of their latest scam.</p>
<p>Sincerely,</p>
<p>Linda
</p></blockquote>
<p>Another email, this time from Heather:</p>
<blockquote><p>We were sent an invoice for $75 to renew our domain and unfortunately we sent the check to Domain Listing Service Corp.  Would you happen to have a telephone number for them.</p>
<p>Thank you,</p>
<p>Heather </p></blockquote>
<p>Here&#8217;s one from Patricia:</p>
<blockquote><p>Thankyou soooo much!!!</p>
<p>I was this&#8230;&#8230; close to sending in my payment of $65 to this &#8216;domain listing service&#8217; when I got suspicious of no phone#, and found your site. If you need my help in getting these guys, let me know! Thanks again.</p>
<p>It looks authentic and it does say &#8216;NOT A BILL&#8217;, but a solicitation and I&#8217;m not under any obligation to pay the amount (?).</p></blockquote>
<p>This one from Shelley:</p>
<blockquote><p>Thank you for confirming my suspicions about this company.  Their solicitation looks like a real bill and I was almost ready to pay it.  Luckily I read the statement and realized it was only a solicitation and not a bill.  I am sure that many, many people just send them the $75.00 thinking that this is their domain server.  When I went on their website to complain there was no link to customer service to complain.</p>
<p>While searching for info on this company, I came across your website.  Thank you again for the heads up.</p>
<p>Shelley</p></blockquote>
<p>This one from Jane:</p>
<blockquote><p>Appreciate your putting out this message.  It is too late for us.  We are a small organization, and were in between treasurers when this arrived.  It got passed from one treausrer to the other, and none of us thought to research it.  I am the one who would know if the charge were out of line, or sounded fishy, and I did not even see the letter.  We got charged $65.  We have since received a similar letter from another service, Liberty Names of America.  They may or may not be legit, but it is a much higher rate than we pay.  My treasurer is looking to see if the letter survived from DLS.  If he can&#8217;t find it, I would be interested in having a copy from someone.  I plan to make a police report.</p></blockquote>
<p>This one from Stan:</p>
<blockquote><p>Here it is January  15, 2008. Just received what looks like an  invoice for $75 from Domain Listing Service. Since I never heard of them I went to Google. When I google the name I get your blog.  Nowhere does it say &#8220;this is not a bill&#8221; What a scam!</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/domain-listing-service-search-engine-submission/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Now Accepting Credit Cards Online</title>
		<link>http://www.danifer.com/now-accepting-credit-cards-online</link>
		<comments>http://www.danifer.com/now-accepting-credit-cards-online#comments</comments>
		<pubDate>Tue, 07 Aug 2007 20:12:06 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/now-accepting-credit-cards-online.html</guid>
		<description><![CDATA[A much requested feature from our customers, Danifer Web Services is now accepting credit cards online for invoice payments!  There&#8217;s still a button if you prefer to use Paypal, but we expect to see the majority of our customers will opt for the Credit Card option.
The payment link is: http://www.danifer.com/payments and will be referenced [...]]]></description>
			<content:encoded><![CDATA[<p>A much requested feature from our customers, Danifer Web Services is now accepting credit cards online for invoice payments!  There&#8217;s still a button if you prefer to use Paypal, but we expect to see the majority of our customers will opt for the Credit Card option.</p>
<p>The payment link is: <a href="http://www.danifer.com/payments">http://www.danifer.com/payments</a> and will be referenced at the bottom of new invoices.  You do not need an invoice number to make a payment, just please provide a brief description of what you&#8217;re paying for in the space provided.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/now-accepting-credit-cards-online/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Texas Style Wrought Iron Furniture</title>
		<link>http://www.danifer.com/texas-style-wrought-iron-furniture</link>
		<comments>http://www.danifer.com/texas-style-wrought-iron-furniture#comments</comments>
		<pubDate>Tue, 26 Jun 2007 14:51:41 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/texas-style-wrought-iron-furniture.html</guid>
		<description><![CDATA[Ecommerce and online shopping are expanding at a phenomenal rate and small and independent retailers are poised to reap many of the rewards.  At Danifer Web Services, ecommerce applications are one of our most commonly requested web site services and we see a lot of small retailers breaking into the market.
Our clients realize that [...]]]></description>
			<content:encoded><![CDATA[<p>Ecommerce and online shopping are expanding at a phenomenal rate and small and independent retailers are poised to reap many of the rewards.  At Danifer Web Services, ecommerce applications are one of our most commonly requested web site services and we see a lot of small retailers breaking into the market.</p>
<p>Our clients realize that with less than the cost of one month&#8217;s rent in a retail store, they can setup their own web site to market or test a new product line or simply reduce the upfront costs of launching a retail outlet.</p>
<p>With an online ecommerce web site, they reduce their risk from long term leases and inventory warehousing while gauging the effectiveness of their product.  Rather than start a retail store and build a web site as a secondary marketing outlet, many of our customers choose to launch their web sites first and then build retail locations once the products and the marketing methods have been proven.</p>
<p>One of our recent ecommerce customers, Very Texas (<a href="http://www.verytexas.com/">www.verytexas.com</a>), is an online retail store specializing in <a href="http://www.verytexas.com/">Texas style wrought iron furniture</a>.  After only a few weeks in development we were able to help this customer launch an online retail outlet while she established relationships with vendors and clients.  She was able to open her doors to the public with minimal investment and minimal risk in a very short amount of time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/texas-style-wrought-iron-furniture/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PayPal Scheduled Outage</title>
		<link>http://www.danifer.com/paypal-scheduled-outage</link>
		<comments>http://www.danifer.com/paypal-scheduled-outage#comments</comments>
		<pubDate>Thu, 07 Jun 2007 05:11:25 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/paypal-scheduled-outage.html</guid>
		<description><![CDATA[I received an email this week from my favorite payment processing gateway, PayPal, notifying users of a scheduled outage.  If you are using PayPal to process transactions, this is definitely something to be aware of:
Weâ€™re planning to upgrade the PayPal data center on Monday the 18th of June.  The upgrade is scheduled to [...]]]></description>
			<content:encoded><![CDATA[<p>I received an email this week from my favorite payment processing gateway, PayPal, notifying users of a scheduled outage.  If you are using PayPal to process transactions, this is definitely something to be aware of:</p>
<blockquote><p>Weâ€™re planning to upgrade the PayPal data center on Monday the 18th of June.  The upgrade is scheduled to begin at 9 PM PDT and last for approximately two hours.  During this time, there will be a PayPal system-wide service interruption.  The PayPal site will be unavailable and the majority of PayPal features will not be functioning.  You will not be able to process payments during this time.   </p>
<p>You do not need to do anything during the data center upgrade.  Once the upgrade is complete, you will be able to conduct business as you normally would. However, a small number of merchants may need to reconfigure PayPalâ€™s IP address if was previously hard-coded into their API calls and/or firewall settings.  Please see instructions below. </p>
<p>Hereâ€™s what you should expect during the service interruption: </p>
<p>If customers attempt to pay you with PayPal during the upgrade they will get the following message: </p>
<p>â€œThe PayPal website is currently unavailable.  We are working actively to restore access to the site as soon as possible.  We apologize for any inconvenience.  Please check the PayPal System Board for possible updates.â€<br />
Note: The PayPal System Board can be found at http://announcements.paypal.com/us/ and this will be accessible through the message above. </p>
<p>If your customers click on the PayPal System Board link they will see the following message:</p>
<p>â€œPayPal is currently performing a data center upgrade.  This upgrade began at 9:00 PM PDT and is scheduled to run for approximately 2 hours.  The PayPal site and a majority of our features will be unavailable during this time.â€<br />
Note: We will be updating the PayPal System Board with additional information as we monitor the upgrade. </p>
<p>eBay sellers will see little impact on their auctions as the eBay website will be unaffected during the upgrade.  Auctions will continue as normal. However, your buyers will be unable to process a payment through PayPal during this time.</p>
<p>If you elect to list your item(s) with the â€œImmediate Payment Requiredâ€ option there will some inconvenience as the buyer will be unable to process their payment until after the upgrade has been completed. </p>
<p>You will be unable to log into the PayPal system to check your PayPal account status, including verification of payments received. </p>
<p>We will also be upgrading our internal tools, so we will be unable to access your account information during this time.</p>
<p>You will be unable to receive funds through any website buttons or through the PayPal site directly.</p>
<p>After the upgrade, buyers and sellers will be able to interact with PayPal as they normally would.<br />
Hereâ€™s what you need to do if you hard-coded PayPalâ€™s IP address: </p>
<p>If you have hard-coded PayPalâ€™s IP addresses into your API calls and/or firewall settings, you may need to reconfigure these settings after the upgrade.  Here is the new IP address you will need to upgrade to:<br />
 https://ppmts.custhelp.com/cgi-bin/ppdts.cfg/php/enduser/std_adp.php?p_faqid=92 </p>
<p>If you need assistance in reconfiguring the IP address change, please contact PayPal Merchant Technical Support at http://www.paypal.com/mts  </p>
<p>Rest assured, we will be monitoring the scheduled upgrade very closely to ensure that we return to normal functionality as soon as possible.  Again, after the upgrade, you will be able to conduct business as you normally would.   </p>
<p>PayPal continually makes improvements to our systems and platforms so we may continue to provide you with the best online payment processing solution.   </p>
<p>You are a valued PayPal customer and we appreciate your business.   </p>
<p>Best regards, </p>
<p>PayPal Merchant Support</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/paypal-scheduled-outage/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Domain Listing Service Corp. Scam</title>
		<link>http://www.danifer.com/domain-listing-service-corp-scam</link>
		<comments>http://www.danifer.com/domain-listing-service-corp-scam#comments</comments>
		<pubDate>Tue, 22 May 2007 15:34:15 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/domain-listing-service-corp-scam.html</guid>
		<description><![CDATA[Update: If you found this page while searching for Domain Listing Service you might want to know that we get a few dozen hits every day from people just like you trying to find out more about this company.  You guys might consider getting together to do something about this.  Email me if [...]]]></description>
			<content:encoded><![CDATA[<p><em>Update: If you found this page while searching for Domain Listing Service you might want to know that we get a few dozen hits every day from people just like you trying to find out more about this company.  You guys might consider getting together to do something about this.  <a href="http://www.danifer.com/contact.php">Email me</a> if you have the chance and I&#8217;ll start posting your stories on this blog.</p>
<p>I&#8217;ve posted the first one here:</p>
<p><a href="http://www.danifer.com/blog/domain-listing-service-search-engine-submission.html">http://www.danifer.com/blog/domain-listing-service-search-engine-submission.html</a></em></p>
<hr />
<p>I got an email from one of my clients today regarding what looks like someone trying to scam her out of a couple of bucks based on her domain name information.</p>
<p><strong>Here&#8217;s what she said:</strong></p>
<blockquote><p>Hi Keeton -</p>
<p>Okay &#8211; here&#8217;s a tech-y question that I need help with.  I registered my domain name in November with domainregistry.com.  I have the confirmation, etc. that states the registration date, expiration date, etc.</p>
<p>Today I received in the mail a very official looking bill for $65 from a company called Domain Listing Service Corp.  It has the listing date as June 18 &#8211; June 18.  It also tells me all of the inclusions with the website address listing, which I think I have anyway.  </p>
<p>I think this is some sort of domain name registry trickery.  LOL.  Could I fax both the legitimate registration and this suspicious bill and maybe you could tell me what you think??  Don&#8217;t want to be &#8220;taken&#8221; but if I owe this I don&#8217;t want to be negligent either. </p></blockquote>
<p><strong>My response:</strong></p>
<blockquote><p>That sounds really scammy to me.  Send me a copy and I&#8217;ll look it over, but definitely don&#8217;t pay anything in the meantime.  Domain names usually cost between $9 and $15/year and yours is registered through xxx.</p>
<p>Thanks,</p>
<p>Keeton</p></blockquote>
<p>I hate seeing this kind of thing, but it happens all the time.  Essentially, this company pulled my customer&#8217;s domain name registration information (the name and address she used to register her domain name) from the publicly available whois information.  They then sent out this mailer to try and convince her to send in a check for $65.</p>
<p>You may have seen similar scams for home mortgages, credit cards, etc.  Unscrupulous companies will pull information from a publicly available database and send out official looking letters trying to convince people to buy something they don&#8217;t need.</p>
<p>It costs a lot to do a physical bulk mailing, so it makes me sick to think how much money they must be making off this.  If you get something like this, check with your web developer or just read the fine print to see if it applies to you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/domain-listing-service-corp-scam/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yahoo! Small Business Web Hosting</title>
		<link>http://www.danifer.com/yahoo-small-business-web-hosting</link>
		<comments>http://www.danifer.com/yahoo-small-business-web-hosting#comments</comments>
		<pubDate>Fri, 18 May 2007 18:12:55 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/yahoo-small-business-web-hosting.html</guid>
		<description><![CDATA[I recently had the misfortune of working with a client who had registered a domain name and signed up for web hosting through smallbusiness.yahoo.com.
Although the domain name control panel was pretty standard and not bad at all, the web hosting starter package that the client had purchased was clunky and achieving the desired results proved [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had the misfortune of working with a client who had registered a domain name and signed up for web hosting through <a href="http://smallbusiness.yahoo.com/">smallbusiness.yahoo.com</a>.</p>
<p>Although the domain name control panel was pretty standard and not bad at all, the web hosting starter package that the client had purchased was clunky and achieving the desired results proved very difficult.  This client requested a basic WordPress installation with a modified skin that they could use for basic blogging needs.</p>
<p>The only way to install the WordPress Software with the Yahoo! small business starter package was to go through the prepackaged installation process.  This resulted in the installation of an out of date piece of software that was shamelessly rebranded by Yahoo! and represented as their own.</p>
<p>WordPress requires a Mysql database to operate, so there was obviously at least one available for use.  The database was set up automatically during the WordPress installation process, and included an automated username, password, and access level user permissions.  The big issue with this is that when I tried to upgrade to the latest version of WordPress (2.1.3 I think) the account didn&#8217;t have the privileges to make all of the necessary changes to the database.  The result was a partially upgraded database that caused errors in the program.  If this were not a fresh installation I would have needed a backup of the database in order to recover to a more usable state.</p>
<p>That said, I think there are a lot better options when it comes to web hosting than the larger companies like Yahoo!.  I think this is still an industry where bigger is not necessarily better.  When you choose a provider I would definitely recommend someone who&#8217;s been in business a while and has a good track record, but would steer clear of the big guys like Yahoo!, GoDaddy, etc.  They&#8217;re great for domain names, but there&#8217;s really no reason to put all your eggs into the same basket.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/yahoo-small-business-web-hosting/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What days of the week are the most productive?</title>
		<link>http://www.danifer.com/what-days-of-the-week-are-the-most-productive</link>
		<comments>http://www.danifer.com/what-days-of-the-week-are-the-most-productive#comments</comments>
		<pubDate>Fri, 18 May 2007 06:54:19 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/what-days-of-the-week-are-the-most-productive.html</guid>
		<description><![CDATA[I find I get very little work done on Mondays and Fridays.  On Mondays I&#8217;m answering e-mail and messages that built up over the weekend, and on Fridays I watch the clock all day.
Tuesdays and Thursdays are the opposite.  I program, work on customer issues, coordinate projects, etc. sometimes until late in the [...]]]></description>
			<content:encoded><![CDATA[<p>I find I get very little work done on Mondays and Fridays.  On Mondays I&#8217;m answering e-mail and messages that built up over the weekend, and on Fridays I watch the clock all day.</p>
<p>Tuesdays and Thursdays are the opposite.  I program, work on customer issues, coordinate projects, etc. sometimes until late in the evening.  I get more done on these two days than I would in twice as many Mondays and Fridays.</p>
<p>Wednesdays also seem to be very productive for me, but in a social way.  I schedule most of my meetings on Wednesday for two reasons:</p>
<ol>
<li>I&#8217;m already out for my weekly <a href="http://www.danifer.com/blog/networking-at-bni-in-southlake.html">BNI meeting</a>,
<li>I find potential clients more agreeable and ready to commit in the middle of the week.
</ol>
<p>No real point to this post other than what I&#8217;ve written.  It made for a good discussion with a colleague earlier today, so I thought I&#8217;d write it up.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/what-days-of-the-week-are-the-most-productive/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tipton Enterprises</title>
		<link>http://www.danifer.com/tipton-enterprises</link>
		<comments>http://www.danifer.com/tipton-enterprises#comments</comments>
		<pubDate>Fri, 18 May 2007 06:36:30 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/tipton-enterprises.html</guid>
		<description><![CDATA[I&#8217;ve recently taken on a new customer who commissioned Danifer Web Services to build three web sites for his fledgling business.  They came out particularly well, and I&#8217;m excited to see where he takes them.
Tipton Enterprises (tiptonenterprises.com)
Sort of a home-base to promote projects and yak about stuff.  Pretty much the same thing I [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently taken on a new customer who commissioned Danifer Web Services to build three web sites for his fledgling business.  They came out particularly well, and I&#8217;m excited to see where he takes them.</p>
<p><a href="http://www.tiptonenterprises.com/">Tipton Enterprises</a> (tiptonenterprises.com)<br />
Sort of a home-base to promote projects and yak about stuff.  Pretty much the same thing I do here.</p>
<p><a href="http://www.laptopsforschool.com/">Laptops for School</a> (laptopsforschool.com)<br />
A laptop review site, presumably for individuals looking to use them for eductional purposes (this is a really good example of niche marketing).</p>
<p><a href="http://www.guardiandomains.com/">Guardian Domains</a> (guardiandomains.com)<br />
For all your domain name registration needs.</p>
<p>As you can see, this customer is an internet entrepreneur similar to myself, so wish him the best of luck and check out his projects when you have some time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/tipton-enterprises/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A New Look</title>
		<link>http://www.danifer.com/a-new-look</link>
		<comments>http://www.danifer.com/a-new-look#comments</comments>
		<pubDate>Fri, 18 May 2007 06:28:01 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/a-new-look.html</guid>
		<description><![CDATA[Being as dedicated to my customers as I am, I tend to put off my own projects while I while I work for other people.  The danifer.com web site is no exception.  It&#8217;s been in bad need of a face-lift for quite some time now.  For those of you who don&#8217;t remember, [...]]]></description>
			<content:encoded><![CDATA[<p>Being as dedicated to my customers as I am, I tend to put off my own projects while I while I work for other people.  The danifer.com web site is no exception.  It&#8217;s been in bad need of a face-lift for quite some time now.  For those of you who don&#8217;t remember, here&#8217;s what the old site looked like:</p>
<p><center><a href="http://www.danifer.com/images/old-site.jpg" style="border:1px solid black;" rel="lightbox[97]"><img src="http://www.danifer.com/images/old-site-small.jpg"></a></center></p>
<p>I think the new revision offers a little cleaner and more professional look.  I know my customers come here before they hire me, so I definitely want to make a good impression.  If this isn&#8217;t your first time here, I&#8217;ve added some good resources and some discount offers sprinkled about.  Feel free to have a look and let me know what you think.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/a-new-look/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Wordpress Skins</title>
		<link>http://www.danifer.com/free-wordpress-skins</link>
		<comments>http://www.danifer.com/free-wordpress-skins#comments</comments>
		<pubDate>Mon, 30 Apr 2007 15:39:49 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/free-wordpress-skins.html</guid>
		<description><![CDATA[Free stuff: Get a Free WordPress Skin now.  This changes occasionally, so check back.
Recommended: They don&#8217;t link to it from anywhere on the site, but you can download all of their templates at once for a discounted rate.  Not sure how long this will be active, but definitely recommended if it&#8217;s still working.
In [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Free stuff:</strong> Get a <a href="http://www.skinetti.com/free_wordpress_skins.php">Free WordPress Skin</a> now.  This changes occasionally, so check back.</p>
<div class="special"><strong>Recommended:</strong> They don&#8217;t link to it from anywhere on the site, but you can <a href="http://www.skinetti.com/skin_bundle.php">download all of their templates at once</a> for a discounted rate.  Not sure how long this will be active, but definitely recommended if it&#8217;s still working.</div>
<p>In the past I&#8217;ve relied on designers to modify the default WordPress template to fit a specific need, but lately I&#8217;ve been searching for pre-packaged themes that I can download at a reduced price.</p>
<p><center><a href="http://www.skinetti.com/free_wordpress_skins.php"><img src="http://www.danifer.com/images/skinetti.jpg" style="border:1px solid black;"></a></center></p>
<p>One thing I noticed in my search was the surprising lack of quality/availability of WordPress skins.  The free ones are not impossible to find, but are a clear cut case of getting what you pay for so far as design, creativity, and functionality are concerned.  The pay sites are the exact opposite &#8211; decent quality, but extremely overpriced.</p>
<p><strong>One of the few sites that made my bookmark list was Skinetti.com.</strong></p>
<p>They bill themselves as an independently owned and operated, small time developer of <a href="http://www.skinetti.com/">WordPress skins</a>.  Although the selection is somewhat limited (they seem to be adding new content periodically) the quality is extremely high for the price.</p>
<p>If you&#8217;re in the market for a decent WordPress skin but don&#8217;t want to go too cheap, I highly recommend them.  And, if you need help installing the software <a href="http://www.danifer.com/contact.php">please let me know</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/free-wordpress-skins/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Vista Revisit</title>
		<link>http://www.danifer.com/windows-vista-revisit</link>
		<comments>http://www.danifer.com/windows-vista-revisit#comments</comments>
		<pubDate>Sun, 22 Apr 2007 02:28:59 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/windows-vista-revisit.html</guid>
		<description><![CDATA[As you may have already read, I&#8217;m in need of a new computer and have had some difficulty with Windows Vista.  Unfortunately, it&#8217;s pretty hard to buy a computer pre-loaded with XP anymore, and my lagging computer issues still have not changed.  This post is fueled by the purchase of a new computer, [...]]]></description>
			<content:encoded><![CDATA[<p>As you may <a href="http://www.danifer.com/blog/windows-vista-shut-me-down.html">have already read</a>, I&#8217;m in need of a new computer and have had some difficulty with Windows Vista.  Unfortunately, it&#8217;s pretty hard to buy a computer pre-loaded with XP anymore, and my lagging computer issues still have not changed.  This post is fueled by the purchase of a new computer, pre-loaded with Windows Vista and is going to be an informal analysis of the problems (and solutions) that have come up.</p>
<div class="special">
4/22/07 A quick update for anyone who&#8217;s interested.  I returned this machine to Best Buy after working with it all weekend.  I just couldn&#8217;t justify spending $800 on a machine that runs slower than the one I&#8217;m on now, and makes more than half of my peripherals obsolete.  Instead, I opted to upgrade the graphics card in my existing computer to one with 512mb of ram rather than 64.  This basically solved all of my problems, and I&#8217;m pleased as punch!
</div>
<h2>The hardware</h2>
<p>The new computer is an HP.</p>
<p>HP Pavilion PC Model a6030n<br />
Prod ID#RX88/7AA-ABA<br />
Windows Vista Home Premium OEM</p>
<p>Purchased for $799.99 plus $60.80 in tax from Best Buy on 04/19/07</p>
<p>From the Computer: Properties Menu<br />
Rating: 3.0 (Windows Experience Index)<br />
Processor: AMD Athlon 64 X2 Dual Core Processor 4800+ 2.5Ghz<br />
Memory (RAM): 1918 MB<br />
System Type: 32-bit Operating System</p>
<p>This system comes with a 320 gigabyte hard drive.</p>
<h2>Email issues</h2>
<p>I&#8217;m going to break out software issues in a category below, but email is so vital a communication tool for me that I wanted to address it separately.</p>
<p>If you don&#8217;t know already, Microsoft has replaced Outlook Express with a new email client name Microsoft Mail.  The ease of use and simplicity that separated Microsoft Express from Microsoft Outlook are now gone.  Microsoft has taken it&#8217;s most popular email program and merged it with its most unpopular one, creating one that is awkward, sluggish, and pushy.  I screwed around with it for about four hours before I started looking for an alternative email program.</p>
<p>The result of my search has left me thrilled and giddy.  I&#8217;ve now officially switched my main email client to <a href="http://www.mozilla.com/en-US/thunderbird/">Mozilla Thunderbird</a> and I couldn&#8217;t be happier.  It provides all of the ease of use that Outlook Express had to offer with additional options and features for the core components.  Things like fine-tunable spam filtering, account separation, message flagging, easy to use find features and more.</p>
<p>I&#8217;m extremely disappointed with Microsoft&#8217;s attempt to rule the email world by programming an application that refuses to play nicely with others.  I&#8217;m reminded of Princess Leia&#8217;s quote from Star Wars &#8220;The more you tighten your grip, Tarkin, the more star systems will slip through your fingers.&#8221;</p>
<h2>Software Issues</h2>
<p>Some of my legacy Windows XP Software applications that are giving me problems (as of the time of this post) are:</p>
<ul>
<li><strong>World of Warcraft</strong> &#8211; Running, but not up to standard.
<li><strong>Adobe Distiller Version 5.0</strong> &#8211; Agreed, it&#8217;s pretty outdated but was working fine before the &#8220;upgrade.&#8221;  I&#8217;ve heard rumor that Vista will not support any kind of .pdf printing and I&#8217;m anxious to verify this.
<li><strong>Power Chute Personal Edition v1.3.1 from APC</strong> &#8211; This is the reporting software produced by APC for my uninterruptible power suppy.  The hardware still works, but no nifty reporting gadget.  I have not checked with APC for a Vista version.
<li><strong>ScanSnap Manager v3.1, ScanSnap Organizer v1.0, and Cardminder v2.0</strong> &#8211; These all came bundled with my Fujitsu ScanSnap scanner (a high speed document scanner used in my paperless office).  Although the drivers installed properly, the software isn&#8217;t functioning and without it the scanner is $400 worth of useless.
<p>According to Fujitsu, there&#8217;s an <a href="http://www.fujitsu.com/downloads/COMP/fcpa/scanners/drivers/vista_notice.pdf">update scheduled for June 2007</a>, but none available now.  For those interested, my Fujitsu ScanSnap model number is fi-5110E0X2.</p>
<li><strong><a href="http://www.spambully.com/">SpamBully</a></strong>, an inexpensive and highly effective add-on to Outlook Express (I wrote a very positive review about this product <a href="http://www.danifer.com/blog/spam-bully-review.html">earlier this year</a>).
<p>Although SpamBully has released a Vista version of their product for Microsoft Mail, I couldn&#8217;t get it to work.
</ul>
<h2>Stuff that worked</h2>
<p>It hasn&#8217;t been all bad, so here are some of the things I&#8217;ve got working and working well:</p>
<ul>
<li>Adobe Photoshop CS2
<li>My Dymo LabelWrtiter Turbo 330 with original software
<li>Adobe Reader 8.0
<li>My copy of Microsoft Office XP
<li>Mozilla Thunderbird
<li><a href="http://www.ceruleanstudios.com/">Trillian</a>, my IM client
<li><a href="http://www.feedreader.com/">FeedReader</a>, my RSS feed program
<li><a href="http://www.chami.com">HTML-kit</a>, my HTML editor
<li><a href="http://www.ventrilo.com/">Ventrilo</a>, a VOIP client I use for World of Warcraft
<li><a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/">Putty</a>, my SSH client
<li><a href="http://toolbar.google.com/">Google toolbar</a>
</ul>
<h2>My impressions</h2>
<p>Windows Vista still isn&#8217;t ready for the mainstream.  Avoid an upgrade until they&#8217;ve released at least the first major service pack.</p>
<p>As an operating system it&#8217;s got a lot of nice features, but these are far overshadowed by the Microsoft mentality that &#8220;there can be only one.&#8221;  I bought a new system because my programs were running slowly and I have not resolved this issue as thoroughly as I would have liked.</p>
<p>I&#8217;m looking forward to the first real consumer ready operating system from Google or Mozilla.  They&#8217;ve done such fantastic work with Firefox and Thunderbird that I&#8217;d like to see them succeed there as well.  I don&#8217;t think we&#8217;re that far away.</p>
<h2>How I&#8217;ll approach this in the future</h2>
<p>One thing I noticed from this whole ordeal is that the programs that suffered the least were my web applications.  I&#8217;m currently using <a href="http://www.google.com/calendar/">Google Calendar</a> for my scheduling as well as an online address book I built myself.  I&#8217;m not a fan of being over-reliant on web services, but I don&#8217;t mind them if I own them myself.</p>
<p>I&#8217;ll be looking for more operating system features I can convert to web based utilities in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/windows-vista-revisit/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Adwords Customer Service</title>
		<link>http://www.danifer.com/google-adwords-customer-service</link>
		<comments>http://www.danifer.com/google-adwords-customer-service#comments</comments>
		<pubDate>Mon, 16 Apr 2007 22:37:23 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/google-adwords-customer-service.html</guid>
		<description><![CDATA[I recently had the opportunity to contact Google Adwords customer service regarding what I suspected might be fraudulent clicks on my account.  I got a pretty generic answer to both of my inquiries, so I thought I would post them for reference.  Here they are along with my replies cut and paste directly [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had the opportunity to contact Google Adwords customer service regarding what I suspected might be fraudulent clicks on my account.  I got a pretty generic answer to both of my inquiries, so I thought I would post them for reference.  Here they are along with my replies cut and paste directly from my email program:</p>
<blockquote><p>Hello Keeton,</p>
<p>Thank you for your email regarding your AdWords reports. I understand that<br />
your website logs are reporting less advertising traffic than your AdWords<br />
reports. This discrepancy may occur if clicks to your ad aren&#8217;t detected<br />
by your web tracking software. The information below should help you to<br />
reconcile your weblogs to the statistics reported within your account.</p>
<p>HOW OUR SYSTEM WORKS</p>
<p>All clicks on your ads are directly tracked by our system. Some<br />
third-party web tracking systems may provide inaccurate reports.  Many<br />
users have found that the weblogs from their own server are more reliable<br />
for comparisons with our reports. </p>
<p>Additionally, Google&#8217;s reporting technology may record clicks that other<br />
web tracking programs may miss. Some tracking programs may not register<br />
clicks that occur while the destination site is down, or they may have<br />
limitations on the kinds and sources of clicks that they detect. </p>
<p>To view numerical data on invalid clicks automatically filtered out by our<br />
system (and therefore not charged to your account), you can run a Campaign<br />
Performance or Account Performance report. Please see our FAQ about how to<br />
run these reports:<br />
https://adwords.google.com/support/bin/answer.py?answer=44008&#038;hl=en_US.</p>
<p>RECONCILE YOUR WEB LOGS</p>
<p>The following variables are the most common for those advertisers who are<br />
concerned about a discrepancy between their reporting statistics and those<br />
reported by Google AdWords:</p>
<p>- Google Network statistics: Google displays ads on a growing network of<br />
search and content sites and products. Typically, web tracking software is<br />
not able to recognize clicks from Google Network sites as being Google&#8217;s<br />
clicks. These are generally labeled with the third party site name and<br />
they will not be labeled as clicks from Google. If your ads are currently,<br />
or have ever been, distributed to Google Network sites such as About.com,<br />
AOL, Netscape, etc., we recommend that you visit our Google Network FAQ at<br />
https://adwords.google.com/support/bin/topic.py?topic=25 to determine<br />
whether some of the referrers to your site were Google Network sites. </p>
<p>- Time discrepancies: Time discrepancies between different tracking<br />
programs can throw off estimates of clicks. Be sure to compare the<br />
appropriate time periods. All your account statistics are measured and<br />
reported based on the local time zone you have chosen for your account. To<br />
ensure the highest level of accuracy, there is a delay between the moment<br />
when a user actually clicks on your ad and when that click is reported as<br />
a statistic within your account. This delay represents the time required<br />
to evaluate and report the click as a valid one.</p>
<p>- IP selection: Your system may filter out visits from your IP address;<br />
however, AdWords does not. Also, if you currently use a shared ISP (such<br />
as AOL or Earthlink) you may be sharing one or more IP addresses with<br />
other users. Therefore multiple clicks from the same IP address could be<br />
legitimate clicks from multiple users, and each one would be reported as<br />
an individual, valid click within your account.</p>
<p>If you have additional questions, please visit our Help Center at<br />
https://adwords.google.com/support to find answers to many frequently<br />
asked questions. Or, try our Learning Center at<br />
http://www.google.com/adwords/learningcenter/ for self-paced lessons that<br />
cover the scope of AdWords.</p>
<p>We look forward to providing you with the most effective advertising<br />
available. </p>
<p>Sincerely,</p>
<p>The Google AdWords Team</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
To access your AdWords account, please log in at:<br />
https://adwords.google.com</p>
<p>Original Message Follows:<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Subject: Re: [#xxxxxx] Google AdWords Phone Support Follow Up<br />
Date: Thu, 5 Apr 2007 17:41:15 -0500</p>
<p>Hi Elissa,</p>
<p>I&#8217;m not having any problems distinguishing between traffic from Google<br />
Adwords and traffic from other sources.</p>
<p>My concern is that the total amount of traffic I received to that website<br />
(from Google, organic search, bookmarks, and all other sources of traffic)</p>
<p>is less than what Adwords is reporting.</p>
<p>Do you have another explanation?  This is starting to look like an error<br />
of<br />
about $1000/month, so I really would appreciate a second look.</p>
<p>Thank you,</p>
<p>Keeton</p>
<p>&#8212;&#8211; Original Message &#8212;&#8211;<br />
From: &#8220;AdWords Support&#8221; <adwords-support@google.com><br />
Sent: Thursday, April 05, 2007 4:32 PM<br />
Subject: [#xxxxxx] Google AdWords Phone Support Follow Up</p>
<p>> Hello Keeton,<br />
><br />
> I just left you a voicemail regarding your question about the<br />
discrepancy<br />
> between the clicks on your campaign management tab and your web server<br />
> logs.<br />
><br />
> Unfortunately it is very difficult for us to troubleshoot this issue<br />
> because our team cannot be sure that you are looking at the same data<br />
that<br />
> AdWords displays and we do not have the bandwidth to analyze your web<br />
> server logs. I apologize for this and in the future I would highly<br />
suggest<br />
> implementing Tracking URLs and Referrer Headers to have more insight<br />
into<br />
> your web server logs and how they relate to your AdWords account. I will<br />
> explain both in more depth below.<br />
><br />
> I. Tracking URLs<br />
><br />
> In many web server logs, a page visit entry would be identical whether a<br />
> user clicked your AdWords ad on a Google search result page or your<br />
> website&#8217;s listing in the Google free search results. In order to<br />
> distinguish which clicks come from your AdWords ads, you can give your<br />
ad<br />
> a tracking URL.<br />
><br />
> To take advantage of tracking URLs, place a parameter at the end of your<br />
> destination URL. For example, if your URL is www.yourdomain.com, your<br />
> tracking URL would be www.yourdomain.com/?source=googleadwords.<br />
><br />
> It&#8217;s important to test each new tracking URL in your own web browser to<br />
> verify that it&#8217;s linking properly to its specified page. If you find<br />
that<br />
> a tracking URL isn&#8217;t linking properly, you might want to eliminate the<br />
> forward slash after the domain. For example, instead of<br />
> www.yourdomain.com/?referrer=googleadwords, try using<br />
> www.yourdomain.com?source=googleadwords.<br />
><br />
> Once you&#8217;ve created your tracking URLs, you can look in your web server<br />
> logs or your third party tracking software to get traffic data for your<br />
> ads. If you&#8217;re using your web server logs, look for the tracking URL in<br />
> the GET entry to identify which website visits came from your Google<br />
> AdWords ads.<br />
><br />
> II. Referrer Headers<br />
><br />
> After distinguishing in your web server logs which website visits came<br />
> from your AdWords ads, you can use your web server logs&#8217; referrer<br />
headers<br />
> to see where the ads were when they were clicked on.<br />
><br />
> Referrer headers show the last page the browser loaded before loading<br />
your<br />
> website and usually indicate the site users were on when they clicked on<br />
> your ad. For example, if a user searches on your keyword on Google.com<br />
and<br />
> then clicks on your AdWords ad, the referrer header would most likely<br />
read<br />
> &#8216;http://www.google.com/&#8230;&#8217; Conversely, if the clickthrough had come<br />
while<br />
> your ad was appearing on AOL, the referrer header would read<br />
> &#8216;http://www.aol.com&#8230;&#8217;<br />
><br />
> Keeton, please let me know if you have additional questions. Have a nice<br />
> evening.<br />
><br />
> Sincerely,<br />
><br />
><br />
> The Google AdWords Team<br />
><br />
> &#8212;&#8212;&#8212;&#8212;&#8212;-<br />
> Learn from other AdWords users. Ask questions, share answers, and post<br />
> your favorite AdWords tips. Find out more at<br />
> http://groups.google.com/group/adwords-help<br />
></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/google-adwords-customer-service/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Get a Real Read Receipt for Your Email</title>
		<link>http://www.danifer.com/how-to-get-a-real-read-receipt-for-your-email</link>
		<comments>http://www.danifer.com/how-to-get-a-real-read-receipt-for-your-email#comments</comments>
		<pubDate>Thu, 05 Apr 2007 18:48:24 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/how-to-get-a-real-read-receipt-for-your-email.html</guid>
		<description><![CDATA[This week we continue to launch our series of web-based services.  Following in the footsteps of our online contract utility, we&#8217;ve also released DeliveryConfirm.com, a web based email delivery notification service.

The idea behind the site is to address the flawed read receipt feature of Outlook, Outlook Express and other message programs that allow the [...]]]></description>
			<content:encoded><![CDATA[<p>This week we continue to launch our series of web-based services.  Following in the footsteps of our online contract utility, we&#8217;ve also released DeliveryConfirm.com, a web based <a href="http://www.deliveryconfirm.com/">email delivery notification</a> service.</p>
<p><a href="http://www.deliveryconfirm.com/" style="float:right; margin:15px;"><img src="http://www.danifer.com/images/deliveryconfirm-logo.jpg" alt="email delivery receipt"></a></p>
<p>The idea behind the site is to address the flawed read receipt feature of Outlook, Outlook Express and other message programs that allow the message recipient to decline sending the receipt.  This is done by storing the message online and emailing a password to the recipient.  When the password is used, voila! The original sender is notified that their message has been read.</p>
<p>It&#8217;s shockingly simple, and I&#8217;m hoping it will take off.  Since it&#8217;s just been released, <a href="http://www.danifer.com/contact.php">please let me know</a> if you find any bugs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/how-to-get-a-real-read-receipt-for-your-email/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Page Notification Script</title>
		<link>http://www.danifer.com/web-page-notification-script</link>
		<comments>http://www.danifer.com/web-page-notification-script#comments</comments>
		<pubDate>Wed, 04 Apr 2007 21:25:10 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/web-page-notification-script.html</guid>
		<description><![CDATA[There&#8217;s been a lot of response to our post regarding the web page visit notification script that we talked about last October.  We&#8217;ve had so many requests for it that we&#8217;ve finally made it available for download.
This is the first time we&#8217;ve offered a downloadable product on danifer.com (although we do it on lots [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s been a lot of response to our post regarding the <a href="http://www.danifer.com/blog/web-page-visit-notification-script.html">web page visit notification script</a> that we talked about last October.  We&#8217;ve had so many requests for it that we&#8217;ve finally made it available for download.</p>
<p>This is the first time we&#8217;ve offered a downloadable product on danifer.com (although we do it on lots of other sites) and is the first script we&#8217;ve made commercially available.  If you use the <a href="http://www.danifer.com/web_page_notification_script.php">page visit notification script</a> on your site, please <a href="http://www.danifer.com/contact.php">let us know</a> how it worked for you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/web-page-notification-script/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Texas Wesleyan Small Business Workshop</title>
		<link>http://www.danifer.com/texas-wesleyan-small-business-workshop</link>
		<comments>http://www.danifer.com/texas-wesleyan-small-business-workshop#comments</comments>
		<pubDate>Tue, 03 Apr 2007 18:33:09 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/texas-weslyan-small-business-workshop.html</guid>
		<description><![CDATA[Over the weekend, I attended a free workshop put on by the Texas Wesleyan University School of Business entitled How to Start or Run a Small Business.  The workshop was led by a gentleman named James Johnson and was located at the Best Western Inn &#038; Suites at 2000 Beach Street in Fort Worth.
This [...]]]></description>
			<content:encoded><![CDATA[<p>Over the weekend, I attended a free workshop put on by the Texas Wesleyan University School of Business entitled <em>How to Start or Run a Small Business</em>.  The workshop was led by a gentleman named James Johnson and was located at the Best Western Inn &#038; Suites at 2000 Beach Street in Fort Worth.</p>
<p>This is the first workshop of its kind that I&#8217;ve been too, and overall it was a positive experience.  The workshop was offered last Saturday at either 9:30AM or 1:00PM.  I attended the morning session along with a hundred or so other quests and we received a pamphlet of information and a lecture from Professor Johnson regarding the ins and outs of business start-ups.</p>
<p>I went to the workshop with three goals in mind.  Although I wasn&#8217;t entirely successful, I took away enough to make the experience positive, and to make my next attempt more worthwhile.  My goals in attending the small business workshop were:</p>
<ul>
<li>Get some free advice on running a small business (duh);
<li>Network with a group of individuals interested in starting their own businesses (who may need websites);
<li>Introduce my visiting cousin Emily to the Texas Wesleyan School of Business as a potential major when she goes to college.
</ul>
<p><strong>As far as the free business advice is concerned, you get what you pay for.</strong> The speaker at the seminar was very knowledgeable about starting a running a business, but with limited time was only able to speak in generalities.  The positive side of this was that I took away a list of topics (some of which I had not considered before) that I could research on my own.  In addition to the generalities there was enough time for some specific and helpful information that included (from my notes):</p>
<ul>
<li>Some of the major tax benefits of owning your own business,
<li>The five most popular business start-ups (<a href="http://www.itintl.com/">importing </a>is on the list, FYI),
<li>How to mathematically price your product,
<li>An introduction to the most common types of business arrangements (sole proprietorships, partnerships, and corporations).
</ul>
<p><strong>Because the seminar was free, I expected to receive sales pitch and was not disappointed.</strong>  Throughout the presentation, the speaker referred to materials and services produced by the university that you could buy or register for in the hallway.  He also encouraged attendees to sign up for various classes the university offered throughout the presentation.  Again, since the workshop is free, I expect the university to push their own agenda and do not fault them for it.  Some of the materials and classes would probably be very useful to many of the audience members.</p>
<p><strong>In trying to turn the event into a networking opportunity, my own mistakes led to failure.</strong>  I was afraid that going to the early class on Saturday morning would mean fewer network opportunities, but I was incorrect.  The room was filled with a hundred or so individuals (although the speaker alluded to a slightly larger afternoon class).</p>
<p>My mistake, and one that I will not repeat, was failing to arrive early.  By the time we got there, the room was full, and there were no opportunities to talk to the people around us before the presentation started.  In addition, the structure of the facility was such that at the end of workshop there was no reason for people to mill around and network.  I did meet one individual in the parking lot, but I think I would have done better by arriving 20 or 30 minutes early so I could talk to people as they arrived.  I feel like the potential was there, but I did not make the best use of it.</p>
<p><strong>The only real drawback to this event, and one that I can not find a silver lining for, was the facility.</strong>  The Best Western hosting the event was definitely past its prime in need of maintenance.  Large rainstorms earlier in the week meant buckets in the hallway to catch water and dirty brown ceiling tiles which lent an atmosphere of depression that was directly counter to the positivity the speaker was trying to produce.  The audio system was non-functional and technical difficulties ate into the class time.  Coffee service was not provided, but there was a water cooler.  This last part was not as much a concern for me because I brought my own from Starbucks and recommend others do the same.</p>
<p>I do understand that the university can only afford a certain quality of facility in order to make such workshops profitable, but I feel they did themselves a disservice by not choosing a cleaner and more presentable location to represent themselves.  I personally would have shrugged it off, but I had to explain to my visiting cousin afterwards that she should expect more from a college facility and that this was not typical.</p>
<p><strong>One a scale of 1-10, I rate this experience a 6.</strong>  I think with more effort on my part, I could have turned it into a 7 or an 8.  I did learn some new things, and I did generate one new lead, so I feel it was worth my time.  If you have a free Saturday morning and you can handle some of the negatives I mentioned, I recommend it &#8211; either for potential business owners, or as a possible networking event.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/texas-wesleyan-small-business-workshop/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Online Signature Utility</title>
		<link>http://www.danifer.com/online-signature-utility</link>
		<comments>http://www.danifer.com/online-signature-utility#comments</comments>
		<pubDate>Fri, 30 Mar 2007 23:39:45 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/online-signature-utility.html</guid>
		<description><![CDATA[At Danifer Web Services, we strive to invest half of our time into building websites for clients and the other half into our own projects.  The latest project of ours to come off the line is SignatureConfirm.com.  It&#8217;s a free, online signature utility that individuals can use to create and send their own [...]]]></description>
			<content:encoded><![CDATA[<p>At Danifer Web Services, we strive to invest half of our time into building websites for clients and the other half into our own projects.  The latest project of ours to come off the line is <a href="http://www.signatureconfirm.com/">SignatureConfirm.com</a>.  It&#8217;s a free, <a href="http://www.signatureconfirm.com/">online signature utility</a> that individuals can use to create and send their own contracts and agreements to be signed online.</p>
<p><a href="http://www.signatureconfirm.com/" style="float:left; margin:15px;"><img src="http://www.danifer.com/images/signatureconfirm-logo.jpg" alt="free online signature utility"></a></p>
<p>This site was developed after we realized the countless number of online documents, terms of service, etc. we&#8217;ve signed for other larger online service companies like MSN, Google, Yahoo!, Buy.com and more.  The idea behind SignatureConfirm.com is to bring the same benefits of online signatures and electronic contracts to individuals who may not have the resources to incorporate them into their websites.</p>
<p>We think this kind of thing might be useful for:</p>
<ul>
<li>Web designers writing client agreements and non-compete contracts,
<li>Home inspectors who require a signed customer agreement to meet insurance requirements,
<li>Larger online transactions for ebay and craigslist users,
<li>personal loan agreements,
<li>and more!
</ul>
<p>If you have a unique way to use the service, please <a href="http://www.danifer.com/contact.php">let us know</a> and we&#8217;ll add it to the list. Thanks for checking it out and as always feedback is appreciated!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/online-signature-utility/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Vista Shut me Down</title>
		<link>http://www.danifer.com/windows-vista-shut-me-down</link>
		<comments>http://www.danifer.com/windows-vista-shut-me-down#comments</comments>
		<pubDate>Fri, 09 Feb 2007 02:22:40 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/windows-vista-shut-me-down.html</guid>
		<description><![CDATA[Things over at Danifer Web Services have been ticking along nicely, so we decided to reward the office with a round of new computers.  The machine I picked out for myself was a Gateway GT5405E.  Things were running well on my old system, but you never can have too much computing power at [...]]]></description>
			<content:encoded><![CDATA[<p>Things over at Danifer Web Services have been ticking along nicely, so we decided to reward the office with a round of new computers.  The machine I picked out for myself was a Gateway GT5405E.  Things were running well on my old system, but you never can have too much computing power at your disposal.</p>
<p>Now I&#8217;m a pretty technical person &#8211; I operate this business and have built the last three systems I&#8217;ve owned, but Windows Vista is beyond me.</p>
<p>To start with, I&#8217;m not a huge fan of graphics and fade effects etc. unless they have some sort of purpose.  Vista comes with all sorts of fly-in windows and whatnot that make it really cool looking for the first three hours.  After that, you&#8217;ve got all your programs installed and you wonder why your brand new system is running slower than your old one!</p>
<p>Not to mention the fact that Vista is a really bloated operating system, here&#8217;s a list of stuff that broke or that I had a problem with:</p>
<ul>
<li>Adobe Distiller (which I use to print .pdf documents) is no longer supported.</li>
<li>Outlook Express has been replaced with Windows Mail.  Microsoft seems to have overlooked the simplicity aspect that has made Outlook Express so popular and added in lots and lots of features that I will never use.</li>
<li>Since Outlook Express is discontinued, <a href="http://www.danifer.com/blog/spam-bully-review.html">my recommended spam solution</a> is also out of service.  This means I have to rely on the Micorsoft built in spam filter which doesn&#8217;t work as well and by it&#8217;s own mass-market nature will be thwarted by spammers within weeks.</li>
<li>My hobby game, <a href="http://www.danifer.com/blog/new-websites-and-new-customers.html">Warcraft</a> makes the video driver report an error.</li>
<li>When I tried to downgrade to Windows XP from my existing copy, I find out that the XP CD doesn&#8217;t contain the drivers it needs to recognize the newer SATA hard drives.  <em>There&#8217;s a workaround to this, but I&#8217;m not going to pay $700+ for so I can stand on my head and dance in a circle and pray for a working computer.</em></li>
</ul>
<p>Long story short, I took the machine back to Costco and I&#8217;m on old reliable now.  Since you can&#8217;t buy a pre-loaded Windows XP machine at any major retailer (thanks again Microsoft) I&#8217;ll be combing ebay for my new box.</p>
<p>Windows Vista might turn out to be a fantastic operating system.  Windows 98 did it, Windows XP did it, so why not?  The problem is it&#8217;s going to take a while.</p>
<p>If you&#8217;re considering an upgrade you might want to hold off for six months.  Let the rest of the computer buying public take the hit and work out the kinks for you.  That said, you might not want to share this article with anyone ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/windows-vista-shut-me-down/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DieselEarth Redesign</title>
		<link>http://www.danifer.com/dieselearth-redesign</link>
		<comments>http://www.danifer.com/dieselearth-redesign#comments</comments>
		<pubDate>Tue, 06 Feb 2007 06:16:36 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/dieselearth-redesign.html</guid>
		<description><![CDATA[DieselEarth, my diesel/vegetable oil alternative fuels blog has recently undergone a redesign.  I still haven&#8217;t updated it to the new Wordpress 2.1, but at least for now it looks a little more professional.
This little website is one of about 30 or so that I own and operate.  It&#8217;s getting between 50 and 100 [...]]]></description>
			<content:encoded><![CDATA[<p>DieselEarth, my <a href="http://www.dieselearth.com/">diesel/vegetable oil alternative fuels blog</a> has recently undergone a redesign.  I still haven&#8217;t updated it to the new Wordpress 2.1, but at least for now it looks a little more professional.</p>
<p>This little website is one of about 30 or so that I own and operate.  It&#8217;s getting between 50 and 100 visitors a day, mostly concerned with the areas of diesel engines, vegetable oil as an alternative fuel, <a href="http://www.dieselearth.com/notebook/bulk-vegetable-oil.html">bulk vegetable oil</a>, and more often than not asking themselves &#8220;<a href="http://www.dieselearth.com/notebook/how-much-does-vegetable-oil-weigh.html">how much does vegetable oil weigh?</a>&#8221;</p>
<p>I&#8217;m hoping with the new redesign to attract a little more ad revenue and possibly a writer who&#8217;s willing to contribute for free.  This site has a lot of potential, and I&#8217;d like to see it developed a little more.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/dieselearth-redesign/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FocusedMarketing.info</title>
		<link>http://www.danifer.com/focusedmarketinginfo</link>
		<comments>http://www.danifer.com/focusedmarketinginfo#comments</comments>
		<pubDate>Sun, 04 Feb 2007 08:56:14 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/focusedmarketinginfo.html</guid>
		<description><![CDATA[This week, I teamed up with Kate Barlow of KGB Planning &#038; Research which is a marketing strategy consultant from one of my networking groups.
Kate and I hit it off swimmingly, and found that our different skills complimented each other very well.  I think she&#8217;s going to be a good source of local referrals [...]]]></description>
			<content:encoded><![CDATA[<p>This week, I teamed up with Kate Barlow of KGB Planning &#038; Research which is a marketing strategy consultant from one of my networking groups.</p>
<p>Kate and I hit it off swimmingly, and found that our different skills complimented each other very well.  I think she&#8217;s going to be a good source of local referrals for me, and I hope to reciprocate in kind.</p>
<p>In addition to being a swell person, Kate has also signed on to be a member of our SiteShare program.  She&#8217;s already writing and sending out a monthly marketing newsletter, and liked the idea of posting the same information on a website she could refer her clients to.</p>
<p>The domain registered is FocusedMarketing.info and is my first attempt at marketing a .info domain.  Until now, I&#8217;ve mostly stuck to .com, .net, and one .org, but marketing is a pretty high-demand keyword in a domain name and it was tough even to get one that was easy to remember and made sense ending .info.</p>
<p>FocusedMarketing.info will be a free online resource for <a href="http://www.focusedmarketing.info/">DFW business to business marketing tips and strategy</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/focusedmarketinginfo/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>View a Godaddy Website Without a Domain Name</title>
		<link>http://www.danifer.com/view-a-godaddy-website-without-a-domain-name</link>
		<comments>http://www.danifer.com/view-a-godaddy-website-without-a-domain-name#comments</comments>
		<pubDate>Tue, 30 Jan 2007 17:57:43 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/view-a-godaddy-website-without-a-domain-name.html</guid>
		<description><![CDATA[Just a heads up for anyone working with a shared linux hosting account hosted by GoDaddy.  I&#8217;m trying to view a client&#8217;s web site before the DNS kicks using some sort of IP address/username combination like I&#8217;m used to with my other vendors.
Usually you can access the client&#8217;s website pre-DNS by going to http://192.168.1.1/~username/ [...]]]></description>
			<content:encoded><![CDATA[<p>Just a heads up for anyone working with a shared linux hosting account hosted by GoDaddy.  I&#8217;m trying to view a client&#8217;s web site before the DNS kicks using some sort of IP address/username combination like I&#8217;m used to with my other vendors.</p>
<p>Usually you can access the client&#8217;s website pre-DNS by going to http://192.168.1.1/~username/ and preview the site before the DNS propagates.</p>
<p>This is especially handy because you can move files from one server to another, configure them and view them via the IP address/username combination and move the DNS after you&#8217;re confident the new server is properly setup.  If executed properly, this prevents downtime and no one knows you&#8217;ve made any changes.</p>
<p>The problem?  You can&#8217;t do this on GoDaddy.  Without DNS setup, you can&#8217;t preview your site in a new location.  Right now I&#8217;m not sure why.  The answer is simply to add a new A Name record pointing to a subdomain, but it&#8217;s just one extra step you have to take.</p>
<p>Configure your A Name records so that</p>
<p>old IP address points to <strong>sampledomain.com</strong><br />
new IP address points to <strong>temporary.sampledomain.com</strong> hosted at GoDaddy.</p>
<p>and work under the subdomain until you&#8217;re ready to make your move.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/view-a-godaddy-website-without-a-domain-name/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Home Care How</title>
		<link>http://www.danifer.com/home-care-how-2</link>
		<comments>http://www.danifer.com/home-care-how-2#comments</comments>
		<pubDate>Mon, 29 Jan 2007 01:30:46 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/home-care-how-2.html</guid>
		<description><![CDATA[Sometimes I stay up all weekend to finish client projects and to work on my own.  This weekend&#8217;s Mountain Dew rush resulted in HomeCareHow.com, which is authored by a long-time member of our SiteShare program.  The focus of the site is as a how to guide for caring for elderly and invalid in [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes I stay up all weekend to finish client projects and to work on my own.  This weekend&#8217;s Mountain Dew rush resulted in HomeCareHow.com, which is authored by a long-time member of our <a href="http://www.danifer.com/SiteShare_FAQ.php">SiteShare</a> program.  The focus of the site is as a <a href="http://www.homecarehow.com/">how to guide for caring for elderly and invalid in their homes</a>.  I&#8217;m pretty excited about it as this author&#8217;s other SiteShare projects have all done very well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/home-care-how-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Paypal Improvements</title>
		<link>http://www.danifer.com/paypal-improvements</link>
		<comments>http://www.danifer.com/paypal-improvements#comments</comments>
		<pubDate>Thu, 25 Jan 2007 23:49:19 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/paypal-improvements.html</guid>
		<description><![CDATA[Paypal is fast becoming one of my favorite vendors.  They&#8217;re trying to stay ahead of the game with Google fresh on their heels and keep the bulk of highly profitable online payment market.
And they&#8217;re doing a good job!
More and more I find myself using their services.  Here&#8217;s why:

They&#8217;re good for online invoicing of [...]]]></description>
			<content:encoded><![CDATA[<p>Paypal is fast becoming one of my favorite vendors.  They&#8217;re trying to stay ahead of the game with Google fresh on their heels and keep the bulk of highly profitable online payment market.</p>
<p>And they&#8217;re doing a good job!</p>
<p>More and more I find myself using their services.  Here&#8217;s why:</p>
<ul>
<li>They&#8217;re good for online invoicing of customers.  Their online invoicing tool lets my customers pay bills with their credit card (a must for most) and makes a paper invoice unnecessary.  As an added bonus, the credit card processing fee is competitive and the turnaround on customer payments is generally only a day or so.
<li>They&#8217;ve integrated efficiently with the post office if you have to ship a hundred or so packages.
<li>They offer a debit card like my bank.
<li>Their newest tool allows me to randomly generate credit card numbers good for a short period of time which not only cuts down on fraud, but can also keep unscrupulous merchants (Bally&#8217;s total fitness &#8211; I&#8217;m looking at you) from billing me month after month.
<li>Any accountant would be thrilled with the automated reports and Quickbooks compatibility.
<li>And to top it all off, my balance is currently earning 5% through their money market program.
</ul>
<p>Not to sound too much like a shill for Paypal, I&#8217;m just very impressed!  Definitely blog worthy.</p>
<p><center><!-- Begin PayPal Logo --><A HREF="https://www.paypal.com/us/mrb/pal=JB68LNKM5MFES" target="_blank"><IMG  SRC="http://www.danifer.com/images/paypal_mrb_banner.gif" BORDER="0" ALT="Sign up for PayPal and start accepting credit card payments instantly."></A><!-- End PayPal Logo --></center></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/paypal-improvements/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Custom Placement Packs</title>
		<link>http://www.danifer.com/google-custom-placement-packs</link>
		<comments>http://www.danifer.com/google-custom-placement-packs#comments</comments>
		<pubDate>Thu, 25 Jan 2007 23:36:04 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/google-custom-placement-packs.html</guid>
		<description><![CDATA[An interesting email from the guys at Google regarding 1km1kt.net:

Dear Publisher,
After a recent review of your site, we would like to include 1km1kt.net in our custom placement packs program.  Custom placement packs are selections of individually-reviewed sites designed for our largest brand advertisers.    
We would like to feature your site more [...]]]></description>
			<content:encoded><![CDATA[<p>An interesting email from the guys at Google regarding <a href="http://www.1km1kt.net">1km1kt.net</a>:</p>
<blockquote><p>
Dear Publisher,</p>
<p>After a recent review of your site, we would like to include 1km1kt.net in our custom placement packs program.  Custom placement packs are selections of individually-reviewed sites designed for our largest brand advertisers.    </p>
<p>We would like to feature your site more frequently in these advertiser packages, but to do so, we need you to place more image and text-enabled medium rectangle ad units (300&#215;250) on your site. Visit https://www.google.com/adsense/adformats to see a sample of the medium rectangle unit.</p>
<p>The medium rectangle is the most demanded size among our brand advertisers that utilize these packages for both text and image ads. These advertisers want to ensure they reach visitors on high quality sites like yours, and are willing to bid more for ads prominently displayed on these sites.  They require that the units be placed &#8220;above the fold&#8221; on a page so that the ads are immediately visible to your site&#8217;s visitors without scrolling down.</p>
<p>If you decide to add medium rectangle units to your site, please notify us by replying to this email so that we can begin featuring your site in more of our advertiser packages. </p>
<p>We also recommend you use the newly launched ad placements feature to define your ad slots to advertisers so they can bid on specific placements on your site.  For instructions on how to create ad placements, please visit https://www.google.com/adsense/support/bin/answer.py?answer=50691 .  </p>
<p>Sincerely,</p>
<p><em>Name Removed</em></p>
<p>AdSense Support</p></blockquote>
<p>I wonder if this is a general push for the AdSense program, or if I&#8217;ve crossed some sort of threshold.  If you have any insight, please let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/google-custom-placement-packs/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Websites and New Customers</title>
		<link>http://www.danifer.com/new-websites-and-new-customers</link>
		<comments>http://www.danifer.com/new-websites-and-new-customers#comments</comments>
		<pubDate>Thu, 18 Jan 2007 20:12:24 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/new-websites-and-new-customers.html</guid>
		<description><![CDATA[When I&#8217;m not posting to the blog it&#8217;s a good thing.  Not so much for my readers, but for me.  It means I&#8217;m busy building websites, working with clients and generally shaking my tail feather to make ends meet.  Here&#8217;s what I&#8217;ve been up to lately:
Import Growth &#8211; Sourcing and Strategy for [...]]]></description>
			<content:encoded><![CDATA[<p>When I&#8217;m not posting to the blog it&#8217;s a good thing.  Not so much for my readers, but for me.  It means I&#8217;m busy building websites, working with clients and generally shaking my tail feather to make ends meet.  Here&#8217;s what I&#8217;ve been up to lately:</p>
<p><strong>Import Growth</strong> &#8211; <a href="http://www.importgrowth.com/">Sourcing and Strategy for Small Businesses</a><br />
This is a website I setup for one of the subscribers to my international trade newsletter.  I put the call out for individuals who would be interested in a no fee website which they could use to establish themselves in the international trade arena and to promote their own projects.  They get a no-cost, custom website that they can manage on the condition that they post on topic on a regular basis.  The individual who claimed this one runs a tea import business out of the San Diego area.  I highly recommend checking out the site to hear about some of the trials and tribulations smaller importers face on a daily basis.</p>
<p><strong>The Scrapbook Pad</strong> &#8211; <a href="http://www.scrapbookpad.com/">Colleyville&#8217;s Largest Scrapbook Store</a><br />
A new customer and owner of The Scrapbook Pad, this website was fun to make and the owner a joy to work with.  I hope I get a thousand more customers like this one!  If you&#8217;re in the area, check out their store at:</p>
<p>5611 Colleyville Blvd. #140<br />
Colleyville, TX 76034 </p>
<p><strong>Mulgore Armailte Society</strong> &#8211; a <a href="http://www.mulgore.net/">World of Warcraft Horde Guild</a><br />
Because I don&#8217;t work all the time, this is a website designed for my latest obsession &#8211; World of Warcraft.  The website is run by my wife who is far better at community building than myself and is something of an online meeting place for MAS guild members.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/new-websites-and-new-customers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eye Tracking and Usability</title>
		<link>http://www.danifer.com/eye-tracking-and-usability</link>
		<comments>http://www.danifer.com/eye-tracking-and-usability#comments</comments>
		<pubDate>Sun, 07 Jan 2007 21:06:40 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/eye-tracking-and-usability.html</guid>
		<description><![CDATA[A really fantastic article regarding eye motion and web page layout.  The article states that users perceive a web page in an &#8220;F&#8221; Pattern, first and second in a horizontal movement across the top two paragraphs of a page and then in a vertical movement down the left hand side.
This means it&#8217;s extremely important [...]]]></description>
			<content:encoded><![CDATA[<p>A really fantastic article regarding <a href="http://www.useit.com/alertbox/reading_pattern.html">eye motion and web page layout</a>.  The article states that users perceive a web page in an &#8220;F&#8221; Pattern, first and second in a horizontal movement across the top two paragraphs of a page and then in a vertical movement down the left hand side.</p>
<p>This means it&#8217;s extremely important to place your most important content near the top, while your secondary points are clearly delineated by headers or bullet points.</p>
<p>On my site, <a href="http://www.dieselearth.com/">dieselearth.com</a>, I place my Google Ads where they will get the maximum amount of attention (because more clicks on those ads means more money for me).  Compare this article to that site&#8217;s <a href="http://www.dieselearth.com/">homepage</a> to see why that position is worth more money.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/eye-tracking-and-usability/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spam Bully Review</title>
		<link>http://www.danifer.com/spam-bully-review</link>
		<comments>http://www.danifer.com/spam-bully-review#comments</comments>
		<pubDate>Sun, 10 Dec 2006 18:16:06 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/spam-bully-review.html</guid>
		<description><![CDATA[I run more than 20 web sites, and consequently I get a lot of spam mail.
Tip: if you publish your email address in plain text on a website, you can expect to triple your incoming spam.
The solution I&#8217;ve been testing over the last few days is Spam Bully and I have to say I&#8217;m very [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://danifer001.spambully.hop.clickbank.net"><img id="image77" height=96 alt="Spam Bully Logo" src="http://www.danifer.com/wp-content/uploads/2006/12/spambullylogo.gif" style="float:left; padding:15px;"/></a>I run more than 20 web sites, and consequently I get a lot of spam mail.</p>
<p><strong>Tip: if you publish your email address in plain text on a website, you can expect to triple your incoming spam.</strong></p>
<p>The solution I&#8217;ve been testing over the last few days is <a href="http://danifer001.spambully.hop.clickbank.net">Spam Bully</a> and I have to say I&#8217;m very pleased!</p>
<p>Along with a variety of filters including a Bayesian flter (a learning filter that adapts itself to your user preferences), it comes packed with some really cool stastical analysis reports for your incoming mail.  It&#8217;s reduced my morning email time from 30 minutes down to less than five, and it integrates seamlessly with Outlook Express.  It doesn&#8217;t hog memory like some of the other client side spam filters, and virtually ever option I can think of is configurable to my preferences to reduce the chances it will trash something I need.</p>
<p>Spam is becoming a real problem and unfortunately there are more spammers than there are ways to combat it.  I don&#8217;t expect we&#8217;ll win the war, but tools like Spam Bully are certainly worth $29.95 to make my life a little easier.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/spam-bully-review/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New vBulletin Versions Released</title>
		<link>http://www.danifer.com/new-vbulletin-versions-released</link>
		<comments>http://www.danifer.com/new-vbulletin-versions-released#comments</comments>
		<pubDate>Tue, 28 Nov 2006 18:24:36 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/new-vbulletin-versions-released.html</guid>
		<description><![CDATA[The latest security update from Jelsoft for their Vbulletin product:
JELSOFT SECURITY BULLETIN
http://www.vbulletin.com/
November 24th, 2006
* New vBulletin Versions Released
* Your License Information
* Contact Us
&#8212;&#8212;&#8212;&#8212;&#8211; NEW VBULLETIN VERSIONS RELEASED &#8212;&#8212;&#8212;&#8211;
The discovery of a potential cross-site scripting (XSS) issue in the administrators control panel has necessitated the preventative release of new versions of vBulletin for the 3.6, 3.5 [...]]]></description>
			<content:encoded><![CDATA[<p>The latest security update from Jelsoft for their Vbulletin product:</p>
<blockquote><p>JELSOFT SECURITY BULLETIN<br />
http://www.vbulletin.com/<br />
November 24th, 2006</p>
<p>* New vBulletin Versions Released<br />
* Your License Information<br />
* Contact Us</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8211; NEW VBULLETIN VERSIONS RELEASED &#8212;&#8212;&#8212;&#8211;</p>
<p>The discovery of a potential cross-site scripting (XSS) issue in the administrators control panel has necessitated the preventative release of new versions of vBulletin for the 3.6, 3.5 and 3.0 series.</p>
<p>Due to several mitigating factors, this issue is hard to exploit and careful browsing by administrators can prevent it entirely. Nonetheless, we strongly recommend that all of our customers upgrade or apply patches as soon as possible.</p>
<p>We have posted instructions on the vBulletin.com announcements forum detailing procedures to upgrade or patch each affected version.  Please follow the relevant links below.</p>
<p>Note: While we have supplied patches and updates for all affected vBulletin versions, we do recommend that all customers upgrade to 3.6.4, as this is our latest stable release.</p>
<p>Upgrade information and patch for 3.6.* series<br />
http://www.vbulletin.com/go/364</p>
<p>Upgrade information and patch for 3.5.* series<br />
http://www.vbulletin.com/go/357</p>
<p>Upgrade information and patch for 3.0.* series<br />
http://www.vbulletin.com/go/3017</p>
<p>If you absolutely cannot apply the patch or upgrade&#8230;</p>
<p>We strongly recommend you actively take steps to address this issue. However, if this is not possible, we recommend that administrators only log into the control panel when work is necessary. While you are logged into the control panel, do not click unknown links. Log out from the control panel using the link in the upper right of the screen immediately after finishing your work. If you are unexpectedly presented with the control panel login screen after clicking a link, do not login.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/new-vbulletin-versions-released/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress Comment Spam</title>
		<link>http://www.danifer.com/wordpress-comment-spam</link>
		<comments>http://www.danifer.com/wordpress-comment-spam#comments</comments>
		<pubDate>Tue, 28 Nov 2006 18:20:45 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/wordpress-comment-spam.html</guid>
		<description><![CDATA[A question from one of my clients regarding comment spam on her Wordpress blog:
I have a quick question for you  &#8212; been getting tons of crappy posts to my website.  Is there a way to adjust some of the wording so it kicks out the pill and sexual content posts?  Some of [...]]]></description>
			<content:encoded><![CDATA[<p><strong>A question from one of my clients regarding comment spam on her Wordpress blog:</strong></p>
<blockquote><p>I have a quick question for you  &#8212; been getting tons of crappy posts to my website.  Is there a way to adjust some of the wording so it kicks out the pill and sexual content posts?  Some of this are beyond nasty.</p>
<p>Thanks a million,</p>
<p>Joi<br />
Before all your memories yellow and fade&#8230; Scrap-To-It!<br />
<a href="http://www.scraptoit.com">www.scraptoit.com</a></p></blockquote>
<p><strong>My reply</strong></p>
<p>When it comes to comment spam, there are a couple of settings in the Wordpress control panel.  You can turn off the comments all together or require approval from you before they get posted.  I normally set mine to require approval, but it depends on how much comment spam you&#8217;re getting and how valuable it is for people to be able to post comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/wordpress-comment-spam/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MarketingSmallBusiness is for Sale</title>
		<link>http://www.danifer.com/marketingsmallbusiness-is-for-sale</link>
		<comments>http://www.danifer.com/marketingsmallbusiness-is-for-sale#comments</comments>
		<pubDate>Fri, 17 Nov 2006 18:09:08 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/marketingsmallbusiness-is-for-sale.html</guid>
		<description><![CDATA[If you&#8217;re in the market to buy a content driven marketing blog, check out this auction over at SitePoint.com:

Here are the details:
PR3 &#8211; Business networking site â€“ All original content
MarketingSmallBusiness.net is a content driven web site related to small business marketing and networking.
Content
This site contains 19 professionally written; original articles related to small business marketing [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re in the market to buy a content driven marketing blog, check out this auction over at SitePoint.com:</p>
<p><center><a href="http://www.sitepoint.com/marketplace/auction/2725"><img src="http://www.sitepoint.com/marketplace/auctionimage/2725" alt="View Auction" /></a></center></p>
<p>Here are the details:</p>
<p><strong>PR3 &#8211; Business networking site â€“ All original content</strong></p>
<p>MarketingSmallBusiness.net is a content driven web site related to small business marketing and networking.</p>
<p><strong>Content</strong></p>
<p>This site contains 19 professionally written; original articles related to small business marketing and networking that have not been republished or distributed elsewhere.</p>
<p>The contributing author is available to do follow-up work on a paid basis, but that is not included as part of this auction.</p>
<p><strong>Traffic</strong></p>
<p>MarketingSmallBusiness.net is fully indexed by Google, Yahoo!, and MSN.  It averages about 20-25 unique visitors per day*.</p>
<p>You can view traffic statistics at:<br />
http://www.marketingsmallbusiness.net/stats/<br />
username: guest<br />
password: guest</p>
<p>* Our traffic numbers are not inflated with bot visits, paid traffic, or links from our other websites.  Our statistics program does not count the majority of visits that would artificially inflate traffic.</p>
<p><strong>Revenue</strong></p>
<p>We started using Yahoo!â€™s YPN program to monetize MarketingSmallBusiness.net in September.  Earnings are as follows:</p>
<p>Sep 2006 &#8211; $0.09<br />
Oct 2006 &#8211; $6.79<br />
Through Nov 17, 2006 &#8211; $2.38</p>
<p>You can view a screenshot of the most recent earnings at:<br />
http://www.marketingsmallbusiness.net/ypnstats.jpg</p>
<p><strong>Domain</strong></p>
<p>The domain name is registered through GoDaddy.  It was registered as a new domain on 7/14/2006 and is included as part of this auction.</p>
<p><strong>Backend</strong></p>
<p>This site is powered by a fairly standard WordPress installation.  All content is contained within the WordPress database.</p>
<p><strong>Terms</strong></p>
<p>The buyer will receive a copy of the site contents, database, and domain name.  The winning bidder will be responsible for their own hosting and moving the website to a new home.  Iâ€™ll be happy to set up one yearâ€™s worth of hosting and move the site for you for a one-time fee of $200.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/marketingsmallbusiness-is-for-sale/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Can Email Advertising Help My Business?</title>
		<link>http://www.danifer.com/how-can-email-advertising-help-my-business</link>
		<comments>http://www.danifer.com/how-can-email-advertising-help-my-business#comments</comments>
		<pubDate>Tue, 07 Nov 2006 20:39:20 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/how-can-email-advertising-help-my-business.html</guid>
		<description><![CDATA[If you don&#8217;t stay in front of your customers, your competitors will.
Your existing customers are your best future customers.  They&#8217;ve purchased your product or service once before and are the most likely to need it again.  If you don&#8217;t take the time and effort to make yourself memorable, you may not earn their [...]]]></description>
			<content:encoded><![CDATA[<h2>If you don&#8217;t stay in front of your customers, your competitors will.</h2>
<p>Your existing customers are your best future customers.  They&#8217;ve purchased your product or service once before and are the most likely to need it again.  If you don&#8217;t take the time and effort to make yourself memorable, you may not earn their business the next time around.  Staying at the forefront is critical to success.</p>
<p>If your customers don&#8217;t remember your name when they go to shop, you&#8217;ll have to compete for their business all over again!</p>
<h2>That&#8217;s where email marketing comes in.</h2>
<p>I&#8217;m not talking about sending thousands of spam messages peddling Viagra and knock-off Rolex watches.  I&#8217;m talking about sending valuable information about your products and services to individuals that have already taken the time to establish a business relationship with you.</p>
<h2>What&#8217;s the return on investment?</h2>
<p>When you send an email newsletter or bulk mailing to your existing client base, you can typically expect a 1% to 5% response rate from your subscribers.  That means that if you send out a thousand emails to existing or potential customers, you&#8217;re likely to generate anywhere between ten and fifty qualified leads.  From there, you&#8217;ll have to do your own math based on your business.  </p>
<p>For my business (Danifer Web Services) I find that out of ten leads I&#8217;m likely to generate one sale.  Out of fifty, I&#8217;ll generate five.  From each sale, my profit margin is anywhere between $300 and $2000.</p>
<p>That means for the 15 minutes it takes to put together a monthly mailer advertising my latest special or value added service to two thousand subscribers, <strong>I can expect to receive between $2500 and $10,000 worth of business</strong>.  Not too bad, right?</p>
<h2>How can I build a subscriber list?</h2>
<ul>
<li>Networking is a great way to get started.  Sign up with your local chamber of commerce and attend some of their &#8220;get to know you&#8221; functions.  Collect business cards from interested individuals and plug them into a database.
<li>If you have a restaurant, bar or retail outlet, put out a fishbowl and encourage visitors to drop in a card for a chance to win a small prize.
<li>Have a website? Consider adding a newsletter sign up form like the one at the bottom of the page.
<li>Try giving away something for free like a white paper related to one of your products.  By signing up for the information, you pre-qualify individuals who are interested in what you have to offer.  Here&#8217;s an example from one of my sites where I give away <a href="http://www.howtoadvertise.net/Free_Stuff/">statistical website information</a> in exchange for email subscribers.
</ul>
<h2>Conclusion</h2>
<p>Email marketing is a low cost, highly effective advertising solution for businesses on a budget.  My own marketing is limited to this and to the networking I do at local business events and returns 90% of my customers.</p>
<p>If you&#8217;re interested in setting up an email collection service or sending out a newsletter, please feel free to <a href="http://www.danifer.com/contact.php">drop me a line</a> anytime.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/how-can-email-advertising-help-my-business/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RPG Laboratory</title>
		<link>http://www.danifer.com/rpg-laboratory</link>
		<comments>http://www.danifer.com/rpg-laboratory#comments</comments>
		<pubDate>Thu, 26 Oct 2006 19:57:15 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/rpg-laboratory.html</guid>
		<description><![CDATA[Yesterday I launched RPGLaboratory.com, a Drupal-based blog hosting sister site to 1KM1KT.  The primary audience members are developers for role playing games.  Since 1KM1KT was already hosting completed RPG projects and a discussion forum, I thought the members might appreciate and contribute to their own individual RPG development blogs.

I decided to make a [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday I launched RPGLaboratory.com, a Drupal-based blog hosting sister site to 1KM1KT.  The primary audience members are developers for <a href="http://www.rpglaboratory.com">role playing games</a>.  Since 1KM1KT was already hosting completed RPG projects and a discussion forum, I thought the members might appreciate and contribute to their own individual <a href="http://www.rpglaboratory.com/chainsaw_aardvark">RPG development</a> blogs.</p>
<p><center><a href="http://www.rpglaboratory.com" style="margin:15px;"><img alt="RPG Laboratory Logo" src="http://www.danifer.com/wp-content/uploads/2006/10/rpglab_logo_375x166.jpg" border="0"/></a></center></p>
<p>I decided to make a separate website for them rather than add on to 1KM1KT for diversification purposes, to track statistics independently, and to appeal to a similar but equally targeted audience.  Most of 1KM1KT&#8217;s traffic are individuals looking for <a href="http://www.1km1kt.net">free downloadable rpg games</a>.  RPG Laboratory will instead focus on game developers and development.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/rpg-laboratory/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Greylisting for Your Email</title>
		<link>http://www.danifer.com/greylisting-for-your-email</link>
		<comments>http://www.danifer.com/greylisting-for-your-email#comments</comments>
		<pubDate>Fri, 20 Oct 2006 22:35:21 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/greylisting-for-your-email.html</guid>
		<description><![CDATA[A friend of mine recently turned me onto a service called greylisting for my mailserver.  His comments are great, so I&#8217;ve just pasted them below.  Thanks to the guys at GreatDaneHosting!
Keeton,
You need to look into greylisting for your email.  The first time you get an email from a specific email address, the [...]]]></description>
			<content:encoded><![CDATA[<p>A friend of mine recently turned me onto a service called <a href="http://www.greylisting.org/">greylisting </a>for my mailserver.  His comments are great, so I&#8217;ve just pasted them below.  Thanks to the guys at <a href="http://www.greatdanehosting.com/">GreatDaneHosting</a>!</p>
<blockquote><p>Keeton,</p>
<p>You need to look into greylisting for your email.  The first time you get an email from a specific email address, the mail server tells the remote mail server to resend in 30 minutes.  Most spam servers don&#8217;t bother.  Once the email has successfully been resent to your mailserver, it goes on a whitelist, so future emails are not delayed. </p>
<p>If you can handle the delay in email, which most people can, then it is a very effective way to cut down spam.  You can manually add email addresses to your whitelist, so they won&#8217;t be delayed the first time.</p>
<p>Mike</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/greylisting-for-your-email/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make a Contact Page on Your Site</title>
		<link>http://www.danifer.com/make-a-contact-page-on-your-site</link>
		<comments>http://www.danifer.com/make-a-contact-page-on-your-site#comments</comments>
		<pubDate>Fri, 20 Oct 2006 04:15:22 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/make-a-contact-page-on-your-site.html</guid>
		<description><![CDATA[If you want to email me at danifer.com, there&#8217;s only one page where you can find my email address.  The reason for this is two-fold:

By having a contact page, I can avoid putting my email address on every web page where I encourage customers to email me.
This is nice because if I have the [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to email me at danifer.com, there&#8217;s only <a href="http://www.danifer.com/contact.php">one page</a> where you can find my email address.  The reason for this is two-fold:</p>
<ol>
<li>By having a contact page, I can avoid putting my email address on every web page where I encourage customers to email me.
<p>This is nice because if I have the need to change my email address, I can do it without much difficulty.  It&#8217;s easier to change the address on one page than it would be to find every instance where I&#8217;ve used an email address and change them manually, and the extra step needed to get a hold of me is fairly inconsequential.</p>
<li>I get a LOT of spam and the only effective way to control it is to regularly change my contact email.
<p>I think contact forms are annoying, so I like to publish my address in the name@domain.com format so interested parties can email me using their method of choice. I find that when I&#8217;m faced with a contact form on a website rather than an email address, there&#8217;s about a one in five chance I&#8217;ll just decide it&#8217;s not that important that I get in touch with that person and I would hate if my customers felt the same way.
</ol>
<p>The problem with number two is that spammers are now using email scrapers that will visit websites looking for email addresses to add to their spam lists (that&#8217;s why you see people using email addresses and spelling them out like &#8220;name at domain.com&#8221;).</p>
<p>One way I&#8217;ve found to control the email scrapers is to publish my email address using javascript which most bots can not read.  You&#8217;ll notice if you turn off javascript on your browser my address on the contact page will disappear.  This is a little more complicated to implement, so it&#8217;s nice to have it on one page instead of dozens.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/make-a-contact-page-on-your-site/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Page Visit Notification Script</title>
		<link>http://www.danifer.com/web-page-visit-notification-script</link>
		<comments>http://www.danifer.com/web-page-visit-notification-script#comments</comments>
		<pubDate>Thu, 19 Oct 2006 00:36:35 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/web-page-visit-notification-script.html</guid>
		<description><![CDATA[Edit: Due to the large number of requests, we&#8217;ve made the web page notification script available for download at:
http://www.danifer.com/web_page_notification_script.php
On the back of my business cards, I include a URL that users can visit to view special offers, get discounts on my services, and basically just get cool extra stuff for free.  The idea is [...]]]></description>
			<content:encoded><![CDATA[<div class="special"><strong>Edit:</strong> Due to the large number of requests, we&#8217;ve made the web page notification script available for download at:<br />
<a href="http://www.danifer.com/web_page_notification_script.php">http://www.danifer.com/web_page_notification_script.php</a></div>
<p>On the back of my business cards, I include a URL that users can visit to view special offers, get discounts on my services, and basically just get cool extra stuff for free.  The idea is to gauge who is actioning on my business cards when I give them out &#8211; meaning I want to know if people are taking the time to look them over, absorb the information and bothering to visit the website.</p>
<p>Basically, I created a new page on my site and included the <a href="http://www.danifer.com/blog/searching-for-robotstxt-files.html">noindex, nofollow metatags</a> so it wouldn&#8217;t get spidered by the search engines.  I don&#8217;t link to it from any other pages on my site, so the only way to get to it is to manually type the URL into your browser.  On this special page I included a script that sends a quick email notification to me whenever it is loaded in a browser.  Basically, an email notification of web visit. The email it sends looks something like this and can be easily customized for a variety of applications:</p>
<blockquote><p>A request has been made to your specified web page.</p>
<p>Site Visited: http://www.danifer.com<br />
Viewed Page: http://www.danifer.com/secretpage<br />
IP Address: http://ws.arin.net/cgi-bin/whois.pl?queryinput=an IP Address<br />
Referrer:<br />
User Agent: Useragent info here<br />
Time: October 18, 2006, 7:26 pm</p></blockquote>
<p>Of course you can always get this information from your log files, but I don&#8217;t know anyone who has time to read those everyday, and I wouldn&#8217;t expect someone outside of my field to know where to find them.  I&#8217;m billing this more as a low tech tool for clients to get real-time feedback from their website in an email format that most of them are comfortable using.</p>
<p>This was a pretty simple tool to setup and I&#8217;ll be pitching it to clients as a good way to feel out some of their marketing efforts.  Since the script can be shared via a php include statement and includes custom page/site info for each page visit notification, it&#8217;s easy to host the script in a single location and call it to wherever it is needed, so use on more than one page is very simple.</p>
<p>I&#8217;d like to see clients use this to judge the effectiveness of things like bulk mailings, word of mouth advertising, TV commercial spots, and other offline and online marketing efforts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/web-page-visit-notification-script/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Shortcut Keys</title>
		<link>http://www.danifer.com/windows-shortcut-keys</link>
		<comments>http://www.danifer.com/windows-shortcut-keys#comments</comments>
		<pubDate>Mon, 09 Oct 2006 18:19:07 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/windows-shortcut-keys.html</guid>
		<description><![CDATA[I&#8217;m sure these have been posted all over the net, but they&#8217;re a good reference nonetheless.  From the List of the keyboard shortcuts that are available in Windows XP.

CTRL+C (Copy)
CTRL+X (Cut)
CTRL+V (Paste)
CTRL+Z (Undo)
DELETE (Delete)
SHIFT+DELETE (Delete the selected item permanently without placing the item in the Recycle Bin)
CTRL while dragging an item (Copy the selected [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sure these have been posted all over the net, but they&#8217;re a good reference nonetheless.  From the <a href="http://support.microsoft.com/kb/301583">List of the keyboard shortcuts that are available in Windows XP</a>.</p>
<ul>
<li>CTRL+C (Copy)
<li>CTRL+X (Cut)
<li>CTRL+V (Paste)
<li>CTRL+Z (Undo)
<li>DELETE (Delete)
<li>SHIFT+DELETE (Delete the selected item permanently without placing the item in the Recycle Bin)
<li>CTRL while dragging an item (Copy the selected item)
<li>CTRL+SHIFT while dragging an item (Create a shortcut to the selected item)
<li>F2 key (Rename the selected item)
<li>CTRL+RIGHT ARROW (Move the insertion point to the beginning of the next word)
<li>CTRL+LEFT ARROW (Move the insertion point to the beginning of the previous word)
<li>CTRL+DOWN ARROW (Move the insertion point to the beginning of the next paragraph)
<li>CTRL+UP ARROW (Move the insertion point to the beginning of the previous paragraph)
<li>CTRL+SHIFT with any of the arrow keys (Highlight a block of text)
<li>SHIFT with any of the arrow keys (Select more than one item in a window or on the desktop, or select text in a document)
<li>CTRL+A (Select all)
<li>F3 key (Search for a file or a folder)
<li>ALT+ENTER (View the properties for the selected item)
<li>ALT+F4 (Close the active item, or quit the active program)
<li>ALT+ENTER (Display the properties of the selected object)
<li>ALT+SPACEBAR (Open the shortcut menu for the active window)
<li>CTRL+F4 (Close the active document in programs that enable you to have multiple documents open simultaneously)
<li>ALT+TAB (Switch between the open items)
<li>ALT+ESC (Cycle through items in the order that they had been opened)
<li>F6 key (Cycle through the screen elements in a window or on the desktop)
<li>F4 key (Display the Address bar list in My Computer or Windows Explorer)
<li>SHIFT+F10 (Display the shortcut menu for the selected item)
<li>ALT+SPACEBAR (Display the System menu for the active window)
<li>CTRL+ESC (Display the Start menu)
<li>ALT+Underlined letter in a menu name (Display the corresponding menu)
<li>Underlined letter in a command name on an open menu (Perform the corresponding command)
<li>F10 key (Activate the menu bar in the active program)
<li>RIGHT ARROW (Open the next menu to the right, or open a submenu)
<li>LEFT ARROW (Open the next menu to the left, or close a submenu)
<li>F5 key (Update the active window)
<li>BACKSPACE (View the folder one level up in My Computer or Windows Explorer)
<li>ESC (Cancel the current task)
<li>SHIFT when you insert a CD-ROM into the CD-ROM drive (Prevent the CD-ROM from automatically playing)
<li>CTRL+SHIFT+ESC (Open Task Manager)
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/windows-shortcut-keys/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Development Stereotypes</title>
		<link>http://www.danifer.com/web-development-stereotypes</link>
		<comments>http://www.danifer.com/web-development-stereotypes#comments</comments>
		<pubDate>Sun, 08 Oct 2006 17:59:56 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/web-development-stereotypes.html</guid>
		<description><![CDATA[I borrowed this from a sitepoint article entitled &#8220;Survey Exposes the Four Web Dev Stereotypes &#8211; Which are You?&#8221;  Read the full article here.

The &#8220;Guru&#8221; is strongly motivated toward technical excellence, actively tracks new technological trends, and is interested in learning how to use them to improve the quality and functionality of web sites.
The [...]]]></description>
			<content:encoded><![CDATA[<p>I borrowed this from a sitepoint article entitled &#8220;Survey Exposes the Four Web Dev Stereotypes &#8211; Which are You?&#8221;  Read the full article <a href="http://www.sitepoint.com/article/survey-web-dev-stereotypes">here</a>.</p>
<ul>
<li>The &#8220;<strong>Guru</strong>&#8221; is strongly motivated toward technical excellence, actively tracks new technological trends, and is interested in learning how to use them to improve the quality and functionality of web sites.
<li>The &#8220;<strong>Entrepreneur</strong>&#8221; is strongly motivated toward building and retaining an audience, and is less interested in using technologies just because they&#8217;re new.
<li>The &#8220;<strong>Designer</strong>&#8221; is strongly motivated toward the timely delivery of visually appealing web sites that meet the business requirements of clients.
<li>The &#8220;<strong>Corporate</strong>&#8221; is strongly motivated toward reliable, stable performance; the &#8220;Corporate works in a larger organization, and faces the unique mixture of constraints and opportunities that the corporate environment offers. </ul>
<p>FYI &#8211; I had trouble pigeonholing myself into one of these categories.  I&#8217;ll probably need someone else to do that for me.  I do, however, recognize each of these four elements as critical to the success of a web project.  I guess if I had to choose, I would lean toward the Entrepreneur and away from the Designer stereotypes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/web-development-stereotypes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crazy Egg Web Page Heatmap</title>
		<link>http://www.danifer.com/crazy-egg-web-page-heatmap</link>
		<comments>http://www.danifer.com/crazy-egg-web-page-heatmap#comments</comments>
		<pubDate>Sun, 08 Oct 2006 17:17:51 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/crazy-egg-web-page-heatmap.html</guid>
		<description><![CDATA[Here&#8217;s a nifty tool from a company called crazyegg.  It&#8217;s a utility that will track user activity with a little bit of javascript on your specified webpages and will create some nice tracking information.  I&#8217;m particularly interested in the heatmap it&#8217;s supposed to generate so I can see graphically which areas of my [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a nifty tool from a company called <a href="http://crazyegg.com/">crazyegg</a>.  It&#8217;s a utility that will track user activity with a little bit of javascript on your specified webpages and will create some nice tracking information.  I&#8217;m particularly interested in the heatmap it&#8217;s supposed to generate so I can see graphically which areas of my pages get the most clicks.  I&#8217;ve currently got it running on:<br />
<img id="image65" alt="crazyegg logo" src="http://www.danifer.com/wp-content/uploads/2006/10/crazyegg-logo.jpg" style="float:left; margin:15px;"/><br />
<a href="http://www.firmscode.com/index.php">http://www.firmscode.com/index.php</a><br />
<a href="http://www.itintl.com/index.php">http://www.itintl.com/index.php</a><br />
<a href="http://www.1km1kt.net/index.php">http://www.1km1kt.net/index.php</a></p>
<p>Just view the source code and search for &#8220;crazyegg&#8221; on the page to see the javascript.</p>
<p>No results yet, but I&#8217;ll post some images as soon as they come back.  Here&#8217;s an example from their site.</p>
<p><center><a class="imagelink" title="Crazy Egg Heatmap" href="http://www.danifer.com/wp-content/uploads/2006/10/heatmap.jpg" rel="lightbox[59]"><img id="image60" height=96 alt="Crazy Egg Heatmap" src="http://www.danifer.com/wp-content/uploads/2006/10/heatmap.thumbnail.jpg" border="0"/></a></center></p>
<p><strong>Update</strong></p>
<p>I&#8217;ve gotten my first heatmap back for 1km1kt.net and WOW am I impressed!  The detail it gave me is nothing new &#8211; I&#8217;ve always known where my clicks were going and what my visitors were doing from my reports, but I&#8217;ve never seen it laid out like this before.  I&#8217;m a visual learner, so seeing a graphical representation like this immediately got me thinking of ways to improve the site.  Here&#8217;s what&#8217;s come back in the past hour or so:</p>
<p><center><a class="imagelink" title="1km1kt heatmap" href="http://www.danifer.com/wp-content/uploads/2006/10/1km1kt-heatmap.jpg" rel="lightbox[59]"><img id="image62" height=79 alt="1km1kt heatmap" src="http://www.danifer.com/wp-content/uploads/2006/10/1km1kt-heatmap.thumbnail.jpg" border="0"/></a></center></p>
<p>Off the top of my head, here are my initial thoughts:</p>
<ul>
<li>My ads are in the right place.  They get the majority of the clicks already, so I&#8217;m not going to move them.
<li>Game titles are having an effect on click throughs &#8211; I need to let the site authors know that so they can maximize their traffic.
<li>Crazyegg is tracking not only what gets clicked on, but the exact spot the user is clicking.  See that one on the EVE Online banner at the bottom of the &#8220;V&#8221;?  That&#8217;s me.
<li>Lots of people are clicking on the &#8220;Free RPGs&#8221; link at the top of the page.  I need to check on that page to make sure it&#8217;s got a good design.</ul>
<p>I&#8217;m sure there&#8217;s more I can get out of this as it develops, but for a start that&#8217;s pretty good.  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/crazy-egg-web-page-heatmap/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Searching for robots.txt files</title>
		<link>http://www.danifer.com/searching-for-robotstxt-files</link>
		<comments>http://www.danifer.com/searching-for-robotstxt-files#comments</comments>
		<pubDate>Sat, 07 Oct 2006 20:25:24 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/searching-for-robotstxt-files.html</guid>
		<description><![CDATA[The idea behind a robots.txt file is simple &#8211; place a static text file at the front door of your website with a listing of files and directories that you do not want search engine robots to index.

There are two problems with this concept:
1) Participation is at the robot programmer&#8217;s discretion.  If you can [...]]]></description>
			<content:encoded><![CDATA[<p>The idea behind a <a href="http://www.robotstxt.org/">robots.txt</a> file is simple &#8211; place a static text file at the front door of your website with a listing of files and directories that you do not want search engine robots to index.<br />
<img id="image64" alt="Robots txt Search Logo" src="http://www.danifer.com/wp-content/uploads/2006/10/robots_txt.gif"  style="float:left; margin: 15px;"/><br />
<strong>There are two problems with this concept:</strong></p>
<p>1) Participation is at the robot programmer&#8217;s discretion.  If you can program a search robot (or search spider as they&#8217;re sometimes called), you can program it to ignore the robots.txt standard.</p>
<p>2) By publishing a list URLs you don&#8217;t want indexed, you&#8217;re also publishing a list of top-secret cool stuff on your site.  Take it one step further and start developing a <a href="http://www.alexa.com/site/devcorner/rdt">robots.txt search tool</a>, and you can start to see the bigger problem.</p>
<p>My suggestion is that if you have cool stuff on your site that you want protected, consider using the robots meta tags nofollow and noindex.  This keeps you from having to publish a road map to your secrets while still making use of the robots.txt standard.</p>
<p>Here&#8217;s a <a href="http://www.google.com/search?q=allinurl%3Arobots.txt">quick search just for sites with a published robots.txt file</a>.</p>
<p><strong>More helpful hints:</strong></p>
<p>Search spiders invariably look for a robots.txt file when the visit your site.  Create a blank one to allow full access and reduce the number of &#8220;file not found&#8221; errors in your error log.</p>
<p>Use your robots.txt file to block whole directories rather than single files.  Unscrupulous surfers my know which directories you&#8217;re protecting, but they&#8217;ll still have to guess at file names.  Be sure to create a blank index.html file and turn off indexing so you don&#8217;t display your protected directory content to the world.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/searching-for-robotstxt-files/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pagrank Update</title>
		<link>http://www.danifer.com/pagrank-update</link>
		<comments>http://www.danifer.com/pagrank-update#comments</comments>
		<pubDate>Fri, 06 Oct 2006 19:05:35 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/pagrank-update.html</guid>
		<description><![CDATA[Google PageRank, the arbitrary ranking system instituted by Google has recently been updated for some of my websites.  I don&#8217;t pay too much attention to this statistic because it&#8217;s important to have multiple sources of traffic and not to rely on any single source.  I do, however, note when the rankings are updated [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.google.com/technology/">Google PageRank</a>, the arbitrary ranking system instituted by Google has recently been updated for some of my websites.  I don&#8217;t pay too much attention to this statistic because it&#8217;s important to have multiple sources of traffic and not to rely on any single source.  I do, however, note when the rankings are updated because they typically mean my sites will be moving around in the search results which can have an impact on my bottom line.</p>
<p>Average PageRank for the majority of my sites until today was 5 (on a 0-10 scale).  I don&#8217;t have any sites that have broken a 6 or higher.  Today&#8217;s update seems to have made some changes, bringing most of my sites down to a 4 with one or two 5&#8217;s mixed in for good measure.  During a period of change, there&#8217;s always a little fluctuation and the results don&#8217;t finalize for a day or so.  It&#8217;s actually a little terrifying sometimes when your PageRank drops from a 5 to 0 for several days while Google updates its index!</p>
<p>Like I said, PageRank is just one measure of site performance and is in no way a stand-alone indicator of a site&#8217;s health.  A far better indicator is my own personal gut feeling that my sites provide useful and relevant information and resources and the traffic statistics to support it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/pagrank-update/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adwords Position Preferences</title>
		<link>http://www.danifer.com/adword-position-preferences</link>
		<comments>http://www.danifer.com/adword-position-preferences#comments</comments>
		<pubDate>Thu, 05 Oct 2006 16:25:03 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/adword-position-preferences.html</guid>
		<description><![CDATA[If you&#8217;re using Google Adwords and are unhappy with either your cost per click or your ad placement, consider the position preferences option for your campaigns.
Using position preference, you can target your bid to aim for a specific position in the ad lineup rather than always trying to be number one.  I&#8217;ve found that [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re using Google Adwords and are unhappy with either your cost per click or your ad placement, consider the position preferences option for your campaigns.</p>
<p>Using position preference, you can target your bid to aim for a specific position in the ad lineup rather than always trying to be number one.  I&#8217;ve found that by forgoing the competition for the #1 spot, I&#8217;ve lowered my cost per click by as much as 60%.  Not only that, but with well written ads I&#8217;ve seen a negligible drop in click throughs.</p>
<p>Try aiming your ads at the 2nd, 3rd, or 4th positions.  Often times the top one, two or three ads will appear in a separate section of the page leaving whatever ad didn&#8217;t make the cut in the top position on the right hand column.  This is hard to describe, so check out the picture to see what I mean.</p>
<p><center><a title="Position Preferences" href="http://www.danifer.com/wp-content/uploads/2006/10/position-preference.jpg" target="blank" rel="lightbox[56]"><img id="image55" height=96 alt="Position Preferences" src="http://www.danifer.com/wp-content/uploads/2006/10/position-preference.thumbnail.jpg" border="0"></a></center></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/adword-position-preferences/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Google Heatmap</title>
		<link>http://www.danifer.com/the-google-heatmap</link>
		<comments>http://www.danifer.com/the-google-heatmap#comments</comments>
		<pubDate>Thu, 05 Oct 2006 16:13:50 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/the-google-heatmap.html</guid>
		<description><![CDATA[Google has developed a short tutorial for users asking the question &#8220;where should I place my ads for the best click-through rate?&#8221;  Although useful for answering that question, Google&#8217;s tutorial also offers a good overview for which parts of a web page draw the most attention.  Check out the full tutorial or go [...]]]></description>
			<content:encoded><![CDATA[<p><a class="imagelink" title="Google Heatmap" href="http://www.danifer.com/wp-content/uploads/2006/10/google_heatmap.jpg" style="float:left; margin:15px;" rel="lightbox[54]"><img id="image66" height=90 alt="Google Heatmap" src="http://www.danifer.com/wp-content/uploads/2006/10/google_heatmap.thumbnail.jpg" border="0"/></a>Google has developed a short tutorial for users asking the question &#8220;where should I place my ads for the best click-through rate?&#8221;  Although useful for answering that question, Google&#8217;s tutorial also offers a good overview for which parts of a web page draw the most attention.  Check out the <a href="https://www.google.com/support/adsense/bin/answer.py?answer=17954">full tutorial</a> or go directly to the <a href="http://www.google.com/images/adsense/en_us/support/general_en.jpg" rel="lightbox[54]">Google Heatmap</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/the-google-heatmap/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Targeting your market</title>
		<link>http://www.danifer.com/targeting-your-market</link>
		<comments>http://www.danifer.com/targeting-your-market#comments</comments>
		<pubDate>Wed, 04 Oct 2006 16:12:18 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/targeting-your-market.html</guid>
		<description><![CDATA[I recently had an experience I thought might be of value to anyone who wants to know a little more about the benefits of online marketing.
Last month I remodeled my upstairs bathroom and on one of several trips to the local Home Depot, I came out of the store to find a flyer on my [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had an experience I thought might be of value to anyone who wants to know a little more about the benefits of online marketing.</p>
<p>Last month I remodeled my upstairs bathroom and on one of several trips to the local Home Depot, I came out of the store to find a flyer on my windshield under my wiper blade.  I get these every once in a while and normally I discard them because they&#8217;re usually advertisements that I&#8217;m just not interested in.  This one, however, was different.</p>
<p>The flyer from the Home Depot parking lot was from an individual who was interested in selling a set of five wheels and tires that would fit a 1995-2001 Ford F-150 pickup truck or Ford Expedition.  A quick glance around the parking lot showed that the only cars who had received the flyer were individuals like myself who were driving the year and model car that matched with the wheels and tires in the ad.  I&#8217;m not normally one for shiny wheels, but I took an extra few seconds to read the flyer carefully, look at the pricing, and put it in my back pocket for later.  I can only imagine that the other car owners who received the flyer did the same.  At the very least I expect that each one took time for a second glance and one may very well have purchased some new tires!</p>
<p>This individual&#8217;s marketing method is spot-on advice for most of my clients.  Yes, online advertising is a numbers game but by targeting a small, highly qualified audience, you can maximize the return on investment from your advertising dollars.  Try one of the following to help target your audience more effectively:</p>
<ul>
<li>Use your current client email database to solicit additional business from your existing customers.  As prior customers you know immediately that they have an existing need for your type of product or service.  Why not share with them some of the similar or complimentary products/services you have to offer?
<li>Many pay-per-click advertising campaigns offer the ability to restrict your ads by time of day and geographic location.  Try using these filters so that you spend the most money when potential clients are most likely to purchase and where they&#8217;re most likely to come from.
<li>Build an online marketing list by offering a free product that would appeal to a potential customer.  A good example is our free report from the Department of Commerce entitled <a href="http://www.danifer.com/Entering_the_Broadband_Age.php">A Nation Online: Entering the Broadband Age</a> that details internet usage statistics for American consumers including their reasons for going online, their most frequent online activities, and their socio-economic category.</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/targeting-your-market/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resources and Bookmarks</title>
		<link>http://www.danifer.com/resources-and-bookmarks</link>
		<comments>http://www.danifer.com/resources-and-bookmarks#comments</comments>
		<pubDate>Wed, 04 Oct 2006 02:49:54 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/resources-and-bookmarks.html</guid>
		<description><![CDATA[I&#8217;ve got a few resources I use on a day to day basis for web-design, personal projects, etc.  I thought I would share a few of them here today:
DeGraeve.com hosts a color palette generator that&#8217;s useful for designing a page layout around a particular image.  The palette generator breaks down the image into [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve got a few resources I use on a day to day basis for web-design, personal projects, etc.  I thought I would share a few of them here today:</p>
<p>DeGraeve.com hosts a <a href="http://www.degraeve.com/color-palette/">color palette generator</a> that&#8217;s useful for designing a page layout around a particular image.  The palette generator breaks down the image into 10 or so of the most prolific colors and makes it easy to coordinate a layout.</p>
<p>Alertra.com is an uptime monitoring company and their <a href="http://alertra.com/spotcheck.php">spotcheck</a> tool will tell you how fast your website is loading from multiple locations.  Their pay service is worthwhile as well, and not that expensive</p>
<p>4webhelp.net offers a convenient <a href="http://www.4webhelp.net/us/password.php">.htpasswd encryption tool</a> that I use to encrypt user passwords.  When I use the tool, I normally just enter &#8220;test&#8221; in the Name field.</p>
<p>Feedburner.com is a good resource for <a href="http://www.feedburner.com">developing your RSS readership</a>.  They offer some good tracking tools as well as some other features to help you get the most out of your feed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/resources-and-bookmarks/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What kind of websites get the most traffic?</title>
		<link>http://www.danifer.com/what-kind-of-websites-get-the-most-traffic</link>
		<comments>http://www.danifer.com/what-kind-of-websites-get-the-most-traffic#comments</comments>
		<pubDate>Mon, 02 Oct 2006 18:11:37 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/what-kind-of-websites-get-the-most-traffic.html</guid>
		<description><![CDATA[I&#8217;ve found that there are two types of websites that generate large amounts of traffic right off the bat.  Both have to do with the amount and type of content found on each site.
Before I get into the type of content I recommend for most site owners, I&#8217;d like to ask the following question:
Why [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve found that there are two types of websites that generate large amounts of traffic right off the bat.  Both have to do with the amount and type of content found on each site.</p>
<p>Before I get into the type of content I recommend for most site owners, I&#8217;d like to ask the following question:</p>
<p><strong>Why do you go online?</strong></p>
<p>For me, there are two parts to the answer and each answer reflects a different type of website.</p>
<ol>
<li><strong>I&#8217;m looking for highly specific information (addresses, telephone numbers, product manuals, how-to guides, images, software, etc.)</strong>
<p>With this in mind, consider building a website that offers a highly focused and specific type of information.  A lot of new website owners think that they need to tap into the massive marketplaces that some of the world&#8217;s largest websites leverage for traffic, and offer things like general news, broad reaching articles, and simple services.</p>
<p>In fact, the exact opposite is true.  My most effective websites offer very limited, but highly targeted bits of information.  <a href="http://www.automatedmanifest.com">AutomatedManifest.com</a> is an excellent example.  By offering a tool to look up US Customs AMS error messages I&#8217;ve seriously limited my audience, but I make up for it with a growing number of subscribers who desperately need just that information.  That site has quickly become an authority on the topic and is the first stop for anyone needing that type of information.  Database driven websites or focused articles both make effective target audience websites.</p>
<p><em>It is important to remember that there are 300 million people in the US alone, and nearly 60% of them go online at least once a day.  Just because your content is focused doesn&#8217;t mean people aren&#8217;t interested in it.</em></p>
<li><strong>I have a give and take destination in mind &#8211; an online tool or resource that I&#8217;m already aware of that I want to either contribute to, use for my own purposes, or both.</strong>
<p>Examples of this type of website are online forums, blogs, or services.  These are websites that I&#8217;m already aware of that offer an online tool that is beneficial to me.  This type of website has an enormous amount of potential, but can require a lot of maintenance and upkeep. The effort on the front end is usually much higher as well.  Before you can have an online tool, you must first build that tool from scratch or implement a pre-built solution.  Neither of which is a small undertaking.  Once built, you will need to introduce your site to others and sell its return appeal.  Both of these can be difficult with a new website.</p>
<p>Once built however, the benefits of these destination websites significantly outweigh the time invested.  With an online forum for example, you can rely on users to maintain and add to the website with little intervention on your part.  As the site develops, traffic builds exponentially as users add more content, that content drives more traffic, and that traffic results in more users.  My <a href="http://www.itintl.com/community/">import/export forum</a> is a good example of this kind of undertaking.  A blog is s similar undertaking.</p>
<p>By developing a site that acts as a destination for internet users, you can leverage your userbase to generate search engine traffic, an effective email marketing campaign, or <a href="http://en.wikipedia.org/wiki/Viral_marketing">viral marketing</a> strategy.</ol>
<p>There are many other types of websites and many ways to be successful.  Before building one, ask yourself what you&#8217;re looking for online and build something from that experience.  I think you&#8217;ll be pleasantly surprised with the results.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/what-kind-of-websites-get-the-most-traffic/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sign up for the newsletter</title>
		<link>http://www.danifer.com/sign-up-for-the-newsletter</link>
		<comments>http://www.danifer.com/sign-up-for-the-newsletter#comments</comments>
		<pubDate>Mon, 02 Oct 2006 17:05:47 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/sign-up-for-the-newsletter.html</guid>
		<description><![CDATA[If you&#8217;re reading the company blog, you&#8217;re obviously interested in what&#8217;s going on at Danifer Web Services.  So, why haven&#8217;t you signed up for the newsletter?  Use the form below and sign up now.
(Did I mention I send out free offers and other cool stuff just to the newsletter subscribers?)
]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re reading the company blog, you&#8217;re obviously interested in what&#8217;s going on at Danifer Web Services.  So, why haven&#8217;t you signed up for the newsletter?  Use the form below and sign up now.</p>
<p>(Did I mention I send out free offers and other cool stuff just to the newsletter subscribers?)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/sign-up-for-the-newsletter/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dallas Fort Worth DFW Web Design</title>
		<link>http://www.danifer.com/dallas-fort-worth-dfw-web-design</link>
		<comments>http://www.danifer.com/dallas-fort-worth-dfw-web-design#comments</comments>
		<pubDate>Mon, 02 Oct 2006 17:02:21 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/dallas-fort-worth-dfw-web-design.html</guid>
		<description><![CDATA[I do a lot of self-promoting on this blog, but I don&#8217;t think I&#8217;ve mentioned that I&#8217;m in the Dallas/Fort Worth (DFW) area.  About 25%of my client base is local, and the rest are outside the immediate area so I forget to mention where I&#8217;m located.  I&#8217;ve recently started doing some local networking, [...]]]></description>
			<content:encoded><![CDATA[<p>I do a lot of self-promoting on this blog, but I don&#8217;t think I&#8217;ve mentioned that I&#8217;m in the Dallas/Fort Worth (DFW) area.  About 25%of my client base is local, and the rest are outside the immediate area so I forget to mention where I&#8217;m located.  I&#8217;ve recently started doing some local networking, so this is becoming more important.</p>
<p>That said, if you&#8217;re looking for a web designer, online marketing company, or general consulting in the DFW area please feel free to <a href="http://www.danifer.com/contact.php">contact me</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/dallas-fort-worth-dfw-web-design/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aesthetic Websites</title>
		<link>http://www.danifer.com/aesthetic-websites</link>
		<comments>http://www.danifer.com/aesthetic-websites#comments</comments>
		<pubDate>Sun, 01 Oct 2006 22:06:47 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/aesthetic-websites.html</guid>
		<description><![CDATA[A pretty website design is important, but I like to focus more on functionality than appearances.  Why? Because I&#8217;ve learned that presentation is a distant second to traffic when it comes to online selling.  Think about it &#8211; your beautiful site sees 100 visitors a day and converts a whopping 5% into paying [...]]]></description>
			<content:encoded><![CDATA[<p>A pretty website design is important, but I like to focus more on functionality than appearances.  Why? Because I&#8217;ve learned that presentation is a distant second to traffic when it comes to online selling.  Think about it &#8211; your beautiful site sees 100 visitors a day and converts a whopping 5% into paying customers (that&#8217;s 5 customers for the math illiterate).  Compare that to a clean, less artsy site that sees 1,000 visitors a day and only converts 1% (10 customers).  Which do you think you&#8217;ll make more money on?</p>
<p>Here are some of my favorite websites that put more emphasis on functionality than they do appearance:</p>
<p><a href="http://www.google.com">Google</a><br />
<a href="http://www.digg.com">Digg</a><br />
<a href="http://www.technorati.com">Technorati</a><br />
<a href="http://www.woot.com">Woot</a><br />
<a href="http://www.feedburner.com">FeedBurner</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/aesthetic-websites/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Alerts</title>
		<link>http://www.danifer.com/google-alerts</link>
		<comments>http://www.danifer.com/google-alerts#comments</comments>
		<pubDate>Sun, 01 Oct 2006 03:15:46 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/google-alerts.html</guid>
		<description><![CDATA[Do you get Google Alerts?  They&#8217;re a free way to monitor your site&#8217;s standings on the world&#8217;s biggest search engine.  Try creating a Google Alert for site specific searches like:
http://www.google.com/search?q=site%3awww%2edanifer%2ecom
Which will show you how many pages your site has in the Google index
or
http://www.google.com/search?q=link%3awww%2edanifer%2ecom
which will show you how many site Google has tracked that [...]]]></description>
			<content:encoded><![CDATA[<p>Do you get Google Alerts?  They&#8217;re a free way to monitor your site&#8217;s standings on the world&#8217;s biggest search engine.  Try creating a Google Alert for site specific searches like:</p>
<p><a href="http://www.google.com/search?q=site%3awww%2edanifer%2ecom">http://www.google.com/search?q=site%3awww%2edanifer%2ecom</a><br />
Which will show you how many pages your site has in the Google index</p>
<p>or</p>
<p><a href="http://www.google.com/search?q=link%3awww%2edanifer%2ecom">http://www.google.com/search?q=link%3awww%2edanifer%2ecom</a><br />
which will show you how many site Google has tracked that link in to you.</p>
<p>Try it out yourself at: <a href="http://www.google.com/alerts">http://www.google.com/alerts</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/google-alerts/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quinntastic</title>
		<link>http://www.danifer.com/quinntastic</link>
		<comments>http://www.danifer.com/quinntastic#comments</comments>
		<pubDate>Sun, 01 Oct 2006 03:07:48 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/quinntastic.html</guid>
		<description><![CDATA[A friend of mine mentioned to me that he reads my blog regularly, which blows me away.  I&#8217;m continually amazed when people mention any of my sites and that they gain something useful from them.  This particular vote of confidence really got me jazzed up about blogging (hence the four previous posts from [...]]]></description>
			<content:encoded><![CDATA[<p>A friend of mine mentioned to me that he reads my blog regularly, which blows me away.  I&#8217;m continually amazed when people mention any of my sites and that they gain something useful from them.  This particular vote of confidence really got me jazzed up about blogging (hence the four previous posts from today).</p>
<p>Anyway, thanks Mike!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/quinntastic/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Forced Obsolescence</title>
		<link>http://www.danifer.com/forced-obsolescence</link>
		<comments>http://www.danifer.com/forced-obsolescence#comments</comments>
		<pubDate>Sun, 01 Oct 2006 03:04:29 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/forced-obsolescence.html</guid>
		<description><![CDATA[I heard an interesting term today called forced obsolescence.  It was used in reference to Windows 98 being a perfectly functional and usable operating system, but it was being forced into retirement before its time by Microsoft.  By cutting off all the support for the project, they&#8217;ve made it an obsolete piece of [...]]]></description>
			<content:encoded><![CDATA[<p>I heard an interesting term today called forced obsolescence.  It was used in reference to Windows 98 being a perfectly functional and usable operating system, but it was being forced into retirement before its time by Microsoft.  By cutting off all the support for the project, they&#8217;ve made it an obsolete piece of software.  Since the <a href="http://www.singlewebpage.com">single web page</a> experiment is going so well, I thought this might make a good topic for a one-off project.  I&#8217;ve got a lot on my plate, so if you want to run with it help yourself.  A link back to danifer.com would be appreciated.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/forced-obsolescence/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Bump in Traffic</title>
		<link>http://www.danifer.com/a-bump-in-traffic</link>
		<comments>http://www.danifer.com/a-bump-in-traffic#comments</comments>
		<pubDate>Sun, 01 Oct 2006 03:02:12 +0000</pubDate>
		<dc:creator>Keeton</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.danifer.com/blog/a-bump-in-traffic.html</guid>
		<description><![CDATA[I&#8217;m a little blog-happy today, so I&#8217;ll post about a recent swell of traffic on firmscode.com, the US Customs warehouse database site that&#8217;s part of my group of importing websites.  Until recently, it&#8217;s been holding steady at 150-200 visitors a day (a very respectable number for a site that requires so little upkeep).  [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a little blog-happy today, so I&#8217;ll post about a recent swell of traffic on <a href="http://www.firmscode.com/">firmscode.com</a>, the US Customs warehouse database site that&#8217;s part of my group of importing websites.  Until recently, it&#8217;s been holding steady at 150-200 visitors a day (a very respectable number for a site that requires so little upkeep).  It&#8217;s a database driven site listing the four digit alpha-numeric number that US Customs assigns to every warehouse approved to receive international import freight.  This number is required for many Customs transactions, but the list is fairly inaccessible unless you have an expensive program that ties in with US Customs.</p>
<p>The site is popular both with new users searching for the FIRMS codes, but at least half its traffic comes from return visitors using it as a tool in their day-to-day operations.  Businesses like Customs brokers, freight forwarders, etc.  I actually take some pride that employees from my previous employer use the site daily as an online tool.</p>
<p>Anyway, Google has been doing some updates and has finally recognized the site as an online authority for the information it offers.  Here&#8217;s a picture of my recent stats showing a 200%+ increase over the last few days.  Hopefully the trend will keep up and we&#8217;ll see even more in October.</p>
<p><center><a title="September Statistics for Firmscode.com" href="http://www.danifer.com/wp-content/uploads/2006/09/septemberstatistics.jpg" rel="lightbox[45]"><img id="image44" height=96 alt="September Statistics for Firmscode.com" src="http://www.danifer.com/wp-content/uploads/2006/09/septemberstatistics.thumbnail.jpg" border="0"></a></center></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danifer.com/a-bump-in-traffic/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
