<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>What Does LAMP Mean</title>
	<atom:link href="http://shrimpwagon.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://shrimpwagon.wordpress.com</link>
	<description>Linux &#124; Apache &#124; MySQL &#124; Php</description>
	<lastBuildDate>Sat, 07 Jan 2012 00:55:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='shrimpwagon.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>What Does LAMP Mean</title>
		<link>http://shrimpwagon.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://shrimpwagon.wordpress.com/osd.xml" title="What Does LAMP Mean" />
	<atom:link rel='hub' href='http://shrimpwagon.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Linux &#8216;make clean&#8217; is your Friend &#8211; MySQL Lenny Backports</title>
		<link>http://shrimpwagon.wordpress.com/2011/04/07/linux-make-clean-is-your-friend-mysql-lenny-backports/</link>
		<comments>http://shrimpwagon.wordpress.com/2011/04/07/linux-make-clean-is-your-friend-mysql-lenny-backports/#comments</comments>
		<pubDate>Thu, 07 Apr 2011 16:04:46 +0000</pubDate>
		<dc:creator>shrimpwagon</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[aptitude]]></category>
		<category><![CDATA[backports]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[conf]]></category>
		<category><![CDATA[configure]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[issues]]></category>
		<category><![CDATA[lenny]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[make]]></category>
		<category><![CDATA[make clean]]></category>
		<category><![CDATA[make install]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://shrimpwagon.wordpress.com/?p=99</guid>
		<description><![CDATA[Two days ago I had started work to upgrade the database on the development server. We plan to use Amazon&#8217;s RDS (Relational Database Server) which only runs limited versions for MySQL. As of this writing they are 5.5.8, 5.1.50, 5.1.49 and 5.1.48. Before I was running MySQL 5.0 on both the development and production servers. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=99&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Two days ago I had started work to upgrade the database on the development server. We plan to use Amazon&#8217;s RDS (Relational Database Server) which only runs limited versions for MySQL. As of this writing they are 5.5.8, 5.1.50, 5.1.49 and 5.1.48. Before I was running MySQL 5.0 on both the development and production servers. As a web developer, I know it is best to use the same MySQL and PHP versions on the development server and the production server. This way, after you have tested and developed your code on the dev box you can rule out any problems you might encounter when you upload your code to production due to different versions of PHP or MySQL. It is also a good idea to match Apache versions but not too important to match Linux kernels or distributions, at least not in my line of work.</p>
<p>I usually use packages to install programs on the Linux boxes as I use Debian. Currently, I am using Debian Lenny (version 5.0) on both boxes. I have used packages to install everything except PHP. The Debian Lenny stable packages for MySQL are only for MySQL 5.0 but I needed to upgrade that so I could match the MySQL version that will be used on Amazon&#8217;s RDS. I searched the Debian site and came across <a href="http://backports.debian.org/" target="_blank">Debian Backports</a>. This is an answer to using newer packages that aren&#8217;t available to Lenny. I found that Backports has a package for MySQL 5.1.49. I thought, &#8220;perfect,&#8221; now I can just install MySQL Backports package for Lenny and now my database versions would be the same.</p>
<p>I had to modify my <em>/etc/apt/sources.list</em> to include:</p>
<pre>deb http://backports.debian.org/debian-backports/ lenny-backports main</pre>
<p>This was the right thing to do because when I went into aptitude and did a package update I was able to find the MySQL server and client 5.1.49. I went ahead and removed (purged) the old MySQL 5.0 packages and installed the following packages:</p>
<pre>mysql-server-5.1
mysql-client-5.1
libmysqlclient-dev
libmysqld-dev</pre>
<p>Each version was 5.1.49.</p>
<p>During install it asked me if I wanted to overwrite my <em>my.cnf</em> file. I guess I should have let it change it because when it tried to restart MySQL failed to start. I then kept trying to reinstall so it would go ahead and overwrite my old <em>my.cnf</em> file. I had to find an example MySQL conf file which can be located in <em>/usr/share/doc/mysql-server-5.1/my-*.cnf</em>. These files are example MySQL conf files for various size database servers. I chose the medium configure file as that best matched my old conf file. Doing so seemed to work as I was able to get MySQL running again.</p>
<p>I then went to access phpMyAdmin and it brought up a warning about how the PHP client didn&#8217;t match the MySQL version. So I knew I had to recompile PHP. I had used packages for everything except PHP because I had to customize PHP so much. I opened up a PHP dev file that uses the function <em>phpinfo()</em>. There I had the complete <em>./configure</em> line that I used to originally compile PHP. After I ran the configure again, I ran <em>make &amp;&amp; make install</em>. This went pretty fast but I didn&#8217;t think much of it. When I went to access my website I kept getting this error:</p>
<pre>mysql_connect(): Headers and client library minor version mismatch</pre>
<p>This one was the doozy. I searched and searched all over the internet to find an answer. I found a few things here and there which didn&#8217;t help. Everything I found is stuff I already did. I knew I had installed MySQL correctly with aptitude. I thought I was compiling PHP correctly. I couldn&#8217;t figure out why the PHP compilation was not using the new MySQL header code.</p>
<p>So after literally 8 hours of web searches, trial and error, and chatting on IRC with the nice guys at Cerberus who offer a <a href="http://cerberusweb.com/" target="_blank">CRM toolkit</a>, I finally got my prayer answered. Yes, I said prayer. I prayed about it while in the bathroom. While chatting, I had asked how to remove something that was installed via a compile. He said to,</p>
<p>try <em>make clean</em>.</p>
<p>I tried it, it seemed to remove some things. Wouldn&#8217;t you know it, while running <em>make &amp;&amp; make install</em>, it took considerably longer. I figured something new must be happening here. Apparently, that did the trick. I guess it recompiled the header files this time all the way around and overwrote the old ones that were left behind from the very first compile I did while I had MySQL 5.0 installed.</p>
<p>I really, really hope this post saves someone else a day&#8217;s work. If so, hit me up!</p>
<br />Filed under: <a href='http://shrimpwagon.wordpress.com/category/technology/'>Technology</a> Tagged: <a href='http://shrimpwagon.wordpress.com/tag/apt-get/'>apt-get</a>, <a href='http://shrimpwagon.wordpress.com/tag/aptitude/'>aptitude</a>, <a href='http://shrimpwagon.wordpress.com/tag/backports/'>backports</a>, <a href='http://shrimpwagon.wordpress.com/tag/computers/'>computers</a>, <a href='http://shrimpwagon.wordpress.com/tag/conf/'>conf</a>, <a href='http://shrimpwagon.wordpress.com/tag/configure/'>configure</a>, <a href='http://shrimpwagon.wordpress.com/tag/debian/'>debian</a>, <a href='http://shrimpwagon.wordpress.com/tag/install/'>install</a>, <a href='http://shrimpwagon.wordpress.com/tag/issues-2/'>issues</a>, <a href='http://shrimpwagon.wordpress.com/tag/lenny/'>lenny</a>, <a href='http://shrimpwagon.wordpress.com/tag/linux/'>linux</a>, <a href='http://shrimpwagon.wordpress.com/tag/make/'>make</a>, <a href='http://shrimpwagon.wordpress.com/tag/make-clean/'>make clean</a>, <a href='http://shrimpwagon.wordpress.com/tag/make-install/'>make install</a>, <a href='http://shrimpwagon.wordpress.com/tag/mysql/'>mysql</a>, <a href='http://shrimpwagon.wordpress.com/tag/php/'>php</a>, <a href='http://shrimpwagon.wordpress.com/tag/software/'>software</a>, <a href='http://shrimpwagon.wordpress.com/tag/technology/'>Technology</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shrimpwagon.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shrimpwagon.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shrimpwagon.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shrimpwagon.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shrimpwagon.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shrimpwagon.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shrimpwagon.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shrimpwagon.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shrimpwagon.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shrimpwagon.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shrimpwagon.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shrimpwagon.wordpress.com/99/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shrimpwagon.wordpress.com/99/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shrimpwagon.wordpress.com/99/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=99&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shrimpwagon.wordpress.com/2011/04/07/linux-make-clean-is-your-friend-mysql-lenny-backports/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38b42911484f66ee5aedadaa16846340?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shrimpwagon</media:title>
		</media:content>
	</item>
		<item>
		<title>Greek Letters in a Captcha</title>
		<link>http://shrimpwagon.wordpress.com/2011/04/06/greek-letters-in-a-captcha/</link>
		<comments>http://shrimpwagon.wordpress.com/2011/04/06/greek-letters-in-a-captcha/#comments</comments>
		<pubDate>Wed, 06 Apr 2011 16:52:44 +0000</pubDate>
		<dc:creator>shrimpwagon</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[captcha]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://shrimpwagon.wordpress.com/?p=93</guid>
		<description><![CDATA[Most of us hate them, especially hackers and script kiddies. Captchas are used to thwart automatic form submissions to websites by bots and scripts. Security is important but the captchas have gone way too far. It&#8217;s one thing to distort the letters and use non-words but to use letters and characters not available on the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=93&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Most of us hate them, especially hackers and script kiddies. Captchas are used to thwart automatic form submissions to websites by bots and scripts. Security is important but the captchas have gone way too far. It&#8217;s one thing to distort the letters and use non-words but to use letters and characters not available on the standard keyboard just isn&#8217;t right. Almost all computer users have absolutely no idea how to access characters beyond what is on the keyboard. It requires holding down the Alt key and then pressing the number sequence on the number pad. For example, to type in the Spanish enya, ñ,  you have to hold Alt then type 1-6-4 then let go of Alt. I agree that internet security is import for webmasters, developers and admins but we can&#8217;t make it locked down so tight that even common folks can&#8217;t get in.</p>
<p>Here is an example of a captcha on site I was on the other day:</p>
<p><a href="http://shrimpwagon.files.wordpress.com/2011/04/greek-captcha-characters2.png"><img class="alignnone size-full wp-image-96" title="greek captcha characters" src="http://shrimpwagon.files.wordpress.com/2011/04/greek-captcha-characters2.png?w=538" alt=""   /></a></p>
<p>The second &#8220;word&#8221; &#8211; if you want to call it that &#8211; has two extended characters. The first is Sigma, Σ, Alt + 228. The third letter is the Euro, €, Alt + 0128. At the time I had to enter this on the page I just used a capital E which still seemed to work and maybe that is the point. But it threw me for a loop for a minute and I was a bit taken by it.</p>
<p>For a nice list of Alt codes. Check out this site: <a title="List of Alt codes" href="http://www.alt-codes.net/" target="_blank">http://www.alt-codes.net/</a>. There are more codes you can access on the right navigation of this site which lets you see language and currency alt codes.</p>
<br />Filed under: <a href='http://shrimpwagon.wordpress.com/category/technology/'>Technology</a> Tagged: <a href='http://shrimpwagon.wordpress.com/tag/captcha/'>captcha</a>, <a href='http://shrimpwagon.wordpress.com/tag/computers/'>computers</a>, <a href='http://shrimpwagon.wordpress.com/tag/internet/'>internet</a>, <a href='http://shrimpwagon.wordpress.com/tag/security/'>security</a>, <a href='http://shrimpwagon.wordpress.com/tag/technology/'>Technology</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shrimpwagon.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shrimpwagon.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shrimpwagon.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shrimpwagon.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shrimpwagon.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shrimpwagon.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shrimpwagon.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shrimpwagon.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shrimpwagon.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shrimpwagon.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shrimpwagon.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shrimpwagon.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shrimpwagon.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shrimpwagon.wordpress.com/93/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=93&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shrimpwagon.wordpress.com/2011/04/06/greek-letters-in-a-captcha/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38b42911484f66ee5aedadaa16846340?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shrimpwagon</media:title>
		</media:content>

		<media:content url="http://shrimpwagon.files.wordpress.com/2011/04/greek-captcha-characters2.png" medium="image">
			<media:title type="html">greek captcha characters</media:title>
		</media:content>
	</item>
		<item>
		<title>Flowertown Festival Summerville SC Odd Review</title>
		<link>http://shrimpwagon.wordpress.com/2011/04/03/flowertown-festival-summerville-sc-odd-review/</link>
		<comments>http://shrimpwagon.wordpress.com/2011/04/03/flowertown-festival-summerville-sc-odd-review/#comments</comments>
		<pubDate>Mon, 04 Apr 2011 01:03:48 +0000</pubDate>
		<dc:creator>shrimpwagon</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Food]]></category>
		<category><![CDATA[event]]></category>
		<category><![CDATA[fair]]></category>
		<category><![CDATA[festival]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[local]]></category>
		<category><![CDATA[sc]]></category>
		<category><![CDATA[south carolina]]></category>
		<category><![CDATA[street vendors]]></category>
		<category><![CDATA[summerville]]></category>

		<guid isPermaLink="false">https://shrimpwagon.wordpress.com/?p=76</guid>
		<description><![CDATA[My wife and I went to the Flowertown Festival in Summerville yesterday. We came late at around 4:15pm. They posted on their site that it closes at 5pm. Most of the vendors were still rockin past that well into 6pm. The event was from Friday April 1st to Sunday April 3rd 2011. At the entrance [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=76&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>My wife and I went to the Flowertown Festival in Summerville yesterday.  We came late at around 4:15pm. They posted on their site that it closes  at 5pm. Most of the vendors were still rockin past that well into 6pm. The event was from Friday April 1st to Sunday April 3rd 2011.</p>
<p>At the entrance was a replica of the Hunley submarine which you could see inside.</p>
<p><img style="display:block;margin-right:auto;margin-left:auto;" src="http://shrimpwagon.files.wordpress.com/2011/04/wpid-imag0011.jpg?w=538" alt="image" /></p>
<p>Just a little far off in the distance you could hear a &#8220;Sweet Home Alabama.&#8221; On down the road there was a fun little mariachi band shown below (sorry about the dark pic).</p>
<p><img class="aligncenter" src="http://shrimpwagon.files.wordpress.com/2011/04/wpid-imag0015.jpg?w=538" alt="image" /></p>
<p>The vendors seemed to be mostly local folks but I am not sure because we  did not have time to talk to them. Most of the stands were selling  crafts of some sort. The photo below is a picture of the main strip. This is Main St Summerville.</p>
<p><img style="display:block;margin-right:auto;margin-left:auto;" src="http://shrimpwagon.files.wordpress.com/2011/04/wpid-imag0013.jpg?w=538" alt="image" /></p>
<p>The photo below is a section that went perpendicular to the main strip. It was just a dirt path. I&#8217;m assuming this wasn&#8217;t the prime real estate spot for the vendors. I must have caught the kid there in mid sentence.</p>
<p><img style="display:block;margin-right:auto;margin-left:auto;" src="http://shrimpwagon.files.wordpress.com/2011/04/wpid-imag0016.jpg?w=538" alt="image" /></p>
<p>One of the vendors was selling fried artichokes which smelled absolutely delicious. We should have tried them because when we had walked back, they had already shut down.</p>
<p>There was another shop that was selling empty wine and liquor bottles that were melted flat that could be used as a serving tray. Some included the butter knife.</p>
<p>There were a few local painters and musicians selling their art and music. One musician went all out and had a ton of his CD&#8217;s with his music blasting. It sounded like an ameteur Yanni mixed with Celtic music.</p>
<p>Another vendor was selling aluminum beer mugs which you could fill up for free all day long with various flavors of root beer. One of which was sarsaparilla. It was a cool looking stand too. The front of which was all wood and had the beer barrels sticking out that poured the beer.</p>
<p>There was no alcohol stands that I could see but I guess I wasn&#8217;t looking for them.</p>
<p>I saw a bizarre vendor&#8217;s product which was crystal finger nail filers. Looked cool&#8230;I guess. I didn&#8217;t know crystal finger nail filers were so popular. It was a man selling them and I got to thinking, maybe he was a person who worked with glass. One day, he used an etched piece of glass to file his nail down and got the idea. I dunno, see, I should have gone early and spoke to some more folks. If he was a true salesman, I&#8217;m sure it would have been a better story.</p>
<p>There was another artist doing portraits as you might find at any festival of high caliber. These weren&#8217;t just any portraits, I think the dude might have been trippin on acid because the faces looked melted and droopy. It definitely did not rain on them if that is what you might have wondered.</p>
<p>Unfortunately, there were no rides that I could see around. Maybe next year.</p>
<p>The Shriners were there. I was surprised to see a young guy with a very ornate &#8220;one of those hats&#8221; on. Usually you see a bunch of old cronies wearing them but this guy could not have even been 40.</p>
<p>Of course you had the stores with clothes and jewelry. Nothing particular caught my eye. Maybe because I&#8217;m a dude and not into that stuff too much. Neither is my wife so she didn&#8217;t point anything out.</p>
<p>There was a kettle corn stand and a Bar Bee Que stand I wanted to try but my diet said &#8220;no.&#8221;</p>
<p>My wife and I did buy some food. We, of course, went to the booth with the largest banners. I got a lamb gyro and she got lemonade and a funnel cake. The gyro was a complete mess and dripped all over the place. I had asked for it without the bread because I am on a low carb diet and the dude, in kind of a Greek ancient, said, &#8220;how would I make a gyro?&#8221; Haha, I can only hope I wasn&#8217;t the first jerk to ever ask him that stupid question. They poured a ton of nasty ranch on it. It just wasn&#8217;t very good. My wife&#8217;s funnel cake was good but it was completely covered in powered sugar. Now I know&#8230;this is just festival food and I shouldn&#8217;t be so critical. Agreed, I am just doing this for the blog <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>The BEST stand I think was the mini doughnuts. Not only were the doughnuts mini but so was the doughnut frying machine. The whole thing was about the size of two keyboards and was complete with an automatic doughnut flipper halfway down the fryer. If you haven&#8217;t seen a doughnut frying machine you got to check one out. Then size it down to about 4 feet wide. It was so cute. Made you want to buy a doughnut just for the novelty of it. There was I sign that said, &#8220;Don&#8217;t bump or shake the table.&#8221; Understandably so mister mini doughnut man who wasn&#8217;t very mini at all.</p>
<p>Now that I am writing all of this, I really wish I took my pictures. I am an ameteur blogger so maybe next time will be better.</p>
<p>Below is a picture of a pretty path that was close by. It looped around and had a nice white bridge going over a small stream. I didn&#8217;t see any fish in there.</p>
<p><img style="display:block;margin-right:auto;margin-left:auto;" src="http://shrimpwagon.files.wordpress.com/2011/04/wpid-imag0018.jpg?w=538" alt="image" /></p>
<p>El fin.</p>
<br />Filed under: <a href='http://shrimpwagon.wordpress.com/category/events/'>Events</a>, <a href='http://shrimpwagon.wordpress.com/category/food/'>Food</a> Tagged: <a href='http://shrimpwagon.wordpress.com/tag/event/'>event</a>, <a href='http://shrimpwagon.wordpress.com/tag/fair/'>fair</a>, <a href='http://shrimpwagon.wordpress.com/tag/festival/'>festival</a>, <a href='http://shrimpwagon.wordpress.com/tag/food-2/'>food</a>, <a href='http://shrimpwagon.wordpress.com/tag/local/'>local</a>, <a href='http://shrimpwagon.wordpress.com/tag/sc/'>sc</a>, <a href='http://shrimpwagon.wordpress.com/tag/south-carolina/'>south carolina</a>, <a href='http://shrimpwagon.wordpress.com/tag/street-vendors/'>street vendors</a>, <a href='http://shrimpwagon.wordpress.com/tag/summerville/'>summerville</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shrimpwagon.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shrimpwagon.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shrimpwagon.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shrimpwagon.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shrimpwagon.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shrimpwagon.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shrimpwagon.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shrimpwagon.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shrimpwagon.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shrimpwagon.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shrimpwagon.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shrimpwagon.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shrimpwagon.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shrimpwagon.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=76&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shrimpwagon.wordpress.com/2011/04/03/flowertown-festival-summerville-sc-odd-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38b42911484f66ee5aedadaa16846340?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shrimpwagon</media:title>
		</media:content>

		<media:content url="http://shrimpwagon.files.wordpress.com/2011/04/wpid-imag0011.jpg" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://shrimpwagon.files.wordpress.com/2011/04/wpid-imag0015.jpg" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://shrimpwagon.files.wordpress.com/2011/04/wpid-imag0013.jpg" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://shrimpwagon.files.wordpress.com/2011/04/wpid-imag0016.jpg" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://shrimpwagon.files.wordpress.com/2011/04/wpid-imag0018.jpg" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Yahoo App Sucks</title>
		<link>http://shrimpwagon.wordpress.com/2011/04/02/yahoo-app-sucks/</link>
		<comments>http://shrimpwagon.wordpress.com/2011/04/02/yahoo-app-sucks/#comments</comments>
		<pubDate>Sun, 03 Apr 2011 00:52:36 +0000</pubDate>
		<dc:creator>shrimpwagon</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">https://shrimpwagon.wordpress.com/2011/04/02/yahoo-app-sucks/</guid>
		<description><![CDATA[I have been using Yahoo mail for a long time now. I prefer Yahoo email on my desktop browser because I am able to use tabs that they make available via javascript. I recently got a smart phone. I got an HTC Inspire Android. Up until just 3 weeks ago, yes I know, pathetic for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=68&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have been using Yahoo mail for a long time now. I prefer Yahoo email on my desktop browser because I am able to use tabs that they make available via javascript.</p>
<p>I recently got a smart phone. I got an HTC Inspire Android. Up until just 3 weeks ago, yes I know, pathetic for a web programmer, I had a crappy Samsung flip phone which was only ok at the about 6 years ago. So naturally I got the email Yahoo app.</p>
<p>My biggest complaint, and really the only one, is that the email browser window cannot resize using two fingers like most other app windows do like in the FireFox app. You also cannot move the window diagonally. You have to wait until the screen is locked until you can move it in a perpendicular position.</p>
<p>Yahoo please fix.</p>
<br />Filed under: <a href='http://shrimpwagon.wordpress.com/category/technology/'>Technology</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shrimpwagon.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shrimpwagon.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shrimpwagon.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shrimpwagon.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shrimpwagon.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shrimpwagon.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shrimpwagon.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shrimpwagon.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shrimpwagon.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shrimpwagon.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shrimpwagon.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shrimpwagon.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shrimpwagon.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shrimpwagon.wordpress.com/68/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=68&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shrimpwagon.wordpress.com/2011/04/02/yahoo-app-sucks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38b42911484f66ee5aedadaa16846340?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shrimpwagon</media:title>
		</media:content>
	</item>
		<item>
		<title>Cholula Chipotle Hot Sauce Review</title>
		<link>http://shrimpwagon.wordpress.com/2011/03/31/cholula-chipotle-hot-sauce-is-darn-tasty/</link>
		<comments>http://shrimpwagon.wordpress.com/2011/03/31/cholula-chipotle-hot-sauce-is-darn-tasty/#comments</comments>
		<pubDate>Thu, 31 Mar 2011 16:47:17 +0000</pubDate>
		<dc:creator>shrimpwagon</dc:creator>
				<category><![CDATA[Food]]></category>
		<category><![CDATA[chipotle]]></category>
		<category><![CDATA[cholula]]></category>
		<category><![CDATA[flavor]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[hot sauce]]></category>
		<category><![CDATA[mexican]]></category>
		<category><![CDATA[pepper]]></category>
		<category><![CDATA[taste]]></category>

		<guid isPermaLink="false">https://shrimpwagon.wordpress.com/?p=62</guid>
		<description><![CDATA[I recently picked up a bottle of Cholula&#8217;s Chipotle hot sauce. I have to say that is is pretty good. I have always liked Cholula since I was introduced to it at my local Mexican Restaurant. I am an amateur connoisseur of hot sauces but Cholula has a classic good taste. Not too hot and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=62&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://shrimpwagon.files.wordpress.com/2011/03/wpid-1301588282533.jpg?w=538" /></p>
<p>I recently picked up a bottle of Cholula&#8217;s Chipotle hot sauce. I have to say that is is pretty good. I have always liked Cholula since I was introduced to it at my local Mexican Restaurant. I am an amateur connoisseur of hot sauces but Cholula has a classic good taste. Not too hot and plenty of flavor. The chipotle (smoked jalapeño) has a real nice taste and is not overpowering. I had it on some baked chicken and it tasted great. If you understand the taste of chipotle and like it &#8211; meaning you aren&#8217;t just enchanted by the word &#8211; I definitely recommend it. If you aren&#8217;t familiar with the chipotle taste, give it a try. It is a good example of the unique chipotle taste.</p>
<br />Filed under: <a href='http://shrimpwagon.wordpress.com/category/food/'>Food</a> Tagged: <a href='http://shrimpwagon.wordpress.com/tag/chipotle/'>chipotle</a>, <a href='http://shrimpwagon.wordpress.com/tag/cholula/'>cholula</a>, <a href='http://shrimpwagon.wordpress.com/tag/flavor/'>flavor</a>, <a href='http://shrimpwagon.wordpress.com/tag/food-2/'>food</a>, <a href='http://shrimpwagon.wordpress.com/tag/hot-sauce/'>hot sauce</a>, <a href='http://shrimpwagon.wordpress.com/tag/mexican/'>mexican</a>, <a href='http://shrimpwagon.wordpress.com/tag/pepper/'>pepper</a>, <a href='http://shrimpwagon.wordpress.com/tag/taste/'>taste</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shrimpwagon.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shrimpwagon.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shrimpwagon.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shrimpwagon.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shrimpwagon.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shrimpwagon.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shrimpwagon.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shrimpwagon.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shrimpwagon.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shrimpwagon.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shrimpwagon.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shrimpwagon.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shrimpwagon.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shrimpwagon.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=62&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shrimpwagon.wordpress.com/2011/03/31/cholula-chipotle-hot-sauce-is-darn-tasty/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38b42911484f66ee5aedadaa16846340?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shrimpwagon</media:title>
		</media:content>

		<media:content url="http://shrimpwagon.files.wordpress.com/2011/03/wpid-1301588282533.jpg" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Best PHP Mail Class</title>
		<link>http://shrimpwagon.wordpress.com/2009/08/26/best-php-mail-class/</link>
		<comments>http://shrimpwagon.wordpress.com/2009/08/26/best-php-mail-class/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 22:37:52 +0000</pubDate>
		<dc:creator>shrimpwagon</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[headers]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://shrimpwagon.wordpress.com/?p=55</guid>
		<description><![CDATA[I wrote this class. It works great! You can send just about as many attachments as you like and include HTML in the message. The only bug is that every email looks like there is an attachment. Hope this helps. class Email { // Public Variables public $To = ""; public $Title = ""; public [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=55&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I wrote this class. It works great! You can send just about as many attachments as you like and include HTML in the message. The only bug is that every email looks like there is an attachment. Hope this helps.</p>
<p><code><br />
class Email {</p>
<p>	// Public Variables<br />
	public $To = "";<br />
	public $Title = "";<br />
	public $Message = "";<br />
	public $From = "";<br />
	public $FromName = "";<br />
	public $ReplyTo = "";<br />
	public $ReplyToName = "";<br />
	public $ReturnPath = "";<br />
	public $ReturnPathName = "";<br />
	public $Headers = "";</p>
<p>	private $Boundry = "";<br />
	private $Attachments = array();<br />
	private $FinalData = "";<br />
	private $EOL = "\r\n";<br />
	private $FinalHeaders = "";</p>
<p>	/**<br />
	 * Send - Send Message based on Populated Class Vars<br />
	 *<br />
	 * Will return false, and fail to send message, if required fields are empty.<br />
	 *<br />
	 * @access public<br />
	 * @return bool True on Success, False on Failure<br />
	 */<br />
	public function Send() {</p>
<p>		if ($this-&gt;To &amp;&amp; $this-&gt;From) {<br />
			// Build Email<br />
			$this-&gt;BuildEmail();</p>
<p>			// SEND IT!!!<br />
			return mail( $this-&gt;To, $this-&gt;Title, $this-&gt;FinalData, $this-&gt;FinalHeaders );</p>
<p>		} else {<br />
			throw new Exception('"To" and "From" properties (email addresses) must be set before sending email');<br />
		}</p>
<p>	}</p>
<p>	/**<br />
	 * AttachFile - Include file to be sent as an attachment<br />
	 *<br />
	 * @access public<br />
	 * @param string $filename<br />
	 * @param string $contents<br />
	 * @return bool True on Success, False on Failure<br />
	 */<br />
	public function AttachFile( $filename, $filetype, $filedata ) {</p>
<p>		$this-&gt;Attachments[] = new Attachment($filename, $filetype, $filedata);</p>
<p>	}</p>
<p>	/* -- Private Functions -- */</p>
<p>	/**<br />
	 * Put the email string all together<br />
	 *<br />
	 * @access private<br />
	 */<br />
	private function BuildEmail() {<br />
		// Set boundary<br />
		$this-&gt;Boundry = md5(uniqid());</p>
<p>		// Build main headers<br />
		$this-&gt;BuildHeaders();</p>
<p>		// Start first boundary<br />
		$this-&gt;FinalData .= "--".$this-&gt;Boundry.$this-&gt;EOL;</p>
<p>		// Assemble message<br />
		$this-&gt;IncludeMessage();</p>
<p>		// Assemble attachments<br />
		$this-&gt;IncludeAttachments();<br />
	}</p>
<p>	/**<br />
	 * IncludeMessage - Includes message into FinalData string<br />
	 *<br />
	 * @access private<br />
	 */<br />
	private function IncludeMessage() {<br />
		$this-&gt;FinalData .= "Content-Type: text/html; charset=\"iso-8859-1\"{$this-&gt;EOL}";<br />
		$this-&gt;FinalData .= "Content-Transfer-Encoding: 7bit".$this-&gt;EOL.$this-&gt;EOL;<br />
		$this-&gt;FinalData .= $this-&gt;Message.$this-&gt;EOL.$this-&gt;EOL;<br />
		$this-&gt;FinalData .= "--".$this-&gt;Boundry.$this-&gt;EOL;<br />
	}</p>
<p>	/**<br />
	 * IncludeAttachments - Include previously attachmented files into FinalData string<br />
	 *<br />
	 * This method should never be called explicitly, as it is called from within the<br />
	 * `Send` function.<br />
	 *<br />
	 * @access private<br />
	 */<br />
	private function IncludeAttachments() {</p>
<p>		foreach ($this-&gt;Attachments as $attachment) {<br />
			$this-&gt;FinalData .= "Content-Type: ".$attachment-&gt;filetype.$this-&gt;EOL;<br />
			$this-&gt;FinalData .= "Content-Transfer-Encoding: base64".$this-&gt;EOL;<br />
			$this-&gt;FinalData .= "Content-Disposition: attachment; filename=\"{$attachment-&gt;filename}\"".$this-&gt;EOL.$this-&gt;EOL;<br />
			$this-&gt;FinalData .= chunk_split(base64_encode($attachment-&gt;filedata));<br />
			$this-&gt;FinalData .= "--".$this-&gt;Boundry.$this-&gt;EOL;<br />
		}</p>
<p>	}</p>
<p>	/**<br />
	  * BuildHeaders - Compile headers from member vars<br />
	  *<br />
	  * This method should never be called explicitly, as it is called from within the<br />
	  * `Send` function.<br />
	  *<br />
	  * @access private<br />
	  */<br />
	private function BuildHeaders() {</p>
<p>		$headers = "";</p>
<p>		// From<br />
		if($this-&gt;FromName) $headers .= "From: ".$this-&gt;FromName." From."&gt;".$this-&gt;EOL;<br />
		else $headers .= "From: {$this-&gt;From}{$this-&gt;EOL}";</p>
<p>		// Reply-To<br />
		if(!$this-&gt;ReplyTo) $this-&gt;ReplyTo = $this-&gt;From;<br />
		if($this-&gt;ReplyToName) $headers .= "Reply-To: ".$this-&gt;ReplyToName." ReplyTo."&gt;".$this-&gt;EOL;<br />
		else $headers .= "Reply-To: {$this-&gt;ReplyTo}{$this-&gt;EOL}";</p>
<p>		// Return-Path<br />
		if(!$this-&gt;ReturnPath) $this-&gt;ReturnPath = $this-&gt;From;<br />
		if($this-&gt;ReturnPathName) $headers .= "Return-Path: ".$this-&gt;ReturnPathName." ReturnPath."&gt;".$this-&gt;EOL;<br />
		else $headers .= "Return-Path: {$this-&gt;ReturnPath}{$this-&gt;EOL}";</p>
<p>		// Message-ID<br />
		$headers .= "Message-ID: ".$this-&gt;EOL;</p>
<p>		// X-Mailer ... dunno wut foh<br />
		$headers .= "X-Mailer: PHP v".phpversion().$this-&gt;EOL;</p>
<p>		// MIME-Version<br />
		$headers .= "MIME-Version: 1.0{$this-&gt;EOL}";</p>
<p>		// Content-Type, DO NOT CHANGE, must stay for attachments and whatnot<br />
		$headers .= "Content-Type: multipart/mixed; boundary=\"{$this-&gt;Boundry}\";{$this-&gt;EOL}";</p>
<p>		// Append additional headers although there probably shouldn't ever be any<br />
		$this-&gt;FinalHeaders = $headers . $this-&gt;Headers;<br />
	}</p>
<p>}</p>
<p>class Attachment {<br />
	public $filename;<br />
	public $filetype;<br />
	public $filedata;</p>
<p>	public function __construct($filename, $filetype, $filedata) {<br />
		$this-&gt;filename = $filename;<br />
		$this-&gt;filetype = $filetype;<br />
		$this-&gt;filedata = $filedata;<br />
	}<br />
}<br />
</code></p>
<br />Posted in Technology Tagged: class, code, email, headers, mail, php, programming, Technology <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shrimpwagon.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shrimpwagon.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shrimpwagon.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shrimpwagon.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shrimpwagon.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shrimpwagon.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shrimpwagon.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shrimpwagon.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shrimpwagon.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shrimpwagon.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shrimpwagon.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shrimpwagon.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shrimpwagon.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shrimpwagon.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=55&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shrimpwagon.wordpress.com/2009/08/26/best-php-mail-class/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38b42911484f66ee5aedadaa16846340?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shrimpwagon</media:title>
		</media:content>
	</item>
		<item>
		<title>AT&amp;T Billing Resolved</title>
		<link>http://shrimpwagon.wordpress.com/2009/06/18/att-billing-resolved/</link>
		<comments>http://shrimpwagon.wordpress.com/2009/06/18/att-billing-resolved/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 13:07:17 +0000</pubDate>
		<dc:creator>shrimpwagon</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[at&t]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[dispute]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[rants]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://shrimpwagon.wordpress.com/?p=50</guid>
		<description><![CDATA[After my blog posts and Facebook comments on att&#8217;s page, a lady from Facebook got a hold of me and took care of the $720.00 termination fee and even adjusted the charges for May&#8217;s service. I want to thank those who helped me with this issue. I was really at their mercy and they lent [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=50&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After my blog posts and Facebook comments on att&#8217;s page, a lady from Facebook got a hold of me and took care of the $720.00 termination fee and even adjusted the charges for May&#8217;s service. I want to thank those who helped me with this issue. I was really at their mercy and they lent a hand to continue to help me out even though I was no longer their customer. I really enjoyed not having to call their customer service line or deal with their customer service over email. I am glad there was a more personable touch in help resolving my issue. Thank you at&amp;t and to the persons who helped me.</p>
<p><a href="http://shrimpwagon.wordpress.com/2009/06/15/att-bill-still-under-dispute/">Read about my at&amp;t billing dispute</a></p>
<br />Posted in Technology Tagged: at&amp;t, blog, Business, dispute, facebook, phone, rants, web <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shrimpwagon.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shrimpwagon.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shrimpwagon.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shrimpwagon.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shrimpwagon.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shrimpwagon.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shrimpwagon.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shrimpwagon.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shrimpwagon.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shrimpwagon.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shrimpwagon.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shrimpwagon.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shrimpwagon.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shrimpwagon.wordpress.com/50/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=50&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shrimpwagon.wordpress.com/2009/06/18/att-billing-resolved/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38b42911484f66ee5aedadaa16846340?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shrimpwagon</media:title>
		</media:content>
	</item>
		<item>
		<title>AT&amp;T Bill Still Under Dispute</title>
		<link>http://shrimpwagon.wordpress.com/2009/06/15/att-bill-still-under-dispute/</link>
		<comments>http://shrimpwagon.wordpress.com/2009/06/15/att-bill-still-under-dispute/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 21:43:58 +0000</pubDate>
		<dc:creator>shrimpwagon</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[at&t]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[dispute]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[rants]]></category>

		<guid isPermaLink="false">http://shrimpwagon.wordpress.com/?p=46</guid>
		<description><![CDATA[READ HERE ABOUT HOW THIS AT&#38;T BILLING DISPUTE WAS RESOLVED I have been very, very worried about this situation all weekend. It makes things more difficult because this is under my wife&#8217;s name and I am trying to take care of this for her before she realizes what happened and cuts my throat. We just [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=46&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://shrimpwagon.wordpress.com/2009/06/18/att-billing-resolved/">READ HERE ABOUT HOW THIS AT&amp;T BILLING DISPUTE WAS RESOLVED</a></p>
<p>I have been very, very worried about this situation all weekend. It makes things more difficult because this is under my wife&#8217;s name and I am trying to take care of this for her before she realizes what happened and cuts my throat. We just can&#8217;t afford this $720.00 charge. My business didn&#8217;t do well and I just have a regular job now.</p>
<p>I emailed customer service via the website about this <span>on Thursday</span>, June the 11th. This is the response:</p>
<div style="margin-left:40px;"><span style="font-size:xx-small;"><span style="font-family:arial,helvetica,sans-serif;">&#8220;Dear Shawn Welch,</span></span><br style="font-family:arial,helvetica,sans-serif;" /><br style="font-family:arial,helvetica,sans-serif;" /><span style="font-size:xx-small;"><span style="font-family:arial,helvetica,sans-serif;">Thank you for contacting </span><span style="font-family:arial,helvetica,sans-serif;"><span>AT&amp;T</span></span><span style="font-family:arial,helvetica,sans-serif;"> regarding your former business telephone </span></span><br style="font-family:arial,helvetica,sans-serif;" /><span style="font-size:xx-small;"><span style="font-family:arial,helvetica,sans-serif;">account.</span></span><br style="font-family:arial,helvetica,sans-serif;" /><br style="font-family:arial,helvetica,sans-serif;" /><span style="font-size:xx-small;"><span style="font-family:arial,helvetica,sans-serif;">On your agreement it states the following:</span></span><br style="font-family:arial,helvetica,sans-serif;" /><br style="font-family:arial,helvetica,sans-serif;" /><span style="font-size:xx-small;"><span style="font-family:arial,helvetica,sans-serif;">In the event the Subscriber terminates this Subscriber  Agreement or </span></span><br style="font-family:arial,helvetica,sans-serif;" /><span style="font-size:xx-small;"><span style="font-family:arial,helvetica,sans-serif;">terminates the Complete Choice for Business Package service, the </span></span><br style="font-family:arial,helvetica,sans-serif;" /><span style="font-size:xx-small;"><span style="font-family:arial,helvetica,sans-serif;">Subscriber agrees to pay termination charges to </span><span style="font-family:arial,helvetica,sans-serif;"><span>BellSouth</span></span><span style="font-family:arial,helvetica,sans-serif;"> as provided </span></span><br style="font-family:arial,helvetica,sans-serif;" /><span style="font-size:xx-small;"><span style="font-family:arial,helvetica,sans-serif;">below based upon the number of months remaining on the term.   These </span></span><br style="font-family:arial,helvetica,sans-serif;" /><span style="font-size:xx-small;"><span style="font-family:arial,helvetica,sans-serif;">charges will appear on the  Subscriber?s bill as a charge in the OC&amp;C </span></span><br style="font-family:arial,helvetica,sans-serif;" /><span style="font-size:xx-small;"><span style="font-family:arial,helvetica,sans-serif;">section.  Payment of this charge does not release the Subscriber from </span></span><br style="font-family:arial,helvetica,sans-serif;" /><span style="font-size:xx-small;"><span style="font-family:arial,helvetica,sans-serif;">other previous amounts owed to BST. </span></span><br style="font-family:arial,helvetica,sans-serif;" /><br style="font-family:arial,helvetica,sans-serif;" /><span style="font-size:xx-small;"><span style="font-family:arial,helvetica,sans-serif;">Set charge to be multiplied by number of months remaining on term</span></span><br style="font-family:arial,helvetica,sans-serif;" /><span style="font-size:xx-small;"><span style="font-family:arial,helvetica,sans-serif;">Complete Choice for Business Term Plan Program $20</span></span><br style="font-family:arial,helvetica,sans-serif;" /><br style="font-family:arial,helvetica,sans-serif;" /><span style="font-size:xx-small;"><span style="font-family:arial,helvetica,sans-serif;">Your term agreement auto-renewed on your bill date of 5/4/09 and you </span></span><br style="font-family:arial,helvetica,sans-serif;" /><span style="font-size:xx-small;"><span style="font-family:arial,helvetica,sans-serif;">disconnected service on 5/11/09. Idon&#8217;t show any notations on your </span></span><br style="font-family:arial,helvetica,sans-serif;" /><span style="font-size:xx-small;"><span style="font-family:arial,helvetica,sans-serif;">account that there was any prior inquiries regarding your agreement, </span></span><br style="font-family:arial,helvetica,sans-serif;" /><span style="font-size:xx-small;"><span style="font-family:arial,helvetica,sans-serif;">therefore the charges are valid.</span></span><br style="font-family:arial,helvetica,sans-serif;" /><br style="font-family:arial,helvetica,sans-serif;" /><span style="font-size:xx-small;"><span style="font-family:arial,helvetica,sans-serif;">Thank you  for choosing AT&amp;T.</span></span><br style="font-family:arial,helvetica,sans-serif;" /><br style="font-family:arial,helvetica,sans-serif;" /><span style="font-size:xx-small;"><span style="font-family:arial,helvetica,sans-serif;">Did you know that your customers are probably looking for your business </span></span><br style="font-family:arial,helvetica,sans-serif;" /><span style="font-size:xx-small;"><span style="font-family:arial,helvetica,sans-serif;">online?  I can check to see if your business name is available as a </span></span><br style="font-family:arial,helvetica,sans-serif;" /><span style="font-size:xx-small;"><span style="font-family:arial,helvetica,sans-serif;">&#8220;.com&#8221; address and set up a domain name for you.  AT&amp;T offers Shared Web</span></span><br style="font-family:arial,helvetica,sans-serif;" /><span style="font-size:xx-small;"><span style="font-family:arial,helvetica,sans-serif;">Hosting and has discounts for our DSL customers.  Just reply back to </span></span><br style="font-family:arial,helvetica,sans-serif;" /><span style="font-size:xx-small;"><span style="font-family:arial,helvetica,sans-serif;">this email and I&#8217;ll give you all the details!</span></span><br style="font-family:arial,helvetica,sans-serif;" /><br style="font-family:arial,helvetica,sans-serif;" /><span style="font-size:xx-small;"><span style="font-family:arial,helvetica,sans-serif;">Sincerely,</span></span><br style="font-family:arial,helvetica,sans-serif;" /><br style="font-family:arial,helvetica,sans-serif;" /><span style="font-size:xx-small;"><span style="font-family:arial,helvetica,sans-serif;">Dorothy Malcolm</span></span><br style="font-family:arial,helvetica,sans-serif;" /><span style="font-size:xx-small;"><a rel="nofollow" href="http://www.bellsouth.com/smallbusiness" target="_blank"><span>www.bellsouth.com/smallbusiness</span></a></span><br style="font-family:arial,helvetica,sans-serif;" /><span style="font-size:xx-small;"><span style="font-family:arial,helvetica,sans-serif;">AT&amp;T Small Business Services &amp;caseid=17846944&#8243;</p>
<p></span></span></div>
<p>I realize the stipulation here; but here is my point&#8230; It is not like I am trying to get out of a legitimate deal. I waited the three, long, years until I could cancel without a fee. I called on May 11th&#8211;May being the last month of the contract&#8211;and I asked the lady on the phone about any fees. My impression of the conversation with her was that it seemed to have already been canceled and there wouldn&#8217;t be any fees. I asked her if there would be a cancellation fee and to my understanding, she told me there wouldn&#8217;t be anything charged and that I would get a final bill. According to the email above, my account auto-renewed on May the 4th and, since I canceled, I was charged for the full 3 years. This is just very disturbing to me because I have been a loyal Bellsouth/at&amp;t customer for almost 10 years&#8211;the last three being the business service. During the 3 year contract; you were great, the people on the phone were great and the technicians were great but the technological service itself was really poor. Every time there was lightning in the area, my internet service went out. I had THREE techs come out and take a look at everything to no avail.  They were never able to repair the problem so I just lived with it. Also, this whole time I have been paying for 3Mbs down stream and I have only been getting 1.5Mbs. The techs said numerous times I can&#8217;t get anything faster because I am too far away from the main trunk. I am 29 years old and I am a web programmer. I know a lot about the internet and electronics. I have done several tests myself confirming I have only been getting 1.5Mbs down. This is quite irritating that I have been paying the price of 3Mbs down this whole time. Therefore, I believe the difference makes up for the $720 AND not to mention all the down time from the storms. To top it off, I am being charged for the full month of May when I actually canceled all my services on the 11th of May. I realize I owe a balance for services rendered in the amount of $429.20, which includes the full month of May, that I am willing to pay. I can pay the $429.20 right now but not until the $720.00 is removed from my bill.<br />
Case ID: 17846944</p>
<p>Thank you.</p>
<br />Posted in Technology Tagged: at&amp;t, Business, dispute, life, phone, rants <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shrimpwagon.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shrimpwagon.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shrimpwagon.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shrimpwagon.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shrimpwagon.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shrimpwagon.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shrimpwagon.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shrimpwagon.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shrimpwagon.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shrimpwagon.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shrimpwagon.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shrimpwagon.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shrimpwagon.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shrimpwagon.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=46&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shrimpwagon.wordpress.com/2009/06/15/att-bill-still-under-dispute/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38b42911484f66ee5aedadaa16846340?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shrimpwagon</media:title>
		</media:content>
	</item>
		<item>
		<title>My AT&amp;T Billing Dispute</title>
		<link>http://shrimpwagon.wordpress.com/2009/06/11/my-att-billing-dispute/</link>
		<comments>http://shrimpwagon.wordpress.com/2009/06/11/my-att-billing-dispute/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 02:29:01 +0000</pubDate>
		<dc:creator>shrimpwagon</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Issues]]></category>
		<category><![CDATA[advice]]></category>
		<category><![CDATA[at&t]]></category>
		<category><![CDATA[dispute]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[legal]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[rants]]></category>
		<category><![CDATA[service]]></category>

		<guid isPermaLink="false">http://shrimpwagon.wordpress.com/?p=43</guid>
		<description><![CDATA[READ HERE ABOUT HOW THIS AT&#38;T BILLING DISPUTE WAS RESOLVED I just received my last statement and there is a $720.00 termination charge. The contract was up in May. I decided to go ahead and cancel the business account. When I called the lady was puzzled and said it looked like it was already canceled.  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=43&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="../2009/06/18/att-billing-resolved/">READ HERE ABOUT HOW THIS AT&amp;T BILLING DISPUTE WAS RESOLVED</a></p>
<p>I just received my last statement and there is a $720.00 termination charge. The contract was up in May. I decided to go ahead and cancel the business account. When I called the lady was puzzled and said it looked like it was already canceled.  She went through with the request and never told me of any cancellation charge.  Apparently I was supposed to write them a letter 60 days prior to the end of the agreement or the account would automatically renew.  Therefore, I would be stuck with another 3 years of bad service (read the next paragraph).</p>
<p>I want to mention that in the last three years of having this service, the internet went out every time there was lightning in the area. This caused so much grief. I called numerous times and had countless technicians come to fix; but to no avail.  I think this alone would even out anything I owe. To top it all off, they couldn&#8217;t get anything faster than 1.5Mbs out to my home even though I was paying for 3Mbs. There is just so much wrong here.</p>
<p>Any advice out there? Please help.</p>
<br />Posted in Business, Issues Tagged: advice, at&amp;t, Business, dispute, help, legal, life, money, phone, rants, service <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shrimpwagon.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shrimpwagon.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shrimpwagon.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shrimpwagon.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shrimpwagon.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shrimpwagon.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shrimpwagon.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shrimpwagon.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shrimpwagon.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shrimpwagon.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shrimpwagon.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shrimpwagon.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shrimpwagon.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shrimpwagon.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=43&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shrimpwagon.wordpress.com/2009/06/11/my-att-billing-dispute/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38b42911484f66ee5aedadaa16846340?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shrimpwagon</media:title>
		</media:content>
	</item>
		<item>
		<title>Pallet Wrapper of the Future</title>
		<link>http://shrimpwagon.wordpress.com/2009/04/30/pallet-wrapper-of-the-future/</link>
		<comments>http://shrimpwagon.wordpress.com/2009/04/30/pallet-wrapper-of-the-future/#comments</comments>
		<pubDate>Fri, 01 May 2009 01:40:50 +0000</pubDate>
		<dc:creator>shrimpwagon</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://shrimpwagon.wordpress.com/?p=41</guid>
		<description><![CDATA[I realize it may be hard to get excited about something as simple as a pallet wrapper but I have recently made a website for an inventor of a really great product that I think will help workers in the logistics field.  The inventor is very passionate about his invention and I became somewhat &#8220;wrapped&#8221; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=41&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I realize it may be hard to get excited about something as simple as a <a title="Pallet Wrapper of the Future" href="http://www.speedwrap.net/" target="_blank">pallet wrapper</a> but I have recently made a website for an inventor of a really great product that I think will help workers in the logistics field.  The inventor is very passionate about his invention and I became somewhat &#8220;wrapped&#8221; up in his gadget. It is a hand held pallet wrap dispenser that easily and efficiently wraps freight pallets. The wrap is set on a pole that holds the wrap with spring tension. Pallets are easily wrapped by simply walking around the pallet and holding the pole either down for lower wrappings or up for reaching higher stacked pallets. It is safe to use too. No more using a stool or ladder to get to the top of  a pallet which is not only dangerous but time consuming. That means less workmans comp, less injuries and higher productivity. It is fairly inexpensiv too. If you have a minute, please view the very short video about the pallet wrapper on the front page.</p>
<p>Here is the commercial script:</p>
<p>Introducing SPEEDWRAP, a new and unique patent design industrial portable stretch wrap dispenser.</p>
<p>During these tough economic times, frivolous lawsuits and common workplace injuries, companies are scrambling to find solutions to combat and overcome two major issues, which are crucial in regards to company survivability and prosperity.</p>
<p>SPEEDWRAP&#8217;s dynamic ability and design effectively targets these key issues:</p>
<p>(A) Worker&#8217;s Compensation</p>
<p>(B) Productivity</p>
<p>Worker&#8217;s Compensation issues are a major concern on a daily basis in today&#8217;s work enviroment.</p>
<p>SPEEDWRAP can help you reduce inherent task related on the job injuries associated with wrapping pallets, while providing a potential defense to various worker&#8217;s compensation issues.</p>
<p>Example:</p>
<p>Worker&#8217;s compensation payments can range from thousands, to hundreds of thousands of dollars or more.</p>
<p>The percentage of employees filing for worker&#8217;s compensation is astounding.</p>
<p>SPEEDWRAP provides employees with a more stabilized working posture, along with SPEEDWRAP&#8217;s excellent reach speed and control allows employees to accomplish tasks exerting minimal physical effort, while maintaining stamina, experiencing less prolonged strenuous repetitive motion, resulting in inhanced employee moral.</p>
<p>In regards to Productivity, empolyees will experience an immediate significant increase in productivity, stamina, and overall ability to accomplish tasks with relative ease and astonishment.</p>
<p>SPEEDWRAP&#8217;s design allows for a smooth, fluid application, with no irritating interruptions. NO stagnate downtime, NO ladder, NO helper required, NO electrical or power failure concerns, avoids schedualing time consuming maintenance, or un-expected costly repairs, or system upgrades.</p>
<p>SPEEDWRAP&#8217;s design promotes improved wrapping technique, reducing or eliminating the temptation for employees to excercise poor and/or hazardous methods and procedures, resulting in product damages, and even unforseen injuries to company personnel. In relation to improved wrapping technique, this will insure integrity and quality of palletized freight, staged or in transport.</p>
<p>SPEEDWRAP is highly adaptive in its ability to wrap uniform and non-uniform standard and over-sized palletized freight, from floor to over 9 ft. unassisted.</p>
<p>SPEEDWRAP&#8217;s ability and efficiency will help companies promote and establish a professional company image while maintaining excellent customer relations.</p>
<p>SPEEDWRAP- efficient and effective</p>
<p>SPEEDWRAP- fast and easy to use</p>
<p>SPEEDWRAP- store anywhere (preserves valuable warehouse space)</p>
<p>SPEEDWRAP- no electricity required</p>
<p>SPEEDWRAP- excellent and effective back up for automated dependent companies</p>
<p>SPEEDWRAP- customer support and team effort</p>
<p>SPEEDWRAP- thinking outside the box with an aggressive fertile research and development department, insures future product evolution</p>
<p>EXPERIENCE SPEEDWRAP TODAY!</p>
<br />Posted in Technology  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shrimpwagon.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shrimpwagon.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shrimpwagon.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shrimpwagon.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shrimpwagon.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shrimpwagon.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shrimpwagon.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shrimpwagon.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shrimpwagon.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shrimpwagon.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shrimpwagon.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shrimpwagon.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shrimpwagon.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shrimpwagon.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=41&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shrimpwagon.wordpress.com/2009/04/30/pallet-wrapper-of-the-future/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38b42911484f66ee5aedadaa16846340?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shrimpwagon</media:title>
		</media:content>
	</item>
		<item>
		<title>Fantastic Sams Goose Creek SC Horrible Experience</title>
		<link>http://shrimpwagon.wordpress.com/2009/03/02/fantastic-sams-goose-creek-sc-horrible-experience/</link>
		<comments>http://shrimpwagon.wordpress.com/2009/03/02/fantastic-sams-goose-creek-sc-horrible-experience/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 20:34:26 +0000</pubDate>
		<dc:creator>shrimpwagon</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[complaints]]></category>
		<category><![CDATA[experience]]></category>
		<category><![CDATA[hair]]></category>
		<category><![CDATA[haircut]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[stories]]></category>

		<guid isPermaLink="false">http://shrimpwagon.wordpress.com/2009/03/02/fantastic-sams-goose-creek-sc-horrible-experience/</guid>
		<description><![CDATA[On Sunday, March 1st, 2009, 4:25pm, I went to the Fantastic Sams, Goose Creek SC location. When I walked in I noticed nobody was waiting. There were two ladies cutting hair, I&#8217;ll call them Lady A and Lady B. There was a man getting his hair cut and a woman getting her hair cut, we&#8217;ll [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=37&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>On Sunday, March 1st, 2009, 4:25pm, I went to the Fantastic Sams, Goose Creek SC location. When I walked in I noticed nobody was waiting. There were two</p>
<p>ladies cutting hair, I&#8217;ll call them Lady A and Lady B. There was a man getting his hair cut and a woman getting her hair cut, we&#8217;ll call her Lady C. Lady A,</p>
<p>having curly blonde hair and dark streaks in the front, finished with the man and walked to the back of the store. Lady B who was cutting Lady C&#8217;s hair,</p>
<p>said they will be right with me but did not pull up my info on the computer. Lady A returned from the back and walked over to Lady B and Lady C. Lady A,</p>
<p>started talking to both ladies how good Lady&#8217;s C hair cut looked. After a minute or so, Ladie C got up from the chair, after getting her hair cut, and told</p>
<p>me she will take me. (Just in case you didn&#8217;t get that, Lady C is an employee getting her hair cut while on the clock). I told Lady C how I wanted my hair</p>
<p>cut. I told her to cut it as if it were to be buzzed with a 12.  I realize that isn&#8217;t very clear, but that is as simple as I could put it. After a few cuts</p>
<p>in the back, I checked it and told her it is too long; to cut it about half that. She cut my hair more and started styling my hair. I told her again it is</p>
<p>too long and just needed it be cut finger height all the way around. Basically, I had to tell her three times how to cut my hair when it is very easy in my</p>
<p>opinion.  Not that cutting hair is easy but my style isn&#8217;t that difficult. The whole time I was turned to the side not facing the mirror and I couldn&#8217;t see</p>
<p>what she was doing or how my hair was turning out. While getting my haircut, Lady A&#8211;the one with dark streaks in the front&#8211;said and did some very</p>
<p>questionable things. First, she said in front of me how she, &#8220;feels bad how she likes turn people away.&#8221; That is very close to verbatim. At about</p>
<p>4:45pm&#8211;knowing that they close at 5pm on Sunday&#8211;turned away a mother and her daughter when they walked into the store. Lady A had not turned the sign to</p>
<p>the &#8220;closed&#8221; side nor did she lock the door. Another customer came in shortly after, about 4:50pm, and was turned away by Lady A. After I returned home, I</p>
<p>noticed that the front edge of my hairline&#8211;just above where my right sideburn starts and towards my temple&#8211;had been buzzed off. Not only did nobody in my</p>
<p>entire life ever buzzed that section of my hairline but the other side was untouched. So not only was it ridiculous to do that in the first place, she</p>
<p>didn&#8217;t make it even on the other side. Hereis a picture of it:</p>
<p><img class="alignnone size-full wp-image-36" title="photo0129" src="http://shrimpwagon.files.wordpress.com/2009/03/photo0129.jpg?w=538" alt="photo0129"   /></p>
<p>This is exactly how things transpired that night and I want a refund in full.</p>
<p>Thank you,</p>
<p>Shawn Welch</p>
<br />Posted in Business Tagged: Business, complaints, experience, hair, haircut, life, review, stories <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shrimpwagon.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shrimpwagon.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shrimpwagon.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shrimpwagon.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shrimpwagon.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shrimpwagon.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shrimpwagon.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shrimpwagon.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shrimpwagon.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shrimpwagon.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shrimpwagon.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shrimpwagon.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shrimpwagon.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shrimpwagon.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=37&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shrimpwagon.wordpress.com/2009/03/02/fantastic-sams-goose-creek-sc-horrible-experience/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38b42911484f66ee5aedadaa16846340?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shrimpwagon</media:title>
		</media:content>

		<media:content url="http://shrimpwagon.files.wordpress.com/2009/03/photo0129.jpg" medium="image">
			<media:title type="html">photo0129</media:title>
		</media:content>
	</item>
		<item>
		<title>How To Quickly Setup A PHPBB Subdomain</title>
		<link>http://shrimpwagon.wordpress.com/2008/12/17/how-to-quickly-setup-phpbb-as-subdomain/</link>
		<comments>http://shrimpwagon.wordpress.com/2008/12/17/how-to-quickly-setup-phpbb-as-subdomain/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 18:12:12 +0000</pubDate>
		<dc:creator>shrimpwagon</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[bulletin board]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[phpbb]]></category>

		<guid isPermaLink="false">http://shrimpwagon.wordpress.com/?p=31</guid>
		<description><![CDATA[Setting up phpBB is fairly simple enough. But this will help set it up using a subdomain (e.g. forum.mydomain.com). You start by adding a record to your DNS. This is usually done through your domain registrar (e.g. GoDaddy.com, NetworkSolutions.com). Add an A record that has forum.mydomain.com as the common name and add the server&#8217;s IP [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=31&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Setting up phpBB is fairly simple enough.  But this will help set it up using a subdomain (e.g. forum.mydomain.com).  You start by adding a record to your DNS.  This is usually done through your domain registrar (e.g. GoDaddy.com, NetworkSolutions.com).  Add an A record that has forum.mydomain.com as the common name and add the server&#8217;s IP address.  Once this is done, you must add a virtual host section in the Apache configuration file:</p>
<blockquote><p>&lt;VirtualHost 10.20.30.40:80&gt;<br />
ServerAdmin moderator@mydomain.com<br />
DocumentRoot /home/phpBB3<br />
ServerName forum.mydomain.com<br />
&lt;/VirtualHost&gt;</p></blockquote>
<p>Download the latest version from www.phpbb.com.  Unzip and upload the folder to /home or whatever you serve your files from and restart apache.  Follow the installation instructions and make sure to rename or delete the /install folder under phpBB3</p>
<p>Hope this helps. Take care.</p>
<p>Shawn</p>
<br />Posted in Technology Tagged: apache, blog, bulletin board, configuration, howto, internet, php, phpbb, Technology <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shrimpwagon.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shrimpwagon.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shrimpwagon.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shrimpwagon.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shrimpwagon.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shrimpwagon.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shrimpwagon.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shrimpwagon.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shrimpwagon.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shrimpwagon.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shrimpwagon.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shrimpwagon.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shrimpwagon.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shrimpwagon.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=31&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shrimpwagon.wordpress.com/2008/12/17/how-to-quickly-setup-phpbb-as-subdomain/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38b42911484f66ee5aedadaa16846340?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shrimpwagon</media:title>
		</media:content>
	</item>
		<item>
		<title>SP3 Video Problems: Update Removed Drivers</title>
		<link>http://shrimpwagon.wordpress.com/2008/10/03/sp3-video-problems-update-removed-drivers/</link>
		<comments>http://shrimpwagon.wordpress.com/2008/10/03/sp3-video-problems-update-removed-drivers/#comments</comments>
		<pubDate>Sat, 04 Oct 2008 03:07:15 +0000</pubDate>
		<dc:creator>shrimpwagon</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[ati]]></category>
		<category><![CDATA[drivers]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[rants]]></category>
		<category><![CDATA[sp2]]></category>
		<category><![CDATA[sp3]]></category>
		<category><![CDATA[updates]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[wow]]></category>

		<guid isPermaLink="false">http://shrimpwagon.wordpress.com/?p=29</guid>
		<description><![CDATA[I realize the SP3 update was a few weeks ago but I haven&#8217;t been able to deal with this problem until today. About 4 weeks ago, I was somehow suckered into updating SP2 to SP3.  I failed to read anything about it before the update and figured, &#8220;what the heck.&#8221;  Two weeks later, I realized [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=29&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I realize the SP3 update was a few weeks ago but I haven&#8217;t been able to deal with this problem until today.</p>
<p>About 4 weeks ago, I was somehow suckered into updating SP2 to SP3.  I failed to read anything about it before the update and figured, &#8220;what the heck.&#8221;  Two weeks later, I realized something was wrong when I tried to play WoW.  An error message came up saying that it couldn&#8217;t find a usable video device.</p>
<p>I am very busy and just didn&#8217;t have the time to really dig in and figure out what went wrong.  Today, I tried to open Google Earth.  It could not open using DirectX.  I figured it was time to fix since I had a little spare time.</p>
<p>I then tried to update / reinstall the ATI driver and it just wouldn&#8217;t take.   So, now I had a complete loss of a video driver.  Well, I got sick of it all and rolled back before the update.</p>
<p>The video driver came back and I was able to play WoW and the ATI properties came back.   Unfortunatly, I had updated FireFox to version 3 sometime after the update so I had to reinstall FF3.  I also had to install most of my addons.  Not a big deal since it still had all of the addon settings and whatnot.</p>
<p>FireFox Rox! Windows sucks&#8230;especially SP3.  Don&#8217;t install it unless you really thing you have to.</p>
<p>I have had other problems at work updating to it.</p>
<br />Posted in Technology Tagged: ati, drivers, Firefox, graphics, microsoft, rants, sp2, sp3, Technology, updates, video, windows, wow <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shrimpwagon.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shrimpwagon.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shrimpwagon.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shrimpwagon.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shrimpwagon.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shrimpwagon.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shrimpwagon.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shrimpwagon.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shrimpwagon.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shrimpwagon.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shrimpwagon.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shrimpwagon.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shrimpwagon.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shrimpwagon.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=29&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shrimpwagon.wordpress.com/2008/10/03/sp3-video-problems-update-removed-drivers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38b42911484f66ee5aedadaa16846340?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shrimpwagon</media:title>
		</media:content>
	</item>
		<item>
		<title>Why Internet Explorer Sucks: Part 1</title>
		<link>http://shrimpwagon.wordpress.com/2008/09/30/why-internet-explorer-sucks-part-1/</link>
		<comments>http://shrimpwagon.wordpress.com/2008/09/30/why-internet-explorer-sucks-part-1/#comments</comments>
		<pubDate>Tue, 30 Sep 2008 13:44:56 +0000</pubDate>
		<dc:creator>shrimpwagon</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[ie7]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[rants]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://shrimpwagon.wordpress.com/?p=24</guid>
		<description><![CDATA[First I want to say that I was like you once.  I only used Internet Explorer because it worked for what I needed it to.  As my web programming career became full time, I came to realize just how faulty, buggy and down right sucky Internet Explorer is. This is part one of my rants [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=24&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>First I want to say that I was like you once.  I only used Internet Explorer because it worked for what I needed it to.  As my web programming career became full time, I came to realize just how faulty, buggy and down right sucky Internet Explorer is.</p>
<p>This is part one of my rants on not liking IE.  I am talking mostly about IE 7.  I have other issues with it but that is for the next section.</p>
<p>As you might have guessed, I am a huge FireFox fan.  I have noticed that FireFox has less bugs and is more true to HTML style and overall web experience handling.</p>
<p>Here is what I discovered today.</p>
<p>IE 7 and possibly earlier versions do not handle JPGs that are encoded in CYMK format.  Of course, FireFox does not have a problem with this and displays them just fine.</p>
<p>Here is a JPG encoded in CMYK.  If you are using FireFox, you should have no problem seeing this. On internet explorer however you will only see a red X.</p>
<p><a href="http://shrimpwagon.files.wordpress.com/2008/09/65869-giovannis_aloha_shrimp_wagon-haleiwa.jpg"><img class="alignnone size-full wp-image-27" title="65869-giovannis_aloha_shrimp_wagon-haleiwa" src="http://shrimpwagon.files.wordpress.com/2008/09/65869-giovannis_aloha_shrimp_wagon-haleiwa.jpg?w=538" alt="JPG encoded in CMYK" /></a></p>
<p>I found this out because I am working with a client who uploads high resolution images which are &#8220;print ready.&#8221;  Meaning that the images are ready to be sent to high definition printers.  Therefore, the JPGs are in CMYK.  These images must be converted to RGB before uploading them because IE will not display them.  IE doesn&#8217;t even know what kind of file it is! How hard can it be to program the browser for it to work.  Obviously, the dollar didn&#8217;t fall on that part of the agenda.</p>
<p>Just goes to prove that Microsoft is just another company looking out for their bottom dollar and keeping you from having the best web experience.</p>
<p><a rel="nofollow" href="http://www.mozilla.com" target="_blank">Get FireFox 3</a></p>
<p>It ceases to amaze me how great FireFox is and all of the addons you can get for it.  All for free.  I know, you say, &#8220;IE is free.&#8221;  Not really, you MUST have Windows for it to work, which isn&#8217;t free.</p>
<p>If you would give FF a try, I promise you will ove it or your money back.  The changeover is very simple and it automatically carries over all of your bookmarks although you should be using Delicious.</p>
<br />Posted in Technology Tagged: browser, bug, computers, Firefox, ie, ie6, ie7, internet, internet explorer, microsoft, rants, Technology, web <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shrimpwagon.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shrimpwagon.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shrimpwagon.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shrimpwagon.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shrimpwagon.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shrimpwagon.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shrimpwagon.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shrimpwagon.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shrimpwagon.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shrimpwagon.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shrimpwagon.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shrimpwagon.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shrimpwagon.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shrimpwagon.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=24&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shrimpwagon.wordpress.com/2008/09/30/why-internet-explorer-sucks-part-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38b42911484f66ee5aedadaa16846340?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shrimpwagon</media:title>
		</media:content>

		<media:content url="http://shrimpwagon.files.wordpress.com/2008/09/65869-giovannis_aloha_shrimp_wagon-haleiwa.jpg" medium="image">
			<media:title type="html">65869-giovannis_aloha_shrimp_wagon-haleiwa</media:title>
		</media:content>
	</item>
		<item>
		<title>Compact Privacy Policy: P3P In Two Easy Steps</title>
		<link>http://shrimpwagon.wordpress.com/2008/09/23/compact-privacy-policy-p3p-in-two-easy-steps/</link>
		<comments>http://shrimpwagon.wordpress.com/2008/09/23/compact-privacy-policy-p3p-in-two-easy-steps/#comments</comments>
		<pubDate>Tue, 23 Sep 2008 19:16:55 +0000</pubDate>
		<dc:creator>shrimpwagon</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[ie7]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[p3p]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[privacy policy]]></category>
		<category><![CDATA[privacy statements]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[w3c]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://shrimpwagon.wordpress.com/?p=13</guid>
		<description><![CDATA[I realize the importance of having a privacy policy just isn&#8217;t what it used to be right after 9/11.  Some time ago, Microsoft started to support displaying compact privacy statements (3).  You can easily view P3P statements by clicking &#8216;View&#8217; then &#8216;Web Page Privacy Policy&#8217;.  Then click the top entry, which is usually the site/page [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=13&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I realize the importance of having a privacy policy just isn&#8217;t what it used to be right after 9/11.  Some time ago, Microsoft started to support displaying compact privacy statements (3).  You can easily view P3P statements by clicking &#8216;View&#8217; then &#8216;Web Page Privacy Policy&#8217;.  Then click the top entry, which is usually the site/page you are currently viewing.  Then click the Summary button. This causes a request for /w3c/p3p.xml which contains information on finding the sites compact privacy policy.</p>
<p>I seriously doubt many people actually attempt to look for this statement although it should be included in all major websites.</p>
<p>Amazon has a good example of how it looks.  Just go to amazon.com and click View-&gt;Web Page Privacy Policy.  You will see how this will look.  Yahoo sends the location of the P3P file via the response header but does not work in IE or FireFox.  I am guessing they are still using an old implementation of P3P.  I tried the header on my server but FireFox nor IE7 was able to pick it up and use it in any way.</p>
<p>Creating a compact privacy policy is very simple and here is how to do it:</p>
<h2>Step 1 &#8211; Create Compact Privacy Policy Directory and Files</h2>
<p>- Create a folder named /w3c in the root site</p>
<p>- Create two files, p3p.xml and p3p_full.xml</p>
<h2>Step 2 &#8211; XML Compact Privacy Policy Information</h2>
<p>- p3p.xml:</p>
<pre>&lt;META xmlns="http://www.w3.org/2002/01/P3Pv1"&gt;
   &lt;POLICY-REFERENCES&gt;
      &lt;POLICY-REF about="http://www.mydomain.com/w3c/p3p_full.xml"&gt;
         &lt;INCLUDE&gt;\*&lt;/INCLUDE&gt;
         &lt;COOKIE-INCLUDE name="*" value="*" domain="*" path="*"/&gt;
      &lt;/POLICY-REF&gt;
   &lt;/POLICY-REFERENCES&gt;
&lt;/META&gt;</pre>
<p>- p3p_full.xml:</p>
<pre>&lt;POLICY name="forBrowsers"
discuri="http://www.mydomain.com/privacy.php"&gt;
&lt;ENTITY&gt;
&lt;DATA-GROUP&gt;
&lt;DATA ref="#business.name"&gt;mydomain.com&lt;/DATA&gt;
&lt;DATA ref="#business.contact-info.postal.street"&gt;123 Example St&lt;/DATA&gt;
&lt;DATA ref="#business.contact-info.postal.city"&gt;Anytown&lt;/DATA&gt;
&lt;DATA ref="#business.contact-info.postal.stateprov"&gt;CA&lt;/DATA&gt;
&lt;DATA ref="#business.contact-info.postal.postalcode"&gt;90240&lt;/DATA&gt;
&lt;DATA ref="#business.contact-info.postal.country"&gt;USA&lt;/DATA&gt;
&lt;DATA ref="#business.contact-info.online.email"&gt;me@mydomain.com&lt;/DATA&gt;
&lt;DATA ref="#business.contact-info.telecom.telephone.intcode"&gt;1&lt;/DATA&gt;
&lt;DATA ref="#business.contact-info.telecom.telephone.loccode"&gt;123&lt;/DATA&gt;
&lt;DATA ref="#business.contact-info.telecom.telephone.number"&gt;4567890&lt;/DATA&gt;
&lt;/DATA-GROUP&gt;
&lt;/ENTITY&gt;
&lt;ACCESS&gt;&lt;nonident/&gt;&lt;/ACCESS&gt;
&lt;DISPUTES-GROUP&gt;
&lt;DISPUTES resolution-type="independent"
service="http://www.mydomain.com"
short-description="mydomain.com"&gt;
&lt;IMG src="http://www.mydomain.com/images/privacy.jpg" alt="Privacy Logo"/&gt;
&lt;REMEDIES&gt;&lt;correct/&gt;&lt;/REMEDIES&gt;
&lt;/DISPUTES&gt;
&lt;/DISPUTES-GROUP&gt;
&lt;STATEMENT&gt;&lt;br /&gt; &lt;PURPOSE&gt;&lt;admin/&gt;&lt;develop/&gt;&lt;/PURPOSE&gt;
&lt;RECIPIENT&gt;&lt;ours/&gt;&lt;/RECIPIENT&gt;
&lt;RETENTION&gt;&lt;stated-purpose/&gt;&lt;/RETENTION&gt;
&lt;DATA-GROUP&gt;
&lt;DATA ref="#dynamic.clickstream"/&gt;
&lt;DATA ref="#dynamic.http"/&gt;
&lt;/DATA-GROUP&gt;
&lt;/STATEMENT&gt;
&lt;/POLICY&gt;</pre>
<p>At the top of p3p full file, you will see a link to the privacy policy page.  Here you will just insert the link where it is located on your server.</p>
<p>The privacy logo can be just about any image you want.  You can even use the trust-e image if you have it or want to link to it.</p>
<p>There is a lot more information you can provide in the full p3p file (2).</p>
<ol>
<li>“Section 2 What is P3P and How Does it Work?,” <a href="http://p3ptoolbox.org/guide/section2.shtml#IIa" target="_blank" rel="nofollow">http://p3ptoolbox.org/guide/section2.shtml#IIa</a>.</li>
<li>“The Platform for Privacy Preferences 1.0 (P3P1.0) Specification,” <a href="http://www.w3.org/TR/P3P/" target="_blank" rel="nofollow">http://www.w3.org/TR/P3P/</a>.</li>
<li>“Web Analytics Insight: P3P &#8211; Do we really care about it?,” <a href="http://rkapoor.blogspot.com/2007/07/p3p-do-we-really-care-about-it.html" target="_blank" rel="nofollow">http://rkapoor.blogspot.com/2007/07/p3p-do-we-really-care-about-it.html</a>.</li>
</ol>
<br />Posted in Technology Tagged: browser, howto, ie, ie6, ie7, internet, internet explorer, p3p, privacy, privacy policy, privacy statements, security, Technology, w3c, web <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shrimpwagon.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shrimpwagon.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shrimpwagon.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shrimpwagon.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shrimpwagon.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shrimpwagon.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shrimpwagon.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shrimpwagon.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shrimpwagon.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shrimpwagon.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shrimpwagon.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shrimpwagon.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shrimpwagon.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shrimpwagon.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=13&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shrimpwagon.wordpress.com/2008/09/23/compact-privacy-policy-p3p-in-two-easy-steps/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38b42911484f66ee5aedadaa16846340?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shrimpwagon</media:title>
		</media:content>
	</item>
		<item>
		<title>FireFox Addon Faves Causes 404 Errors</title>
		<link>http://shrimpwagon.wordpress.com/2008/09/19/firefox-addon-faves-causes-404-errors/</link>
		<comments>http://shrimpwagon.wordpress.com/2008/09/19/firefox-addon-faves-causes-404-errors/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 23:16:54 +0000</pubDate>
		<dc:creator>shrimpwagon</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[addons]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[lamp]]></category>
		<category><![CDATA[updates]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://shrimpwagon.wordpress.com/?p=11</guid>
		<description><![CDATA[This is in response to my earlier post: http://shrimpwagon.wordpress.com/2008/09/18/mysterious-firefox-addon-causing-404-errors-authoring-rotatorgif/ I have located the error, finially.  FireFox addon Faves, causes a request to the server when the user is adding the particular page to their &#8220;faves.&#8221;  When the user clicks the faves button, and saves the page to their faves, a request goes out to that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=11&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is in response to my earlier post:</p>
<p><a href="http://shrimpwagon.wordpress.com/2008/09/18/mysterious-firefox-addon-causing-404-errors-authoring-rotatorgif/">http://shrimpwagon.wordpress.com/2008/09/18/mysterious-firefox-addon-causing-404-errors-authoring-rotatorgif/</a></p>
<p>I have located the error, finially.  <a href="https://addons.mozilla.org/en-US/firefox/addon/4226" target="_blank">FireFox addon Faves</a>, causes a request to the server when the user is adding the particular page to their &#8220;faves.&#8221;  When the user clicks the faves button, and saves the page to their faves, a request goes out to that server looking for an image named authoring-rotator.gif.</p>
<p>For instance, a person is on www.domain.com and adds to their faves from there.  Then a request goes out to that domain asking for www.domain.com/images/authoring-rotator.gif</p>
<p>I discovered this after seeing a 404 error originating from our own IP address.  Logically, I figured that the only person who uses FireFox that could possibly have an addon that does this is our SEO guy.  I noticed that he had the very page open in his browser.  I ecstatically went out to find him and asked him what he did.  Sure enough, he saved it to his faves via the FireFox faves addon.</p>
<p>I then had him save another page.  Of course, another 404 error request for authoring-rotator.gif came up right away.</p>
<p>I then solved the issue by creating a .gif that is 100&#215;100 with his face on it.  Hopefully, that won&#8217;t stop people from saving to faves although the gif does not come up anywhere in the faves addone during saving to faves.</p>
<p>I emailed faves.com about this issue.  I asked them why their addon does this and asked if there is any way to optimize for this request.  I have not heard back.  I will be sure to give an update if I hear anything.</p>
<p>Happy LAMPing,</p>
<p>Shªwn</p>
<br />Posted in Technology Tagged: addons, browser, Firefox, internet, lamp, Technology, updates, web <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shrimpwagon.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shrimpwagon.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shrimpwagon.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shrimpwagon.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shrimpwagon.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shrimpwagon.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shrimpwagon.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shrimpwagon.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shrimpwagon.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shrimpwagon.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shrimpwagon.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shrimpwagon.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shrimpwagon.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shrimpwagon.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=11&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shrimpwagon.wordpress.com/2008/09/19/firefox-addon-faves-causes-404-errors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38b42911484f66ee5aedadaa16846340?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shrimpwagon</media:title>
		</media:content>
	</item>
		<item>
		<title>Mysterious FireFox Addon Causing 404 Errors: authoring-rotator.gif</title>
		<link>http://shrimpwagon.wordpress.com/2008/09/18/mysterious-firefox-addon-causing-404-errors-authoring-rotatorgif/</link>
		<comments>http://shrimpwagon.wordpress.com/2008/09/18/mysterious-firefox-addon-causing-404-errors-authoring-rotatorgif/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 20:02:37 +0000</pubDate>
		<dc:creator>shrimpwagon</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[addons]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[net]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web optimization]]></category>

		<guid isPermaLink="false">http://shrimpwagon.wordpress.com/?p=4</guid>
		<description><![CDATA[So yesterday I decided to have our server email ALL 404 errors to my email address.  OMG! It was really crazy at first but slowly I chipped away at all of them.  Well, today and yesterday, I keep seeing something very interesting.  I keep getting a 404 Not Found error with this odd request: /images/authoring-rotator.gif [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=4&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So yesterday I decided to have our server email ALL 404 errors to my email address.  OMG! It was really crazy at first but slowly I chipped away at all of them.  Well, today and yesterday, I keep seeing something very interesting.  I keep getting a 404 Not Found error with this odd request:</p>
<p>/images/authoring-rotator.gif</p>
<p>It is odd because we don&#8217;t have that image.  It is definitly not a broken link on the site.  I have look over the site a few hundred times-little exageration there.  But all the requests have one thing in common.  The browser is FireFox 3.  It can&#8217;t be just FF3 because I am using it too and when I access that page no errors occur.  I can only assume this is some kind of blog or article addon that is trying to retrieve this image.  I want to know because I would like to optimize the site for this.  I have search every which way to Sunday on Google and I come up with nothing.</p>
<p>If anyone out there would like to be a sluth on this, be my guest.  Please let me know,</p>
<p>Shªwn</p>
<br />Posted in Technology Tagged: addons, computers, Firefox, internet, net, Technology, web, web optimization <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/shrimpwagon.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/shrimpwagon.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/shrimpwagon.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/shrimpwagon.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/shrimpwagon.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/shrimpwagon.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/shrimpwagon.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/shrimpwagon.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/shrimpwagon.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/shrimpwagon.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/shrimpwagon.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/shrimpwagon.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/shrimpwagon.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/shrimpwagon.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=shrimpwagon.wordpress.com&amp;blog=4518093&amp;post=4&amp;subd=shrimpwagon&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://shrimpwagon.wordpress.com/2008/09/18/mysterious-firefox-addon-causing-404-errors-authoring-rotatorgif/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38b42911484f66ee5aedadaa16846340?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">shrimpwagon</media:title>
		</media:content>
	</item>
	</channel>
</rss>
