<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>CyberCoded &#187; Search Results  &#187;  sitemap</title>
	<atom:link href="http://www.cybercoded.net/search/sitemap/feed/rss2/" rel="self" type="application/rss+xml" />
	<link>http://www.cybercoded.net</link>
	<description>Trying to help others with their Wordpress, PHP and other Web issues.</description>
	<lastBuildDate>Sun, 05 Feb 2012 09:00:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Static HTML to WordPress Conversion Case Study</title>
		<link>http://www.cybercoded.net/static-html-to-wordpress-conversion-case-study/</link>
		<comments>http://www.cybercoded.net/static-html-to-wordpress-conversion-case-study/#comments</comments>
		<pubDate>Mon, 27 Dec 2010 13:49:09 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress How To]]></category>
		<category><![CDATA[Wordpress Themes]]></category>

		<guid isPermaLink="false">http://www.cybercoded.net/?p=1321</guid>
		<description><![CDATA[Converting older static html sites to WordPress is one of the most popular things for me to work on. Seems there are still a lot of older sites that have no CMS system and when people decide to finally convert these sites WordPress is one of the most popular options. I used my holiday time [...]]]></description>
			<content:encoded><![CDATA[<p>Converting older static html sites to WordPress is one of the most popular things for me to work on. Seems there are still a lot of older sites that have no CMS system and when people decide to finally convert these sites WordPress is one of the most popular options.</p>
<p>I used my holiday time to convert one of my own static sites. I wanted to use it as a case study in procedure and time. The site I converted was my Scripts and Database site, <a href="http://www.cybercoded.com/" target="new">CyberCoded.com</a>. This is one of my older sites and I have been too busy to convert it so I continued to manually add pages as needed.</p>
<p>I have about 10 hours invested in the whole process to convert this site. The bulk of the time is in the custom coding of a WordPress Theme from scratch to match an older site. There were 12 pages when I started and as some of the pages had different extensions I decided to convert the site using my favorite WordPress permalink structure and then redirect the old pages.</p>
<p>I used my <a href="http://theme1.cybercoded.net/" target="new">Blank WordPress Theme</a> so that I could start with a clean slate and match the design to the old site.</p>
<p>Here are the steps I took.</p>
<ol>
<li>Installed WordPress in a Sub Folder
<ul>
<li>Set Privacy setting to OFF while I developed the site in a sub folder.</li>
<li>Modified the permalink to my favorite which is /%postname%/</li>
</ul>
</li>
<li>Installed the Blank theme in the WordPress Themes folder.
<ul>
<li>I used FTP to upload the files into a new theme folder in WordPress.</li>
</ul>
</li>
<li>Copied and matched elements from the old Style.css file into the WordPress Style.css
<ul>
<li>The blank theme has an empty CSS file.</li>
<li>The Body and Links were the only elements called out in the old CSS file.</li>
<li>Added Wrapper, Content, Header and Footer Divs to CSS.</li>
</ul>
</li>
<li>Copied the Index.php file to home.php so I could have a custom Home page that would match the old page.
<ul>
<li>Simply copying the file like this makes a new home page with the home.php file.</li>
</ul>
</li>
<li>Modified the WordPress code in the Home page to show each category and posts as lists.
<ul>
<li>Stripped out the common WordPress Loop</li>
<li>Created new code that loops through the categories and list each post per category.</li>
<li>Set the Category to sort in Descending order.</li>
<li>Set the Post titles to sort Title in ascending order</li>
</ul>
</li>
<li>Created an Analytics.php file in the WordPress Theme to use throughout the site.
<ul>
<li>Retrieved the code from Google to use for analytics.php</li>
</ul>
</li>
<li>Created a Header.php file within the WordPress Theme to add common header elements.
<ul>
<li>Modified the Title so that it would be SEO friendly, very similar to most popular SEO plugins.</li>
<li>Added a call to analytics.php file</li>
</ul>
</li>
<li>Created a footer.php file in WordPress to add a common footer.
<ul>
<li>Used the code from the old static footer file for contact and info.</li>
</ul>
</li>
<li>Created Single.php page
<ul>
<li>Added a <a href="http://twitter.com/about/resources/tweetbutton" target="new">Tweet This button from Twitter</a>.</li>
</ul>
</li>
<li>Created my Categories to match old site.
<ul>
<li>The old site had headers for each item type which I converted to Categories.</li>
</ul>
</li>
<li>Copied each page from the old site into Textpad and removed any code that would interfere with WordPress.</li>
<li>Pasted each page into WordPress as a Post.</li>
<li>Created Tag Page.
<ul>
<li>Tag page list the excerpt for each Post that is tagged.</li>
</ul>
</li>
<li>Created <a href="http://www.cybercoded.com/fdlhfakldh">custom 404 page</a>.
<ul>
<li>The 404 page shows a tag cloud to visitors.</li>
</ul>
</li>
<li>Created Search page.
<ul>
<li>Search page only shows title for a matched post.</li>
</ul>
</li>
<li>Widgetized and added a sidebar.
<ul>
<li>Create and set widgets in the functions.php file.</li>
<li>Add sidebar.php and corresponding code to use widgets.</li>
<li>Added a <a href="http://developers.facebook.com/docs/reference/plugins/like" target="new">Facebook Like button</a>.</li>
<li>Added RSS Button and link.</li>
</ul>
</li>
<li>Copied the index.php from the WordPress sub folder to the root and modified the code to use WordPress from the Sub Folder.</li>
<li>Changed the Site Address within WordPress Admin to set the site in the root while leaving WordPress installed in the sub folder.</li>
<li>Redirected the old pages to the new WordPress pages using PHP header calls.</li>
<li>Installed and setup XML Sitemap Generator for WordPress Plugin</li>
</ol>
<p>ALL DONE !</p>
<p>I copied the old Index file so we can see a before and after look.</p>
<p><a href="http://www.cybercoded.com/index2.php" target="new">Original Page</a> versus <a href="http://www.cybercoded.com" target="new">New WordPress Site</a>.</p>
<p>Most of the time was in the Theme setup. Each page took about 5 minutes to convert the content to a WordPress Post.</p>
<p>12 Pages, 10 hours</p>
<p>Think I will send my wife a bill and see if it gets paid, lol&#8230;</p>
<p><g:plusone></g:plusone>&nbsp;&nbsp;<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="CyberCoder" data-related="DavidCooley">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybercoded.net/static-html-to-wordpress-conversion-case-study/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Weekly CyberCoder Tweets for 2010-04-17</title>
		<link>http://www.cybercoded.net/weekly-cybercoder-tweets-for-2010-04-17/</link>
		<comments>http://www.cybercoded.net/weekly-cybercoder-tweets-for-2010-04-17/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 03:00:00 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Tweets]]></category>

		<guid isPermaLink="false">http://www.cybercoded.net/weekly-cybercoder-tweets-for-2010-04-17/</guid>
		<description><![CDATA[Google XML Sitemaps http://bit.ly/8D3J3i # ProductReviewsBlog http://bit.ly/8bsxsn # Weekly CyberCoder Tweets for 2010-01-17 http://bit.ly/5ojsxU # Fender Limited Edition 3G Android Phone http://bit.ly/5zDGWH # AJAX http://bit.ly/6ynP0V # The poll results are in, web development it is &#124; Wayne John http://bit.ly/5bl4BT # What Time Is It http://bit.ly/7LSVeP # Thumb Drive http://bit.ly/8gN9qy # Hodgkins Cancer http://bit.ly/7ciXSB # Who&#39;s [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Google XML Sitemaps <a href="http://bit.ly/8D3J3i" rel="nofollow">http://bit.ly/8D3J3i</a> <a href="http://twitter.com/cybercoder/statuses/7857726792" class="aktt_tweet_time">#</a></li>
<li>ProductReviewsBlog <a href="http://bit.ly/8bsxsn" rel="nofollow">http://bit.ly/8bsxsn</a> <a href="http://twitter.com/cybercoder/statuses/7862040720" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2010-01-17 <a href="http://bit.ly/5ojsxU" rel="nofollow">http://bit.ly/5ojsxU</a> <a href="http://twitter.com/cybercoder/statuses/7864760053" class="aktt_tweet_time">#</a></li>
<li>Fender Limited Edition 3G Android Phone <a href="http://bit.ly/5zDGWH" rel="nofollow">http://bit.ly/5zDGWH</a> <a href="http://twitter.com/cybercoder/statuses/7866392555" class="aktt_tweet_time">#</a></li>
<li>AJAX <a href="http://bit.ly/6ynP0V" rel="nofollow">http://bit.ly/6ynP0V</a> <a href="http://twitter.com/cybercoder/statuses/7867725239" class="aktt_tweet_time">#</a></li>
<li>The poll results are in, web development it is | Wayne John <a href="http://bit.ly/5bl4BT" rel="nofollow">http://bit.ly/5bl4BT</a> <a href="http://twitter.com/cybercoder/statuses/7867843798" class="aktt_tweet_time">#</a></li>
<li>What Time Is It <a href="http://bit.ly/7LSVeP" rel="nofollow">http://bit.ly/7LSVeP</a> <a href="http://twitter.com/cybercoder/statuses/7874687492" class="aktt_tweet_time">#</a></li>
<li>Thumb Drive <a href="http://bit.ly/8gN9qy" rel="nofollow">http://bit.ly/8gN9qy</a> <a href="http://twitter.com/cybercoder/statuses/7882257316" class="aktt_tweet_time">#</a></li>
<li>Hodgkins Cancer <a href="http://bit.ly/7ciXSB" rel="nofollow">http://bit.ly/7ciXSB</a> <a href="http://twitter.com/cybercoder/statuses/7890740622" class="aktt_tweet_time">#</a></li>
<li>Who&#39;s Amung Us <a href="http://bit.ly/4Zh8fp" rel="nofollow">http://bit.ly/4Zh8fp</a> <a href="http://twitter.com/cybercoder/statuses/7896906986" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/MusicRamble" class="aktt_username">MusicRamble</a> Peter Frampton &amp; Martin Guitars at NAMM 2010 <a href="http://tinyurl.com/y945yxq" rel="nofollow">http://tinyurl.com/y945yxq</a> <a href="http://twitter.com/cybercoder/statuses/7899810390" class="aktt_tweet_time">#</a></li>
<li>PHP Software <a href="http://bit.ly/4mZi7w" rel="nofollow">http://bit.ly/4mZi7w</a> <a href="http://twitter.com/cybercoder/statuses/7901671697" class="aktt_tweet_time">#</a></li>
<li>Five Must-Read Social Media Articles (1/18 Edition) | Folk Media <a href="http://bit.ly/8Bw4Al" rel="nofollow">http://bit.ly/8Bw4Al</a> <a href="http://twitter.com/cybercoder/statuses/7905481449" class="aktt_tweet_time">#</a></li>
<li>WordPress Options <a href="http://bit.ly/4HqHoE" rel="nofollow">http://bit.ly/4HqHoE</a> <a href="http://twitter.com/cybercoder/statuses/7908512668" class="aktt_tweet_time">#</a></li>
<li>Just something I believe in, Attribution <a href="http://bit.ly/4AHoeV" rel="nofollow">http://bit.ly/4AHoeV</a> <a href="http://twitter.com/cybercoder/statuses/7914354014" class="aktt_tweet_time">#</a></li>
<li>Home Network Wireless <a href="http://bit.ly/8o5i3H" rel="nofollow">http://bit.ly/8o5i3H</a> <a href="http://twitter.com/cybercoder/statuses/7916324106" class="aktt_tweet_time">#</a></li>
<li>VOIP <a href="http://bit.ly/5OxQ0J" rel="nofollow">http://bit.ly/5OxQ0J</a> <a href="http://twitter.com/cybercoder/statuses/7924111504" class="aktt_tweet_time">#</a></li>
<li>VOIP Provider <a href="http://bit.ly/7ozZDd" rel="nofollow">http://bit.ly/7ozZDd</a> <a href="http://twitter.com/cybercoder/statuses/7932247962" class="aktt_tweet_time">#</a></li>
<li>YouTube Layout <a href="http://bit.ly/82x9B7" rel="nofollow">http://bit.ly/82x9B7</a> <a href="http://twitter.com/cybercoder/statuses/7938243245" class="aktt_tweet_time">#</a></li>
<li>eBayPartner Network <a href="http://bit.ly/6Lcua1" rel="nofollow">http://bit.ly/6Lcua1</a> <a href="http://twitter.com/cybercoder/statuses/7942900851" class="aktt_tweet_time">#</a></li>
<li>geocaching maps <a href="http://bit.ly/8ZnGTm" rel="nofollow">http://bit.ly/8ZnGTm</a> <a href="http://twitter.com/cybercoder/statuses/7950077720" class="aktt_tweet_time">#</a></li>
<li>Targeting your comment efforts for higher ranks and more traffic | Wayne John <a href="http://bit.ly/85Xe9J" rel="nofollow">http://bit.ly/85Xe9J</a> <a href="http://twitter.com/cybercoder/statuses/7950889660" class="aktt_tweet_time">#</a></li>
<li>All in One SEO Pack <a href="http://bit.ly/5cQxMQ" rel="nofollow">http://bit.ly/5cQxMQ</a> <a href="http://twitter.com/cybercoder/statuses/7957568249" class="aktt_tweet_time">#</a></li>
<li>geocaching logs <a href="http://bit.ly/82wvkC" rel="nofollow">http://bit.ly/82wvkC</a> <a href="http://twitter.com/cybercoder/statuses/7969503622" class="aktt_tweet_time">#</a></li>
<li>Been another long, long day. Not sure how that happens, I know they all have 24 hours int them, but some sure seem looonnggg <a href="http://twitter.com/cybercoder/statuses/7969591933" class="aktt_tweet_time">#</a></li>
<li>Top Commenters <a href="http://bit.ly/7kEhjq" rel="nofollow">http://bit.ly/7kEhjq</a> <a href="http://twitter.com/cybercoder/statuses/7979793675" class="aktt_tweet_time">#</a></li>
<li>Simpsons <a href="http://bit.ly/69tAQj" rel="nofollow">http://bit.ly/69tAQj</a> <a href="http://twitter.com/cybercoder/statuses/7985383312" class="aktt_tweet_time">#</a></li>
<li>Monster energy drink <a href="http://bit.ly/5jFrhY" rel="nofollow">http://bit.ly/5jFrhY</a> <a href="http://twitter.com/cybercoder/statuses/7994186800" class="aktt_tweet_time">#</a></li>
<li>I think Conan and Leno can both go, and just give the whole late night to Craig Ferguson. <a href="http://twitter.com/cybercoder/statuses/7997057357" class="aktt_tweet_time">#</a></li>
<li>Main Stream Media <a href="http://bit.ly/5EJeBV" rel="nofollow">http://bit.ly/5EJeBV</a> <a href="http://twitter.com/cybercoder/statuses/8003592735" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/mashable" class="aktt_username">mashable</a> YouTube Launches Supports for HTML5 <a href="http://ow.ly/1nl1V1" rel="nofollow">http://ow.ly/1nl1V1</a> <a href="http://twitter.com/cybercoder/statuses/8012310249" class="aktt_tweet_time">#</a></li>
<li>Twitter is SMS 2.0. (Scripting News) <a href="http://bit.ly/6ROQqv" rel="nofollow">http://bit.ly/6ROQqv</a> <a href="http://twitter.com/cybercoder/statuses/8012784501" class="aktt_tweet_time">#</a></li>
<li>Unleash The Beast <a href="http://bit.ly/7rDpRn" rel="nofollow">http://bit.ly/7rDpRn</a> <a href="http://twitter.com/cybercoder/statuses/8014171468" class="aktt_tweet_time">#</a></li>
<li>Keywords Software <a href="http://bit.ly/8dHQxx" rel="nofollow">http://bit.ly/8dHQxx</a> <a href="http://twitter.com/cybercoder/statuses/8026169972" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/8028122388" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/mashable" class="aktt_username">mashable</a> Your iTunes Collection Might Soon Live in the Cloud <a href="http://bit.ly/6L7H5Z" rel="nofollow">http://bit.ly/6L7H5Z</a> <a href="http://twitter.com/cybercoder/statuses/8031029720" class="aktt_tweet_time">#</a></li>
<li>Good Article &#8211; How Social Media Helps One Small Business Connect with Fans <a href="http://bit.ly/4IG9jp" rel="nofollow">http://bit.ly/4IG9jp</a> <a href="http://twitter.com/cybercoder/statuses/8034309105" class="aktt_tweet_time">#</a></li>
<li>Borders <a href="http://bit.ly/7eMsAE" rel="nofollow">http://bit.ly/7eMsAE</a> <a href="http://twitter.com/cybercoder/statuses/8035950371" class="aktt_tweet_time">#</a></li>
<li>Digital Video Camera <a href="http://bit.ly/7kSprl" rel="nofollow">http://bit.ly/7kSprl</a> <a href="http://twitter.com/cybercoder/statuses/8045362087" class="aktt_tweet_time">#</a></li>
<li>Learned New Chrome trick, grab a tab and pull it all the way to left, the tab will change to display only the favicon of the page. <a href="http://twitter.com/cybercoder/statuses/8046625450" class="aktt_tweet_time">#</a></li>
<li>Terrorist Surveillance Program <a href="http://bit.ly/8ZR5CX" rel="nofollow">http://bit.ly/8ZR5CX</a> <a href="http://twitter.com/cybercoder/statuses/8056293912" class="aktt_tweet_time">#</a></li>
<li>Google Earth <a href="http://bit.ly/5Jzcq8" rel="nofollow">http://bit.ly/5Jzcq8</a> <a href="http://twitter.com/cybercoder/statuses/8068325761" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> list for this week. <a href="http://bit.ly/5OEcvY" rel="nofollow">http://bit.ly/5OEcvY</a> #<a href="http://search.twitter.com/search?q=%23FF" class="aktt_hashtag">FF</a> <a href="http://twitter.com/cybercoder/statuses/8070643513" class="aktt_tweet_time">#</a></li>
<li>Twitter Blog: The Power of Suggestions <a href="http://bit.ly/5XSye7" rel="nofollow">http://bit.ly/5XSye7</a> <a href="http://twitter.com/cybercoder/statuses/8075950649" class="aktt_tweet_time">#</a></li>
<li>New @<a href="http://twitter.com/Twitter" class="aktt_username">Twitter</a> Suggested Users is an improvement, but why not have a &quot;Search Term&quot; instead of static terms? <a href="http://bit.ly/5XSye7" rel="nofollow">http://bit.ly/5XSye7</a> <a href="http://twitter.com/cybercoder/statuses/8076495567" class="aktt_tweet_time">#</a></li>
<li>Philosophy <a href="http://bit.ly/8YwAKM" rel="nofollow">http://bit.ly/8YwAKM</a> <a href="http://twitter.com/cybercoder/statuses/8078653153" class="aktt_tweet_time">#</a></li>
<li>WP-ContactForm <a href="http://bit.ly/6VIFOe" rel="nofollow">http://bit.ly/6VIFOe</a> <a href="http://twitter.com/cybercoder/statuses/8088159100" class="aktt_tweet_time">#</a></li>
<li>Christmas Trees Sales <a href="http://bit.ly/7s4o6q" rel="nofollow">http://bit.ly/7s4o6q</a> <a href="http://twitter.com/cybercoder/statuses/8098556894" class="aktt_tweet_time">#</a></li>
<li>CyberCoder WordPress Theme <a href="http://bit.ly/6jcolj" rel="nofollow">http://bit.ly/6jcolj</a> <a href="http://twitter.com/cybercoder/statuses/8109954144" class="aktt_tweet_time">#</a></li>
<li>Indianapolis Colts <a href="http://bit.ly/7s51mD" rel="nofollow">http://bit.ly/7s51mD</a> <a href="http://twitter.com/cybercoder/statuses/8118604484" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/8120366682" class="aktt_tweet_time">#</a></li>
<li>PHP Developer <a href="http://bit.ly/4NCZPG" rel="nofollow">http://bit.ly/4NCZPG</a> <a href="http://twitter.com/cybercoder/statuses/8127137339" class="aktt_tweet_time">#</a></li>
<li>Disney <a href="http://bit.ly/4nealb" rel="nofollow">http://bit.ly/4nealb</a> <a href="http://twitter.com/cybercoder/statuses/8136692585" class="aktt_tweet_time">#</a></li>
<li>KISS Principle <a href="http://bit.ly/8NUPwL" rel="nofollow">http://bit.ly/8NUPwL</a> <a href="http://twitter.com/cybercoder/statuses/8148807776" class="aktt_tweet_time">#</a></li>
<li>PHP and WordPress are make it easy, took 5 minutes to write a new AD rotation system on my blog. <a href="http://bit.ly/15OZlr" rel="nofollow">http://bit.ly/15OZlr</a> <a href="http://twitter.com/cybercoder/statuses/8154283933" class="aktt_tweet_time">#</a></li>
<li>My Chemotherapy Experiences <a href="http://bit.ly/6WJTKS" rel="nofollow">http://bit.ly/6WJTKS</a> <a href="http://twitter.com/cybercoder/statuses/8155389502" class="aktt_tweet_time">#</a></li>
<li>Shooting Rampage <a href="http://bit.ly/5Zu0OZ" rel="nofollow">http://bit.ly/5Zu0OZ</a> <a href="http://twitter.com/cybercoder/statuses/8157230188" class="aktt_tweet_time">#</a></li>
<li>Time is still Money <a href="http://bit.ly/4xbwPi" rel="nofollow">http://bit.ly/4xbwPi</a> <a href="http://twitter.com/cybercoder/statuses/8157376145" class="aktt_tweet_time">#</a></li>
<li>Hope the Jets and Saints win so we have the Big Apple vs Big Easy ! <a href="http://twitter.com/cybercoder/statuses/8160425034" class="aktt_tweet_time">#</a></li>
<li>GoDaddy <a href="http://bit.ly/5hfuQY" rel="nofollow">http://bit.ly/5hfuQY</a> <a href="http://twitter.com/cybercoder/statuses/8166815461" class="aktt_tweet_time">#</a></li>
<li>So much for the Big Apple vs Big Easy, lol,   G O   S A I N T S !! <a href="http://twitter.com/cybercoder/statuses/8168222256" class="aktt_tweet_time">#</a></li>
<li>Congrats to the New Orleans Saints, going to their first Super Bowl. Who Dat ! <a href="http://twitter.com/cybercoder/statuses/8176677562" class="aktt_tweet_time">#</a></li>
<li>Genealogy <a href="http://bit.ly/8BRwR2" rel="nofollow">http://bit.ly/8BRwR2</a> <a href="http://twitter.com/cybercoder/statuses/8178504564" class="aktt_tweet_time">#</a></li>
<li>Up early ready to roll for a long day driving. <a href="http://twitter.com/cybercoder/statuses/8189142820" class="aktt_tweet_time">#</a></li>
<li>Just added @<a href="http://twitter.com/lefsetz" class="aktt_username">lefsetz</a> to my Music list <a href="http://bit.ly/5igTN8" rel="nofollow">http://bit.ly/5igTN8</a> <a href="http://twitter.com/cybercoder/statuses/8189759215" class="aktt_tweet_time">#</a></li>
<li>Android <a href="http://bit.ly/8L1bfv" rel="nofollow">http://bit.ly/8L1bfv</a> <a href="http://twitter.com/cybercoder/statuses/8190736333" class="aktt_tweet_time">#</a></li>
<li>Asthma Inhaler <a href="http://bit.ly/68rXo2" rel="nofollow">http://bit.ly/68rXo2</a> <a href="http://twitter.com/cybercoder/statuses/8200985514" class="aktt_tweet_time">#</a></li>
<li>eBayPartner Network <a href="http://bit.ly/6Lcua1" rel="nofollow">http://bit.ly/6Lcua1</a> <a href="http://twitter.com/cybercoder/statuses/8210968731" class="aktt_tweet_time">#</a></li>
<li>CSI Miami <a href="http://bit.ly/7gSNbQ" rel="nofollow">http://bit.ly/7gSNbQ</a> <a href="http://twitter.com/cybercoder/statuses/8221618607" class="aktt_tweet_time">#</a></li>
<li>GTalk <a href="http://bit.ly/6ib2Fi" rel="nofollow">http://bit.ly/6ib2Fi</a> <a href="http://twitter.com/cybercoder/statuses/8234157369" class="aktt_tweet_time">#</a></li>
<li>Twitter Unveils Plan For Chirp, Its First Developer Conference <a href="http://bit.ly/cNYlHz" rel="nofollow">http://bit.ly/cNYlHz</a> <a href="http://twitter.com/cybercoder/statuses/8243382257" class="aktt_tweet_time">#</a></li>
<li>Chemotherapy Experience <a href="http://bit.ly/aoLn3K" rel="nofollow">http://bit.ly/aoLn3K</a> <a href="http://twitter.com/cybercoder/statuses/8244574428" class="aktt_tweet_time">#</a></li>
<li>NewsCorp <a href="http://bit.ly/aTBaMW" rel="nofollow">http://bit.ly/aTBaMW</a> <a href="http://twitter.com/cybercoder/statuses/8254570077" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/8258913117" class="aktt_tweet_time">#</a></li>
<li>Southern Pecan Beer <a href="http://bit.ly/dtX5kn" rel="nofollow">http://bit.ly/dtX5kn</a> <a href="http://twitter.com/cybercoder/statuses/8265531192" class="aktt_tweet_time">#</a></li>
<li>Dreamhost <a href="http://bit.ly/9Oa093" rel="nofollow">http://bit.ly/9Oa093</a> <a href="http://twitter.com/cybercoder/statuses/8278023204" class="aktt_tweet_time">#</a></li>
<li>1968 Mustang <a href="http://bit.ly/bscNLh" rel="nofollow">http://bit.ly/bscNLh</a> <a href="http://twitter.com/cybercoder/statuses/8288004222" class="aktt_tweet_time">#</a></li>
<li>Started out from Victoria, Tx headed home to Mississippi at 6am <a href="http://twitter.com/cybercoder/statuses/8289102306" class="aktt_tweet_time">#</a></li>
<li>Old van my Dad left me broke down in Sugarland, Tx <a href="http://twitter.com/cybercoder/statuses/8289175049" class="aktt_tweet_time">#</a></li>
<li>Had van towed to Uhaul, rented small truck, sold van to Mr Hernandez <a href="http://twitter.com/cybercoder/statuses/8289328962" class="aktt_tweet_time">#</a></li>
<li>On the road again! <a href="http://twitter.com/cybercoder/statuses/8289450103" class="aktt_tweet_time">#</a></li>
<li>Tiga <a href="http://bit.ly/bExER0" rel="nofollow">http://bit.ly/bExER0</a> <a href="http://twitter.com/cybercoder/statuses/8298447886" class="aktt_tweet_time">#</a></li>
<li>Burn Calories <a href="http://bit.ly/c2SLIg" rel="nofollow">http://bit.ly/c2SLIg</a> <a href="http://twitter.com/cybercoder/statuses/8308793924" class="aktt_tweet_time">#</a></li>
<li>HP 311 <a href="http://bit.ly/ct2pKF" rel="nofollow">http://bit.ly/ct2pKF</a> <a href="http://twitter.com/cybercoder/statuses/8321537236" class="aktt_tweet_time">#</a></li>
<li>Apple iPad | Daily Rover <a href="http://bit.ly/bovZSG" rel="nofollow">http://bit.ly/bovZSG</a> <a href="http://twitter.com/cybercoder/statuses/8327144333" class="aktt_tweet_time">#</a></li>
<li>NFL Football <a href="http://bit.ly/aFRsbh" rel="nofollow">http://bit.ly/aFRsbh</a> <a href="http://twitter.com/cybercoder/statuses/8332216089" class="aktt_tweet_time">#</a></li>
<li>Web Search <a href="http://bit.ly/9Jpay7" rel="nofollow">http://bit.ly/9Jpay7</a> <a href="http://twitter.com/cybercoder/statuses/8342307464" class="aktt_tweet_time">#</a></li>
<li>NFL Network <a href="http://bit.ly/bS5qR0" rel="nofollow">http://bit.ly/bS5qR0</a> <a href="http://twitter.com/cybercoder/statuses/8353448691" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/MusicRamble" class="aktt_username">MusicRamble</a> Experience Hendrix Tour <a href="http://bit.ly/9qp6wS" rel="nofollow">http://bit.ly/9qp6wS</a> <a href="http://twitter.com/cybercoder/statuses/8368617218" class="aktt_tweet_time">#</a></li>
<li>David Cooley &#8211; Google Profile <a href="http://bit.ly/aeyWjK" rel="nofollow">http://bit.ly/aeyWjK</a> <a href="http://twitter.com/cybercoder/statuses/8372111881" class="aktt_tweet_time">#</a></li>
<li>Friday again, already? #<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> List <a href="http://bit.ly/5OEcvY" rel="nofollow">http://bit.ly/5OEcvY</a> #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/8372975551" class="aktt_tweet_time">#</a></li>
<li>Facebook | CyberCoder <a href="http://bit.ly/2uspQc" rel="nofollow">http://bit.ly/2uspQc</a> <a href="http://twitter.com/cybercoder/statuses/8373150554" class="aktt_tweet_time">#</a></li>
<li>Drums &#8211; Drum Rover <a href="http://bit.ly/aDjpu0" rel="nofollow">http://bit.ly/aDjpu0</a> <a href="http://twitter.com/cybercoder/statuses/8376038356" class="aktt_tweet_time">#</a></li>
<li>Men <a href="http://bit.ly/a2zmsa" rel="nofollow">http://bit.ly/a2zmsa</a> <a href="http://twitter.com/cybercoder/statuses/8377737691" class="aktt_tweet_time">#</a></li>
<li>Google Vehicles <a href="http://bit.ly/ccqYa4" rel="nofollow">http://bit.ly/ccqYa4</a> <a href="http://twitter.com/cybercoder/statuses/8387940018" class="aktt_tweet_time">#</a></li>
<li>Energy Efficient Cars <a href="http://bit.ly/c11gWe" rel="nofollow">http://bit.ly/c11gWe</a> <a href="http://twitter.com/cybercoder/statuses/8398387106" class="aktt_tweet_time">#</a></li>
<li>Mandolin Ramble <a href="http://bit.ly/ah6U8Q" rel="nofollow">http://bit.ly/ah6U8Q</a> <a href="http://twitter.com/cybercoder/statuses/8407132552" class="aktt_tweet_time">#</a></li>
<li>Mark Lucovsky <a href="http://bit.ly/d8Dkht" rel="nofollow">http://bit.ly/d8Dkht</a> <a href="http://twitter.com/cybercoder/statuses/8410540293" class="aktt_tweet_time">#</a></li>
<li>Just what I need a 4 hour sleep night, lol&#8230; <a href="http://twitter.com/cybercoder/statuses/8412019767" class="aktt_tweet_time">#</a></li>
<li>Mobile Plugin for WordPress <a href="http://bit.ly/9loqTn" rel="nofollow">http://bit.ly/9loqTn</a> <a href="http://twitter.com/cybercoder/statuses/8413488664" class="aktt_tweet_time">#</a></li>
<li>Election <a href="http://bit.ly/9erhGl" rel="nofollow">http://bit.ly/9erhGl</a> <a href="http://twitter.com/cybercoder/statuses/8419636460" class="aktt_tweet_time">#</a></li>
<li>Emerging Media Specialist Information <a href="http://bit.ly/dx3X5S" rel="nofollow">http://bit.ly/dx3X5S</a> <a href="http://twitter.com/cybercoder/statuses/8421121258" class="aktt_tweet_time">#</a></li>
<li>Removing the &quot;An automated WordPress update has failed to complete&quot; message | Wayne John <a href="http://bit.ly/akR6OF" rel="nofollow">http://bit.ly/akR6OF</a> <a href="http://twitter.com/cybercoder/statuses/8426469145" class="aktt_tweet_time">#</a></li>
<li>If you need images, Fotolia has excellent images at great prices. <a href="http://bit.ly/dyb8TM" rel="nofollow">http://bit.ly/dyb8TM</a> <a href="http://twitter.com/cybercoder/statuses/8426819715" class="aktt_tweet_time">#</a></li>
<li>Wireless Networking <a href="http://bit.ly/aYbHl0" rel="nofollow">http://bit.ly/aYbHl0</a> <a href="http://twitter.com/cybercoder/statuses/8428499418" class="aktt_tweet_time">#</a></li>
<li>USG Sheetrock 400 <a href="http://bit.ly/cSD5FO" rel="nofollow">http://bit.ly/cSD5FO</a> <a href="http://twitter.com/cybercoder/statuses/8438579072" class="aktt_tweet_time">#</a></li>
<li>Digital Video Camera <a href="http://bit.ly/7kSprl" rel="nofollow">http://bit.ly/7kSprl</a> <a href="http://twitter.com/cybercoder/statuses/8451348812" class="aktt_tweet_time">#</a></li>
<li>Bill Clements <a href="http://bit.ly/bfIlzc" rel="nofollow">http://bit.ly/bfIlzc</a> <a href="http://twitter.com/cybercoder/statuses/8460251537" class="aktt_tweet_time">#</a></li>
<li>Mobile <a href="http://bit.ly/9Yqftz" rel="nofollow">http://bit.ly/9Yqftz</a> <a href="http://twitter.com/cybercoder/statuses/8469825119" class="aktt_tweet_time">#</a></li>
<li>Conservative <a href="http://bit.ly/b5SvYH" rel="nofollow">http://bit.ly/b5SvYH</a> <a href="http://twitter.com/cybercoder/statuses/8483738825" class="aktt_tweet_time">#</a></li>
<li>Extra Income Online <a href="http://bit.ly/980bYD" rel="nofollow">http://bit.ly/980bYD</a> <a href="http://twitter.com/cybercoder/statuses/8497463904" class="aktt_tweet_time">#</a></li>
<li>Grammy Awards 2010 | Music Ramble <a href="http://bit.ly/9Q93O4" rel="nofollow">http://bit.ly/9Q93O4</a> <a href="http://twitter.com/cybercoder/statuses/8503895338" class="aktt_tweet_time">#</a></li>
<li>Wimbledon <a href="http://bit.ly/c1Ar5z" rel="nofollow">http://bit.ly/c1Ar5z</a> <a href="http://twitter.com/cybercoder/statuses/8507852305" class="aktt_tweet_time">#</a></li>
<li>Just doing a little online shopping, thinking about buying a Mandolin <a href="http://bit.ly/ah6U8Q" rel="nofollow">http://bit.ly/ah6U8Q</a> <a href="http://twitter.com/cybercoder/statuses/8509140948" class="aktt_tweet_time">#</a></li>
<li>Wifi for Dummies <a href="http://bit.ly/cjIhjW" rel="nofollow">http://bit.ly/cjIhjW</a> <a href="http://twitter.com/cybercoder/statuses/8517753361" class="aktt_tweet_time">#</a></li>
<li>Chromium Blog: 40,000 More Extensions! <a href="http://bit.ly/a2IWYQ" rel="nofollow">http://bit.ly/a2IWYQ</a> <a href="http://twitter.com/cybercoder/statuses/8518818012" class="aktt_tweet_time">#</a></li>
<li>Official Gmail Blog: Gmail Chrome extensions <a href="http://bit.ly/cZY65T" rel="nofollow">http://bit.ly/cZY65T</a> <a href="http://twitter.com/cybercoder/statuses/8518877634" class="aktt_tweet_time">#</a></li>
<li>Another one of my favorite WordPress Plugins, PHP Code Widget <a href="http://bit.ly/10iras" rel="nofollow">http://bit.ly/10iras</a> <a href="http://twitter.com/cybercoder/statuses/8522633731" class="aktt_tweet_time">#</a></li>
<li>Pickup Truck <a href="http://bit.ly/96kuJO" rel="nofollow">http://bit.ly/96kuJO</a> <a href="http://twitter.com/cybercoder/statuses/8528604186" class="aktt_tweet_time">#</a></li>
<li>Ajax Programming <a href="http://bit.ly/cJDTlm" rel="nofollow">http://bit.ly/cJDTlm</a> <a href="http://twitter.com/cybercoder/statuses/8541300191" class="aktt_tweet_time">#</a></li>
<li>Middle East <a href="http://bit.ly/a36tUf" rel="nofollow">http://bit.ly/a36tUf</a> <a href="http://twitter.com/cybercoder/statuses/8551893194" class="aktt_tweet_time">#</a></li>
<li>Google’s Social Search – Affecting a SERP Near You <a href="http://bit.ly/avTVuJ" rel="nofollow">http://bit.ly/avTVuJ</a> <a href="http://twitter.com/cybercoder/statuses/8560904844" class="aktt_tweet_time">#</a></li>
<li>GoDaddy <a href="http://bit.ly/5hfuQY" rel="nofollow">http://bit.ly/5hfuQY</a> <a href="http://twitter.com/cybercoder/statuses/8562150195" class="aktt_tweet_time">#</a></li>
<li>Whoever hijacked @<a href="http://twitter.com/JacksonMetro" class="aktt_username">JacksonMetro</a> from my wife, give it back! The email was changed, so we can not login or retrieve it. <a href="http://twitter.com/cybercoder/statuses/8563924993" class="aktt_tweet_time">#</a></li>
<li>Personal Assistant, Virtual Or On Site, experience in Residential Real Estate. Both listing and closing. <a href="http://bit.ly/dsPmoZ" rel="nofollow">http://bit.ly/dsPmoZ</a> <a href="http://twitter.com/cybercoder/statuses/8571831754" class="aktt_tweet_time">#</a></li>
<li>Washington Redskins <a href="http://bit.ly/bv0IeF" rel="nofollow">http://bit.ly/bv0IeF</a> <a href="http://twitter.com/cybercoder/statuses/8573671690" class="aktt_tweet_time">#</a></li>
<li>PHP Programming <a href="http://bit.ly/cuIEuL" rel="nofollow">http://bit.ly/cuIEuL</a> <a href="http://twitter.com/cybercoder/statuses/8586530614" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/8590244211" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://fb.me/57WuQ4D" rel="nofollow">http://fb.me/57WuQ4D</a> <a href="http://twitter.com/cybercoder/statuses/8590298394" class="aktt_tweet_time">#</a></li>
<li>CyberCoder &#8211; FriendFeed <a href="http://bit.ly/aoFVfH" rel="nofollow">http://bit.ly/aoFVfH</a> <a href="http://twitter.com/cybercoder/statuses/8591443612" class="aktt_tweet_time">#</a></li>
<li>Classic Rock and Roll Music brought to you by a couple real music geeks!  <a href="http://bit.ly/d2l2uY" rel="nofollow">http://bit.ly/d2l2uY</a> <a href="http://twitter.com/cybercoder/statuses/8593595911" class="aktt_tweet_time">#</a></li>
<li>Weather Channel <a href="http://bit.ly/ai469J" rel="nofollow">http://bit.ly/ai469J</a> <a href="http://twitter.com/cybercoder/statuses/8607298249" class="aktt_tweet_time">#</a></li>
<li>Super Bowl weekend Trivia Contest coming with Namecheap on Twitter. Win Domain Registrations and/or an Apple iPad. <a href="http://fb.me/505DmIA" rel="nofollow">http://fb.me/505DmIA</a> <a href="http://twitter.com/cybercoder/statuses/8612390918" class="aktt_tweet_time">#</a></li>
<li>Google BlogBar <a href="http://bit.ly/cIQtsh" rel="nofollow">http://bit.ly/cIQtsh</a> <a href="http://twitter.com/cybercoder/statuses/8631038431" class="aktt_tweet_time">#</a></li>
<li>No surprise, iPad is not available yet, but  lots of IPad Domain Names and Email addresses for sale <a href="http://bit.ly/at0wjh" rel="nofollow">http://bit.ly/at0wjh</a> <a href="http://twitter.com/cybercoder/statuses/8632539219" class="aktt_tweet_time">#</a></li>
<li>New Orleans Saints Shopping Page <a href="http://bit.ly/bL4jqM" rel="nofollow">http://bit.ly/bL4jqM</a> <a href="http://twitter.com/cybercoder/statuses/8641490349" class="aktt_tweet_time">#</a></li>
<li>Apple  Drops VoIP-over-3G Restrictions on the iPhone <a href="http://bit.ly/cMxtEm" rel="nofollow">http://bit.ly/cMxtEm</a> <a href="http://twitter.com/cybercoder/statuses/8643809423" class="aktt_tweet_time">#</a></li>
<li>Is Google’s One Trick Pony About To Be Euthanized by Microsoft &#8211; ShoeMoney® <a href="http://bit.ly/bmF3XA" rel="nofollow">http://bit.ly/bmF3XA</a> <a href="http://twitter.com/cybercoder/statuses/8644746675" class="aktt_tweet_time">#</a></li>
<li>Just installed the SEO Chrome Extension from @<a href="http://twitter.com/MarketingAbuse" class="aktt_username">MarketingAbuse</a>, looks pretty good. <a href="http://twitter.com/cybercoder/statuses/8646032603" class="aktt_tweet_time">#</a></li>
<li>Since @<a href="http://twitter.com/Facebook" class="aktt_username">Facebook</a> has blocked access to its website via Google Chrome Extensions, are they going to develop one? <a href="http://twitter.com/cybercoder/statuses/8646190047" class="aktt_tweet_time">#</a></li>
<li>Facebook Could Eat the Web &#8211; The Steve Rubel Lifestream <a href="http://bit.ly/dbY5R8" rel="nofollow">http://bit.ly/dbY5R8</a> <a href="http://twitter.com/cybercoder/statuses/8648700923" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/8650081881" class="aktt_tweet_time">#</a></li>
<li>Gothic Google <a href="http://bit.ly/c6FZ4j" rel="nofollow">http://bit.ly/c6FZ4j</a> <a href="http://twitter.com/cybercoder/statuses/8651771602" class="aktt_tweet_time">#</a></li>
<li>Darren Rowse <a href="http://bit.ly/9stLEh" rel="nofollow">http://bit.ly/9stLEh</a> <a href="http://twitter.com/cybercoder/statuses/8675975501" class="aktt_tweet_time">#</a></li>
<li>Top 5 Ways Not to Be Annoying on Twitter : The World :: American Express OPEN Forum <a href="http://bit.ly/apR2Rp" rel="nofollow">http://bit.ly/apR2Rp</a> <a href="http://twitter.com/cybercoder/statuses/8678020490" class="aktt_tweet_time">#</a></li>
<li>Baseball Analogy of Blogging <a href="http://bit.ly/bT7ic2" rel="nofollow">http://bit.ly/bT7ic2</a> <a href="http://twitter.com/cybercoder/statuses/8685909705" class="aktt_tweet_time">#</a></li>
<li>My special SuperBowl Weekend #<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> list <a href="http://bit.ly/5OEcvY" rel="nofollow">http://bit.ly/5OEcvY</a> <a href="http://twitter.com/cybercoder/statuses/8686507254" class="aktt_tweet_time">#</a></li>
<li>Web 2.0 gone bad? @<a href="http://twitter.com/NFL" class="aktt_username">NFL</a> has a page just for the hashtag #<a href="http://search.twitter.com/search?q=%23SB44" class="aktt_hashtag">SB44</a>  looks cool but where is the function? <a href="http://bit.ly/d0MFdb" rel="nofollow">http://bit.ly/d0MFdb</a> <a href="http://twitter.com/cybercoder/statuses/8688084476" class="aktt_tweet_time">#</a></li>
<li>Android <a href="http://bit.ly/8L1bfv" rel="nofollow">http://bit.ly/8L1bfv</a> <a href="http://twitter.com/cybercoder/statuses/8697515984" class="aktt_tweet_time">#</a></li>
<li>Super Bowl XLIV &#8211; I have not looked forward to a Super Bowl this much in a long time. Yes, since the last time the &#8230; <a href="http://ow.ly/16vGTT" rel="nofollow">http://ow.ly/16vGTT</a> <a href="http://twitter.com/cybercoder/statuses/8700804830" class="aktt_tweet_time">#</a></li>
<li>Blog Flipping <a href="http://bit.ly/9Z11PN" rel="nofollow">http://bit.ly/9Z11PN</a> <a href="http://twitter.com/cybercoder/statuses/8721099318" class="aktt_tweet_time">#</a></li>
<li>Seem to be having a problem tweets not showing up right. <a href="http://twitter.com/cybercoder/statuses/8723929100" class="aktt_tweet_time">#</a></li>
<li>teaching analogies <a href="http://bit.ly/dyDGIe" rel="nofollow">http://bit.ly/dyDGIe</a> <a href="http://twitter.com/cybercoder/statuses/8739995545" class="aktt_tweet_time">#</a></li>
<li>Home Network Wiring <a href="http://bit.ly/b8Q3hm" rel="nofollow">http://bit.ly/b8Q3hm</a> <a href="http://twitter.com/cybercoder/statuses/8763509687" class="aktt_tweet_time">#</a></li>
<li>So tired, been trying to wake up each hour to keep up with the @<a href="http://twitter.com/NameCheap" class="aktt_username">NameCheap</a> Contest. <a href="http://twitter.com/cybercoder/statuses/8765073202" class="aktt_tweet_time">#</a></li>
<li>Search &amp; Watch Videos @ <a href="http://video.ihackers.net/" rel="nofollow">http://video.ihackers.net/</a> (SuperBowl: <a href="http://video.ihackers.net/superbowl.html)" rel="nofollow">http://video.ihackers.net/superbowl.html)</a> #<a href="http://search.twitter.com/search?q=%23superbowl" class="aktt_hashtag">superbowl</a> #colts #<a href="http://search.twitter.com/search?q=%23saints" class="aktt_hashtag">saints</a> <a href="http://twitter.com/cybercoder/statuses/8772515428" class="aktt_tweet_time">#</a></li>
<li>I use @<a href="http://twitter.com/NameCheap" class="aktt_username">NameCheap</a> for all domain registrations. Interface is quick and easy, including push functionality. <a href="http://bit.ly/1aj7ZL" rel="nofollow">http://bit.ly/1aj7ZL</a> <a href="http://twitter.com/cybercoder/statuses/8773761652" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/8779726357" class="aktt_tweet_time">#</a></li>
<li>eBooks <a href="http://bit.ly/9PoYfN" rel="nofollow">http://bit.ly/9PoYfN</a> <a href="http://twitter.com/cybercoder/statuses/8782910023" class="aktt_tweet_time">#</a></li>
<li>W H O  D A T ! ! <a href="http://twitter.com/cybercoder/statuses/8792438569" class="aktt_tweet_time">#</a></li>
<li>Yahoo <a href="http://bit.ly/cV0xHf" rel="nofollow">http://bit.ly/cV0xHf</a> <a href="http://twitter.com/cybercoder/statuses/8808034326" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/8812263199" class="aktt_tweet_time">#</a></li>
<li>AT&amp;T <a href="http://bit.ly/9D15EZ" rel="nofollow">http://bit.ly/9D15EZ</a> <a href="http://twitter.com/cybercoder/statuses/8828838039" class="aktt_tweet_time">#</a></li>
<li>YouTube Channel <a href="http://bit.ly/9C1gmV" rel="nofollow">http://bit.ly/9C1gmV</a> <a href="http://twitter.com/cybercoder/statuses/8853436952" class="aktt_tweet_time">#</a></li>
<li>Chrome support for Greasemonkey <a href="http://bit.ly/ddPrjt" rel="nofollow">http://bit.ly/ddPrjt</a> <a href="http://twitter.com/cybercoder/statuses/8855185729" class="aktt_tweet_time">#</a></li>
<li>Google Buzz | CyberCoded <a href="http://bit.ly/cF5Jwg" rel="nofollow">http://bit.ly/cF5Jwg</a> <a href="http://twitter.com/cybercoder/statuses/8870207815" class="aktt_tweet_time">#</a></li>
<li>Official Google Reader Blog: Readers: Get your Buzz on <a href="http://bit.ly/aWkehG" rel="nofollow">http://bit.ly/aWkehG</a> <a href="http://twitter.com/cybercoder/statuses/8870862296" class="aktt_tweet_time">#</a></li>
<li>Database <a href="http://bit.ly/aKso1y" rel="nofollow">http://bit.ly/aKso1y</a> <a href="http://twitter.com/cybercoder/statuses/8875159518" class="aktt_tweet_time">#</a></li>
<li>NewsCorp <a href="http://bit.ly/aTBaMW" rel="nofollow">http://bit.ly/aTBaMW</a> <a href="http://twitter.com/cybercoder/statuses/8900340513" class="aktt_tweet_time">#</a></li>
<li>Google Buzz <a href="http://bit.ly/cF5Jwg" rel="nofollow">http://bit.ly/cF5Jwg</a> <a href="http://twitter.com/cybercoder/statuses/8909820793" class="aktt_tweet_time">#</a></li>
<li>I have Google Buzz going to Facebook, now I just need to fix the connection to Twitter <a href="http://bit.ly/2uspQc" rel="nofollow">http://bit.ly/2uspQc</a> <a href="http://twitter.com/cybercoder/statuses/8910660273" class="aktt_tweet_time">#</a></li>
<li>Contextual Advertising <a href="http://bit.ly/dzBlMA" rel="nofollow">http://bit.ly/dzBlMA</a> <a href="http://twitter.com/cybercoder/statuses/8923433817" class="aktt_tweet_time">#</a></li>
<li>Spent a little time looking at Google Buzz, has potential, but really needs some work #<a href="http://search.twitter.com/search?q=%23googlebuzz" class="aktt_hashtag">googlebuzz</a> <a href="http://twitter.com/cybercoder/statuses/8942954379" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/8958871615" class="aktt_tweet_time">#</a></li>
<li>Google needs to adjust some things. Google Wave is too slow, and Google Buzz is too fast. <a href="http://fb.me/5hFil8W" rel="nofollow">http://fb.me/5hFil8W</a> <a href="http://twitter.com/cybercoder/statuses/8960530449" class="aktt_tweet_time">#</a></li>
<li>Google Trends <a href="http://bit.ly/bV3Za0" rel="nofollow">http://bit.ly/bV3Za0</a> <a href="http://twitter.com/cybercoder/statuses/8982007092" class="aktt_tweet_time">#</a></li>
<li>PageRank <a href="http://bit.ly/asRf7r" rel="nofollow">http://bit.ly/asRf7r</a> <a href="http://twitter.com/cybercoder/statuses/9007490842" class="aktt_tweet_time">#</a></li>
<li>David Cooley &#8211; Google Profile <a href="http://bit.ly/aeyWjK" rel="nofollow">http://bit.ly/aeyWjK</a> <a href="http://twitter.com/cybercoder/statuses/9014210074" class="aktt_tweet_time">#</a></li>
<li>Buzz Shortcut Keys <a href="http://bit.ly/9xYBJ8" rel="nofollow">http://bit.ly/9xYBJ8</a> <a href="http://twitter.com/cybercoder/statuses/9019658849" class="aktt_tweet_time">#</a></li>
<li>Here are the Google Buzz Shortcut Keys I have found. <a href="http://fb.me/5kTaj1B" rel="nofollow">http://fb.me/5kTaj1B</a> <a href="http://twitter.com/cybercoder/statuses/9019836700" class="aktt_tweet_time">#</a></li>
<li>Google Promote <a href="http://bit.ly/cMGMdP" rel="nofollow">http://bit.ly/cMGMdP</a> <a href="http://twitter.com/cybercoder/statuses/9029832530" class="aktt_tweet_time">#</a></li>
<li>Google May Offer Buzz Independently From Gmail <a href="http://selnd.com/9oirpf" rel="nofollow">http://selnd.com/9oirpf</a> <a href="http://twitter.com/cybercoder/statuses/9031838445" class="aktt_tweet_time">#</a></li>
<li>Dear Google Buzz: 4 Features You Need to Add Now <a href="http://bit.ly/bjMgrh" rel="nofollow">http://bit.ly/bjMgrh</a> <a href="http://twitter.com/cybercoder/statuses/9031851785" class="aktt_tweet_time">#</a></li>
<li>Blogger SEO <a href="http://bit.ly/99R627" rel="nofollow">http://bit.ly/99R627</a> <a href="http://twitter.com/cybercoder/statuses/9054517397" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/9055198095" class="aktt_tweet_time">#</a></li>
<li><a href="http://fb.me/5qZnv0V" rel="nofollow">http://fb.me/5qZnv0V</a> <a href="http://twitter.com/cybercoder/statuses/9058795141" class="aktt_tweet_time">#</a></li>
<li>Twitter Tools <a href="http://bit.ly/d6nqit" rel="nofollow">http://bit.ly/d6nqit</a> <a href="http://twitter.com/cybercoder/statuses/9073703578" class="aktt_tweet_time">#</a></li>
<li>Heat Maps <a href="http://bit.ly/9U5n7k" rel="nofollow">http://bit.ly/9U5n7k</a> <a href="http://twitter.com/cybercoder/statuses/9097172049" class="aktt_tweet_time">#</a></li>
<li>Official Gmail Blog: A new Buzz start-up experience based on your feedback <a href="http://bit.ly/aYFl0U" rel="nofollow">http://bit.ly/aYFl0U</a> <a href="http://twitter.com/cybercoder/statuses/9114329410" class="aktt_tweet_time">#</a></li>
<li>Netbook <a href="http://bit.ly/a5zyoW" rel="nofollow">http://bit.ly/a5zyoW</a> <a href="http://twitter.com/cybercoder/statuses/9115757871" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/NascarList" class="aktt_username">NascarList</a> @DanicaPatrick was just added to the Nascar Twitter List @ <a href="http://bit.ly/wWK5O" rel="nofollow">http://bit.ly/wWK5O</a> #<a href="http://search.twitter.com/search?q=%23nascar" class="aktt_hashtag">nascar</a> <a href="http://twitter.com/cybercoder/statuses/9116411600" class="aktt_tweet_time">#</a></li>
<li>Sysinternals <a href="http://bit.ly/btdHyx" rel="nofollow">http://bit.ly/btdHyx</a> <a href="http://twitter.com/cybercoder/statuses/9139200556" class="aktt_tweet_time">#</a></li>
<li>Twitter <a href="http://bit.ly/aKLnLn" rel="nofollow">http://bit.ly/aKLnLn</a> <a href="http://twitter.com/cybercoder/statuses/9183843291" class="aktt_tweet_time">#</a></li>
<li>Highly recommend Stor-it Storage Kings, Self Storage &#8211; Flowood, MS  @<a href="http://twitter.com/StorItStorage" class="aktt_username">StorItStorage</a> <a href="http://bit.ly/ah19Xt" rel="nofollow">http://bit.ly/ah19Xt</a> <a href="http://twitter.com/cybercoder/statuses/9187362495" class="aktt_tweet_time">#</a></li>
<li>Several clients and friends have told me they are seeing a fall off in their Twitter traffic. I am not seeing the&#8230; <a href="http://fb.me/5Wbt2Vg" rel="nofollow">http://fb.me/5Wbt2Vg</a> <a href="http://twitter.com/cybercoder/statuses/9193909157" class="aktt_tweet_time">#</a></li>
<li>What Is A Klout Score? <a href="http://bit.ly/drkKh4" rel="nofollow">http://bit.ly/drkKh4</a> <a href="http://twitter.com/cybercoder/statuses/9196305074" class="aktt_tweet_time">#</a></li>
<li>340,000 Facebook Fans Want Betty White to Host SNL <a href="http://bit.ly/aaSHiT" rel="nofollow">http://bit.ly/aaSHiT</a> <a href="http://twitter.com/cybercoder/statuses/9196834067" class="aktt_tweet_time">#</a></li>
<li>Buzzzy &#8211; A Search Engine for Buzz. <a href="http://bit.ly/bASq7u" rel="nofollow">http://bit.ly/bASq7u</a> <a href="http://twitter.com/cybercoder/statuses/9200521138" class="aktt_tweet_time">#</a></li>
<li>Redneck Google <a href="http://bit.ly/c9sZ4Y" rel="nofollow">http://bit.ly/c9sZ4Y</a> <a href="http://twitter.com/cybercoder/statuses/9206481493" class="aktt_tweet_time">#</a></li>
<li>Facebook Drives 44 Percent Of Social Sharing On The Web  <a href="http://tcrn.ch/bRo9Dx" rel="nofollow">http://tcrn.ch/bRo9Dx</a> <a href="http://twitter.com/cybercoder/statuses/9210393439" class="aktt_tweet_time">#</a></li>
<li>GTalk <a href="http://bit.ly/6ib2Fi" rel="nofollow">http://bit.ly/6ib2Fi</a> <a href="http://twitter.com/cybercoder/statuses/9232602276" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/9234749629" class="aktt_tweet_time">#</a></li>
<li>Buzz rankings and lists are popping up everywhere, looks like Google may have gotten Buzz off to a better start&#8230; <a href="http://fb.me/5UacvL7" rel="nofollow">http://fb.me/5UacvL7</a> <a href="http://twitter.com/cybercoder/statuses/9239403639" class="aktt_tweet_time">#</a></li>
<li>Google Voice Blog: Google Voice for iPhone and Palm WebOS <a href="http://bit.ly/axwFp9" rel="nofollow">http://bit.ly/axwFp9</a> <a href="http://twitter.com/cybercoder/statuses/9240157799" class="aktt_tweet_time">#</a></li>
<li>Looks like Google made this acquisition for the talent alone as the reMail app will be shutdown and the reMail team&#8230; <a href="http://fb.me/62fQ61X" rel="nofollow">http://fb.me/62fQ61X</a> <a href="http://twitter.com/cybercoder/statuses/9254194177" class="aktt_tweet_time">#</a></li>
<li>Webmaster <a href="http://bit.ly/ag9B5p" rel="nofollow">http://bit.ly/ag9B5p</a> <a href="http://twitter.com/cybercoder/statuses/9255658819" class="aktt_tweet_time">#</a></li>
<li>Easter <a href="http://bit.ly/c2CL6U" rel="nofollow">http://bit.ly/c2CL6U</a> <a href="http://twitter.com/cybercoder/statuses/9282343439" class="aktt_tweet_time">#</a></li>
<li>Mardi Gras Music | Music Ramble <a href="http://bit.ly/cdXSGr" rel="nofollow">http://bit.ly/cdXSGr</a> <a href="http://twitter.com/cybercoder/statuses/9284778829" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/9286204544" class="aktt_tweet_time">#</a></li>
<li>Al Gore <a href="http://bit.ly/ayLFLH" rel="nofollow">http://bit.ly/ayLFLH</a> <a href="http://twitter.com/cybercoder/statuses/9305915972" class="aktt_tweet_time">#</a></li>
<li>Google Buzz: What is it good for? &#8211; CNN.com <a href="http://bit.ly/d6lnqW" rel="nofollow">http://bit.ly/d6lnqW</a> <a href="http://twitter.com/cybercoder/statuses/9316000700" class="aktt_tweet_time">#</a></li>
<li>Make Money Online <a href="http://bit.ly/bcyHOq" rel="nofollow">http://bit.ly/bcyHOq</a> <a href="http://twitter.com/cybercoder/statuses/9333397461" class="aktt_tweet_time">#</a></li>
<li>Updated CyberCoder #<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> List <a href="http://bit.ly/5OEcvY" rel="nofollow">http://bit.ly/5OEcvY</a> <a href="http://twitter.com/cybercoder/statuses/9335574889" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/9340835694" class="aktt_tweet_time">#</a></li>
<li>Feedburner <a href="http://bit.ly/axsk4k" rel="nofollow">http://bit.ly/axsk4k</a> <a href="http://twitter.com/cybercoder/statuses/9357040677" class="aktt_tweet_time">#</a></li>
<li>GSiteCrawler <a href="http://bit.ly/cGIHNh" rel="nofollow">http://bit.ly/cGIHNh</a> <a href="http://twitter.com/cybercoder/statuses/9382326414" class="aktt_tweet_time">#</a></li>
<li>Blogging Humor <a href="http://bit.ly/bvT3ff" rel="nofollow">http://bit.ly/bvT3ff</a> <a href="http://twitter.com/cybercoder/statuses/9402723892" class="aktt_tweet_time">#</a></li>
<li>Tweats <a href="http://bit.ly/9BzLVq" rel="nofollow">http://bit.ly/9BzLVq</a> <a href="http://twitter.com/cybercoder/statuses/9428170076" class="aktt_tweet_time">#</a></li>
<li>CAADD <a href="http://bit.ly/dulPHz" rel="nofollow">http://bit.ly/dulPHz</a> <a href="http://twitter.com/cybercoder/statuses/9448834261" class="aktt_tweet_time">#</a></li>
<li>How to Vastly Improve Your Facebook Experience with Filters and Lists | Newsome.Org <a href="http://bit.ly/d12swv" rel="nofollow">http://bit.ly/d12swv</a> <a href="http://twitter.com/cybercoder/statuses/9471196403" class="aktt_tweet_time">#</a></li>
<li>Google Talk <a href="http://bit.ly/9PPJBe" rel="nofollow">http://bit.ly/9PPJBe</a> <a href="http://twitter.com/cybercoder/statuses/9474923328" class="aktt_tweet_time">#</a></li>
<li>Bloom Box | Daily Rover <a href="http://bit.ly/afyhid" rel="nofollow">http://bit.ly/afyhid</a> <a href="http://twitter.com/cybercoder/statuses/9481199340" class="aktt_tweet_time">#</a></li>
<li>Amazon is the Most Trusted and Recommended Brand in the U.S. <a href="http://bit.ly/bkzJWv" rel="nofollow">http://bit.ly/bkzJWv</a> <a href="http://twitter.com/cybercoder/statuses/9485600561" class="aktt_tweet_time">#</a></li>
<li>TweetStats <a href="http://bit.ly/aCWFdT" rel="nofollow">http://bit.ly/aCWFdT</a> <a href="http://twitter.com/cybercoder/statuses/9497934855" class="aktt_tweet_time">#</a></li>
<li>New spam wave hits Twitter: “Get bigger and have sex longer” | Graham Cluley&#39;s blog <a href="http://bit.ly/99t7p8" rel="nofollow">http://bit.ly/99t7p8</a> <a href="http://twitter.com/cybercoder/statuses/9504557665" class="aktt_tweet_time">#</a></li>
<li>Voice over IP <a href="http://bit.ly/aBrhg5" rel="nofollow">http://bit.ly/aBrhg5</a> <a href="http://twitter.com/cybercoder/statuses/9524526565" class="aktt_tweet_time">#</a></li>
<li>Jimi Hendrix Valleys of Neptune | Music Ramble <a href="http://bit.ly/dueS7P" rel="nofollow">http://bit.ly/dueS7P</a> <a href="http://twitter.com/cybercoder/statuses/9527637564" class="aktt_tweet_time">#</a></li>
<li>I decided to incorporate my Chemotherapy Blog into my main personal blog.  <a href="http://bit.ly/apBMEp" rel="nofollow">http://bit.ly/apBMEp</a> <a href="http://twitter.com/cybercoder/statuses/9527998016" class="aktt_tweet_time">#</a></li>
<li>VOIP for Life <a href="http://bit.ly/ctaRfh" rel="nofollow">http://bit.ly/ctaRfh</a> <a href="http://twitter.com/cybercoder/statuses/9547293902" class="aktt_tweet_time">#</a></li>
<li>New Chemotherapy Blog &#8211; I have always wanted to write about my cancer and chemotherapy experiences and now I will. &#8230; <a href="http://ow.ly/16EbsH" rel="nofollow">http://ow.ly/16EbsH</a> <a href="http://twitter.com/cybercoder/statuses/9552458922" class="aktt_tweet_time">#</a></li>
<li>Looks like Twitter might be purging accounts again. <a href="http://twitter.com/cybercoder/statuses/9553928379" class="aktt_tweet_time">#</a></li>
<li>Static Web Site <a href="http://bit.ly/dlvmdO" rel="nofollow">http://bit.ly/dlvmdO</a> <a href="http://twitter.com/cybercoder/statuses/9574672024" class="aktt_tweet_time">#</a></li>
<li>New Variant of “This You???” Worm Surfaces on Twitter | The SocialToo Blog <a href="http://bit.ly/9ids7e" rel="nofollow">http://bit.ly/9ids7e</a> <a href="http://twitter.com/cybercoder/statuses/9576485574" class="aktt_tweet_time">#</a></li>
<li>Hit Hard: A Story of Hitting Rock Bottom at the Top | Music Ramble <a href="http://bit.ly/c50l1R" rel="nofollow">http://bit.ly/c50l1R</a> <a href="http://twitter.com/cybercoder/statuses/9577908811" class="aktt_tweet_time">#</a></li>
<li>eBayPartner Network <a href="http://bit.ly/6Lcua1" rel="nofollow">http://bit.ly/6Lcua1</a> <a href="http://twitter.com/cybercoder/statuses/9609846434" class="aktt_tweet_time">#</a></li>
<li>Cancer <a href="http://bit.ly/ae2GmV" rel="nofollow">http://bit.ly/ae2GmV</a> <a href="http://twitter.com/cybercoder/statuses/9613973550" class="aktt_tweet_time">#</a></li>
<li>Analytics <a href="http://bit.ly/9CgHkz" rel="nofollow">http://bit.ly/9CgHkz</a> <a href="http://twitter.com/cybercoder/statuses/9616940102" class="aktt_tweet_time">#</a></li>
<li>Google SearchWiki <a href="http://bit.ly/d7O7Hf" rel="nofollow">http://bit.ly/d7O7Hf</a> <a href="http://twitter.com/cybercoder/statuses/9619637837" class="aktt_tweet_time">#</a></li>
<li>Twitter Status &#8211; Update Re: Phishing <a href="http://bit.ly/bPwRdz" rel="nofollow">http://bit.ly/bPwRdz</a> <a href="http://twitter.com/cybercoder/statuses/9628394793" class="aktt_tweet_time">#</a></li>
<li>Google Takes First Shot at Facebook Search Results <a href="http://bit.ly/93AzwT" rel="nofollow">http://bit.ly/93AzwT</a> <a href="http://twitter.com/cybercoder/statuses/9632539439" class="aktt_tweet_time">#</a></li>
<li>Google Public Policy Blog: This stuff is tough <a href="http://bit.ly/cX6Wil" rel="nofollow">http://bit.ly/cX6Wil</a> <a href="http://twitter.com/cybercoder/statuses/9634335498" class="aktt_tweet_time">#</a></li>
<li>Verizon Wireless <a href="http://bit.ly/csYx9V" rel="nofollow">http://bit.ly/csYx9V</a> <a href="http://twitter.com/cybercoder/statuses/9660969663" class="aktt_tweet_time">#</a></li>
<li>Twitter Tools <a href="http://bit.ly/d6nqit" rel="nofollow">http://bit.ly/d6nqit</a> <a href="http://twitter.com/cybercoder/statuses/9665654585" class="aktt_tweet_time">#</a></li>
<li>Pay Per Click <a href="http://bit.ly/cBLX20" rel="nofollow">http://bit.ly/cBLX20</a> <a href="http://twitter.com/cybercoder/statuses/9668982969" class="aktt_tweet_time">#</a></li>
<li>PHP Software <a href="http://bit.ly/4mZi7w" rel="nofollow">http://bit.ly/4mZi7w</a> <a href="http://twitter.com/cybercoder/statuses/9671839724" class="aktt_tweet_time">#</a></li>
<li>Sanders  Says: Social Media Success Rule: Be Generous <a href="http://bit.ly/ao3WNX" rel="nofollow">http://bit.ly/ao3WNX</a> <a href="http://twitter.com/cybercoder/statuses/9678235017" class="aktt_tweet_time">#</a></li>
<li>8 Significant Developments in Social Media You Should Watch – WebWorkerDaily <a href="http://bit.ly/9sefR8" rel="nofollow">http://bit.ly/9sefR8</a> <a href="http://twitter.com/cybercoder/statuses/9679135695" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/9679292730" class="aktt_tweet_time">#</a></li>
<li>Adobe Photoshop 20 Year Anniversary | Daily Rover <a href="http://bit.ly/9Asp27" rel="nofollow">http://bit.ly/9Asp27</a> <a href="http://twitter.com/cybercoder/statuses/9679848337" class="aktt_tweet_time">#</a></li>
<li>Google Caffeine May Be Months Away &amp; You Can’t See It <a href="http://selnd.com/9vUYrT" rel="nofollow">http://selnd.com/9vUYrT</a> <a href="http://twitter.com/cybercoder/statuses/9682637262" class="aktt_tweet_time">#</a></li>
<li>WordPress › Blog »   BuddyPress for One (and All!) <a href="http://bit.ly/cvVYh3" rel="nofollow">http://bit.ly/cvVYh3</a> <a href="http://twitter.com/cybercoder/statuses/9706167452" class="aktt_tweet_time">#</a></li>
<li><a href="http://fb.me/6wzy8A0" rel="nofollow">http://fb.me/6wzy8A0</a> <a href="http://twitter.com/cybercoder/statuses/9706359258" class="aktt_tweet_time">#</a></li>
<li>Super Bowl <a href="http://bit.ly/cx9oIj" rel="nofollow">http://bit.ly/cx9oIj</a> <a href="http://twitter.com/cybercoder/statuses/9713215474" class="aktt_tweet_time">#</a></li>
<li>Google Open Source Browser <a href="http://bit.ly/cGL50K" rel="nofollow">http://bit.ly/cGL50K</a> <a href="http://twitter.com/cybercoder/statuses/9717471127" class="aktt_tweet_time">#</a></li>
<li>WhoisGuard <a href="http://bit.ly/9ogZ5s" rel="nofollow">http://bit.ly/9ogZ5s</a> <a href="http://twitter.com/cybercoder/statuses/9720756089" class="aktt_tweet_time">#</a></li>
<li>Google Experimental Search <a href="http://bit.ly/dju4wP" rel="nofollow">http://bit.ly/dju4wP</a> <a href="http://twitter.com/cybercoder/statuses/9723526633" class="aktt_tweet_time">#</a></li>
<li>HTML5 Knocks Out Adobe Flash in Reader Vote <a href="http://bit.ly/9ZnLPZ" rel="nofollow">http://bit.ly/9ZnLPZ</a> <a href="http://twitter.com/cybercoder/statuses/9724443208" class="aktt_tweet_time">#</a></li>
<li>8.8-Magnitude Earthquake Hits Central Chile : NPR <a href="http://bit.ly/dj8Y2D" rel="nofollow">http://bit.ly/dj8Y2D</a> <a href="http://twitter.com/cybercoder/statuses/9726576730" class="aktt_tweet_time">#</a></li>
<li>Tsunami Advisory for Hawaii after 8.8 quake in Chile »  Big Island Video News <a href="http://bit.ly/dkzfKV" rel="nofollow">http://bit.ly/dkzfKV</a> (Good map) <a href="http://twitter.com/cybercoder/statuses/9726627159" class="aktt_tweet_time">#</a></li>
<li>MikieSoft <a href="http://bit.ly/cz02Nn" rel="nofollow">http://bit.ly/cz02Nn</a> <a href="http://twitter.com/cybercoder/statuses/9760998595" class="aktt_tweet_time">#</a></li>
<li>Chrome <a href="http://bit.ly/azbQNj" rel="nofollow">http://bit.ly/azbQNj</a> <a href="http://twitter.com/cybercoder/statuses/9765290862" class="aktt_tweet_time">#</a></li>
<li>Netgear <a href="http://bit.ly/avRiF6" rel="nofollow">http://bit.ly/avRiF6</a> <a href="http://twitter.com/cybercoder/statuses/9768678795" class="aktt_tweet_time">#</a></li>
<li>Google Chrome <a href="http://bit.ly/aWBKec" rel="nofollow">http://bit.ly/aWBKec</a> <a href="http://twitter.com/cybercoder/statuses/9771440936" class="aktt_tweet_time">#</a></li>
<li>Vlogs <a href="http://bit.ly/dhcGen" rel="nofollow">http://bit.ly/dhcGen</a> <a href="http://twitter.com/cybercoder/statuses/9809089188" class="aktt_tweet_time">#</a></li>
<li>Lynx Text Browser <a href="http://bit.ly/9VJCio" rel="nofollow">http://bit.ly/9VJCio</a> <a href="http://twitter.com/cybercoder/statuses/9813236806" class="aktt_tweet_time">#</a></li>
<li>Custom Query String Reloaded <a href="http://bit.ly/cOuUZc" rel="nofollow">http://bit.ly/cOuUZc</a> <a href="http://twitter.com/cybercoder/statuses/9816226276" class="aktt_tweet_time">#</a></li>
<li>Internet Explorer <a href="http://bit.ly/clyhFX" rel="nofollow">http://bit.ly/clyhFX</a> <a href="http://twitter.com/cybercoder/statuses/9818904509" class="aktt_tweet_time">#</a></li>
<li>Twitter Engineer Deletes Tweet to Avoid Developer Backlash? <a href="http://bit.ly/cIPCCk" rel="nofollow">http://bit.ly/cIPCCk</a> <a href="http://twitter.com/cybercoder/statuses/9833253198" class="aktt_tweet_time">#</a></li>
<li>Google welcomes Picnik <a href="http://bit.ly/dBALXQ" rel="nofollow">http://bit.ly/dBALXQ</a> <a href="http://twitter.com/cybercoder/statuses/9841534150" class="aktt_tweet_time">#</a></li>
<li>eBayPartner Network <a href="http://bit.ly/6Lcua1" rel="nofollow">http://bit.ly/6Lcua1</a> <a href="http://twitter.com/cybercoder/statuses/9858632026" class="aktt_tweet_time">#</a></li>
<li>Twitter Trends <a href="http://bit.ly/9UmXmd" rel="nofollow">http://bit.ly/9UmXmd</a> <a href="http://twitter.com/cybercoder/statuses/9862679094" class="aktt_tweet_time">#</a></li>
<li>Nokia N770 <a href="http://bit.ly/bFOPDa" rel="nofollow">http://bit.ly/bFOPDa</a> <a href="http://twitter.com/cybercoder/statuses/9865691051" class="aktt_tweet_time">#</a></li>
<li>Cyber Monday Deals <a href="http://bit.ly/8YXN8t" rel="nofollow">http://bit.ly/8YXN8t</a> <a href="http://twitter.com/cybercoder/statuses/9868344912" class="aktt_tweet_time">#</a></li>
<li>Google Chrome Blog: A polyglot Google Chrome beta, with new privacy features <a href="http://bit.ly/9kfksq" rel="nofollow">http://bit.ly/9kfksq</a> <a href="http://twitter.com/cybercoder/statuses/9873969066" class="aktt_tweet_time">#</a></li>
<li>Free Apple iPad! Testers wanted asap! More details <a href="http://bit.ly/diFFWM" rel="nofollow">http://bit.ly/diFFWM</a> #<a href="http://search.twitter.com/search?q=%23Twitterislike" class="aktt_hashtag">Twitterislike</a> Chile #<a href="http://search.twitter.com/search?q=%23SoProudOfYouNickJ" class="aktt_hashtag">SoProudOfYouNickJ</a> <a href="http://twitter.com/cybercoder/statuses/9901756484" class="aktt_tweet_time">#</a></li>
<li>Lynx Text Browser <a href="http://bit.ly/9VJCio" rel="nofollow">http://bit.ly/9VJCio</a> <a href="http://twitter.com/cybercoder/statuses/10208604394" class="aktt_tweet_time">#</a></li>
<li>VOIP for Life <a href="http://bit.ly/ctaRfh" rel="nofollow">http://bit.ly/ctaRfh</a> <a href="http://twitter.com/cybercoder/statuses/10211677828" class="aktt_tweet_time">#</a></li>
<li>Subscribers <a href="http://bit.ly/6DScqH" rel="nofollow">http://bit.ly/6DScqH</a> <a href="http://twitter.com/cybercoder/statuses/10214488017" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/davewiner" class="aktt_username">davewiner</a> 18 interesting firsts. (Scripting News) <a href="http://bit.ly/bk3m0z" rel="nofollow">http://bit.ly/bk3m0z</a> <a href="http://twitter.com/cybercoder/statuses/10220990009" class="aktt_tweet_time">#</a></li>
<li>The Rise of Netbooks – GigaOM <a href="http://bit.ly/aaOaxM" rel="nofollow">http://bit.ly/aaOaxM</a> <a href="http://twitter.com/cybercoder/statuses/10230495332" class="aktt_tweet_time">#</a></li>
<li>Exact Time Now <a href="http://bit.ly/9Qjoru" rel="nofollow">http://bit.ly/9Qjoru</a> <a href="http://twitter.com/cybercoder/statuses/10255025388" class="aktt_tweet_time">#</a></li>
<li>MySQL <a href="http://bit.ly/9pOm2R" rel="nofollow">http://bit.ly/9pOm2R</a> <a href="http://twitter.com/cybercoder/statuses/10259025793" class="aktt_tweet_time">#</a></li>
<li>Who&#39;s Amung Us <a href="http://bit.ly/4Zh8fp" rel="nofollow">http://bit.ly/4Zh8fp</a> <a href="http://twitter.com/cybercoder/statuses/10262084878" class="aktt_tweet_time">#</a></li>
<li>Google Chrome <a href="http://bit.ly/aWBKec" rel="nofollow">http://bit.ly/aWBKec</a> <a href="http://twitter.com/cybercoder/statuses/10264929595" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Texas Twitter Directory at TwitterStates.com <a href="http://bit.ly/2BoTwn" rel="nofollow">http://bit.ly/2BoTwn</a> <a href="http://twitter.com/cybercoder/statuses/10280789060" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/DaveWiner" class="aktt_username">DaveWiner</a> Please fix<br />
WordPress for podcast feeds.<br />
<a href="http://bit.ly/97CBr4" rel="nofollow">http://bit.ly/97CBr4</a> <a href="http://twitter.com/cybercoder/statuses/10289710623" class="aktt_tweet_time">#</a></li>
<li>Twitter get their own URL<br />
shortener, Trust And Safety<br />
<a href="http://bit.ly/aAer82" rel="nofollow">http://bit.ly/aAer82</a> <a href="http://twitter.com/cybercoder/statuses/10290056064" class="aktt_tweet_time">#</a></li>
<li>Internet Explorer <a href="http://bit.ly/clyhFX" rel="nofollow">http://bit.ly/clyhFX</a> <a href="http://twitter.com/cybercoder/statuses/10305950012" class="aktt_tweet_time">#</a></li>
<li>Social Networking <a href="http://bit.ly/bq4xPB" rel="nofollow">http://bit.ly/bq4xPB</a> <a href="http://twitter.com/cybercoder/statuses/10309945130" class="aktt_tweet_time">#</a></li>
<li>HootSuite <a href="http://bit.ly/9aEFSE" rel="nofollow">http://bit.ly/9aEFSE</a> <a href="http://twitter.com/cybercoder/statuses/10313014047" class="aktt_tweet_time">#</a></li>
<li>Internet Tablet <a href="http://bit.ly/bVO8ap" rel="nofollow">http://bit.ly/bVO8ap</a> <a href="http://twitter.com/cybercoder/statuses/10315864235" class="aktt_tweet_time">#</a></li>
<li>Google Reader &#8211; Sorry, an unexpected condition has occurred which is preventing Google Reader from fulfilling the request. <a href="http://twitter.com/cybercoder/statuses/10323044435" class="aktt_tweet_time">#</a></li>
<li>LOL, what&#39;s wrong with this picture @<a href="http://twitter.com/iphone" class="aktt_username">iphone</a> <a href="http://twitter.com/cybercoder/statuses/10335882290" class="aktt_tweet_time">#</a></li>
<li>Extra Income Online <a href="http://bit.ly/980bYD" rel="nofollow">http://bit.ly/980bYD</a> <a href="http://twitter.com/cybercoder/statuses/10355628798" class="aktt_tweet_time">#</a></li>
<li>Google Analytics <a href="http://bit.ly/cMSMtK" rel="nofollow">http://bit.ly/cMSMtK</a> <a href="http://twitter.com/cybercoder/statuses/10359660396" class="aktt_tweet_time">#</a></li>
<li>WordPress How To <a href="http://bit.ly/byiAmk" rel="nofollow">http://bit.ly/byiAmk</a> <a href="http://twitter.com/cybercoder/statuses/10362782162" class="aktt_tweet_time">#</a></li>
<li>Orkut <a href="http://bit.ly/d549kA" rel="nofollow">http://bit.ly/d549kA</a> <a href="http://twitter.com/cybercoder/statuses/10365622648" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> List <a href="http://bit.ly/5OEcvY" rel="nofollow">http://bit.ly/5OEcvY</a> #<a href="http://search.twitter.com/search?q=%23FF" class="aktt_hashtag">FF</a> <a href="http://twitter.com/cybercoder/statuses/10376011618" class="aktt_tweet_time">#</a></li>
<li>Keep It Simple <a href="http://bit.ly/9os9uQ" rel="nofollow">http://bit.ly/9os9uQ</a> <a href="http://twitter.com/cybercoder/statuses/10406260868" class="aktt_tweet_time">#</a></li>
<li>Yahoo <a href="http://bit.ly/cV0xHf" rel="nofollow">http://bit.ly/cV0xHf</a> <a href="http://twitter.com/cybercoder/statuses/10410381431" class="aktt_tweet_time">#</a></li>
<li>iPhone WordPress <a href="http://bit.ly/cmcvJ1" rel="nofollow">http://bit.ly/cmcvJ1</a> <a href="http://twitter.com/cybercoder/statuses/10413616089" class="aktt_tweet_time">#</a></li>
<li>Niche Blogging <a href="http://bit.ly/98RnwN" rel="nofollow">http://bit.ly/98RnwN</a> <a href="http://twitter.com/cybercoder/statuses/10416405854" class="aktt_tweet_time">#</a></li>
<li>Google Voice Turns One; Here&#39;s How to Get the Most from It &#8211; Lifehacker <a href="http://bit.ly/atmlsx" rel="nofollow">http://bit.ly/atmlsx</a> <a href="http://twitter.com/cybercoder/statuses/10422953672" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Texas Twitter Directory at TwitterStates.com <a href="http://bit.ly/2BoTwn" rel="nofollow">http://bit.ly/2BoTwn</a> <a href="http://twitter.com/cybercoder/statuses/10452672234" class="aktt_tweet_time">#</a></li>
<li>Facebook Fan Page <a href="http://bit.ly/9yGXJn" rel="nofollow">http://bit.ly/9yGXJn</a> <a href="http://twitter.com/cybercoder/statuses/10454000198" class="aktt_tweet_time">#</a></li>
<li>ASP <a href="http://bit.ly/bCwCaJ" rel="nofollow">http://bit.ly/bCwCaJ</a> <a href="http://twitter.com/cybercoder/statuses/10458453492" class="aktt_tweet_time">#</a></li>
<li>PHP Help <a href="http://bit.ly/bfeXzX" rel="nofollow">http://bit.ly/bfeXzX</a> <a href="http://twitter.com/cybercoder/statuses/10461803844" class="aktt_tweet_time">#</a></li>
<li>The Map Room: Daylight Saving Time <a href="http://bit.ly/cv6Eke" rel="nofollow">http://bit.ly/cv6Eke</a> <a href="http://twitter.com/cybercoder/statuses/10471075502" class="aktt_tweet_time">#</a></li>
<li>AppleInsider | Apple&#39;s iPhone 4.0 software to deliver multitasking support <a href="http://bit.ly/aXtbJL" rel="nofollow">http://bit.ly/aXtbJL</a> <a href="http://twitter.com/cybercoder/statuses/10471672954" class="aktt_tweet_time">#</a></li>
<li>iPod <a href="http://bit.ly/bblM5U" rel="nofollow">http://bit.ly/bblM5U</a> <a href="http://twitter.com/cybercoder/statuses/10499094729" class="aktt_tweet_time">#</a></li>
<li>Social Networking <a href="http://bit.ly/bq4xPB" rel="nofollow">http://bit.ly/bq4xPB</a> <a href="http://twitter.com/cybercoder/statuses/10503472380" class="aktt_tweet_time">#</a></li>
<li>Universal Remote <a href="http://bit.ly/dyCp5w" rel="nofollow">http://bit.ly/dyCp5w</a> <a href="http://twitter.com/cybercoder/statuses/10506759057" class="aktt_tweet_time">#</a></li>
<li>Mobile Websites <a href="http://bit.ly/9k1da6" rel="nofollow">http://bit.ly/9k1da6</a> <a href="http://twitter.com/cybercoder/statuses/10509579110" class="aktt_tweet_time">#</a></li>
<li>Why Your Business Needs Friends <a href="http://bit.ly/arMhmh" rel="nofollow">http://bit.ly/arMhmh</a> <a href="http://twitter.com/cybercoder/statuses/10516761959" class="aktt_tweet_time">#</a></li>
<li>The Difference Between Firefox, Opera, Explorer &amp; Safari <a href="http://bit.ly/c56HfW" rel="nofollow">http://bit.ly/c56HfW</a> <a href="http://twitter.com/cybercoder/statuses/10532710490" class="aktt_tweet_time">#</a></li>
<li>Google Public Policy Blog: A broadband catapult for America <a href="http://bit.ly/b4vl0Q" rel="nofollow">http://bit.ly/b4vl0Q</a> <a href="http://twitter.com/cybercoder/statuses/10532834004" class="aktt_tweet_time">#</a></li>
<li>Why HTML5 is worth your time &#8211; O&#39;Reilly Radar <a href="http://bit.ly/9l5K2P" rel="nofollow">http://bit.ly/9l5K2P</a> <a href="http://twitter.com/cybercoder/statuses/10533529749" class="aktt_tweet_time">#</a></li>
<li>Bitly <a href="http://bit.ly/9L9VZa" rel="nofollow">http://bit.ly/9L9VZa</a> <a href="http://twitter.com/cybercoder/statuses/10550350579" class="aktt_tweet_time">#</a></li>
<li>What Time Is It <a href="http://bit.ly/7LSVeP" rel="nofollow">http://bit.ly/7LSVeP</a> <a href="http://twitter.com/cybercoder/statuses/10555301400" class="aktt_tweet_time">#</a></li>
<li>Sysinternals <a href="http://bit.ly/btdHyx" rel="nofollow">http://bit.ly/btdHyx</a> <a href="http://twitter.com/cybercoder/statuses/10558956692" class="aktt_tweet_time">#</a></li>
<li>WordPress Conversion <a href="http://twitter.com/cybercoder/statuses/10561895570" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/lifehacker" class="aktt_username">lifehacker</a> Tumblr Now Allows Instant 100MB Video Uploads &#8211; Video &#8211; Lifehacker <a href="http://bit.ly/dDq0r5" rel="nofollow">http://bit.ly/dDq0r5</a> <a href="http://twitter.com/cybercoder/statuses/10568365040" class="aktt_tweet_time">#</a></li>
<li>PayPal Bumps iPhone Payments to New Level  &#8211; Digits &#8211; WSJ <a href="http://bit.ly/cj2mXc" rel="nofollow">http://bit.ly/cj2mXc</a> <a href="http://twitter.com/cybercoder/statuses/10568612649" class="aktt_tweet_time">#</a></li>
<li>Don’t Get Screwed! 5 Tips for Choosing the Right Social Media Consultant -Patrick Curl <a href="http://bit.ly/bJTqsz" rel="nofollow">http://bit.ly/bJTqsz</a> <a href="http://twitter.com/cybercoder/statuses/10574216182" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/andybeal" class="aktt_username">andybeal</a> Fuzzy Math Puts Facebook Ahead of Google as Most Visited Site <a href="http://bit.ly/bntb5W" rel="nofollow">http://bit.ly/bntb5W</a> <a href="http://twitter.com/cybercoder/statuses/10574766657" class="aktt_tweet_time">#</a></li>
<li>Facebook Kicks Off Implementation Of QR Codes  <a href="http://tcrn.ch/9gxKah" rel="nofollow">http://tcrn.ch/9gxKah</a> <a href="http://twitter.com/cybercoder/statuses/10586324774" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TopsyRT" class="aktt_username">TopsyRT</a>: Leo Laporte crowd surfs during Diggnation &#8211; Kevin Rose <a href="http://bit.ly/bMk8vT" rel="nofollow">http://bit.ly/bMk8vT</a> <a href="http://twitter.com/cybercoder/statuses/10587164491" class="aktt_tweet_time">#</a></li>
<li>Google Chrome Comic Book <a href="http://bit.ly/cVhcBY" rel="nofollow">http://bit.ly/cVhcBY</a> <a href="http://twitter.com/cybercoder/statuses/10602407990" class="aktt_tweet_time">#</a></li>
<li>Facebook One Step Closer To Real Social Search?: <a href="http://bit.ly/b1rFVi" rel="nofollow">http://bit.ly/b1rFVi</a> via @<a href="http://twitter.com/addthis" class="aktt_username">addthis</a> <a href="http://twitter.com/cybercoder/statuses/10602891619" class="aktt_tweet_time">#</a></li>
<li>ProductReviewsBlog <a href="http://bit.ly/8bsxsn" rel="nofollow">http://bit.ly/8bsxsn</a> <a href="http://twitter.com/cybercoder/statuses/10606964433" class="aktt_tweet_time">#</a></li>
<li>Holiday Meals <a href="http://bit.ly/9h40D2" rel="nofollow">http://bit.ly/9h40D2</a> <a href="http://twitter.com/cybercoder/statuses/10610433378" class="aktt_tweet_time">#</a></li>
<li>WordPress Duplicate Content <a href="http://bit.ly/csMBU3" rel="nofollow">http://bit.ly/csMBU3</a> <a href="http://twitter.com/cybercoder/statuses/10613360835" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/ThisIsSethsBlog" class="aktt_username">ThisIsSethsBlog</a> Not for me <a href="http://bit.ly/caVyO0" rel="nofollow">http://bit.ly/caVyO0</a> <a href="http://twitter.com/cybercoder/statuses/10618602913" class="aktt_tweet_time">#</a></li>
<li>It’s Official: News Media Are Missing The Twitter Boat – GigaOM <a href="http://bit.ly/bZVHsb" rel="nofollow">http://bit.ly/bZVHsb</a> <a href="http://twitter.com/cybercoder/statuses/10621565152" class="aktt_tweet_time">#</a></li>
<li>Guitar Shopping &#8211; Guitar Ramble <a href="http://bit.ly/cMNy5I" rel="nofollow">http://bit.ly/cMNy5I</a> <a href="http://twitter.com/cybercoder/statuses/10622345405" class="aktt_tweet_time">#</a></li>
<li>SXSW Interactive: Is WordPress Killing Web Design? | Daily Rover <a href="http://bit.ly/c98W0Q" rel="nofollow">http://bit.ly/c98W0Q</a> <a href="http://twitter.com/cybercoder/statuses/10622955758" class="aktt_tweet_time">#</a></li>
<li>Food Blogs <a href="http://bit.ly/9bXNxj" rel="nofollow">http://bit.ly/9bXNxj</a> <a href="http://twitter.com/cybercoder/statuses/10653196490" class="aktt_tweet_time">#</a></li>
<li>iGoogle <a href="http://bit.ly/duVGky" rel="nofollow">http://bit.ly/duVGky</a> <a href="http://twitter.com/cybercoder/statuses/10656756477" class="aktt_tweet_time">#</a></li>
<li>KISS Principle <a href="http://bit.ly/8NUPwL" rel="nofollow">http://bit.ly/8NUPwL</a> <a href="http://twitter.com/cybercoder/statuses/10660101998" class="aktt_tweet_time">#</a></li>
<li>Safari <a href="http://bit.ly/cnLBNa" rel="nofollow">http://bit.ly/cnLBNa</a> <a href="http://twitter.com/cybercoder/statuses/10662989960" class="aktt_tweet_time">#</a></li>
<li>Official Google Reader Blog: More Reader features in your pocket <a href="http://bit.ly/9kqZ2g" rel="nofollow">http://bit.ly/9kqZ2g</a> <a href="http://twitter.com/cybercoder/statuses/10668121754" class="aktt_tweet_time">#</a></li>
<li>YouTube Users Upload 24 Hours of Video Every Minute  <a href="http://bit.ly/aGLu8U" rel="nofollow">http://bit.ly/aGLu8U</a> <a href="http://twitter.com/cybercoder/statuses/10669569872" class="aktt_tweet_time">#</a></li>
<li>Google Experimental Search <a href="http://bit.ly/dju4wP" rel="nofollow">http://bit.ly/dju4wP</a> <a href="http://twitter.com/cybercoder/statuses/10703711689" class="aktt_tweet_time">#</a></li>
<li>Define Emo <a href="http://bit.ly/9ZHx65" rel="nofollow">http://bit.ly/9ZHx65</a> <a href="http://twitter.com/cybercoder/statuses/10708064595" class="aktt_tweet_time">#</a></li>
<li>Chemotherapy <a href="http://bit.ly/b7Aw95" rel="nofollow">http://bit.ly/b7Aw95</a> <a href="http://twitter.com/cybercoder/statuses/10711354726" class="aktt_tweet_time">#</a></li>
<li>Google Alert <a href="http://bit.ly/a7CiTR" rel="nofollow">http://bit.ly/a7CiTR</a> <a href="http://twitter.com/cybercoder/statuses/10714234152" class="aktt_tweet_time">#</a></li>
<li>Lynx Browser Download <a href="http://bit.ly/aTVn67" rel="nofollow">http://bit.ly/aTVn67</a> <a href="http://twitter.com/cybercoder/statuses/10754854135" class="aktt_tweet_time">#</a></li>
<li>geocaching maps <a href="http://bit.ly/8ZnGTm" rel="nofollow">http://bit.ly/8ZnGTm</a> <a href="http://twitter.com/cybercoder/statuses/10759350615" class="aktt_tweet_time">#</a></li>
<li>OOMA <a href="http://bit.ly/blxRVz" rel="nofollow">http://bit.ly/blxRVz</a> <a href="http://twitter.com/cybercoder/statuses/10762817897" class="aktt_tweet_time">#</a></li>
<li>Technology <a href="http://bit.ly/aa2EPV" rel="nofollow">http://bit.ly/aa2EPV</a> <a href="http://twitter.com/cybercoder/statuses/10765664020" class="aktt_tweet_time">#</a></li>
<li>Seth&#39;s Blog: When a freelancer changes the game <a href="http://bit.ly/cxeLjJ" rel="nofollow">http://bit.ly/cxeLjJ</a> <a href="http://twitter.com/cybercoder/statuses/10771369708" class="aktt_tweet_time">#</a></li>
<li>List of Social Media Management Systems (SMMS) &#8211; Jeremiah Owyang | Social Media, Web Marketing <a href="http://bit.ly/cgsGr0" rel="nofollow">http://bit.ly/cgsGr0</a> <a href="http://twitter.com/cybercoder/statuses/10776071377" class="aktt_tweet_time">#</a></li>
<li>Google Wave Is Still A Ghost Town <a href="http://bit.ly/d9JJbS" rel="nofollow">http://bit.ly/d9JJbS</a> <a href="http://twitter.com/cybercoder/statuses/10776280759" class="aktt_tweet_time">#</a></li>
<li>CyberExcerpt Plugin <a href="http://bit.ly/dCaRfk" rel="nofollow">http://bit.ly/dCaRfk</a> <a href="http://twitter.com/cybercoder/statuses/10802939715" class="aktt_tweet_time">#</a></li>
<li>Holiday Meals <a href="http://bit.ly/9h40D2" rel="nofollow">http://bit.ly/9h40D2</a> <a href="http://twitter.com/cybercoder/statuses/10807454099" class="aktt_tweet_time">#</a></li>
<li>Exchange Network <a href="http://bit.ly/akXAuu" rel="nofollow">http://bit.ly/akXAuu</a> <a href="http://twitter.com/cybercoder/statuses/10810987708" class="aktt_tweet_time">#</a></li>
<li>WP-ContactForm <a href="http://bit.ly/6VIFOe" rel="nofollow">http://bit.ly/6VIFOe</a> <a href="http://twitter.com/cybercoder/statuses/10813816509" class="aktt_tweet_time">#</a></li>
<li>Finally. You Can Now Share Music on Facebook. <a href="http://bit.ly/dwgzZo" rel="nofollow">http://bit.ly/dwgzZo</a> <a href="http://twitter.com/cybercoder/statuses/10821477477" class="aktt_tweet_time">#</a></li>
<li>United States used car database for sale <a href="http://bit.ly/aRjmur" rel="nofollow">http://bit.ly/aRjmur</a> <a href="http://twitter.com/cybercoder/statuses/10830777537" class="aktt_tweet_time">#</a></li>
<li>NewsCorp <a href="http://bit.ly/aTBaMW" rel="nofollow">http://bit.ly/aTBaMW</a> <a href="http://twitter.com/cybercoder/statuses/10852888884" class="aktt_tweet_time">#</a></li>
<li>Yahoo <a href="http://bit.ly/cV0xHf" rel="nofollow">http://bit.ly/cV0xHf</a> <a href="http://twitter.com/cybercoder/statuses/10857690213" class="aktt_tweet_time">#</a></li>
<li>Office Depot <a href="http://bit.ly/cGyO1s" rel="nofollow">http://bit.ly/cGyO1s</a> <a href="http://twitter.com/cybercoder/statuses/10860994906" class="aktt_tweet_time">#</a></li>
<li>AT&amp;T <a href="http://bit.ly/9D15EZ" rel="nofollow">http://bit.ly/9D15EZ</a> <a href="http://twitter.com/cybercoder/statuses/10863796503" class="aktt_tweet_time">#</a></li>
<li>Twitter to Introduce Versioning to Their API <a href="http://bit.ly/bxQaA4" rel="nofollow">http://bit.ly/bxQaA4</a> <a href="http://twitter.com/cybercoder/statuses/10869765950" class="aktt_tweet_time">#</a></li>
<li>An Exploration of HTML 5 (Yahoo! Developer Network Blog) <a href="http://bit.ly/coj8Jc" rel="nofollow">http://bit.ly/coj8Jc</a> <a href="http://twitter.com/cybercoder/statuses/10869847182" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Texas Twitter Directory at TwitterStates.com <a href="http://bit.ly/2BoTwn" rel="nofollow">http://bit.ly/2BoTwn</a> <a href="http://twitter.com/cybercoder/statuses/10887390729" class="aktt_tweet_time">#</a></li>
<li>Inventor of the Web Gets Backing to Build Web of Data <a href="http://bit.ly/cgsXKt" rel="nofollow">http://bit.ly/cgsXKt</a> <a href="http://twitter.com/cybercoder/statuses/10891308677" class="aktt_tweet_time">#</a></li>
<li>Hacking <a href="http://bit.ly/bGRGh0" rel="nofollow">http://bit.ly/bGRGh0</a> <a href="http://twitter.com/cybercoder/statuses/10906096834" class="aktt_tweet_time">#</a></li>
<li>Pandora <a href="http://bit.ly/anOZg7" rel="nofollow">http://bit.ly/anOZg7</a> <a href="http://twitter.com/cybercoder/statuses/10910841932" class="aktt_tweet_time">#</a></li>
<li>Software <a href="http://bit.ly/bFNsaM" rel="nofollow">http://bit.ly/bFNsaM</a> <a href="http://twitter.com/cybercoder/statuses/10914182626" class="aktt_tweet_time">#</a></li>
<li>Twitter Search <a href="http://bit.ly/9PSEfa" rel="nofollow">http://bit.ly/9PSEfa</a> <a href="http://twitter.com/cybercoder/statuses/10917011432" class="aktt_tweet_time">#</a></li>
<li>louisgray.com: FriendFeed Data Joins Its Coders At Facebook <a href="http://bit.ly/9qP7tk" rel="nofollow">http://bit.ly/9qP7tk</a> <a href="http://twitter.com/cybercoder/statuses/10925732465" class="aktt_tweet_time">#</a></li>
<li>Setting up a local instance of an existing site with WampServer &#8211; @<a href="http://twitter.com/WayneJohn" class="aktt_username">WayneJohn</a> &#8211;  <a href="http://bit.ly/a42xe7" rel="nofollow">http://bit.ly/a42xe7</a> <a href="http://twitter.com/cybercoder/statuses/10925996936" class="aktt_tweet_time">#</a></li>
<li>Gmail <a href="http://bit.ly/bUZvD3" rel="nofollow">http://bit.ly/bUZvD3</a> <a href="http://twitter.com/cybercoder/statuses/10959809638" class="aktt_tweet_time">#</a></li>
<li>Geocaching <a href="http://bit.ly/ao6wXv" rel="nofollow">http://bit.ly/ao6wXv</a> <a href="http://twitter.com/cybercoder/statuses/10964531342" class="aktt_tweet_time">#</a></li>
<li>HDTV <a href="http://bit.ly/cCU3DI" rel="nofollow">http://bit.ly/cCU3DI</a> <a href="http://twitter.com/cybercoder/statuses/10967909285" class="aktt_tweet_time">#</a></li>
<li>Sites Using CyberCoder Themes <a href="http://bit.ly/bIxP8u" rel="nofollow">http://bit.ly/bIxP8u</a> <a href="http://twitter.com/cybercoder/statuses/10970770718" class="aktt_tweet_time">#</a></li>
<li>How Google, Apple, And Other Household Brands Came Up With Their Names  <a href="http://bit.ly/dwgSR8" rel="nofollow">http://bit.ly/dwgSR8</a> <a href="http://twitter.com/cybercoder/statuses/10979410565" class="aktt_tweet_time">#</a></li>
<li>The Complete Guide to Fixing Google Contacts &#8211; Google Contacts &#8211; Lifehacker <a href="http://bit.ly/diBH0x" rel="nofollow">http://bit.ly/diBH0x</a> <a href="http://twitter.com/cybercoder/statuses/10990088482" class="aktt_tweet_time">#</a></li>
<li>Looking forward to WordPress 3.0 <a href="http://bit.ly/aYFoiW" rel="nofollow">http://bit.ly/aYFoiW</a> <a href="http://twitter.com/cybercoder/statuses/10990857538" class="aktt_tweet_time">#</a></li>
<li>Google Bookmarks Lists new interface <a href="http://bit.ly/bfZ0C6" rel="nofollow">http://bit.ly/bfZ0C6</a> <a href="http://twitter.com/cybercoder/statuses/10991496055" class="aktt_tweet_time">#</a></li>
<li>Google Experimental Search <a href="http://bit.ly/dju4wP" rel="nofollow">http://bit.ly/dju4wP</a> <a href="http://twitter.com/cybercoder/statuses/11014449440" class="aktt_tweet_time">#</a></li>
<li>CAADD <a href="http://bit.ly/dulPHz" rel="nofollow">http://bit.ly/dulPHz</a> <a href="http://twitter.com/cybercoder/statuses/11019196432" class="aktt_tweet_time">#</a></li>
<li>TheYoungGuy <a href="http://bit.ly/agLOeP" rel="nofollow">http://bit.ly/agLOeP</a> <a href="http://twitter.com/cybercoder/statuses/11022659631" class="aktt_tweet_time">#</a></li>
<li>MagpieRSS <a href="http://bit.ly/9Kxdx9" rel="nofollow">http://bit.ly/9Kxdx9</a> <a href="http://twitter.com/cybercoder/statuses/11025571130" class="aktt_tweet_time">#</a></li>
<li>AT&amp;T made my iPhone useless, I moved and now have no coverage, @<a href="http://twitter.com/attcustomercare" class="aktt_username">attcustomercare</a> can I get out of contract for no service? <a href="http://twitter.com/cybercoder/statuses/11034291938" class="aktt_tweet_time">#</a></li>
<li>Business Blogging <a href="http://bit.ly/bF9Nfc" rel="nofollow">http://bit.ly/bF9Nfc</a> <a href="http://twitter.com/cybercoder/statuses/11069334696" class="aktt_tweet_time">#</a></li>
<li>Subscribers <a href="http://bit.ly/6DScqH" rel="nofollow">http://bit.ly/6DScqH</a> <a href="http://twitter.com/cybercoder/statuses/11074170716" class="aktt_tweet_time">#</a></li>
<li>Google Search <a href="http://bit.ly/b684Cw" rel="nofollow">http://bit.ly/b684Cw</a> <a href="http://twitter.com/cybercoder/statuses/11077714608" class="aktt_tweet_time">#</a></li>
<li>Chrome Add On <a href="http://bit.ly/9v59MV" rel="nofollow">http://bit.ly/9v59MV</a> <a href="http://twitter.com/cybercoder/statuses/11080720517" class="aktt_tweet_time">#</a></li>
<li>FINALLY: The Difference between Nerd, Dork, and Geek Explained by a Venn Diagram <a href="http://bit.ly/dlpHAi" rel="nofollow">http://bit.ly/dlpHAi</a> <a href="http://twitter.com/cybercoder/statuses/11099417558" class="aktt_tweet_time">#</a></li>
<li>CAADD <a href="http://bit.ly/dulPHz" rel="nofollow">http://bit.ly/dulPHz</a> <a href="http://twitter.com/cybercoder/statuses/11124881322" class="aktt_tweet_time">#</a></li>
<li>Tweetie <a href="http://bit.ly/aROAfr" rel="nofollow">http://bit.ly/aROAfr</a> <a href="http://twitter.com/cybercoder/statuses/11129785820" class="aktt_tweet_time">#</a></li>
<li>Safari <a href="http://bit.ly/cnLBNa" rel="nofollow">http://bit.ly/cnLBNa</a> <a href="http://twitter.com/cybercoder/statuses/11133335249" class="aktt_tweet_time">#</a></li>
<li>simpsonizeme.com <a href="http://bit.ly/9UI1u3" rel="nofollow">http://bit.ly/9UI1u3</a> <a href="http://twitter.com/cybercoder/statuses/11136293300" class="aktt_tweet_time">#</a></li>
<li>Seth&#39;s Blog: Finding your brand essence <a href="http://bit.ly/db3Ddv" rel="nofollow">http://bit.ly/db3Ddv</a> <a href="http://twitter.com/cybercoder/statuses/11144397383" class="aktt_tweet_time">#</a></li>
<li>louisgray.com: Twitter Highlighting &quot;Clever Accounts&quot; @<a href="http://twitter.com/cleveraccounts" class="aktt_username">cleveraccounts</a> <a href="http://bit.ly/cafj5v" rel="nofollow">http://bit.ly/cafj5v</a> <a href="http://twitter.com/cybercoder/statuses/11145392805" class="aktt_tweet_time">#</a></li>
<li>Google Knol <a href="http://bit.ly/bJrgAy" rel="nofollow">http://bit.ly/bJrgAy</a> <a href="http://twitter.com/cybercoder/statuses/11175714467" class="aktt_tweet_time">#</a></li>
<li>Google Base <a href="http://bit.ly/bd18p0" rel="nofollow">http://bit.ly/bd18p0</a> <a href="http://twitter.com/cybercoder/statuses/11180366670" class="aktt_tweet_time">#</a></li>
<li>Blogging Tips <a href="http://bit.ly/bZ0aRV" rel="nofollow">http://bit.ly/bZ0aRV</a> <a href="http://twitter.com/cybercoder/statuses/11184129376" class="aktt_tweet_time">#</a></li>
<li>Office Depot <a href="http://bit.ly/cGyO1s" rel="nofollow">http://bit.ly/cGyO1s</a> <a href="http://twitter.com/cybercoder/statuses/11187200049" class="aktt_tweet_time">#</a></li>
<li>Google Chrome Remains The Unhackable Browser <a href="http://bit.ly/bdnzww" rel="nofollow">http://bit.ly/bdnzww</a> <a href="http://twitter.com/cybercoder/statuses/11194109540" class="aktt_tweet_time">#</a></li>
<li>New Journalism, Part Curation Part Content Creation » Victus Spiritus <a href="http://bit.ly/9lnKvj" rel="nofollow">http://bit.ly/9lnKvj</a> <a href="http://twitter.com/cybercoder/statuses/11206247662" class="aktt_tweet_time">#</a></li>
<li>jQuery’s triumphant march to success | Royal Pingdom <a href="http://bit.ly/bVmerA" rel="nofollow">http://bit.ly/bVmerA</a> <a href="http://twitter.com/cybercoder/statuses/11224224106" class="aktt_tweet_time">#</a></li>
<li>WordPress for iPhone › WordPress for iPhone Version 2.3.1 now in the App Store <a href="http://bit.ly/ayy1vi" rel="nofollow">http://bit.ly/ayy1vi</a> <a href="http://twitter.com/cybercoder/statuses/11224685939" class="aktt_tweet_time">#</a></li>
<li>Twitter <a href="http://bit.ly/aKLnLn" rel="nofollow">http://bit.ly/aKLnLn</a> <a href="http://twitter.com/cybercoder/statuses/11233536541" class="aktt_tweet_time">#</a></li>
<li>Nokia N770 <a href="http://bit.ly/bFOPDa" rel="nofollow">http://bit.ly/bFOPDa</a> <a href="http://twitter.com/cybercoder/statuses/11237288245" class="aktt_tweet_time">#</a></li>
<li>Google Buzz <a href="http://bit.ly/96JeGB" rel="nofollow">http://bit.ly/96JeGB</a> <a href="http://twitter.com/cybercoder/statuses/11240429344" class="aktt_tweet_time">#</a></li>
<li>If it were my newspaper I&#39;d&#8230; (Scripting News) <a href="http://bit.ly/9PBTY8" rel="nofollow">http://bit.ly/9PBTY8</a> <a href="http://twitter.com/cybercoder/statuses/11248126656" class="aktt_tweet_time">#</a></li>
<li>Cancer <a href="http://bit.ly/ae2GmV" rel="nofollow">http://bit.ly/ae2GmV</a> <a href="http://twitter.com/cybercoder/statuses/11287089690" class="aktt_tweet_time">#</a></li>
<li>Google Knol <a href="http://bit.ly/bJrgAy" rel="nofollow">http://bit.ly/bJrgAy</a> <a href="http://twitter.com/cybercoder/statuses/11292225200" class="aktt_tweet_time">#</a></li>
<li>simsonizeme.com <a href="http://bit.ly/aiZ5zf" rel="nofollow">http://bit.ly/aiZ5zf</a> <a href="http://twitter.com/cybercoder/statuses/11296101760" class="aktt_tweet_time">#</a></li>
<li>WordPress Conversion <a href="http://bit.ly/dfsjDV" rel="nofollow">http://bit.ly/dfsjDV</a> <a href="http://twitter.com/cybercoder/statuses/11299295242" class="aktt_tweet_time">#</a></li>
<li>Official Google Blog: Improved chat for iGoogle and orkut <a href="http://bit.ly/9nAH5L" rel="nofollow">http://bit.ly/9nAH5L</a> <a href="http://twitter.com/cybercoder/statuses/11310304388" class="aktt_tweet_time">#</a></li>
<li>10 Features to Look Forward to in WordPress 3.0 | Nettuts+ <a href="http://bit.ly/cfXy3L" rel="nofollow">http://bit.ly/cfXy3L</a> <a href="http://twitter.com/cybercoder/statuses/11312216680" class="aktt_tweet_time">#</a></li>
<li>Google Docs <a href="http://bit.ly/bmmmZu" rel="nofollow">http://bit.ly/bmmmZu</a> <a href="http://twitter.com/cybercoder/statuses/11344988585" class="aktt_tweet_time">#</a></li>
<li>Email <a href="http://bit.ly/8XFMbI" rel="nofollow">http://bit.ly/8XFMbI</a> <a href="http://twitter.com/cybercoder/statuses/11350565296" class="aktt_tweet_time">#</a></li>
<li>Yahoo <a href="http://bit.ly/cV0xHf" rel="nofollow">http://bit.ly/cV0xHf</a> <a href="http://twitter.com/cybercoder/statuses/11354518161" class="aktt_tweet_time">#</a></li>
<li>AT&amp;T building out network capacity to prevent exodus to Verizon&#39;s iPhone? &#8211; Engadget <a href="http://i.http://ow.ly/1quwmL" rel="nofollow">http://i.http://ow.ly/1quwmL</a> <a href="http://twitter.com/cybercoder/statuses/11357471396" class="aktt_tweet_time">#</a></li>
<li>Adsense <a href="http://bit.ly/d9Bq17" rel="nofollow">http://bit.ly/d9Bq17</a> <a href="http://twitter.com/cybercoder/statuses/11357707655" class="aktt_tweet_time">#</a></li>
<li>940 million social media users in the world at InSites Blog <a href="http://bit.ly/aE31SP" rel="nofollow">http://bit.ly/aE31SP</a> <a href="http://twitter.com/cybercoder/statuses/11358486376" class="aktt_tweet_time">#</a></li>
<li>B.L. Ochman&#39;s blog: Social &amp; Emerging Media Still Suffer from Slide 29 Syndrome <a href="http://bit.ly/cJxsdC" rel="nofollow">http://bit.ly/cJxsdC</a> <a href="http://twitter.com/cybercoder/statuses/11358714645" class="aktt_tweet_time">#</a></li>
<li>The Houdini Guide to Getting Noticed Online | Copyblogger <a href="http://bit.ly/cu516B" rel="nofollow">http://bit.ly/cu516B</a> <a href="http://twitter.com/cybercoder/statuses/11366257419" class="aktt_tweet_time">#</a></li>
<li>Twitter Finally Attempts to Filter Tweets <a href="http://bit.ly/cYUvmv" rel="nofollow">http://bit.ly/cYUvmv</a> <a href="http://twitter.com/cybercoder/statuses/11368391346" class="aktt_tweet_time">#</a></li>
<li>The most popular social sharing options on the top blogs | Royal Pingdom <a href="http://bit.ly/9wKlas" rel="nofollow">http://bit.ly/9wKlas</a> <a href="http://twitter.com/cybercoder/statuses/11372385409" class="aktt_tweet_time">#</a></li>
<li>WordPress Building Another<br />
Revenue Stream: &#39;VaultPress&#39;<br />
Backup Service<br />
<a href="http://bit.ly/ciO71i" rel="nofollow">http://bit.ly/ciO71i</a> <a href="http://twitter.com/cybercoder/statuses/11372621052" class="aktt_tweet_time">#</a></li>
<li>Javascript <a href="http://bit.ly/dcSGBb" rel="nofollow">http://bit.ly/dcSGBb</a> <a href="http://twitter.com/cybercoder/statuses/11402862886" class="aktt_tweet_time">#</a></li>
<li>Garry Conn <a href="http://bit.ly/9JQ4o2" rel="nofollow">http://bit.ly/9JQ4o2</a> <a href="http://twitter.com/cybercoder/statuses/11408200139" class="aktt_tweet_time">#</a></li>
<li>Google AJAX APIs Blog: Helping you help us help you <a href="http://bit.ly/d6VWsc" rel="nofollow">http://bit.ly/d6VWsc</a> <a href="http://twitter.com/cybercoder/statuses/11409917759" class="aktt_tweet_time">#</a></li>
<li>Coming soon! Store anything in Google Docs <a href="http://bit.ly/dzyq6m" rel="nofollow">http://bit.ly/dzyq6m</a> (Remember what day it is) <a href="http://twitter.com/cybercoder/statuses/11410422032" class="aktt_tweet_time">#</a></li>
<li>Google Translate for Animals <a href="http://bit.ly/bRGtv3" rel="nofollow">http://bit.ly/bRGtv3</a> (Remember what day it is) <a href="http://twitter.com/cybercoder/statuses/11410460198" class="aktt_tweet_time">#</a></li>
<li>Google continues their April tradition. <a href="http://fb.me/vC8Kz8dk" rel="nofollow">http://fb.me/vC8Kz8dk</a> <a href="http://twitter.com/cybercoder/statuses/11410593176" class="aktt_tweet_time">#</a></li>
<li>Instant Messaging <a href="http://bit.ly/9qLiCi" rel="nofollow">http://bit.ly/9qLiCi</a> <a href="http://twitter.com/cybercoder/statuses/11412200892" class="aktt_tweet_time">#</a></li>
<li>Twitter Contest <a href="http://bit.ly/aYIs0P" rel="nofollow">http://bit.ly/aYIs0P</a> <a href="http://twitter.com/cybercoder/statuses/11415488018" class="aktt_tweet_time">#</a></li>
<li>ProBlogger Acquired by Google <a href="http://bit.ly/94glv9" rel="nofollow">http://bit.ly/94glv9</a> <a href="http://twitter.com/cybercoder/statuses/11422308956" class="aktt_tweet_time">#</a></li>
<li>April 1st has become something of an Internet event, always fun to see who has the most creative and believable item. <a href="http://twitter.com/cybercoder/statuses/11422399795" class="aktt_tweet_time">#</a></li>
<li>Google Name Change? A different<br />
kind of company name<br />
<a href="http://bit.ly/c6rkiO" rel="nofollow">http://bit.ly/c6rkiO</a> <a href="http://twitter.com/cybercoder/statuses/11422832478" class="aktt_tweet_time">#</a></li>
<li>KISS Principle <a href="http://bit.ly/8NUPwL" rel="nofollow">http://bit.ly/8NUPwL</a> <a href="http://twitter.com/cybercoder/statuses/11464823574" class="aktt_tweet_time">#</a></li>
<li>Color Combinations Tester &#8211; Combo Tester &#8211; ColorCombos.com <a href="http://bit.ly/doa55q" rel="nofollow">http://bit.ly/doa55q</a> <a href="http://twitter.com/cybercoder/statuses/11465242746" class="aktt_tweet_time">#</a></li>
<li>Wifi at Home <a href="http://bit.ly/a1cLfA" rel="nofollow">http://bit.ly/a1cLfA</a> <a href="http://twitter.com/cybercoder/statuses/11468867672" class="aktt_tweet_time">#</a></li>
<li>Android <a href="http://bit.ly/8L1bfv" rel="nofollow">http://bit.ly/8L1bfv</a> <a href="http://twitter.com/cybercoder/statuses/11472120489" class="aktt_tweet_time">#</a></li>
<li>Sprint offers 30 day money-back guarantee | PreCentral.net <a href="http://bit.ly/aqaWlz" rel="nofollow">http://bit.ly/aqaWlz</a> <a href="http://twitter.com/cybercoder/statuses/11486474544" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/MusicRamble" class="aktt_username">MusicRamble</a> Foghat Flashback <a href="http://bit.ly/ao24mz" rel="nofollow">http://bit.ly/ao24mz</a> <a href="http://twitter.com/cybercoder/statuses/11493507847" class="aktt_tweet_time">#</a></li>
<li>What Online Marketers Can Learn from the Postal Service | ReveNews <a href="http://bit.ly/d94j40" rel="nofollow">http://bit.ly/d94j40</a> <a href="http://twitter.com/cybercoder/statuses/11498730142" class="aktt_tweet_time">#</a></li>
<li>Digital Video Camera <a href="http://bit.ly/7kSprl" rel="nofollow">http://bit.ly/7kSprl</a> <a href="http://twitter.com/cybercoder/statuses/11514646083" class="aktt_tweet_time">#</a></li>
<li>WordPress 3.0, Beta 1 <a href="http://bit.ly/d0u1wt" rel="nofollow">http://bit.ly/d0u1wt</a> <a href="http://twitter.com/cybercoder/statuses/11516788453" class="aktt_tweet_time">#</a></li>
<li>Autoresponder <a href="http://bit.ly/bTfkes" rel="nofollow">http://bit.ly/bTfkes</a> <a href="http://twitter.com/cybercoder/statuses/11519637082" class="aktt_tweet_time">#</a></li>
<li>OOMA <a href="http://bit.ly/blxRVz" rel="nofollow">http://bit.ly/blxRVz</a> <a href="http://twitter.com/cybercoder/statuses/11523617220" class="aktt_tweet_time">#</a></li>
<li>Twitter <a href="http://bit.ly/aKLnLn" rel="nofollow">http://bit.ly/aKLnLn</a> <a href="http://twitter.com/cybercoder/statuses/11526828619" class="aktt_tweet_time">#</a></li>
<li>Google is the Default Search Engine For Apple&#39;s iPad &#8211; Search Engines from eWeek <a href="http://bit.ly/cqXOFe" rel="nofollow">http://bit.ly/cqXOFe</a> <a href="http://twitter.com/cybercoder/statuses/11534419560" class="aktt_tweet_time">#</a></li>
<li>ColorToy 2.0 &#8211; The Flash Color<br />
Scheme Generator<br />
<a href="http://bit.ly/9feW9Z" rel="nofollow">http://bit.ly/9feW9Z</a> (Thanks<br />
 @<a href="http://twitter.com/ramnathk" class="aktt_username">ramnathk</a>, great tool) <a href="http://twitter.com/cybercoder/statuses/11537956344" class="aktt_tweet_time">#</a></li>
<li>Just a test <a href="http://twitter.com/cybercoder/statuses/11539490193" class="aktt_tweet_time">#</a></li>
<li>Really hurts when I make a<br />
coding mistake, that I know<br />
better than making. <a href="http://twitter.com/cybercoder/statuses/11539605471" class="aktt_tweet_time">#</a></li>
<li>Contextual Advertising <a href="http://bit.ly/dzBlMA" rel="nofollow">http://bit.ly/dzBlMA</a> <a href="http://twitter.com/cybercoder/statuses/11566985744" class="aktt_tweet_time">#</a></li>
<li>I have noticed a trend of using the old phone ringtone on iPhones <a href="http://twitter.com/cybercoder/statuses/11568037614" class="aktt_tweet_time">#</a></li>
<li>Verdict after one day.<br />
(Scripting News)<br />
<a href="http://bit.ly/9EJvSY" rel="nofollow">http://bit.ly/9EJvSY</a>, (#4 is a<br />
great point.) <a href="http://twitter.com/cybercoder/statuses/11568813184" class="aktt_tweet_time">#</a></li>
<li>Twitter Creator&#39;s Credit Card<br />
Scanner Comes to iPad<br />
<a href="http://bit.ly/c8keEM" rel="nofollow">http://bit.ly/c8keEM</a> <a href="http://twitter.com/cybercoder/statuses/11569954214" class="aktt_tweet_time">#</a></li>
<li>iPod <a href="http://bit.ly/bblM5U" rel="nofollow">http://bit.ly/bblM5U</a> <a href="http://twitter.com/cybercoder/statuses/11572086214" class="aktt_tweet_time">#</a></li>
<li>I guess I am a Cyber Pack Rat, I have clean copies of WordPress going back to WordPress 2.0 in 2005. <a href="http://twitter.com/cybercoder/statuses/11573533899" class="aktt_tweet_time">#</a></li>
<li>I am testing a WordPress 3.0<br />
Beta upgrade.<br />
<a href="http://bit.ly/6k0bst" rel="nofollow">http://bit.ly/6k0bst</a> <a href="http://twitter.com/cybercoder/statuses/11575659128" class="aktt_tweet_time">#</a></li>
<li>The new Default Theme and Custom Menu in WordPress 3.0 are interesting. Appears to be a nice addition. <a href="http://twitter.com/cybercoder/statuses/11575893761" class="aktt_tweet_time">#</a></li>
<li>WP-ContactForm <a href="http://bit.ly/6VIFOe" rel="nofollow">http://bit.ly/6VIFOe</a> <a href="http://twitter.com/cybercoder/statuses/11576279834" class="aktt_tweet_time">#</a></li>
<li>Nice changes to the WordPress 3.0 Edit Themes page, cleaner file names,  descriptions, selected file. <a href="http://bit.ly/6k0bst" rel="nofollow">http://bit.ly/6k0bst</a> <a href="http://twitter.com/cybercoder/statuses/11577159678" class="aktt_tweet_time">#</a></li>
<li>Survey: Android surges, iPhone<br />
stalls &#8211; Apple 2.0 &#8211; Fortune<br />
Brainstorm Tech<br />
<a href="http://bit.ly/93fVR3" rel="nofollow">http://bit.ly/93fVR3</a> <a href="http://twitter.com/cybercoder/statuses/11593175495" class="aktt_tweet_time">#</a></li>
<li>Google API <a href="http://bit.ly/agIJ1o" rel="nofollow">http://bit.ly/agIJ1o</a> <a href="http://twitter.com/cybercoder/statuses/11621220315" class="aktt_tweet_time">#</a></li>
<li>Blogging Tips <a href="http://bit.ly/bZ0aRV" rel="nofollow">http://bit.ly/bZ0aRV</a> <a href="http://twitter.com/cybercoder/statuses/11626144436" class="aktt_tweet_time">#</a></li>
<li>Google Experimental Search <a href="http://bit.ly/dju4wP" rel="nofollow">http://bit.ly/dju4wP</a> <a href="http://twitter.com/cybercoder/statuses/11629683958" class="aktt_tweet_time">#</a></li>
<li>Real Estate Listings <a href="http://bit.ly/az9K30" rel="nofollow">http://bit.ly/az9K30</a> <a href="http://twitter.com/cybercoder/statuses/11632691701" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Texas Twitter Directory at TwitterStates.com <a href="http://bit.ly/2BoTwn" rel="nofollow">http://bit.ly/2BoTwn</a> <a href="http://twitter.com/cybercoder/statuses/11651649633" class="aktt_tweet_time">#</a></li>
<li>New way of scheduling my time, charge Netbook, work for the 4-5 hours the battery gives me, break, recharge, repeat&#8230; <a href="http://twitter.com/cybercoder/statuses/11652028534" class="aktt_tweet_time">#</a></li>
<li>Installed PHP 5 Apache MySQL on<br />
my HP Mini Netbook with<br />
WampServer <a href="http://bit.ly/a5XU6g" rel="nofollow">http://bit.ly/a5XU6g</a> <a href="http://twitter.com/cybercoder/statuses/11662609383" class="aktt_tweet_time">#</a></li>
<li>Increasing Conversations with<br />
Social Media | Better Closer<br />
<a href="http://bit.ly/abHGBS" rel="nofollow">http://bit.ly/abHGBS</a> <a href="http://twitter.com/cybercoder/statuses/11664072028" class="aktt_tweet_time">#</a></li>
<li>Looking forward to a great game between Duke and Butler tonight! <a href="http://twitter.com/cybercoder/statuses/11672515743" class="aktt_tweet_time">#</a></li>
<li>Excellent post from @<a href="http://twitter.com/WayneJohn" class="aktt_username">WayneJohn</a>,<br />
Establish a local WordPress<br />
development environment using<br />
WampServer <a href="http://bit.ly/bFuMDb" rel="nofollow">http://bit.ly/bFuMDb</a> <a href="http://twitter.com/cybercoder/statuses/11676523511" class="aktt_tweet_time">#</a></li>
<li>I never liked sites that played<br />
sounds automatically, and now my<br />
Verizon Wireless site  is<br />
talking to me. <a href="http://twitter.com/cybercoder/statuses/11704424178" class="aktt_tweet_time">#</a></li>
<li>Craig Newmark: Social Networks<br />
Are Shifting the Balance of<br />
Power <a href="http://bit.ly/aqSBc5" rel="nofollow">http://bit.ly/aqSBc5</a> <a href="http://twitter.com/cybercoder/statuses/11704821842" class="aktt_tweet_time">#</a></li>
<li>6 Features to Expect in iPhone<br />
OS 4.0 <a href="http://bit.ly/aej6l2" rel="nofollow">http://bit.ly/aej6l2</a> <a href="http://twitter.com/cybercoder/statuses/11705528406" class="aktt_tweet_time">#</a></li>
<li>Now this is funny, People review<br />
site Unvarnished gets another<br />
controversial review<br />
<a href="http://bit.ly/bZI0fR" rel="nofollow">http://bit.ly/bZI0fR</a> <a href="http://twitter.com/cybercoder/statuses/11720588509" class="aktt_tweet_time">#</a></li>
<li>How Google&#39;s Chrome Browser<br />
Could Overtake Firefox<br />
<a href="http://bit.ly/aCEfMX" rel="nofollow">http://bit.ly/aCEfMX</a> <a href="http://twitter.com/cybercoder/statuses/11721578885" class="aktt_tweet_time">#</a></li>
<li>The Twitter Platform&#39;s<br />
Inflection Point<br />
<a href="http://bit.ly/9qRAfe" rel="nofollow">http://bit.ly/9qRAfe</a> <a href="http://twitter.com/cybercoder/statuses/11767925251" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/MusicRamble" class="aktt_username">MusicRamble</a> Steve Howe<br />
<a href="http://bit.ly/cYijHk" rel="nofollow">http://bit.ly/cYijHk</a> <a href="http://twitter.com/cybercoder/statuses/11823484224" class="aktt_tweet_time">#</a></li>
<li>How to enable Multi-Site option<br />
in WordPress 3.0<br />
<a href="http://bit.ly/cqiYVd" rel="nofollow">http://bit.ly/cqiYVd</a> <a href="http://twitter.com/cybercoder/statuses/11824356838" class="aktt_tweet_time">#</a></li>
<li>Seven great PHP IDEs compared<br />
<a href="http://bit.ly/bIru06" rel="nofollow">http://bit.ly/bIru06</a> <a href="http://twitter.com/cybercoder/statuses/11826271515" class="aktt_tweet_time">#</a></li>
<li>Yes, Twitter Will Drink Your<br />
Milkshake <a href="http://bit.ly/aLdqLL" rel="nofollow">http://bit.ly/aLdqLL</a> <a href="http://twitter.com/cybercoder/statuses/11862568807" class="aktt_tweet_time">#</a></li>
<li>Facebook Limits Status Updates<br />
To 420 Characters<br />
<a href="http://bit.ly/cLYPOs" rel="nofollow">http://bit.ly/cLYPOs</a> <a href="http://twitter.com/cybercoder/statuses/11863812458" class="aktt_tweet_time">#</a></li>
<li>Great Masters Coverage on @<a href="http://twitter.com/DirecTV" class="aktt_username">DirecTV</a>, now about those same scoreboards and options for other sports like Nascar? <a href="http://twitter.com/cybercoder/statuses/11883321445" class="aktt_tweet_time">#</a></li>
<li>WordPress › PHP / MySQL Web<br />
Hosting <a href="http://bit.ly/ctY6w3" rel="nofollow">http://bit.ly/ctY6w3</a> <a href="http://twitter.com/cybercoder/statuses/11890434487" class="aktt_tweet_time">#</a></li>
<li>If you want to develop WordPress<br />
locally, Install PHP 5 Apache<br />
MySQL on Windows : WampServer<br />
<a href="http://bit.ly/a5XU6g" rel="nofollow">http://bit.ly/a5XU6g</a> <a href="http://twitter.com/cybercoder/statuses/11892501326" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Texas Twitter Directory at TwitterStates.com <a href="http://bit.ly/2BoTwn" rel="nofollow">http://bit.ly/2BoTwn</a> <a href="http://twitter.com/cybercoder/statuses/11896801855" class="aktt_tweet_time">#</a></li>
<li>Twitter Buys Tweetie, Adds Fuel<br />
to Developer Fires<br />
<a href="http://bit.ly/bE4W32" rel="nofollow">http://bit.ly/bE4W32</a> <a href="http://twitter.com/cybercoder/statuses/11937372450" class="aktt_tweet_time">#</a></li>
<li>Twitter Week for client<br />
developers. (Scripting News)<br />
<a href="http://bit.ly/b954Ng" rel="nofollow">http://bit.ly/b954Ng</a> <a href="http://twitter.com/cybercoder/statuses/11937618704" class="aktt_tweet_time">#</a></li>
<li>WAMP Server and WordPress<br />
permalinks problem? W3hobbyist<br />
solves it <a href="http://bit.ly/bMb4I3" rel="nofollow">http://bit.ly/bMb4I3</a> <a href="http://twitter.com/cybercoder/statuses/11955962878" class="aktt_tweet_time">#</a></li>
<li>Seth&#39;s Blog: When in doubt,<br />
disaggregate<br />
<a href="http://bit.ly/9xJu20" rel="nofollow">http://bit.ly/9xJu20</a> <a href="http://twitter.com/cybercoder/statuses/11991592400" class="aktt_tweet_time">#</a></li>
<li>Twitter Walking a Tightrope With<br />
Developers <a href="http://bit.ly/c9LYtp" rel="nofollow">http://bit.ly/c9LYtp</a> <a href="http://twitter.com/cybercoder/statuses/11994434293" class="aktt_tweet_time">#</a></li>
<li>Apple &#39;iAd&#39; Could Generate<br />
Billions in Revenue, Says<br />
Analyst &#8211; eWeek<br />
<a href="http://bit.ly/9CVUPs" rel="nofollow">http://bit.ly/9CVUPs</a> <a href="http://twitter.com/cybercoder/statuses/12022437354" class="aktt_tweet_time">#</a></li>
<li>Some interesting views on the<br />
Tweetie acquisition &#8211; Twitter<br />
Development Talk<br />
<a href="http://bit.ly/cRzjIB" rel="nofollow">http://bit.ly/cRzjIB</a> <a href="http://twitter.com/cybercoder/statuses/12050213887" class="aktt_tweet_time">#</a></li>
<li>Disc Golf sure has come a long<br />
way, check out some of these<br />
Rare Discs <a href="http://bit.ly/aVjnJA" rel="nofollow">http://bit.ly/aVjnJA</a> <a href="http://twitter.com/cybercoder/statuses/12068163969" class="aktt_tweet_time">#</a></li>
<li>Google Docs Updates with a<br />
Drawing Editor, Real-Time<br />
Collaboration, and Speed &#8211;<br />
Lifehacker <a href="http://bit.ly/cNud1O" rel="nofollow">http://bit.ly/cNud1O</a> <a href="http://twitter.com/cybercoder/statuses/12072646827" class="aktt_tweet_time">#</a></li>
<li>Twitter Has a Business Model:<br />
&#39;Promoted Tweets&#39; &#8211; Advertising<br />
Age <a href="http://bit.ly/cSUGdz" rel="nofollow">http://bit.ly/cSUGdz</a> <a href="http://twitter.com/cybercoder/statuses/12102842271" class="aktt_tweet_time">#</a></li>
<li>Pandora: Pandora Background<br />
Listening for iPhone OS 4<br />
<a href="http://bit.ly/dCVy6p" rel="nofollow">http://bit.ly/dCVy6p</a> <a href="http://twitter.com/cybercoder/statuses/12103279202" class="aktt_tweet_time">#</a></li>
<li>Twitter app competition :: Adam<br />
Kalsey <a href="http://bit.ly/9TTzHp" rel="nofollow">http://bit.ly/9TTzHp</a> <a href="http://twitter.com/cybercoder/statuses/12103644021" class="aktt_tweet_time">#</a></li>
<li>Vatican forgives The Beatles &#8211;<br />
FasterLouder.com.au<br />
<a href="http://bit.ly/aN2Lmd" rel="nofollow">http://bit.ly/aN2Lmd</a> <a href="http://twitter.com/cybercoder/statuses/12107297115" class="aktt_tweet_time">#</a></li>
<li>Leading by example and why you<br />
need to be an investigator &#8211;<br />
 @<a href="http://twitter.com/WayneJohn" class="aktt_username">WayneJohn</a> &#8211;<br />
<a href="http://bit.ly/aYnAwR" rel="nofollow">http://bit.ly/aYnAwR</a> <a href="http://twitter.com/cybercoder/statuses/12114629615" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/dailyrover" class="aktt_username">dailyrover</a> Thanks<br />
 @<a href="http://twitter.com/CyberCoder" class="aktt_username">CyberCoder</a> for adding Video Bar<br />
to my blog header<br />
<a href="http://bit.ly/de4Jmp" rel="nofollow">http://bit.ly/de4Jmp</a> (Your<br />
Welcome) <a href="http://twitter.com/cybercoder/statuses/12114708224" class="aktt_tweet_time">#</a></li>
<li>Hey @<a href="http://twitter.com/ATT" class="aktt_username">ATT</a> how about increasing<br />
coverage in East Texas! My<br />
iPhone is an iPod Touch now.<br />
Thanks alot. <a href="http://twitter.com/cybercoder/statuses/12123627039" class="aktt_tweet_time">#</a></li>
<li>Twitter’s New API “Will Change<br />
The Way You Use Twitter”<br />
<a href="http://bit.ly/cqsv7l" rel="nofollow">http://bit.ly/cqsv7l</a> <a href="http://twitter.com/cybercoder/statuses/12132876702" class="aktt_tweet_time">#</a></li>
<li>WordPress Freelance Work &#8211; New WordPress Websites &#8211; <a href="http://bit.ly/ah0iEK" rel="nofollow">http://bit.ly/ah0iEK</a> <a href="http://twitter.com/cybercoder/statuses/12173018617" class="aktt_tweet_time">#</a></li>
<li>Google AJAX APIs Blog: Rendering custom data in the Custom Search element <a href="http://bit.ly/9Ityfg" rel="nofollow">http://bit.ly/9Ityfg</a> <a href="http://twitter.com/cybercoder/statuses/12180495720" class="aktt_tweet_time">#</a></li>
<li>WordPress Freelance Work &#8211; 10 Articles (blog posts) about WordPress Plugins (reviews) &#8211; <a href="http://bit.ly/aCo2jg" rel="nofollow">http://bit.ly/aCo2jg</a> <a href="http://twitter.com/cybercoder/statuses/12194776270" class="aktt_tweet_time">#</a></li>
<li>WordPress Freelance Work &#8211; I need help to convert my html website to wordpress &#8211; <a href="http://bit.ly/bnkWHF" rel="nofollow">http://bit.ly/bnkWHF</a> <a href="http://twitter.com/cybercoder/statuses/12209720318" class="aktt_tweet_time">#</a></li>
<li>With More Cores, the Cell Phone<br />
Closes in on the Computer<br />
<a href="http://bit.ly/bzwDVY" rel="nofollow">http://bit.ly/bzwDVY</a> from<br />
 @<a href="http://twitter.com/gigaom" class="aktt_username">gigaom</a> <a href="http://twitter.com/cybercoder/statuses/12221373429" class="aktt_tweet_time">#</a></li>
<li>Twitter has 132 Million pages in Google Search <a href="http://bit.ly/bA1yfG" rel="nofollow">http://bit.ly/bA1yfG</a> <a href="http://twitter.com/cybercoder/statuses/12221676453" class="aktt_tweet_time">#</a></li>
<li>WOW, Facebook has over 1 BILLION<br />
pages in Google Search<br />
<a href="http://bit.ly/c7xKZk" rel="nofollow">http://bit.ly/c7xKZk</a> <a href="http://twitter.com/cybercoder/statuses/12221781122" class="aktt_tweet_time">#</a></li>
<li>Eric Schmidt on Chrome OS<br />
<a href="http://bit.ly/93fOym" rel="nofollow">http://bit.ly/93fOym</a> <a href="http://twitter.com/cybercoder/statuses/12224031496" class="aktt_tweet_time">#</a></li>
<li>Google Twitter Follow Finder:<br />
Find some sweet tweeps<br />
<a href="http://bit.ly/9Q849p" rel="nofollow">http://bit.ly/9Q849p</a> <a href="http://twitter.com/cybercoder/statuses/12224481732" class="aktt_tweet_time">#</a></li>
<li>How to Be More Productive (and Expand Your Network) in 4 Weeks <a href="http://bit.ly/d5syCr" rel="nofollow">http://bit.ly/d5syCr</a> <a href="http://twitter.com/cybercoder/statuses/12225127949" class="aktt_tweet_time">#</a></li>
<li>Got a Big Idea? Tell the White<br />
House on Twitter<br />
<a href="http://bit.ly/ccjrVU" rel="nofollow">http://bit.ly/ccjrVU</a> <a href="http://twitter.com/cybercoder/statuses/12225911509" class="aktt_tweet_time">#</a></li>
<li>WordPress Freelance Work &#8211; I need help to convert my html website to wordpress &#8211; <a href="http://bit.ly/bnkWHF" rel="nofollow">http://bit.ly/bnkWHF</a> <a href="http://twitter.com/cybercoder/statuses/12238753194" class="aktt_tweet_time">#</a></li>
<li>WordPress Freelance Work &#8211; I need help to convert my html website to wordpress &#8211; <a href="http://bit.ly/bnkWHF" rel="nofollow">http://bit.ly/bnkWHF</a> <a href="http://twitter.com/cybercoder/statuses/12269559033" class="aktt_tweet_time">#</a></li>
<li>Seth&#39;s Blog: When a stranger<br />
reads your blog<br />
<a href="http://bit.ly/937tzq" rel="nofollow">http://bit.ly/937tzq</a> <a href="http://twitter.com/cybercoder/statuses/12280342260" class="aktt_tweet_time">#</a></li>
<li>All Twitter’s Chirp<br />
announcements in one handy list<br />
<a href="http://bit.ly/9hOqiH" rel="nofollow">http://bit.ly/9hOqiH</a> <a href="http://twitter.com/cybercoder/statuses/12280748120" class="aktt_tweet_time">#</a></li>
<li>WordPress Freelance Work &#8211; I need help to convert my html website to wordpress &#8211; <a href="http://bit.ly/bnkWHF" rel="nofollow">http://bit.ly/bnkWHF</a> <a href="http://twitter.com/cybercoder/statuses/12306858407" class="aktt_tweet_time">#</a></li>
<li>WordPress Freelance Work &#8211; Front-End WordPress editor &amp; post type theme (payed in GBP) &#8211; <a href="http://bit.ly/9rQB5p" rel="nofollow">http://bit.ly/9rQB5p</a> <a href="http://twitter.com/cybercoder/statuses/12314719129" class="aktt_tweet_time">#</a></li>
<li>WordPress Freelance Work &#8211; WordPress-Powered News Aggregator/Blog &#8211; <a href="http://bit.ly/bcyYcW" rel="nofollow">http://bit.ly/bcyYcW</a> <a href="http://twitter.com/cybercoder/statuses/12340075293" class="aktt_tweet_time">#</a></li>
<li>I like cloudy days, it&#39;s the only time I can get a signal on my @<a href="http://twitter.com/ATT" class="aktt_username">ATT</a> iPhone, lol. <a href="http://twitter.com/cybercoder/statuses/12341156521" class="aktt_tweet_time">#</a></li>
<li>Google Chrome Leads Browser<br />
Upgrades Through Mandatory<br />
Updates <a href="http://bit.ly/cDKJxQ" rel="nofollow">http://bit.ly/cDKJxQ</a> <a href="http://twitter.com/cybercoder/statuses/12342124163" class="aktt_tweet_time">#</a></li>
<li>WordPress Freelance Work &#8211; customize a wordpress template including some admin interfac &#8211; <a href="http://bit.ly/aceIlJ" rel="nofollow">http://bit.ly/aceIlJ</a> <a href="http://twitter.com/cybercoder/statuses/12356374369" class="aktt_tweet_time">#</a></li>
<li>Looks like the rain went around us again, was actually looking forward to it for a change. <a href="http://twitter.com/cybercoder/statuses/12369582650" class="aktt_tweet_time">#</a></li>
<li>WordPress Freelance Work &#8211; WordPress Expert &#8211; <a href="http://bit.ly/byhfrt" rel="nofollow">http://bit.ly/byhfrt</a> <a href="http://twitter.com/cybercoder/statuses/12370335258" class="aktt_tweet_time">#</a></li>
<li>Tumblr: &#39;We&#39;re pretty opposed to<br />
advertising&#39; | Technology | Los<br />
Angeles Times<br />
<a href="http://bit.ly/cr5ULI" rel="nofollow">http://bit.ly/cr5ULI</a> <a href="http://twitter.com/cybercoder/statuses/12372274725" class="aktt_tweet_time">#</a></li>
</ul>
<p><g:plusone></g:plusone>&nbsp;&nbsp;<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="CyberCoder" data-related="DavidCooley">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybercoded.net/weekly-cybercoder-tweets-for-2010-04-17/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CyberTweets 2010-01-18</title>
		<link>http://www.cybercoded.net/cybertweets-2010-01-18/</link>
		<comments>http://www.cybercoded.net/cybertweets-2010-01-18/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 04:02:00 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Tweets]]></category>

		<guid isPermaLink="false">http://www.cybercoded.net/cybertweets-2010-01-18/</guid>
		<description><![CDATA[CyberTweets 2009-02-24 http://tinyurl.com/anhtjq # using the WPTouch plugin for viewing http://www.cybercoded.net on an iPhone, seems to work great ! # TwitterFon iPhone App http://tinyurl.com/aedbgs # I am impressed with the #iPhone apps from media sites like USA Today, Fox Sports and New York Times, better than reading feeds # #iPhone needs ability to auto sort [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>CyberTweets 2009-02-24 <a href="http://tinyurl.com/anhtjq" rel="nofollow">http://tinyurl.com/anhtjq</a> <a href="http://twitter.com/cybercoder/statuses/1248530645" class="aktt_tweet_time">#</a></li>
<li>using the WPTouch plugin for viewing <a href="http://www.cybercoded.net" rel="nofollow">http://www.cybercoded.net</a> on an iPhone, seems to work great ! <a href="http://twitter.com/cybercoder/statuses/1249696475" class="aktt_tweet_time">#</a></li>
<li>TwitterFon iPhone App <a href="http://tinyurl.com/aedbgs" rel="nofollow">http://tinyurl.com/aedbgs</a> <a href="http://twitter.com/cybercoder/statuses/1250729528" class="aktt_tweet_time">#</a></li>
<li>I am impressed with the #<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> apps from media sites like USA Today, Fox Sports and New York Times, better than reading feeds <a href="http://twitter.com/cybercoder/statuses/1251976085" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> needs ability to auto sort icons across pages based on usage <a href="http://twitter.com/cybercoder/statuses/1252753639" class="aktt_tweet_time">#</a></li>
<li>No there is a real shame, excellent domain name and great idea going to waste <a href="http://iphoneappoftheday.com/" rel="nofollow">http://iphoneappoftheday.com/</a> <a href="http://twitter.com/cybercoder/statuses/1254293158" class="aktt_tweet_time">#</a></li>
<li>Here are some #<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> apps I would like to see, #Nascar, #Obama, #<a href="http://search.twitter.com/search?q=%23Billboard" class="aktt_hashtag">Billboard</a> magazine, each states DOT department with road construction/GPS <a href="http://twitter.com/cybercoder/statuses/1254310369" class="aktt_tweet_time">#</a></li>
<li>Darts For The iPhone <a href="http://tinyurl.com/b6st4e" rel="nofollow">http://tinyurl.com/b6st4e</a> <a href="http://twitter.com/cybercoder/statuses/1254697270" class="aktt_tweet_time">#</a></li>
<li>Cheese Drums <a href="http://tinyurl.com/b4g4be" rel="nofollow">http://tinyurl.com/b4g4be</a> <a href="http://twitter.com/cybercoder/statuses/1257083808" class="aktt_tweet_time">#</a></li>
<li>Looking for someone to help me program a NEC Electra elite phone system <a href="http://twitter.com/cybercoder/statuses/1258281927" class="aktt_tweet_time">#</a></li>
<li>Finally got the phones reprogrammed, programming on a telephone display is certainly not like programming on a computer, lol&#8230; <a href="http://twitter.com/cybercoder/statuses/1259309571" class="aktt_tweet_time">#</a></li>
<li>I wish more sites would auto format for mobile use <a href="http://twitter.com/cybercoder/statuses/1260899054" class="aktt_tweet_time">#</a></li>
<li>One custom WordPress theme delivered to client, moving on to next project while I wait for approval. <a href="http://twitter.com/cybercoder/statuses/1263403369" class="aktt_tweet_time">#</a></li>
<li>Ok, Ok after 25 years of computing I am officially putting a MacBook on my list of things to get this year. <a href="http://twitter.com/cybercoder/statuses/1263417899" class="aktt_tweet_time">#</a></li>
<li>The iPhone has been the best tech decision I think I have ever made !! No joke or hype <a href="http://twitter.com/cybercoder/statuses/1263529047" class="aktt_tweet_time">#</a></li>
<li>RT @hardee: RIP Paul Harvey. <a href="http://twitter.com/cybercoder/statuses/1264179511" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-03-01 <a href="http://tinyurl.com/b9b26r" rel="nofollow">http://tinyurl.com/b9b26r</a> <a href="http://twitter.com/cybercoder/statuses/1264910594" class="aktt_tweet_time">#</a></li>
<li>crazy weather again, 2 days ago, 75 degrees, and today, a dusting of snow and ice on the ground <a href="http://twitter.com/cybercoder/statuses/1265403162" class="aktt_tweet_time">#</a></li>
<li>Kik <a href="http://twitter.com/cybercoder/statuses/1265412263" class="aktt_tweet_time">#</a></li>
<li>I was just doing some testing with the iPhone predictive text, it is amazing how fast you can type with it once you work with it. <a href="http://twitter.com/cybercoder/statuses/1265423010" class="aktt_tweet_time">#</a></li>
<li>Google Voice search on iPhone makes me fell like Captain Kirk <a href="http://twitter.com/cybercoder/statuses/1265431483" class="aktt_tweet_time">#</a></li>
<li>48% increase with one main area of my online income for the month of February, not too bad considering the state of the economy. <a href="http://twitter.com/cybercoder/statuses/1265592023" class="aktt_tweet_time">#</a></li>
<li>RT @maxpapis: <a href="http://twitpic.com/1s6hp" rel="nofollow">http://twitpic.com/1s6hp</a> &#8211; Pit lane ~ Thanks for the behind the scenes Max !! <a href="http://twitter.com/cybercoder/statuses/1266821421" class="aktt_tweet_time">#</a></li>
<li>Not Fade Away Gallery shows The Beatles &amp; Rolling Stones <a href="http://tinyurl.com/b25uvj" rel="nofollow">http://tinyurl.com/b25uvj</a> <a href="http://twitter.com/cybercoder/statuses/1268423704" class="aktt_tweet_time">#</a></li>
<li>RT @Scobleizer: Liked &quot;Twitter on Doonesbury&quot; <a href="http://ff.im/1iraI" rel="nofollow">http://ff.im/1iraI</a> ~ pretty realistic in some cases, LOL <a href="http://twitter.com/cybercoder/statuses/1269888518" class="aktt_tweet_time">#</a></li>
<li>Snow in Mississippi <a href="http://twitpic.com/1tily" rel="nofollow">http://twitpic.com/1tily</a> <a href="http://twitter.com/cybercoder/statuses/1274076791" class="aktt_tweet_time">#</a></li>
<li><a href="http://twitpic.com/1tin9" rel="nofollow">http://twitpic.com/1tin9</a> &#8211; Kitten climbing up balconey. <a href="http://twitter.com/cybercoder/statuses/1274085393" class="aktt_tweet_time">#</a></li>
<li>Congrats Mississippi, we are 42 out of 50 for Twitter grade by state, <a href="http://twitter.grader.com/top/usstates" rel="nofollow">http://twitter.grader.com/top/usstates</a>, it could be worse, lol&#8230; <a href="http://twitter.com/cybercoder/statuses/1274685028" class="aktt_tweet_time">#</a></li>
<li>Daylights Savings Time ends this weekend and I wish we could just get it rid of it forever, not sure it is of any value anymore <a href="http://twitter.com/cybercoder/statuses/1275383916" class="aktt_tweet_time">#</a></li>
<li>Since auto sales are falling drastically, does that mean auto parts are gonna surge? <a href="http://twitter.com/cybercoder/statuses/1275395639" class="aktt_tweet_time">#</a></li>
<li>I may have to turn some work over to others, just have too much demand and not enough time <a href="http://twitter.com/cybercoder/statuses/1276237921" class="aktt_tweet_time">#</a></li>
<li>This week has taken awhile just to get to hump day, who slowed the clocks down? <a href="http://twitter.com/cybercoder/statuses/1278268502" class="aktt_tweet_time">#</a></li>
<li>Hopefully that is the last of programming NEC Phones from the handset for awhile, not hard, just a pain to remember phone shorthand, lol <a href="http://twitter.com/cybercoder/statuses/1280172643" class="aktt_tweet_time">#</a></li>
<li>amazing how many different things in life are programmable, just gotta understand some logic and know which buttons to push <a href="http://twitter.com/cybercoder/statuses/1280185736" class="aktt_tweet_time">#</a></li>
<li>Replaced heating element in dryer, 20 year old dryer 2nd time replacing heating element, got my money from Amana on that one! <a href="http://twitter.com/cybercoder/statuses/1281247897" class="aktt_tweet_time">#</a></li>
<li>Paul &amp; Ringo Play for Peace <a href="http://tinyurl.com/cuvf37" rel="nofollow">http://tinyurl.com/cuvf37</a> <a href="http://twitter.com/cybercoder/statuses/1282690884" class="aktt_tweet_time">#</a></li>
<li>Just tried the Amazon iPhone app, very well done <a href="http://twitter.com/cybercoder/statuses/1286459490" class="aktt_tweet_time">#</a></li>
<li>The threaded texting is one of my favorite aspects of the #iPhone, makes it very easy to keep track of the conversation flow. <a href="http://twitter.com/cybercoder/statuses/1286599993" class="aktt_tweet_time">#</a></li>
<li>The Beatles: Rock Band Come Together 09-09-09 <a href="http://tinyurl.com/aquq7v" rel="nofollow">http://tinyurl.com/aquq7v</a> <a href="http://twitter.com/cybercoder/statuses/1287438658" class="aktt_tweet_time">#</a></li>
<li>Good Morning and TGIF! <a href="http://twitter.com/cybercoder/statuses/1287926576" class="aktt_tweet_time">#</a></li>
<li>Connected internal estimating system to Google Maps to help calculate mileage to the job site <a href="http://twitter.com/cybercoder/statuses/1288353161" class="aktt_tweet_time">#</a></li>
<li>we had snow last weekend, anticipating 80 degrees this weekend, I think it is time to get outside and have some fun <a href="http://twitter.com/cybercoder/statuses/1288731259" class="aktt_tweet_time">#</a></li>
<li>Glad T. O.  Is gone, lets move on Cowboys <a href="http://twitter.com/cybercoder/statuses/1289672019" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23Amazon" class="aktt_hashtag">Amazon</a> iPhone app pretty cool, take a picture and send to Amazon and they email you similar items they find. <a href="http://twitter.com/cybercoder/statuses/1289682397" class="aktt_tweet_time">#</a></li>
<li>Rare for me to get depressed, but sure hard to stay positive sometimes, my sister is out of coma and can not get the help she needs. Sad. <a href="http://twitter.com/cybercoder/statuses/1291257266" class="aktt_tweet_time">#</a></li>
<li>Gonna try to get a some work done before taking a little road trip today with my better half. <a href="http://twitter.com/cybercoder/statuses/1292513310" class="aktt_tweet_time">#</a></li>
<li>Treetop Boardwalk <a href="http://twitpic.com/1wm5h" rel="nofollow">http://twitpic.com/1wm5h</a> <a href="http://twitter.com/cybercoder/statuses/1293121347" class="aktt_tweet_time">#</a></li>
<li>Been hiking, antique browsing now it&#39;s time to try the local barbcue here in Crystal Springs, MS <a href="http://twitter.com/cybercoder/statuses/1293605397" class="aktt_tweet_time">#</a></li>
<li>That was the best barbcue I have had in a long, long time. Louise&#39;s Open Pit BBQ in Crystal Springs, MS <a href="http://twitpic.com/1wtht" rel="nofollow">http://twitpic.com/1wtht</a> <a href="http://twitter.com/cybercoder/statuses/1293765568" class="aktt_tweet_time">#</a></li>
<li>The Robert Johnson Museum was closed today when we went by, that was a bummer, but there is a festival in May we may go back for&#8230; <a href="http://twitter.com/cybercoder/statuses/1294478011" class="aktt_tweet_time">#</a></li>
<li>what a long day, it was a lot of fun and then we squeezed in a little work just to totally wear ourselves out, lol <a href="http://twitter.com/cybercoder/statuses/1294872108" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-03-08 <a href="http://tinyurl.com/c49w7z" rel="nofollow">http://tinyurl.com/c49w7z</a> <a href="http://twitter.com/cybercoder/statuses/1295793199" class="aktt_tweet_time">#</a></li>
<li>RT kenkarch: Comcast feed is gone on my tv&#8230;. anyone else having the problem? #<a href="http://search.twitter.com/search?q=%23nascar" class="aktt_hashtag">nascar</a> &#8212; Only on the HD channel <a href="http://twitter.com/cybercoder/statuses/1297153609" class="aktt_tweet_time">#</a></li>
<li>love the Victory lap on todays #<a href="http://search.twitter.com/search?q=%23Nascar" class="aktt_hashtag">Nascar</a> race, all the way around backwards, lol <a href="http://twitter.com/cybercoder/statuses/1297847703" class="aktt_tweet_time">#</a></li>
<li>Checking out Mr Tweet, my personal assistant who helps me discover great and relevant folks I did not know about! <a href="http://mrtweet.net?v=12" rel="nofollow">http://mrtweet.net?v=12</a> <a href="http://twitter.com/cybercoder/statuses/1300215734" class="aktt_tweet_time">#</a></li>
<li>We need an &quot;Open Mike&quot; #<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> App to find the closest place that offers a Open Mike night for local music talent !! <a href="http://twitter.com/cybercoder/statuses/1300938570" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/namecheap" class="aktt_username">namecheap</a> is offering free domains in their next trivia contest tomorrow as well as 3 dell mini netbooks! <a href="http://is.gd/9xMw" rel="nofollow">http://is.gd/9xMw</a> <a href="http://twitter.com/cybercoder/statuses/1301233918" class="aktt_tweet_time">#</a></li>
<li>Looking forward to the new @<a href="http://twitter.com/NameCheap" class="aktt_username">NameCheap</a> contest, I used all the free domains I won at Christmas so this is great timing !! Thanks <a href="http://twitter.com/cybercoder/statuses/1301238540" class="aktt_tweet_time">#</a></li>
<li>So glad the time has changed. Maybe now I can get some things done at night before it gets dark. <a href="http://twitter.com/cybercoder/statuses/1302393633" class="aktt_tweet_time">#</a></li>
<li>I have I told you how much I like my #iPhone? <a href="http://twitter.com/cybercoder/statuses/1305016869" class="aktt_tweet_time">#</a></li>
<li>During the last @<a href="http://twitter.com/Namecheap" class="aktt_username">Namecheap</a> contest my #<a href="http://search.twitter.com/search?q=%23Comcast" class="aktt_hashtag">Comcast</a> went out and cost me several places on leaderboard, now I have an #<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> and 3g!! <a href="http://twitter.com/cybercoder/statuses/1305073741" class="aktt_tweet_time">#</a></li>
<li>Just discovered the Apple Touch Icon, very cool way to add Home page icon to your #iPhone, also works well with redirects <a href="http://twitter.com/cybercoder/statuses/1305394083" class="aktt_tweet_time">#</a></li>
<li>Amazing how much we rely on our Copier/Scanner, pretty much shuts us down if there is a problem, good thing it is not coffee maker too, lol <a href="http://twitter.com/cybercoder/statuses/1306166622" class="aktt_tweet_time">#</a></li>
<li>Really enjoying tweaking web pages for the #iPhone, makes it easy to put my own stuff at fingertips, literally ! <a href="http://twitter.com/cybercoder/statuses/1306387395" class="aktt_tweet_time">#</a></li>
<li>Having flashbacks to last December, anticipating the next @<a href="http://twitter.com/NameCheap" class="aktt_username">NameCheap</a> Trivia question. <a href="http://twitter.com/cybercoder/statuses/1306751065" class="aktt_tweet_time">#</a></li>
<li>Enjoyed a nice walk tonight with the extra hour of daylight <a href="http://twitter.com/cybercoder/statuses/1308551273" class="aktt_tweet_time">#</a></li>
<li>The Eagles on Tour <a href="http://tinyurl.com/cecvlo" rel="nofollow">http://tinyurl.com/cecvlo</a> <a href="http://twitter.com/cybercoder/statuses/1309265379" class="aktt_tweet_time">#</a></li>
<li>Good morning everyone ! <a href="http://twitter.com/cybercoder/statuses/1310181978" class="aktt_tweet_time">#</a></li>
<li>is it just me, or is the @<a href="http://twitter.com/NameCheap" class="aktt_username">NameCheap</a> scoreboard a little off? <a href="http://twitter.com/cybercoder/statuses/1310738980" class="aktt_tweet_time">#</a></li>
<li>That is one of the reasons I like @NameCheap, Push domain names to other people real easy, makes buying and selling a snap ! <a href="http://twitter.com/cybercoder/statuses/1312073983" class="aktt_tweet_time">#</a></li>
<li>Good morning, looks like we get some more changes in weather today. If you don&#39;t like the weather here, just wait a few minutes&#8230; <a href="http://twitter.com/cybercoder/statuses/1315613678" class="aktt_tweet_time">#</a></li>
<li>Now there is a first, I just received a spam text to my #iPhone, great <a href="http://twitter.com/cybercoder/statuses/1316843738" class="aktt_tweet_time">#</a></li>
<li>Been so busy with day job and playing @<a href="http://twitter.com/NameCheap" class="aktt_username">NameCheap</a> Trivia on Twitter I have not posted much lately, I sure appreciate all the follows !! <a href="http://twitter.com/cybercoder/statuses/1317699007" class="aktt_tweet_time">#</a></li>
<li>I am starting to feel really old, both my kids have now purchased their own cars, Congrats to both !! <a href="http://twitter.com/cybercoder/statuses/1317711346" class="aktt_tweet_time">#</a></li>
<li>Listening to 10 teenagers talk made my eyes cross, LOL <a href="http://twitter.com/cybercoder/statuses/1319239144" class="aktt_tweet_time">#</a></li>
<li>Good morning, a beautiful rainy day just in time for the weekend. <a href="http://twitter.com/cybercoder/statuses/1321295182" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> flashlight handy, power outage this morning <a href="http://twitter.com/cybercoder/statuses/1321400712" class="aktt_tweet_time">#</a></li>
<li>Trying to find out why an engineer put a requirement for a &quot;pygmy goat&quot; in a construction contract, no joke, real contract. <a href="http://twitter.com/cybercoder/statuses/1321573126" class="aktt_tweet_time">#</a></li>
<li>I really miss San Antonio area, so much to do, so close. I could not believe how much it had grown last time I visited. <a href="http://twitter.com/cybercoder/statuses/1321639401" class="aktt_tweet_time">#</a></li>
<li>I need to convert old ASP app I wrote to PHP, and then attach it to a Visual Foxpro program, so we can access from anywhere, should be fun <a href="http://twitter.com/cybercoder/statuses/1322219746" class="aktt_tweet_time">#</a></li>
<li>OBD GPS unit just arrived for testing on vehicles, technology is amazing,  especially the physical size of devices these days <a href="http://twitter.com/cybercoder/statuses/1322473660" class="aktt_tweet_time">#</a></li>
<li>I answered the last question Canada, but I would dispute that there is no correct answer based on all the info I can find @<a href="http://twitter.com/NameCheap" class="aktt_username">NameCheap</a> <a href="http://twitter.com/cybercoder/statuses/1324310236" class="aktt_tweet_time">#</a></li>
<li>Marco Polo but Thomas Jefferson made in popular <a href="http://twitter.com/cybercoder/statuses/1325410061" class="aktt_tweet_time">#</a></li>
<li>Another beautiful cold drizzly Saturday <a href="http://twitter.com/cybercoder/statuses/1326716041" class="aktt_tweet_time">#</a></li>
<li>I am ready for the Move to Google Voice, been using Grand Central for a long time and love it, read more @ <a href="http://tinyurl.com/arxv77" rel="nofollow">http://tinyurl.com/arxv77</a> <a href="http://twitter.com/cybercoder/statuses/1326873821" class="aktt_tweet_time">#</a></li>
<li>Going to help a friend with a network issue.  Should be a little break from current projects. <a href="http://twitter.com/cybercoder/statuses/1327164914" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-03-15 <a href="http://tinyurl.com/bylxsd" rel="nofollow">http://tinyurl.com/bylxsd</a> <a href="http://twitter.com/cybercoder/statuses/1330634388" class="aktt_tweet_time">#</a></li>
<li>for my sports fix today I guess I wlll work on my March Madness picks since there is no Nascar race. <a href="http://twitter.com/cybercoder/statuses/1331203391" class="aktt_tweet_time">#</a></li>
<li>The #<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> should include a warning that you will need a designated driver once you buy one, lol <a href="http://twitter.com/cybercoder/statuses/1332140843" class="aktt_tweet_time">#</a></li>
<li>Glad I have my iPhone now, #<a href="http://search.twitter.com/search?q=%23comcast" class="aktt_hashtag">comcast</a> has gone out <a href="http://twitter.com/cybercoder/statuses/1332428134" class="aktt_tweet_time">#</a></li>
<li>A computer offline has become almost worthless to me, that&#39;s why I am trying to win a Dell Mini on the @<a href="http://twitter.com/NameCheap" class="aktt_username">NameCheap</a> Trivia <a href="http://twitter.com/cybercoder/statuses/1333152637" class="aktt_tweet_time">#</a></li>
<li>First thing this morning was finding that someone had let the air out my daughters tires, then cable was cut, great day, LOL <a href="http://twitter.com/cybercoder/statuses/1333162634" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> Dog Whistle app works pretty good! <a href="http://twitter.com/cybercoder/statuses/1333319262" class="aktt_tweet_time">#</a></li>
<li>Do they make a GPS chip for car keys? <a href="http://twitter.com/cybercoder/statuses/1334093354" class="aktt_tweet_time">#</a></li>
<li>I need to focus on one project today, not sure that is easier, but at least it breaks up the routines I get into sometimes. <a href="http://twitter.com/cybercoder/statuses/1336405312" class="aktt_tweet_time">#</a></li>
<li>Happy St.Patricks Day, did you wear green today? <a href="http://twitter.com/cybercoder/statuses/1341750774" class="aktt_tweet_time">#</a></li>
<li>Trying to decide if I should keep playing this hard at @<a href="http://twitter.com/NameCheap" class="aktt_username">NameCheap</a> Trivia, pretty obvious can not catch @<a href="http://twitter.com/b10m" class="aktt_username">b10m</a> or @<a href="http://twitter.com/haggaret" class="aktt_username">haggaret</a> for a Dell Mini <a href="http://twitter.com/cybercoder/statuses/1342338910" class="aktt_tweet_time">#</a></li>
<li>RT @mashable: 6 iPhone Apps for the Ultimate March Madness Experience &#8211; <a href="http://bit.ly/pQNfa" rel="nofollow">http://bit.ly/pQNfa</a> <a href="http://twitter.com/cybercoder/statuses/1342378233" class="aktt_tweet_time">#</a></li>
<li>I hope we get a couple of these items (<a href="http://tinyurl.com/ck84lh" rel="nofollow">http://tinyurl.com/ck84lh</a>) in the new #<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> OS 3.0 <a href="http://twitter.com/cybercoder/statuses/1342583321" class="aktt_tweet_time">#</a></li>
<li>Yes finally, Cut, Copy and Paste for the #<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> ! Life is good, lol <a href="http://twitter.com/cybercoder/statuses/1343569164" class="aktt_tweet_time">#</a></li>
<li>Fritos and Coffee, breakfast of champions, or at least geeks without enough sleep, lol <a href="http://twitter.com/cybercoder/statuses/1348376037" class="aktt_tweet_time">#</a></li>
<li>Really want the new #<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> OS 3? Pay $99 and get it now in beta, wonder how many people will do that? <a href="http://tinyurl.com/34a5q7" rel="nofollow">http://tinyurl.com/34a5q7</a> <a href="http://twitter.com/cybercoder/statuses/1349209877" class="aktt_tweet_time">#</a></li>
<li>Homemade Thai food for lunch, I am so spoiled, lol&#8230;.. <a href="http://twitter.com/cybercoder/statuses/1349360541" class="aktt_tweet_time">#</a></li>
<li>Is there a way to program the #<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> Slide Unlock to move right to left instead of left to right? <a href="http://twitter.com/cybercoder/statuses/1349577967" class="aktt_tweet_time">#</a></li>
<li>Been another long day programming. <a href="http://twitter.com/cybercoder/statuses/1357550396" class="aktt_tweet_time">#</a></li>
<li>TGIF and Good Morning to everyone ! <a href="http://twitter.com/cybercoder/statuses/1359831508" class="aktt_tweet_time">#</a></li>
<li>Took a couple days to get used to my new bifocals, but thinks are looking much better now <a href="http://twitter.com/cybercoder/statuses/1361753217" class="aktt_tweet_time">#</a></li>
<li>Have to set an alarm to watch this game tomorrow, home team versus my next favorite, 8:15 pm Texas #<a href="http://search.twitter.com/search?q=%237" class="aktt_hashtag">7</a> vs Duke #<a href="http://search.twitter.com/search?q=%232" class="aktt_hashtag">2</a> <a href="http://twitter.com/cybercoder/statuses/1362311237" class="aktt_tweet_time">#</a></li>
<li>ten o&#39;clock <a href="http://twitter.com/cybercoder/statuses/1362339841" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-03-22 <a href="http://tinyurl.com/d4sl8s" rel="nofollow">http://tinyurl.com/d4sl8s</a> <a href="http://twitter.com/cybercoder/statuses/1369621822" class="aktt_tweet_time">#</a></li>
<li>IMDB needs to develop an #<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> app <a href="http://twitter.com/cybercoder/statuses/1370194657" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23Wordpress" class="aktt_hashtag">WordPress</a> WPTouch #<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> Plugin upgrade is available at <a href="http://tinyurl.com/68z8og" rel="nofollow">http://tinyurl.com/68z8og</a> <a href="http://twitter.com/cybercoder/statuses/1371466563" class="aktt_tweet_time">#</a></li>
<li>I built a simple Twitter Tracker to keep track of Twitter Search Trends updated each hour <a href="http://tinyurl.com/dgwhox" rel="nofollow">http://tinyurl.com/dgwhox</a> comments are appreciated <a href="http://twitter.com/cybercoder/statuses/1371816627" class="aktt_tweet_time">#</a></li>
<li>might be time to quit playing @<a href="http://twitter.com/NameCheap" class="aktt_username">NameCheap</a> Trivia, can&#39;t catch the top 2 and pretty sure random winner will not be in Top 10, lol <a href="http://twitter.com/cybercoder/statuses/1373056060" class="aktt_tweet_time">#</a></li>
<li>The end of a nice weekend, time to get ready for the busy upcoming week. <a href="http://twitter.com/cybercoder/statuses/1373212263" class="aktt_tweet_time">#</a></li>
<li>I finally realized it was better to arrange #<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> desktop from bottom to top for thumb clicks, I use left hand so most used at bottom left <a href="http://twitter.com/cybercoder/statuses/1375427854" class="aktt_tweet_time">#</a></li>
<li>Another #<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> convert <a href="http://tinyurl.com/ch89wo" rel="nofollow">http://tinyurl.com/ch89wo</a> <a href="http://twitter.com/cybercoder/statuses/1375450743" class="aktt_tweet_time">#</a></li>
<li>Testing HelpYouTrack GPS Vehicle Tracking System, impressed and they added a Twitter function for us to try <a href="http://tinyurl.com/chgs8l" rel="nofollow">http://tinyurl.com/chgs8l</a> <a href="http://twitter.com/cybercoder/statuses/1377056044" class="aktt_tweet_time">#</a></li>
<li>RT @AllBimmerDOTcom: RT @<a href="http://twitter.com/leeodden" class="aktt_username">leeodden</a> Very cool Twitter visualization tool <a href="http://twitter.mailana.com/" rel="nofollow">http://twitter.mailana.com/</a> Good Stuff&#8230;Just Tried it out. <a href="http://twitter.com/cybercoder/statuses/1377348385" class="aktt_tweet_time">#</a></li>
<li>Did a little yard work tonight, me and physical labor just don&#39;t like each other as much as we once did, of course I never had a green thumb <a href="http://twitter.com/cybercoder/statuses/1379145573" class="aktt_tweet_time">#</a></li>
<li>RT @Way2WorkatHome: Twitter account that impersonated Austin police is shut down <a href="http://bit.ly/5OSg6" rel="nofollow">http://bit.ly/5OSg6</a> <a href="http://twitter.com/cybercoder/statuses/1381736653" class="aktt_tweet_time">#</a></li>
<li>Giving @<a href="http://twitter.com/Tweetie" class="aktt_username">Tweetie</a> a shot, so far so good, seems a little faster than my current Twitter #<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> client and has some nice extra features <a href="http://twitter.com/cybercoder/statuses/1382037393" class="aktt_tweet_time">#</a></li>
<li>Just watched @<a href="http://twitter.com/vicadnews" class="aktt_username">vicadnews</a> video of @<a href="http://twitter.com/mikiesoft" class="aktt_username">mikiesoft</a> , thanks for the mention bro!, the #<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> is it for me! <a href="http://tinyurl.com/cv446t" rel="nofollow">http://tinyurl.com/cv446t</a> <a href="http://twitter.com/cybercoder/statuses/1383295846" class="aktt_tweet_time">#</a></li>
<li>Good Article &#8211; Twitter improves SEO; may become your top hit on Google  <a href="http://tinyurl.com/djgh3z" rel="nofollow">http://tinyurl.com/djgh3z</a> <a href="http://twitter.com/cybercoder/statuses/1383339636" class="aktt_tweet_time">#</a></li>
<li>Good example of how Twitter is doing a great job on SEO with Profiles and Status Pages, <a href="http://tinyurl.com/cpmov4" rel="nofollow">http://tinyurl.com/cpmov4</a>, better than YouTube!? <a href="http://twitter.com/cybercoder/statuses/1383524057" class="aktt_tweet_time">#</a></li>
<li>Good Morning, I had to swim to work this morning as the rain as been coming down all night <a href="http://twitter.com/cybercoder/statuses/1387582104" class="aktt_tweet_time">#</a></li>
<li>RT @chuckwelch: Could anyone recommend a Lakeland jeweler for some simple repair/resize work on a ring? #<a href="http://search.twitter.com/search?q=%23lkld" class="aktt_hashtag">lkld</a> (I need this too) <a href="http://twitter.com/cybercoder/statuses/1388737467" class="aktt_tweet_time">#</a></li>
<li>I had to watch #<a href="http://search.twitter.com/search?q=%23Twilight" class="aktt_hashtag">Twilight</a> with my wife and daughters, not exactly my type of movie but it was better than I expected. <a href="http://twitter.com/cybercoder/statuses/1391876638" class="aktt_tweet_time">#</a></li>
<li>Congrats to @b10m, @<a href="http://twitter.com/haggaret" class="aktt_username">haggaret</a> and @<a href="http://twitter.com/fricky" class="aktt_username">fricky</a> on winning Mini Dell&#39;s in the @<a href="http://twitter.com/NameCheap" class="aktt_username">NameCheap</a> Trivia Contest ! <a href="http://twitter.com/cybercoder/statuses/1395025450" class="aktt_tweet_time">#</a></li>
<li>Looks like we are gonna have beautiful weather sandwiched between these storm fronts this week <a href="http://twitter.com/cybercoder/statuses/1396580725" class="aktt_tweet_time">#</a></li>
<li>Twitter is getting a lot of public attention, I was asked about it several times today by people who had no idea how or why to use it <a href="http://twitter.com/cybercoder/statuses/1396592620" class="aktt_tweet_time">#</a></li>
<li>I quit working as hard as I was, and I started getting twice as much work <a href="http://twitter.com/cybercoder/statuses/1397080890" class="aktt_tweet_time">#</a></li>
<li>Inquistor #<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> app is an excellent search app <a href="http://twitter.com/cybercoder/statuses/1399630051" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23Twilight" class="aktt_hashtag">Twilight</a> continues to be a strong Twitter Search Trend <a href="http://tinyurl.com/twacker" rel="nofollow">http://tinyurl.com/twacker</a> <a href="http://twitter.com/cybercoder/statuses/1401355346" class="aktt_tweet_time">#</a></li>
<li>twilight, iPhone and Earth Hour continue to be the Hot Twitter Topics over the last few days <a href="http://tinyurl.com/twacker" rel="nofollow">http://tinyurl.com/twacker</a> <a href="http://twitter.com/cybercoder/statuses/1402012752" class="aktt_tweet_time">#</a></li>
<li>My sister came out of her coma in January and now faces some hard rehab, hopefully this fundraiser will help <a href="http://tinyurl.com/cacbt4" rel="nofollow">http://tinyurl.com/cacbt4</a> <a href="http://twitter.com/cybercoder/statuses/1408487721" class="aktt_tweet_time">#</a></li>
<li>Had a pretty good day. Finished some coding work, got some yard work done and did a little shopping at BestBuy, my favorite toy store. <a href="http://twitter.com/cybercoder/statuses/1410430797" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-03-29 <a href="http://tinyurl.com/dyaemz" rel="nofollow">http://tinyurl.com/dyaemz</a> <a href="http://twitter.com/cybercoder/statuses/1411334975" class="aktt_tweet_time">#</a></li>
<li>Clients sure seem to like the new Pricing Structure I am using, $1 a minute, no minimum. <a href="http://twitter.com/cybercoder/statuses/1413153975" class="aktt_tweet_time">#</a></li>
<li>Just wanted to say thanks to everyone who let me help them this weekend with their #<a href="http://search.twitter.com/search?q=%23Wordpress" class="aktt_hashtag">WordPress</a> problems, I always enjoy helping you! <a href="http://twitter.com/cybercoder/statuses/1415190303" class="aktt_tweet_time">#</a></li>
<li>RT @mashable: Retweet iPhone App for Twitter: Free for 24h! (please RT!) &#8211; <a href="http://bit.ly/lWWN5" rel="nofollow">http://bit.ly/lWWN5</a> <a href="http://twitter.com/cybercoder/statuses/1417540071" class="aktt_tweet_time">#</a></li>
<li>Earth Hour has been the hottest Twitter Trend for the last few days by a pretty good margin over Twilight <a href="http://tinyurl.com/twacker" rel="nofollow">http://tinyurl.com/twacker</a> <a href="http://twitter.com/cybercoder/statuses/1418435722" class="aktt_tweet_time">#</a></li>
<li>After trying to find the best iPhone case, I wonder just how large the market is for iPhone accessories? <a href="http://tinyurl.com/dcnw2c" rel="nofollow">http://tinyurl.com/dcnw2c</a> <a href="http://twitter.com/cybercoder/statuses/1418543154" class="aktt_tweet_time">#</a></li>
<li>RT @mcuban: can&#39;t say no one makes money from twitter now. the nba does ) &#8211; now that was funny!! <a href="http://twitter.com/cybercoder/statuses/1418961309" class="aktt_tweet_time">#</a></li>
<li>Giving @<a href="http://twitter.com/radtech" class="aktt_username">radtech</a> a try, they seem to have good pricing and they accept  PayPal for #<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> gear. <a href="http://twitter.com/cybercoder/statuses/1419180945" class="aktt_tweet_time">#</a></li>
<li>Who has the best pricing and customer support for Guitar gear on the Internet? I need a couple guitar stands and hangars. <a href="http://twitter.com/cybercoder/statuses/1419198352" class="aktt_tweet_time">#</a></li>
<li>I just love working on stuff, I have programmed a phone system, a highway message board, desktop app and web app so far today&#8230;next&#8230; <a href="http://twitter.com/cybercoder/statuses/1419802211" class="aktt_tweet_time">#</a></li>
<li>I did not get to attend since it was so far away, but it looks like the benefit was a big help for my sister ! <a href="http://tinyurl.com/catpuk" rel="nofollow">http://tinyurl.com/catpuk</a> <a href="http://twitter.com/cybercoder/statuses/1419897544" class="aktt_tweet_time">#</a></li>
<li>Very nice, ordered something earlier from @<a href="http://twitter.com/radtech" class="aktt_username">radtech</a> and just got an email telling me it has shipped with a tracking number. <a href="http://twitter.com/cybercoder/statuses/1420025948" class="aktt_tweet_time">#</a></li>
<li>If you are learning/working with PHP, MySQL and/or AJAX I would highly recommend Aleix Cortadellas&#39; Blog <a href="http://tinyurl.com/dj8paj" rel="nofollow">http://tinyurl.com/dj8paj</a> <a href="http://twitter.com/cybercoder/statuses/1424778143" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/WebProNews" class="aktt_username">WebProNews</a> Skype for iPhone Officially Available <a href="http://tinyurl.com/dfvjwg" rel="nofollow">http://tinyurl.com/dfvjwg</a> <a href="http://twitter.com/cybercoder/statuses/1425026733" class="aktt_tweet_time">#</a></li>
<li>♫ <a href="http://blip.fm/~3od2o" rel="nofollow">http://blip.fm/~3od2o</a> <a href="http://twitter.com/cybercoder/statuses/1431303038" class="aktt_tweet_time">#</a></li>
<li>ROFL &#8211; As with years past, Google does it again. Gmail Autopilot <a href="http://tinyurl.com/czdqtv" rel="nofollow">http://tinyurl.com/czdqtv</a> <a href="http://twitter.com/cybercoder/statuses/1431359251" class="aktt_tweet_time">#</a></li>
<li>What is the best #<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> 3g Case? I know that is subjective, but I would love to hear from others what they like and don&#39;t like. <a href="http://twitter.com/cybercoder/statuses/1434142384" class="aktt_tweet_time">#</a></li>
<li>Good Morning everyone. Focusing on having a productive day! <a href="http://twitter.com/cybercoder/statuses/1437747138" class="aktt_tweet_time">#</a></li>
<li>Micro Blogging <a href="http://tinyurl.com/cvf34x" rel="nofollow">http://tinyurl.com/cvf34x</a> <a href="http://twitter.com/cybercoder/statuses/1438598840" class="aktt_tweet_time">#</a></li>
<li>WordPress for iPhone working well, solid app, a few added features would be nice, but so far so good <a href="http://tinyurl.com/5sf9hw" rel="nofollow">http://tinyurl.com/5sf9hw</a> <a href="http://twitter.com/cybercoder/statuses/1438652282" class="aktt_tweet_time">#</a></li>
<li>RT @MikeMueller: I like auto DM&#39;s with links!  I really do.  It helps me separate who to not follow quickly and easily.  Thanks Auto DM&#39;ers! <a href="http://twitter.com/cybercoder/statuses/1438927393" class="aktt_tweet_time">#</a></li>
<li>RT @JxnFreePress: Stay alert! It&#39;s tornado season and Jackson is under a watch until 5 p.m. Nasty stuff moving in from the west right now. <a href="http://twitter.com/cybercoder/statuses/1439349690" class="aktt_tweet_time">#</a></li>
<li>Twitter is focusing work on changes to the home page, yet it seems most activity is not even from &quot;the web&quot;? <a href="http://twitter.com/cybercoder/statuses/1439734726" class="aktt_tweet_time">#</a></li>
<li>Storms went around us today,  looks like we get a couple days of nice weather.  Hopefully I get to spend most of tomorrow programming. <a href="http://twitter.com/cybercoder/statuses/1442726755" class="aktt_tweet_time">#</a></li>
<li>Trying to decide what I think about the possible Google/Twitter deal? <a href="http://twitter.com/cybercoder/statuses/1444927026" class="aktt_tweet_time">#</a></li>
<li>Google Talk on #<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> does not work, I have tried everything I can think of. If you have an details on getting it to work, let me know <a href="http://twitter.com/cybercoder/statuses/1445413392" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23followfriday" class="aktt_hashtag">followfriday</a> @waynejohn, @mikiesoft, @samrhall, @AndreaKalli, @littletechgirl, @SEOCatfish, @FredPeters, @AllynPaul, @<a href="http://twitter.com/KIntheHouse" class="aktt_username">KIntheHouse</a> <a href="http://twitter.com/cybercoder/statuses/1446461676" class="aktt_tweet_time">#</a></li>
<li>Maybe a nice laid back Friday night is just what the doctor ordered. <a href="http://twitter.com/cybercoder/statuses/1448108472" class="aktt_tweet_time">#</a></li>
<li><a href="http://twitpic.com/2t7jf" rel="nofollow">http://twitpic.com/2t7jf</a> &#8211; <a href="http://twitter.com/cybercoder/statuses/1451492498" class="aktt_tweet_time">#</a></li>
<li><a href="http://twitpic.com/2t7jf" rel="nofollow">http://twitpic.com/2t7jf</a> &#8211; Pandora needs to add Twitter to this list! <a href="http://twitter.com/cybercoder/statuses/1451495754" class="aktt_tweet_time">#</a></li>
<li>Had a pretty good day getting jobs done around the house, nice spring time weather sure helps <a href="http://twitter.com/cybercoder/statuses/1454021730" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-04-05 <a href="http://tinyurl.com/d3ddhm" rel="nofollow">http://tinyurl.com/d3ddhm</a> <a href="http://twitter.com/cybercoder/statuses/1456160823" class="aktt_tweet_time">#</a></li>
<li>RT @mww1954: Seth Godin on the power of the tiny picture. Worth the minute to read.   <a href="http://bit.ly/3AhD" rel="nofollow">http://bit.ly/3AhD</a> #<a href="http://search.twitter.com/search?q=%23technology" class="aktt_hashtag">technology</a> <a href="http://twitter.com/cybercoder/statuses/1456828567" class="aktt_tweet_time">#</a></li>
<li>I would not mind having one of these 1968 Mustangs ! <a href="http://www.1968mustangforsale.com/" rel="nofollow">http://www.1968mustangforsale.com/</a> <a href="http://twitter.com/cybercoder/statuses/1457080771" class="aktt_tweet_time">#</a></li>
<li>Obviously I was not over my sinus cold like I thought, after working in yard yesterday, I am back to being pretty sick <a href="http://twitter.com/cybercoder/statuses/1457350062" class="aktt_tweet_time">#</a></li>
<li>Long day, can not remember the last time I spent so much of a day sleeping from being sick. <a href="http://twitter.com/cybercoder/statuses/1460135266" class="aktt_tweet_time">#</a></li>
<li>Just watched &quot;Lie to Me&quot; TV show, got me looking things up for &quot;microexpressions&quot;, pretty interesting reading <a href="http://tinyurl.com/dfpu6o" rel="nofollow">http://tinyurl.com/dfpu6o</a> <a href="http://twitter.com/cybercoder/statuses/1460201482" class="aktt_tweet_time">#</a></li>
<li>Just realized the USA Today #<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> app has Twitter and Facebook sharing options. <a href="http://twitter.com/cybercoder/statuses/1460384432" class="aktt_tweet_time">#</a></li>
<li>Carter Albrecht Alive in the Jesus Light <a href="http://twurl.nl/u28ipa" rel="nofollow">http://twurl.nl/u28ipa</a> <a href="http://twitter.com/cybercoder/statuses/1461500923" class="aktt_tweet_time">#</a></li>
<li>YouTube Iphone App needs a Share on Twitter function ! <a href="http://twitter.com/cybercoder/statuses/1464573173" class="aktt_tweet_time">#</a></li>
<li>One of my favorite YouTube music videos &#8212; Ukulele weeps by Jake Shimabukuro <a href="http://www.youtube.com/watch?v=puSkP3uym5k" rel="nofollow">http://www.youtube.com/watch?v=puSkP3uym5k</a> <a href="http://twitter.com/cybercoder/statuses/1464653581" class="aktt_tweet_time">#</a></li>
<li>I know where some coders will go on their next break, The AJAX API Playground (Ver. 2) &#8211; <a href="http://tinyurl.com/cear5d" rel="nofollow">http://tinyurl.com/cear5d</a> <a href="http://twitter.com/cybercoder/statuses/1464802778" class="aktt_tweet_time">#</a></li>
<li>Interesting, Twitter appears to have lost my profile design somewhere along the way today? <a href="http://twitter.com/cybercoder/statuses/1465446735" class="aktt_tweet_time">#</a></li>
<li>Front page article in the @<a href="http://twitter.com/ClarionLedger" class="aktt_username">ClarionLedger</a> this morning on social networking surprised me. I get asked more about Twitter each day. <a href="http://twitter.com/cybercoder/statuses/1469290414" class="aktt_tweet_time">#</a></li>
<li>They should have shot him down &#8211; <a href="http://www.abcnews.go.com/Technology/story?id=7275586&amp;page=1" rel="nofollow">http://www.abcnews.go.com/Technology/story?id=7275586&amp;page=1</a> (via @addthis) <a href="http://twitter.com/cybercoder/statuses/1469564625" class="aktt_tweet_time">#</a></li>
<li>The Twitter Fail Whale is swimming around a lot lately. <a href="http://twitter.com/cybercoder/statuses/1470425004" class="aktt_tweet_time">#</a></li>
<li>Is a Flip Video recorder a good option for a person who wants to work with video for the first time? <a href="http://twitter.com/cybercoder/statuses/1471164490" class="aktt_tweet_time">#</a></li>
<li>Starting to think I may have to find a new job, and I know that will not be easy in todays economy. <a href="http://twitter.com/cybercoder/statuses/1473699539" class="aktt_tweet_time">#</a></li>
<li>RT @alexpuig: PHP Bullshit Meter <a href="http://cli.gs/WM7y1X" rel="nofollow">http://cli.gs/WM7y1X</a> <a href="http://twitter.com/cybercoder/statuses/1475867537" class="aktt_tweet_time">#</a></li>
<li>There are some nice old VW Bugs for sale, still one of my favorite cars <a href="http://www.oldvolkswagenbeetle.com/" rel="nofollow">http://www.oldvolkswagenbeetle.com/</a> <a href="http://twitter.com/cybercoder/statuses/1475988150" class="aktt_tweet_time">#</a></li>
<li>RT @nbrigagliano: which is better a Flip video or a Kodak z16? <a href="http://twitter.com/cybercoder/statuses/1476069724" class="aktt_tweet_time">#</a></li>
<li>Google Talk started working on my iPhone, not sure but my guess is the new rollout on Gmail and Calendar may have had a patch in it. <a href="http://twitter.com/cybercoder/statuses/1476350496" class="aktt_tweet_time">#</a></li>
<li>iGoogle can be a great page/tool, if only you could shrink the header, what a waste of space! <a href="http://twitter.com/cybercoder/statuses/1476619470" class="aktt_tweet_time">#</a></li>
<li>One way to tell there are a lot of new Twitterers&#8230;..so many default avatars on the &quot;Everyone&quot; page! <a href="http://twitter.com/cybercoder/statuses/1477226154" class="aktt_tweet_time">#</a></li>
<li>RT @waynejohn: 50 Important Web Development Guidelines <a href="http://tinyurl.com/cklnp4" rel="nofollow">http://tinyurl.com/cklnp4</a> <a href="http://twitter.com/cybercoder/statuses/1477505698" class="aktt_tweet_time">#</a></li>
<li>RT @davewiner: New blog post: AP is fighting last century&#39;s battle. <a href="http://tr.im/is4M" rel="nofollow">http://tr.im/is4M</a> -&gt; good points to consider <a href="http://twitter.com/cybercoder/statuses/1478192397" class="aktt_tweet_time">#</a></li>
<li>ComScore Twitter stats are interesting, 45-54 year olds are the top demographic, hey, I am not alone here! <a href="http://tinyurl.com/czs4bx" rel="nofollow">http://tinyurl.com/czs4bx</a> <a href="http://twitter.com/cybercoder/statuses/1478992633" class="aktt_tweet_time">#</a></li>
<li>I am now acting as an iPhone coach to some of my clients, pretty interesting, I always learn to see from another perspective helping others <a href="http://twitter.com/cybercoder/statuses/1479207722" class="aktt_tweet_time">#</a></li>
<li>Record Store Day April 18th <a href="http://tinyurl.com/dfggxd" rel="nofollow">http://tinyurl.com/dfggxd</a> <a href="http://twitter.com/cybercoder/statuses/1481878916" class="aktt_tweet_time">#</a></li>
<li>Just received an email that GrandCentral has been upgraded and is relaunching as Google Voice <a href="http://www.grandcentral.com/" rel="nofollow">http://www.grandcentral.com/</a> <a href="http://twitter.com/cybercoder/statuses/1483261092" class="aktt_tweet_time">#</a></li>
<li>Google Voice was a smooth upgrade from Grand Central. Easier to access from within Google account. <a href="http://twitter.com/cybercoder/statuses/1483307864" class="aktt_tweet_time">#</a></li>
<li>The Masters iPhone App is pretty impressive, good layout of information and great live video of Amen corner and the 16th hole, plus extras <a href="http://twitter.com/cybercoder/statuses/1485260767" class="aktt_tweet_time">#</a></li>
<li>Have a Great Good Friday ! #<a href="http://search.twitter.com/search?q=%23followfriday" class="aktt_hashtag">followfriday</a> @jasonheath, @videodred, @golftrainer, @alexreif, @MusicRamble, @<a href="http://twitter.com/mikiesoft" class="aktt_username">mikiesoft</a> <a href="http://twitter.com/cybercoder/statuses/1489984111" class="aktt_tweet_time">#</a></li>
<li>Returned the Kodak Z16 and exchanged it for a Flip Video Camcorder. The Z16 was very troublesome on the software end, the Flip works great. <a href="http://twitter.com/cybercoder/statuses/1490806634" class="aktt_tweet_time">#</a></li>
<li>I have to remind myself every now and then that Blogging is like Golf, <a href="http://tinyurl.com/cuyfal" rel="nofollow">http://tinyurl.com/cuyfal</a> <a href="http://twitter.com/cybercoder/statuses/1490828503" class="aktt_tweet_time">#</a></li>
<li>Check out the USA TODAY iPhone and iPod Touch app, available for free in the iTunes App Store. <a href="http://www.usatoday.com/iphone/" rel="nofollow">http://www.usatoday.com/iphone/</a> <a href="http://twitter.com/cybercoder/statuses/1496674559" class="aktt_tweet_time">#</a></li>
<li>It is one beautiful day here in Mississippi. <a href="http://twitter.com/cybercoder/statuses/1498215437" class="aktt_tweet_time">#</a></li>
<li>I think I am having flashbacks listening to Cygnus X1 by Rush. The Wikipedia entry seems pretty good <a href="http://tinyurl.com/bw4puz" rel="nofollow">http://tinyurl.com/bw4puz</a> <a href="http://twitter.com/cybercoder/statuses/1498563588" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-04-12 <a href="http://tinyurl.com/dx4g9r" rel="nofollow">http://tinyurl.com/dx4g9r</a> <a href="http://twitter.com/cybercoder/statuses/1502066170" class="aktt_tweet_time">#</a></li>
<li>Happy Easter, Christ has risen! <a href="http://twitter.com/cybercoder/statuses/1502468371" class="aktt_tweet_time">#</a></li>
<li>Watched most of the Masters on my iPhone, turned on the TV for the Playoff, the iPhone app was fantastic this year ! <a href="http://twitter.com/cybercoder/statuses/1505651697" class="aktt_tweet_time">#</a></li>
<li>Easter has certainly dominated Twitter Trends over the last 8 days <a href="http://tinyurl.com/twacker" rel="nofollow">http://tinyurl.com/twacker</a> <a href="http://twitter.com/cybercoder/statuses/1505850601" class="aktt_tweet_time">#</a></li>
<li>Thanks to a comment, I added sample to sort WordPress Blogroll Dropdown by category and open in new window. <a href="http://tinyurl.com/daok2v" rel="nofollow">http://tinyurl.com/daok2v</a> <a href="http://twitter.com/cybercoder/statuses/1505958903" class="aktt_tweet_time">#</a></li>
<li>RT @vorado: Essential PHP Techniques <a href="http://ow.ly/2H6R" rel="nofollow">http://ow.ly/2H6R</a> <a href="http://twitter.com/cybercoder/statuses/1506112014" class="aktt_tweet_time">#</a></li>
<li>Bill Bruford: The Autobiography <a href="http://tinyurl.com/c53tyj" rel="nofollow">http://tinyurl.com/c53tyj</a> <a href="http://twitter.com/cybercoder/statuses/1507818591" class="aktt_tweet_time">#</a></li>
<li>I needan iPhone for Dummies site for a friend, there are just some things that are hard to explain to non tech thinkers. Any suggestions? <a href="http://twitter.com/cybercoder/statuses/1516997624" class="aktt_tweet_time">#</a></li>
<li>Just added myself to the <a href="http://wefollow.com" rel="nofollow">http://wefollow.com</a> twitter directory under:  #<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> #Wordpress #<a href="http://search.twitter.com/search?q=%23PHP" class="aktt_hashtag">PHP</a> <a href="http://twitter.com/cybercoder/statuses/1518494472" class="aktt_tweet_time">#</a></li>
<li>There are some really nice old VW bugs on the market, and I need to get one of these <a href="http://www.oldvolkswagenbeetle.com/" rel="nofollow">http://www.oldvolkswagenbeetle.com/</a> <a href="http://twitter.com/cybercoder/statuses/1521886701" class="aktt_tweet_time">#</a></li>
<li>Excellent video with Scoble and Guy Kawasaki, I need to follow Guy a little more, impressed <a href="http://tinyurl.com/6jsnap" rel="nofollow">http://tinyurl.com/6jsnap</a> <a href="http://twitter.com/cybercoder/statuses/1522178938" class="aktt_tweet_time">#</a></li>
<li>I purchased a Rib Grip silicone case from @<a href="http://twitter.com/Radtech" class="aktt_username">Radtech</a> and have been very happy with it! Total was only $14, <a href="http://tinyurl.com/ccneny" rel="nofollow">http://tinyurl.com/ccneny</a> <a href="http://twitter.com/cybercoder/statuses/1525310403" class="aktt_tweet_time">#</a></li>
<li>More companies need to develop their own RSS affiliate programs. <a href="http://twitter.com/cybercoder/statuses/1525359651" class="aktt_tweet_time">#</a></li>
<li>Twitter needs to adjust CSS for the sidebar, with all these people having 100,000+ followers, the numbers are starting to run off the side <a href="http://twitter.com/cybercoder/statuses/1526195116" class="aktt_tweet_time">#</a></li>
<li>RT @comScore: Latest from @<a href="http://twitter.com/comscore" class="aktt_username">comscore</a> Blog: Twitter Surges 131% in March to 9.3 Million U.S. Visitors! &#8211; <a href="http://tinyurl.com/c7auce" rel="nofollow">http://tinyurl.com/c7auce</a> <a href="http://twitter.com/cybercoder/statuses/1527206970" class="aktt_tweet_time">#</a></li>
<li>RT @elijahmanor: &quot;jQuery Select Examples&quot; #<a href="http://search.twitter.com/search?q=%23tech" class="aktt_hashtag">tech</a> #jquery <a href="http://bit.ly/Bcu2a" rel="nofollow">http://bit.ly/Bcu2a</a> <a href="http://twitter.com/cybercoder/statuses/1527600018" class="aktt_tweet_time">#</a></li>
<li>I never thought I would like my iPhone this much, it has been the best tool at helping me deal with the Internet and my information flow. <a href="http://twitter.com/cybercoder/statuses/1527870410" class="aktt_tweet_time">#</a></li>
<li>RT @mashable: Pretty sure I could beat both @<a href="http://twitter.com/aplusk" class="aktt_username">aplusk</a> &amp; @<a href="http://twitter.com/cnnbrk" class="aktt_username">cnnbrk</a> to 1 million though! Tell 560,000 of ur friends to follow @<a href="http://twitter.com/mashable" class="aktt_username">mashable</a> today! <a href="http://twitter.com/cybercoder/statuses/1530549673" class="aktt_tweet_time">#</a></li>
<li>I have a lot of desktop programming to get done today, should make the day go faster if nothing else <a href="http://twitter.com/cybercoder/statuses/1533322987" class="aktt_tweet_time">#</a></li>
<li>RT @CHIhotelblog: Mustang Celebrates 45 Years as King of the American Road <a href="http://tinyurl.com/cq7pxf" rel="nofollow">http://tinyurl.com/cq7pxf</a> <a href="http://twitter.com/cybercoder/statuses/1533450807" class="aktt_tweet_time">#</a></li>
<li>Found a 61&#39; Bug to check out this weekend, will need some work of course, but would be a fun project to take on. <a href="http://twitter.com/cybercoder/statuses/1535765080" class="aktt_tweet_time">#</a></li>
<li>Record Store Day this Saturday <a href="http://tinyurl.com/d56wqr" rel="nofollow">http://tinyurl.com/d56wqr</a> <a href="http://twitter.com/cybercoder/statuses/1540555911" class="aktt_tweet_time">#</a></li>
<li>Never, ever judge a book by it&#39;s cover, and never judge people based on age or anything else <a href="http://tinyurl.com/c49rgl" rel="nofollow">http://tinyurl.com/c49rgl</a> <a href="http://twitter.com/cybercoder/statuses/1541409285" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @StopCancer, @chetmancini, @lorelleonwp, @oldeskoolvw, @KevinMeyers13, @CraigFifield, @MikieSoft, @<a href="http://twitter.com/FredPeters" class="aktt_username">FredPeters</a> <a href="http://twitter.com/cybercoder/statuses/1541578235" class="aktt_tweet_time">#</a></li>
<li>If all the SEO experts, were really SEO experts, there would be no one else on the SERPS, lol&#8230;&#8230; <a href="http://twitter.com/cybercoder/statuses/1545979349" class="aktt_tweet_time">#</a></li>
<li>Going out to eat with the kids now means meeting them at a restaurant instead if going to a McDonalds playground, much better! <a href="http://twitter.com/cybercoder/statuses/1547490605" class="aktt_tweet_time">#</a></li>
<li>Should me a codefest weekend since the wife is out of town. I have been waiting to have some time to code around some new ideas. <a href="http://twitter.com/cybercoder/statuses/1547555187" class="aktt_tweet_time">#</a></li>
<li>The phone part of the iPhone works so good that I turn on the Speaker Phone  on and put the phone above my visor for hands free use. <a href="http://twitter.com/cybercoder/statuses/1547641900" class="aktt_tweet_time">#</a></li>
<li>Just watched the Oprah videos on Mashable, pleasantly surprised, worth the time to watch <a href="http://tinyurl.com/c5p2lc" rel="nofollow">http://tinyurl.com/c5p2lc</a> <a href="http://twitter.com/cybercoder/statuses/1547829807" class="aktt_tweet_time">#</a></li>
<li>My iPhone was playing everything sideways, I had the headphones in the wrong ears, you know those ear buds are labeled, right? <a href="http://twitter.com/cybercoder/statuses/1550112773" class="aktt_tweet_time">#</a></li>
<li>Only 10am and I have already accomplished one of my programming goals for the day ! <a href="http://twitter.com/cybercoder/statuses/1551135771" class="aktt_tweet_time">#</a></li>
<li>Do you pay attention to where a Tweet was posted, whether it was from an actual person or just another auto feed type Tweet? <a href="http://twitter.com/cybercoder/statuses/1551153434" class="aktt_tweet_time">#</a></li>
<li>Getting ready for some storms and the Nascar race. Got a lot of personal programming done today, and that is always a good thing. <a href="http://twitter.com/cybercoder/statuses/1553792861" class="aktt_tweet_time">#</a></li>
<li>McCartney at Coachella Music Festival <a href="http://tinyurl.com/cj34gn" rel="nofollow">http://tinyurl.com/cj34gn</a> <a href="http://twitter.com/cybercoder/statuses/1553907992" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-04-19 <a href="http://tinyurl.com/cu5czx" rel="nofollow">http://tinyurl.com/cu5czx</a> <a href="http://twitter.com/cybercoder/statuses/1556915061" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-04-19 <a href="http://tinyurl.com/d2fer6" rel="nofollow">http://tinyurl.com/d2fer6</a> <a href="http://twitter.com/cybercoder/statuses/1556915273" class="aktt_tweet_time">#</a></li>
<li>Been a great weekend for coding, got a lot of things accomplished I had on my plate plus some new ideas. <a href="http://twitter.com/cybercoder/statuses/1559183959" class="aktt_tweet_time">#</a></li>
<li>Current Top Twitter Trend Susan Boyle video and more&#8230; <a href="http://tinyurl.com/cwa88n" rel="nofollow">http://tinyurl.com/cwa88n</a> Boyle <a href="http://twitter.com/cybercoder/statuses/1561331796" class="aktt_tweet_time">#</a></li>
<li>Current Top Twitter Trend Susan Boyle video and more&#8230; <a href="http://tinyurl.com/c6net9" rel="nofollow">http://tinyurl.com/c6net9</a> <a href="http://twitter.com/cybercoder/statuses/1561347575" class="aktt_tweet_time">#</a></li>
<li>Closing out a good weekend, hopefully I can keep the flow going right into the work week. <a href="http://twitter.com/cybercoder/statuses/1562538216" class="aktt_tweet_time">#</a></li>
<li>Record Store Day <a href="http://tinyurl.com/c482pa" rel="nofollow">http://tinyurl.com/c482pa</a> <a href="http://twitter.com/cybercoder/statuses/1563198804" class="aktt_tweet_time">#</a></li>
<li>RT @JoeManna: My thoughts on Twitter&#39;s Impact on Blogging: <a href="http://tinyurl.com/dl4uj6" rel="nofollow">http://tinyurl.com/dl4uj6</a> Would love your feedback. <img src='http://www.cybercoded.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://twitter.com/cybercoder/statuses/1565336839" class="aktt_tweet_time">#</a></li>
<li>Current Top Twitter Trend Mac 1 video and more&#8230; <a href="http://tinyurl.com/d5hnu5" rel="nofollow">http://tinyurl.com/d5hnu5</a> <a href="http://twitter.com/cybercoder/statuses/1565385749" class="aktt_tweet_time">#</a></li>
<li>RT @davewiner: Om: &quot;MySQL is clearly a big prize for Oracle.&quot; <a href="http://tr.im/jebf" rel="nofollow">http://tr.im/jebf</a> <a href="http://twitter.com/cybercoder/statuses/1565524532" class="aktt_tweet_time">#</a></li>
<li>Current Top Twitter Trend Mac 1 video and more&#8230; <a href="http://tinyurl.com/d5hnu5" rel="nofollow">http://tinyurl.com/d5hnu5</a> <a href="http://twitter.com/cybercoder/statuses/1565563632" class="aktt_tweet_time">#</a></li>
<li>Searched Twitter for MySQL: <a href="http://tinyurl.com/dxcrpg" rel="nofollow">http://tinyurl.com/dxcrpg</a> If Oracle kills MySQL the cloud is definitely going to turn into a storm <a href="http://twitter.com/cybercoder/statuses/1565611941" class="aktt_tweet_time">#</a></li>
<li>Current Top Twitter Trend Mac … <a href="http://tinyurl.com/c3yv4a" rel="nofollow">http://tinyurl.com/c3yv4a</a> <a href="http://twitter.com/cybercoder/statuses/1565997026" class="aktt_tweet_time">#</a></li>
<li>Searched Twitter for MySQL: ht… <a href="http://tinyurl.com/c3ghzr" rel="nofollow">http://tinyurl.com/c3ghzr</a> <a href="http://twitter.com/cybercoder/statuses/1565997757" class="aktt_tweet_time">#</a></li>
<li>Remember to Tweet others as you would want them to Tweet you! <a href="http://twitter.com/cybercoder/statuses/1566676780" class="aktt_tweet_time">#</a></li>
<li>I am starting to think my short term memory loss is from past chemo and heart surgery, and more severe than normal aging, scary&#8230; <a href="http://twitter.com/cybercoder/statuses/1567149010" class="aktt_tweet_time">#</a></li>
<li>If you think you Tweet good, make sure your Tweet follows the magic formula. Tweet=134-username <a href="http://twitter.com/cybercoder/statuses/1567306036" class="aktt_tweet_time">#</a></li>
<li>Phone Call &#8211; Can I talk to you about your computers? We don&#39;t have any. Are you the I.T. Manager? Uh, yeah, I handle the pencils and paper! <a href="http://twitter.com/cybercoder/statuses/1567536290" class="aktt_tweet_time">#</a></li>
<li>#musicmonday, I still miss Stevie Ray Vaughan !! and I still love listening to Eric Clapton after all these years, Thanks ERIC ! <a href="http://twitter.com/cybercoder/statuses/1567557895" class="aktt_tweet_time">#</a></li>
<li>Why does Miss California have to give up her 1st Amendment rights due to others who push for their 1st Amendment rights? <a href="http://twitter.com/cybercoder/statuses/1568848352" class="aktt_tweet_time">#</a></li>
<li>Still trying to decide between two old VW Bugs to purchase as a project car. <a href="http://twitter.com/cybercoder/statuses/1569217606" class="aktt_tweet_time">#</a></li>
<li>Current Top Twitter Trend &#8211; Tweetie video and more&#8230; <a href="http://tinyurl.com/d2m6yh" rel="nofollow">http://tinyurl.com/d2m6yh</a> <a href="http://twitter.com/cybercoder/statuses/1569336068" class="aktt_tweet_time">#</a></li>
<li>Susan Boyle continues to be a hot Twitter Topic, see video and more&#8230; <a href="http://tinyurl.com/c6net9" rel="nofollow">http://tinyurl.com/c6net9</a> <a href="http://twitter.com/cybercoder/statuses/1574438746" class="aktt_tweet_time">#</a></li>
<li>Micro Blogging leads to &quot;Micro Marketing&quot; and now of course &quot;Twitter Marketing&quot;, talk about being specialized <a href="http://tinyurl.com/ddy7vs" rel="nofollow">http://tinyurl.com/ddy7vs</a> <a href="http://twitter.com/cybercoder/statuses/1575037077" class="aktt_tweet_time">#</a></li>
<li>Ben and Jerry make the Top Twitter Trends with their Annual Free Cone Day Today! <a href="http://tinyurl.com/dex8dd" rel="nofollow">http://tinyurl.com/dex8dd</a> <a href="http://twitter.com/cybercoder/statuses/1575200607" class="aktt_tweet_time">#</a></li>
<li>Alabama Earthquake, that headline just sounds odd, but, there really was an Earthquake in Alabama today <a href="http://tinyurl.com/cw78s6" rel="nofollow">http://tinyurl.com/cw78s6</a> <a href="http://twitter.com/cybercoder/statuses/1576416842" class="aktt_tweet_time">#</a></li>
<li>RT @ITSinsider: Ford leverages blogger distribution to get the news out on Fiesta: <a href="http://tinyurl.com/c7x7t6" rel="nofollow">http://tinyurl.com/c7x7t6</a> <a href="http://twitter.com/cybercoder/statuses/1577481485" class="aktt_tweet_time">#</a></li>
<li>RT @mashable: Google Me. No, Really! &#8211; <a href="http://bit.ly/UfDSX" rel="nofollow">http://bit.ly/UfDSX</a> <a href="http://twitter.com/cybercoder/statuses/1578375592" class="aktt_tweet_time">#</a></li>
<li>Do bloggers wish they could code as much as coders wish they could blog? <a href="http://twitter.com/cybercoder/statuses/1579930209" class="aktt_tweet_time">#</a></li>
<li>Not too long ago having a website and email was the thing to do for a business, now it&#39;s being on Twitter and having an open API <a href="http://twitter.com/cybercoder/statuses/1580330665" class="aktt_tweet_time">#</a></li>
<li>Wow, looks like some search spiders were doing some deep crawling today <a href="http://twitter.com/cybercoder/statuses/1580353839" class="aktt_tweet_time">#</a></li>
<li>Interesting, it appears that totally unique links from Twitter do get crawled and indexed properly in Google <a href="http://twitter.com/cybercoder/statuses/1580414187" class="aktt_tweet_time">#</a></li>
<li>Site was dropped from Google Index 2 years ago, reappeared in SERPS, with NO changes, very interesting&#8230;. <a href="http://twitter.com/cybercoder/statuses/1580552311" class="aktt_tweet_time">#</a></li>
<li>Just had a great conference call with a small group of bloggers and coders, very inspiring ! <a href="http://twitter.com/cybercoder/statuses/1582253004" class="aktt_tweet_time">#</a></li>
<li>32nd Annual Dallas Guitar Show <a href="http://tinyurl.com/d9jyvq" rel="nofollow">http://tinyurl.com/d9jyvq</a> <a href="http://twitter.com/cybercoder/statuses/1582564198" class="aktt_tweet_time">#</a></li>
<li>That is the funniest Twitter Trend I have seen so far, &quot;Fixes A Bunch&quot;, looks like it is popular on blogs too <a href="http://tinyurl.com/c27j5m" rel="nofollow">http://tinyurl.com/c27j5m</a> <a href="http://twitter.com/cybercoder/statuses/1584226706" class="aktt_tweet_time">#</a></li>
<li>Google Analytics API Launched! <a href="http://tinyurl.com/dcacum" rel="nofollow">http://tinyurl.com/dcacum</a> <a href="http://twitter.com/cybercoder/statuses/1584452560" class="aktt_tweet_time">#</a></li>
<li>Planning trip to Texas, visit family before they close borders, we bring food back I don&#39;t want to be stuck in customs, lol <a href="http://twitter.com/cybercoder/statuses/1585210111" class="aktt_tweet_time">#</a></li>
<li>If you do a lot of work with CellPhone data, do yourself a favor and get a CelleBrite UME 36 Pro! I love this tool <a href="http://tinyurl.com/c62gzd" rel="nofollow">http://tinyurl.com/c62gzd</a> <a href="http://twitter.com/cybercoder/statuses/1585640627" class="aktt_tweet_time">#</a></li>
<li>As a teenager I would listen to my brothers LP&#39;s, a fav was Big Brother and Holding Company, they are on Twitter ! @<a href="http://twitter.com/BBHC" class="aktt_username">BBHC</a> <a href="http://twitter.com/cybercoder/statuses/1586935185" class="aktt_tweet_time">#</a></li>
<li>RT @BBHC: @<a href="http://twitter.com/cybercoder" class="aktt_username">cybercoder</a> Please message us so we can get your information to send you your copy of &quot;The Lost Tapes&quot; that you won. &#8211;Thanks !!! <a href="http://twitter.com/cybercoder/statuses/1586970905" class="aktt_tweet_time">#</a></li>
<li>Good Morning everyone, getting ready to code most the day on a Visual Foxpro system, just need a little more coffee to start it up, lol <a href="http://twitter.com/cybercoder/statuses/1593579132" class="aktt_tweet_time">#</a></li>
<li>RT @LeonardFriedman: Don&#39;t take life too seriously; No one gets out alive. <a href="http://twitter.com/cybercoder/statuses/1593854745" class="aktt_tweet_time">#</a></li>
<li>MSN showing SERPS on page for their Todays Hot Topic, good traffic when your site is listed <a href="http://tinyurl.com/d9fjsf" rel="nofollow">http://tinyurl.com/d9fjsf</a> <a href="http://twitter.com/cybercoder/statuses/1594418793" class="aktt_tweet_time">#</a></li>
<li>Twitter weirdness, I have 3 DM&#39;s that I can not delete? Error says I can only delete messages I have sent or received?? <a href="http://twitter.com/cybercoder/statuses/1595386502" class="aktt_tweet_time">#</a></li>
<li>Looks like I have a full plate of WordPress, PHP &amp; MySQL work lined up for the weekend, plus a little mechanic work to do! <a href="http://twitter.com/cybercoder/statuses/1595659964" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23followfriday" class="aktt_hashtag">followfriday</a> &#8211; @BBHC,@iPhoneRamble, @funwithtrains, @w3bdesign, @LoveThatMusic, @michael_duvall, @<a href="http://twitter.com/iphonehelp" class="aktt_username">iphonehelp</a> <a href="http://twitter.com/cybercoder/statuses/1604793497" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/Mashable" class="aktt_username">Mashable</a> Reading: &quot;So Long, GeoCities: We Forgot You Still Existed&quot; &#8211; <a href="http://bit.ly/T7w44" rel="nofollow">http://bit.ly/T7w44</a> <a href="http://twitter.com/cybercoder/statuses/1605132090" class="aktt_tweet_time">#</a></li>
<li>Just another day in paradise! <a href="http://twitter.com/cybercoder/statuses/1612207033" class="aktt_tweet_time">#</a></li>
<li>Stuck in stand still traffic <a href="http://bit.ly/YYD3R" rel="nofollow">http://bit.ly/YYD3R</a> <a href="http://twitter.com/cybercoder/statuses/1613585877" class="aktt_tweet_time">#</a></li>
<li>Catching up on email while sitting still on I 20 in Jackson, did I tell you I love my iPhone! <a href="http://twitter.com/cybercoder/statuses/1613625245" class="aktt_tweet_time">#</a></li>
<li>Went to Pull a Part, we now pay a $1 to do what we did free as kids at a junkyard, clean and nicely laid out <a href="http://www.pullapart.com/" rel="nofollow">http://www.pullapart.com/</a> <a href="http://twitter.com/cybercoder/statuses/1614786578" class="aktt_tweet_time">#</a></li>
<li>Eric Clapton has a style for every mood, whether I want hard rock or blues, or acoustic, I can find a Clapton tune to fit <a href="http://twitter.com/cybercoder/statuses/1616476816" class="aktt_tweet_time">#</a></li>
<li>Bowling for the first time in several years<br />
<a href="http://bit.ly/yptAx" rel="nofollow">http://bit.ly/yptAx</a> <a href="http://twitter.com/cybercoder/statuses/1618273351" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-04-26 <a href="http://tinyurl.com/dyzbww" rel="nofollow">http://tinyurl.com/dyzbww</a> <a href="http://twitter.com/cybercoder/statuses/1619282209" class="aktt_tweet_time">#</a></li>
<li>Had a great lunch with the family, now it&#39;s time for Nascar at Talladega. I love watching Nascar and coding at the same time. <a href="http://twitter.com/cybercoder/statuses/1622093811" class="aktt_tweet_time">#</a></li>
<li>What an ending to the Talladega Nascar race, just real hard racing. <a href="http://twitter.com/cybercoder/statuses/1624431015" class="aktt_tweet_time">#</a></li>
<li>Did some Twitter API programming using the @<a href="http://twitter.com/slawcup" class="aktt_username">slawcup</a> PHP Twitter Class, added a couple functions, pretty easy to work with <a href="http://twitter.com/cybercoder/statuses/1628982947" class="aktt_tweet_time">#</a></li>
<li>Twitter Tip : There is a big difference between Auto Following people, and following those that follow you. <a href="http://twitter.com/cybercoder/statuses/1629106566" class="aktt_tweet_time">#</a></li>
<li>RT @FredPeters: Do you use an online bank? <a href="http://tinyurl.com/c5hez9" rel="nofollow">http://tinyurl.com/c5hez9</a> <a href="http://twitter.com/cybercoder/statuses/1630848757" class="aktt_tweet_time">#</a></li>
<li>RT @Glasstire: 175 Art People, Places and Things to Follow on Twitter: <a href="http://bit.ly/artfolo" rel="nofollow">http://bit.ly/artfolo</a> (Please RT!) <a href="http://twitter.com/cybercoder/statuses/1631173529" class="aktt_tweet_time">#</a></li>
<li>Someone develop a social network for Internet Marketers so they can send each other all their secrets, and leave us alone! <a href="http://twitter.com/cybercoder/statuses/1639048409" class="aktt_tweet_time">#</a></li>
<li>A lot of people telling people how to make money, are making money only from  telling you how to make money, get it? <a href="http://twitter.com/cybercoder/statuses/1640479119" class="aktt_tweet_time">#</a></li>
<li>My Apple ignorance is showing, does a MacBook Pro come with ALL the software needed to program iPhone Apps? <a href="http://twitter.com/cybercoder/statuses/1641258927" class="aktt_tweet_time">#</a></li>
<li>Try it this way, If I get a MacBook Pro, pay $100 Developer fee, have iPhone 3g, free SDK, what else I need to develop app? <a href="http://twitter.com/cybercoder/statuses/1641390656" class="aktt_tweet_time">#</a></li>
<li>More iPhone Dev?? If you develop app, can you put it on an iPhone to test? If so, limitations? <a href="http://twitter.com/cybercoder/statuses/1642010591" class="aktt_tweet_time">#</a></li>
<li>RT @NickLongo: 10 Dirty Little Web Development Tricks &#8211; <a href="http://virl.com/d4bbf" rel="nofollow">http://virl.com/d4bbf</a> <a href="http://twitter.com/cybercoder/statuses/1643037934" class="aktt_tweet_time">#</a></li>
<li>Sharing some PHP Help <a href="http://www.cybercoded.net/php-help/" rel="nofollow">http://www.cybercoded.net/php-help/</a> <a href="http://twitter.com/cybercoder/statuses/1650281021" class="aktt_tweet_time">#</a></li>
<li>RT @StephenWinfield: Winery Offers $60,000 Job to Eat, Drink and Twitter. Murphy-Goode Winery in California is&#8230; <a href="http://tinyurl.com/d7cs4r" rel="nofollow">http://tinyurl.com/d7cs4r</a> <a href="http://twitter.com/cybercoder/statuses/1653056148" class="aktt_tweet_time">#</a></li>
<li>The 1900’s Flu Pandemics <a href="http://www.mexicanflu2009.com/?p=46" rel="nofollow">http://www.mexicanflu2009.com/?p=46</a> <a href="http://twitter.com/cybercoder/statuses/1654369649" class="aktt_tweet_time">#</a></li>
<li>PHP Help <a href="http://tinyurl.com/cnwjwh" rel="nofollow">http://tinyurl.com/cnwjwh</a> <a href="http://twitter.com/cybercoder/statuses/1659108055" class="aktt_tweet_time">#</a></li>
<li>RT @applehot: Verizon, Microsoft to Launch iPhone Killer &#39;Pink&#39; in 2010 &#8211; PC World <a href="http://tinyurl.com/cjenv4" rel="nofollow">http://tinyurl.com/cjenv4</a> <a href="http://twitter.com/cybercoder/statuses/1659120564" class="aktt_tweet_time">#</a></li>
<li>Something that people seem to forget is&#8230; Experts and Leaders are defined by others, not by themselves! <a href="http://twitter.com/cybercoder/statuses/1659360729" class="aktt_tweet_time">#</a></li>
<li>I like the new Twitter layout, cleaner, search, Trending Trends nice additions, just need a Retweet button now <a href="http://twitter.com/cybercoder/statuses/1663170380" class="aktt_tweet_time">#</a></li>
<li># followfriday &#8211; @CraigFifield, @sharebrain, @tataencu, @linkmoneydotorg, @keith_lancaster, @mkmccarty, @Johnathan1707, @<a href="http://twitter.com/bcorcoran" class="aktt_username">bcorcoran</a> <a href="http://twitter.com/cybercoder/statuses/1668582496" class="aktt_tweet_time">#</a></li>
<li>Gonna have to adjust my weekend schedule, Nascar running at Richmond on Saturday night this week <a href="http://tinyurl.com/cw4uk5" rel="nofollow">http://tinyurl.com/cw4uk5</a> <a href="http://twitter.com/cybercoder/statuses/1670384202" class="aktt_tweet_time">#</a></li>
<li>Always remember, no matter where you go&#8230;there you are! <a href="http://twitter.com/cybercoder/statuses/1671023184" class="aktt_tweet_time">#</a></li>
<li>RT @MarkClayson: The Online Ad Recession Is Officially Here: First Quarterly Decline In Revenues <a href="http://ff.im/-2vidG" rel="nofollow">http://ff.im/-2vidG</a> <a href="http://twitter.com/cybercoder/statuses/1671042581" class="aktt_tweet_time">#</a></li>
<li>R.I.P Danny Gans, lots of information on Danny, along with some videos <a href="http://tinyurl.com/dmnhta" rel="nofollow">http://tinyurl.com/dmnhta</a> <a href="http://twitter.com/cybercoder/statuses/1671498700" class="aktt_tweet_time">#</a></li>
<li>Looks like I will work harder on the weekend, than during the week, a little carpentry, mechanical, yard and of course programming, oh boy! <a href="http://twitter.com/cybercoder/statuses/1672603473" class="aktt_tweet_time">#</a></li>
<li>Tweaking some blogs, decided to use word count from post as flag for what size ad to place in post, keeps in more uniform <a href="http://twitter.com/cybercoder/statuses/1678245224" class="aktt_tweet_time">#</a></li>
<li>RT @CowboysNFL: DallasNews &gt;&gt; Dallas Cowboys&#39; indoor practice facility collapses <a href="http://tinyurl.com/cbaqza" rel="nofollow">http://tinyurl.com/cbaqza</a> <a href="http://twitter.com/cybercoder/statuses/1682310338" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-05-03 <a href="http://tinyurl.com/ckom72" rel="nofollow">http://tinyurl.com/ckom72</a> <a href="http://twitter.com/cybercoder/statuses/1685471348" class="aktt_tweet_time">#</a></li>
<li>Storms popping up and passing through, so far nothing as serious as what Dallas had yesterday <a href="http://twitter.com/cybercoder/statuses/1687524470" class="aktt_tweet_time">#</a></li>
<li>Classic Rock and Roll on Twitter <a href="http://tinyurl.com/cp8c5p" rel="nofollow">http://tinyurl.com/cp8c5p</a> <a href="http://twitter.com/cybercoder/statuses/1692438903" class="aktt_tweet_time">#</a></li>
<li>Glad the weekend is over, got a lot done Saturday and missed a MultiMedia Conference I had scheduled to attend. <a href="http://twitter.com/cybercoder/statuses/1695224865" class="aktt_tweet_time">#</a></li>
<li>May The 4th Be With You, lol, #<a href="http://search.twitter.com/search?q=%23starwarsday" class="aktt_hashtag">starwarsday</a> video and more&#8230; <a href="http://tinyurl.com/cl5jh5" rel="nofollow">http://tinyurl.com/cl5jh5</a> <a href="http://twitter.com/cybercoder/statuses/1695524386" class="aktt_tweet_time">#</a></li>
<li>RT @AngelInTheStone: A few years ago, while unloading a crate of stone, I found a tile with the image of an angel formed within the stone. <a href="http://twitter.com/cybercoder/statuses/1696822759" class="aktt_tweet_time">#</a></li>
<li>Current Top Twitter Trend Happy Star Wars Day video and more&#8230; <a href="http://tinyurl.com/dbqnu8" rel="nofollow">http://tinyurl.com/dbqnu8</a> <a href="http://twitter.com/cybercoder/statuses/1699711917" class="aktt_tweet_time">#</a></li>
<li>Are we seeing a slowdown on all the &quot;get more followers&quot; Marketing Twitter Spam? <a href="http://twitter.com/cybercoder/statuses/1699894230" class="aktt_tweet_time">#</a></li>
<li>We had a little encounter during our walk tonight!<br />
<a href="http://bit.ly/moAGI" rel="nofollow">http://bit.ly/moAGI</a><br />
 <a href="http://twitpic.com/4kmui" rel="nofollow">http://twitpic.com/4kmui</a> <a href="http://twitter.com/cybercoder/statuses/1700896767" class="aktt_tweet_time">#</a></li>
<li>Just confirmed the snake in the last tweet was definetly a Copperhead, which is very posionous, yikes! <a href="http://twitter.com/cybercoder/statuses/1702385595" class="aktt_tweet_time">#</a></li>
<li>Gonna be a long day, short staffed in the office always makes it a little more hectic. <a href="http://twitter.com/cybercoder/statuses/1705768420" class="aktt_tweet_time">#</a></li>
<li>Top Twitter Trend Happy Cinco De Mayo video and more&#8230; <a href="http://tinyurl.com/cddc4p" rel="nofollow">http://tinyurl.com/cddc4p</a> <a href="http://twitter.com/cybercoder/statuses/1705939833" class="aktt_tweet_time">#</a></li>
<li>RT @dreaves802: New blog post, IF you drink and drive you are an idiot!<br />
<a href="http://tinyurl.com/cs28q3" rel="nofollow">http://tinyurl.com/cs28q3</a> <a href="http://twitter.com/cybercoder/statuses/1707413084" class="aktt_tweet_time">#</a></li>
<li>THE Twitter Follower secret in 42 characters &#8211; &quot;follow people, who follow people, like you&quot; <a href="http://twitter.com/cybercoder/statuses/1708954957" class="aktt_tweet_time">#</a></li>
<li>Some pretty funny Dom Deluise videos, <a href="http://tinyurl.com/d9oeg3" rel="nofollow">http://tinyurl.com/d9oeg3</a> RIP Dom ! <a href="http://twitter.com/cybercoder/statuses/1709164809" class="aktt_tweet_time">#</a></li>
<li>Picked up another 100+ good followers with a couple mouse clicks, just wanted to say Welcome aboard everyone! <a href="http://twitter.com/cybercoder/statuses/1709596327" class="aktt_tweet_time">#</a></li>
<li>When I did Chemo, I really wanted my hair to grow back, now I cut it like that on purpose, oh how things change! <a href="http://twitter.com/cybercoder/statuses/1709852094" class="aktt_tweet_time">#</a></li>
<li>Big Brother &amp; The Holding Company <a href="http://tinyurl.com/dxclxh" rel="nofollow">http://tinyurl.com/dxclxh</a> <a href="http://twitter.com/cybercoder/statuses/1713975460" class="aktt_tweet_time">#</a></li>
<li>I have realized a strong correlation between increasing Twitter Followers and my FriendFeed Subscribers. <a href="http://twitter.com/cybercoder/statuses/1719445890" class="aktt_tweet_time">#</a></li>
<li>Looks like @<a href="http://twitter.com/Twitter" class="aktt_username">Twitter</a> has updated their email message format, giving more info and images in the notifications emails. <a href="http://twitter.com/cybercoder/statuses/1721008793" class="aktt_tweet_time">#</a></li>
<li>Finished off the day with some fun WordPress tweaking, time to call it a night! <a href="http://twitter.com/cybercoder/statuses/1723503904" class="aktt_tweet_time">#</a></li>
<li>I guess this is no surprise to see Star Trek as the Top Twitter Trend <a href="http://bit.ly/zsM6b" rel="nofollow">http://bit.ly/zsM6b</a> <a href="http://twitter.com/cybercoder/statuses/1726580004" class="aktt_tweet_time">#</a></li>
<li>1968 Mustang <a href="http://tinyurl.com/d6m6qm" rel="nofollow">http://tinyurl.com/d6m6qm</a> <a href="http://twitter.com/cybercoder/statuses/1727506762" class="aktt_tweet_time">#</a></li>
<li>RT @jwcorbett: Twitter as an RSS Reader <a href="http://ow.ly/5BuE" rel="nofollow">http://ow.ly/5BuE</a> <a href="http://twitter.com/cybercoder/statuses/1727896760" class="aktt_tweet_time">#</a></li>
<li>I am so looking forward to my trip to Texas next week, Mississippi is ok, but it ain&#39;t Texas, lol <a href="http://twitter.com/cybercoder/statuses/1728523979" class="aktt_tweet_time">#</a></li>
<li>Twitter Search to dive deeper, rank results &#8211; CNET News: <a href="http://bit.ly/YVdoR" rel="nofollow">http://bit.ly/YVdoR</a> <a href="http://twitter.com/cybercoder/statuses/1728669472" class="aktt_tweet_time">#</a></li>
<li>Ean Evans, Lynyrd Skynyrd Bassist, Dies &#8211; <a href="http://bit.ly/A7lpK" rel="nofollow">http://bit.ly/A7lpK</a><br />
 (via <a href="http://ff.im/2Gp05)" rel="nofollow">http://ff.im/2Gp05)</a> <a href="http://twitter.com/cybercoder/statuses/1729192489" class="aktt_tweet_time">#</a></li>
<li>Ean Evans, Lynyrd Skynyrd Bassist, Dies &#8211; <a href="http://bit.ly/A7lpK" rel="nofollow">http://bit.ly/A7lpK</a><br />
 (via <a href="http://ff.im/2Gp05)" rel="nofollow">http://ff.im/2Gp05)</a> <a href="http://ff.im/2GpEE" rel="nofollow">http://ff.im/2GpEE</a> <a href="http://twitter.com/cybercoder/statuses/1729214241" class="aktt_tweet_time">#</a></li>
<li>Is there still no official FriendFeed iPhone app? <a href="http://ff.im/2GrfW" rel="nofollow">http://ff.im/2GrfW</a> <a href="http://twitter.com/cybercoder/statuses/1729308973" class="aktt_tweet_time">#</a></li>
<li>I was trying to keep up with all the new followers, I hit a Rate Limit, so I can not follow anyone right now. <a href="http://twitter.com/cybercoder/statuses/1729799117" class="aktt_tweet_time">#</a></li>
<li>I appreciate the work, I have some projects to do in WordPress / Twitter API for the weekend, probably still some open time <a href="http://twitter.com/cybercoder/statuses/1730852710" class="aktt_tweet_time">#</a></li>
<li>Liked &quot;Re: RSS is dead? My ass&#8230; (Scripting News)&quot; <a href="http://ff.im/2GMSd" rel="nofollow">http://ff.im/2GMSd</a> <a href="http://twitter.com/cybercoder/statuses/1730962652" class="aktt_tweet_time">#</a></li>
<li>Ean Evans 1961 &#8211; 2009 <a href="http://ff.im/2HHUB" rel="nofollow">http://ff.im/2HHUB</a> <a href="http://twitter.com/cybercoder/statuses/1735568945" class="aktt_tweet_time">#</a></li>
<li>Ean Evans 1961 &#8211; 2009 <a href="http://tinyurl.com/pp9wgl" rel="nofollow">http://tinyurl.com/pp9wgl</a> <a href="http://twitter.com/cybercoder/statuses/1735754366" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23followfriday" class="aktt_hashtag">followfriday</a> &#8211; @mck66, @RaviKapoor, @dereksemmler, @tat2ts, @mjesales, @jarret, @chrispian, @BrianWright, @gfb3, @RoryBecker,@<a href="http://twitter.com/jdmullin" class="aktt_username">jdmullin</a> <a href="http://twitter.com/cybercoder/statuses/1737034114" class="aktt_tweet_time">#</a></li>
<li>TGIF!  As usual, a Top Twitter and web trend for Friday, video and more&#8230; <a href="http://bit.ly/Pd59i" rel="nofollow">http://bit.ly/Pd59i</a> <a href="http://twitter.com/cybercoder/statuses/1737886677" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23followfriday" class="aktt_hashtag">followfriday</a> Tip &#8211; keep a list through the week of people who help others or you  with good information, post on Friday <a href="http://twitter.com/cybercoder/statuses/1737960962" class="aktt_tweet_time">#</a></li>
<li>I need to play my guitars more! Thinking about adding wall mounted guitar hangars to my office for ease of playing. <a href="http://twitter.com/cybercoder/statuses/1738347951" class="aktt_tweet_time">#</a></li>
<li>A lot of the auto DM follow messages probably do just the opposite of what the sender thinks. <a href="http://twitter.com/cybercoder/statuses/1740257284" class="aktt_tweet_time">#</a></li>
<li>Went to Crystal Springs for some awesome barbcue at Louise&#39;s BarBCue<br />
<a href="http://bit.ly/c2kNs" rel="nofollow">http://bit.ly/c2kNs</a> <a href="http://twitter.com/cybercoder/statuses/1741810401" class="aktt_tweet_time">#</a></li>
<li>On a project for a client with the Twitter API, PHP and MySQL, obviously hot stuff, 2 more projects waiting to be worked on. <a href="http://twitter.com/cybercoder/statuses/1747695318" class="aktt_tweet_time">#</a></li>
<li>I think the heat has zapped my energy and brain cells, may be time just to chill for awhile. <a href="http://twitter.com/cybercoder/statuses/1749512357" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-05-10 <a href="http://ff.im/2L3F9" rel="nofollow">http://ff.im/2L3F9</a> <a href="http://twitter.com/cybercoder/statuses/1753118889" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-05-10 <a href="http://tinyurl.com/opb2q8" rel="nofollow">http://tinyurl.com/opb2q8</a> <a href="http://twitter.com/cybercoder/statuses/1753409508" class="aktt_tweet_time">#</a></li>
<li>Great Mediterranean food at Aladdin&#39;s in Dogwood / Flowood.<br />
<a href="http://bit.ly/Bri37" rel="nofollow">http://bit.ly/Bri37</a> <a href="http://twitter.com/cybercoder/statuses/1756173984" class="aktt_tweet_time">#</a></li>
<li>Radar looks like we could be in for a rough ride with some storms in the Metro Jackson, Mississippi area. <a href="http://twitter.com/cybercoder/statuses/1758358039" class="aktt_tweet_time">#</a></li>
<li>RT @courtneyleigh25: @<a href="http://twitter.com/Eric_Law_WLBT" class="aktt_username">Eric_Law_WLBT</a> we just had a power surge here. Rains are still strong with lots of lightning. &#8211; same here <a href="http://twitter.com/cybercoder/statuses/1758658706" class="aktt_tweet_time">#</a></li>
<li>Nearby function showing Tweets in the local area is great in @Tweetie, especially tracking bad storms locally <a href="http://twitter.com/cybercoder/statuses/1758711393" class="aktt_tweet_time">#</a></li>
<li>I keep getting messages on how to add thousands of followers, from people who do not have that many followers? LOL <a href="http://twitter.com/cybercoder/statuses/1758842598" class="aktt_tweet_time">#</a></li>
<li>I have 3 days to get 5 days worth of work done before I take a few days off, this is always fun, lol&#8230; <a href="http://twitter.com/cybercoder/statuses/1762546671" class="aktt_tweet_time">#</a></li>
<li>The four stages of the average Twitter user <a href="http://blogs.zdnet.com/BTL/?p=17722" rel="nofollow">http://blogs.zdnet.com/BTL/?p=17722</a> <a href="http://twitter.com/cybercoder/statuses/1762587819" class="aktt_tweet_time">#</a></li>
<li>RT @linkmoneydotorg: How to Get Targeted Quality Followers on Twitter &#8211; <a href="http://tinyurl.com/oxb5ox" rel="nofollow">http://tinyurl.com/oxb5ox</a> <a href="http://twitter.com/cybercoder/statuses/1762892774" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/CHICAGORADIO" class="aktt_username">CHICAGORADIO</a> I ultimately believe that what you do for others, creates more room in your soul for greater opportunities. <a href="http://twitter.com/cybercoder/statuses/1763498842" class="aktt_tweet_time">#</a></li>
<li>Seeing a lot of search traffic on this error again, WordPress XML Parsing Error, <a href="http://bit.ly/1LwO8" rel="nofollow">http://bit.ly/1LwO8</a> <a href="http://twitter.com/cybercoder/statuses/1763535237" class="aktt_tweet_time">#</a></li>
<li>RT @MarkClayson: Study: One in Five U.S. Homes Are Cellphone Only <a href="http://ff.im/-2NcD0" rel="nofollow">http://ff.im/-2NcD0</a> &#8211; It has been 7 years for my family! <a href="http://twitter.com/cybercoder/statuses/1764175007" class="aktt_tweet_time">#</a></li>
<li>Be my 5,000th follower and I will pay for a Domain Name Registration for you using @NameCheap! <a href="http://twitter.com/cybercoder/statuses/1764229845" class="aktt_tweet_time">#</a></li>
<li>Only 46 to go to get a free Domain ! <a href="http://twitter.com/cybercoder/status/1764229845" rel="nofollow">http://twitter.com/cybercoder/status/1764229845</a> <a href="http://twitter.com/cybercoder/statuses/1764413822" class="aktt_tweet_time">#</a></li>
<li>Win a Free Domain Name on Twitter <a href="http://ff.im/2NihH" rel="nofollow">http://ff.im/2NihH</a> <a href="http://twitter.com/cybercoder/statuses/1764605760" class="aktt_tweet_time">#</a></li>
<li>ONLY 10 to go for a Free Domain !! <a href="http://bit.ly/ynWoW" rel="nofollow">http://bit.ly/ynWoW</a> <a href="http://twitter.com/cybercoder/statuses/1764780501" class="aktt_tweet_time">#</a></li>
<li>I should have known better, lol, ok I have to sort this out, I was spammed followed !! <a href="http://twitter.com/cybercoder/statuses/1764795600" class="aktt_tweet_time">#</a></li>
<li>My apologies to followers and anyone trying to win a Free Domain, as soon as I get this mess cleaned up I will post the actual count <a href="http://twitter.com/cybercoder/statuses/1764868111" class="aktt_tweet_time">#</a></li>
<li>Ok, looks like we are back to normal, 41 to go for 5000 followers and a free Domain Giveaway! <a href="http://twitter.com/cybercoder/statuses/1764983362" class="aktt_tweet_time">#</a></li>
<li>Win a Free Domain Name on Twitter <a href="http://tinyurl.com/outw85" rel="nofollow">http://tinyurl.com/outw85</a> <a href="http://twitter.com/cybercoder/statuses/1765179657" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/BillSeitzler" class="aktt_username">BillSeitzler</a> Here&#39;s a little quiz. What are the 7 US industries that are growing in this downturned economy? <a href="http://snipr.com/ht5jy" rel="nofollow">http://snipr.com/ht5jy</a> <a href="http://twitter.com/cybercoder/statuses/1766658613" class="aktt_tweet_time">#</a></li>
<li>Trending Topics are being manipulated and causing them to be irrelevant and boring for the most part, sad&#8230;. <a href="http://twitter.com/cybercoder/statuses/1766891009" class="aktt_tweet_time">#</a></li>
<li>Congratulations to @JonasNG, you were my 5000th follower and the winner of a free domain ! <a href="http://twitter.com/cybercoder/statuses/1768360462" class="aktt_tweet_time">#</a></li>
<li>Ok, thanks to everyone following, it has been fun to this point, now it is time for me to get back to work! <a href="http://twitter.com/cybercoder/statuses/1768423206" class="aktt_tweet_time">#</a></li>
<li>If you want things that are straight from the heart with no pulled punches? Check out @<a href="http://twitter.com/waynejohn" class="aktt_username">waynejohn</a> or @<a href="http://twitter.com/allynpaul" class="aktt_username">allynpaul</a> <a href="http://twitter.com/cybercoder/statuses/1769113496" class="aktt_tweet_time">#</a></li>
<li>RT @ByrneElectrical: Artist Finish MHO with Docking Station for #<a href="http://search.twitter.com/search?q=%23iphone" class="aktt_hashtag">iphone</a> &amp; #<a href="http://search.twitter.com/search?q=%23ipod" class="aktt_hashtag">ipod</a> by Byrne. <a href="http://twitpic.com/51alx" rel="nofollow">http://twitpic.com/51alx</a> What do you think? &lt;-cool <a href="http://twitter.com/cybercoder/statuses/1773866429" class="aktt_tweet_time">#</a></li>
<li>I learned something about Internet Marketing today, I am not good at it, because I put too much thought into it. <a href="http://twitter.com/cybercoder/statuses/1776503392" class="aktt_tweet_time">#</a></li>
<li>Having a hard time focusing, trying to get a several small projects wrapped up before I go offline Wed for several days. <a href="http://twitter.com/cybercoder/statuses/1777033904" class="aktt_tweet_time">#</a></li>
<li>Of course, offline means something different now. This will be the first trip I take with my iPhone and no laptop. <a href="http://twitter.com/cybercoder/statuses/1777043609" class="aktt_tweet_time">#</a></li>
<li>Not sure how to fix this Twitter problem, I get so many auto DM&#39;s that I miss real messages? <a href="http://twitter.com/cybercoder/statuses/1784107762" class="aktt_tweet_time">#</a></li>
<li>I am always looking for Domain Names on Sitepoint, this one looks pretty good, <a href="http://tinyurl.com/r2z4bz" rel="nofollow">http://tinyurl.com/r2z4bz</a> <a href="http://twitter.com/cybercoder/statuses/1787699489" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/oldham1846" class="aktt_username">oldham1846</a> Recession Boosts Working From Home <a href="http://bit.ly/q9S0Q" rel="nofollow">http://bit.ly/q9S0Q</a> <a href="http://twitter.com/cybercoder/statuses/1788249236" class="aktt_tweet_time">#</a></li>
<li>Vacation has started, whoo hoo, which means I will be working from iPhone while the wife drives for 6 hours, lol&#8230; <a href="http://twitter.com/cybercoder/statuses/1791361209" class="aktt_tweet_time">#</a></li>
<li>#Wordpress, If all else fails when a plugin causes issues and will not deactivate, rename the plugin folder to shut it down. <a href="http://twitter.com/cybercoder/statuses/1794154648" class="aktt_tweet_time">#</a></li>
<li>There is no way to add a label in #<a href="http://search.twitter.com/search?q=%23gmail" class="aktt_hashtag">gmail</a> from an #iPhone, that needs to be fixed! <a href="http://twitter.com/cybercoder/statuses/1794590648" class="aktt_tweet_time">#</a></li>
<li>If you send an auto DM to tell me how to get 16,000 followers, shouldn&#39;t you have 16,000 followers? <a href="http://twitter.com/cybercoder/statuses/1794871192" class="aktt_tweet_time">#</a></li>
<li>Going thru DM&#39;s, 90% are auto DM and most of those are the same basic message. Hard to believe those benefit the sender. <a href="http://twitter.com/cybercoder/statuses/1794982272" class="aktt_tweet_time">#</a></li>
<li>RT @WildMountain: Never take Life Seriously, Nobody gets out alive anyway. <a href="http://twitter.com/cybercoder/statuses/1795271698" class="aktt_tweet_time">#</a></li>
<li>So far I have not had 3g Network since entering Louisiana on I 20.<br />
<a href="http://bit.ly/IzlIw" rel="nofollow">http://bit.ly/IzlIw</a> <a href="http://twitter.com/cybercoder/statuses/1795289231" class="aktt_tweet_time">#</a></li>
<li>Nice clean rest stop in Louisiana I20 between Monroe and Ruston.<br />
<a href="http://bit.ly/x9xsI" rel="nofollow">http://bit.ly/x9xsI</a><br />
 <a href="http://twitpic.com/55m6j" rel="nofollow">http://twitpic.com/55m6j</a> <a href="http://twitter.com/cybercoder/statuses/1795952638" class="aktt_tweet_time">#</a></li>
<li>Have I said how much I love my #iPhone? First road trip with iPhone and this is fantastic. <a href="http://twitter.com/cybercoder/statuses/1796036137" class="aktt_tweet_time">#</a></li>
<li>Finally hit #<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> 3g network heading into Shreveport.<br />
<a href="http://bit.ly/kYZGA" rel="nofollow">http://bit.ly/kYZGA</a> <a href="http://twitter.com/cybercoder/statuses/1796575345" class="aktt_tweet_time">#</a></li>
<li>RT @b10m:  Aren&#39;t most services born out of a need to scratch a personal itch? <img src='http://www.cybercoded.net/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  @<a href="http://twitter.com/namecheap" class="aktt_username">namecheap</a> could launch a contest to show off API usage <a href="http://twitter.com/cybercoder/statuses/1796714050" class="aktt_tweet_time">#</a></li>
<li>Almost there, in Tyler now, I have not been here in several years.<br />
<a href="http://bit.ly/UZKE7" rel="nofollow">http://bit.ly/UZKE7</a> <a href="http://twitter.com/cybercoder/statuses/1797598051" class="aktt_tweet_time">#</a></li>
<li>Yeah, Kiepersol Winery, Bed and Breakfast !<br />
<a href="http://bit.ly/1rTGk" rel="nofollow">http://bit.ly/1rTGk</a> <a href="http://twitter.com/cybercoder/statuses/1798009776" class="aktt_tweet_time">#</a></li>
<li>John Lennon: The NYC Years <a href="http://ff.im/2Umvn" rel="nofollow">http://ff.im/2Umvn</a> <a href="http://twitter.com/cybercoder/statuses/1804120671" class="aktt_tweet_time">#</a></li>
<li>John Lennon: The NYC Years <a href="http://tinyurl.com/pg66xr" rel="nofollow">http://tinyurl.com/pg66xr</a> <a href="http://twitter.com/cybercoder/statuses/1804537778" class="aktt_tweet_time">#</a></li>
<li>Trying world famous barbcue at Ciuntry Tavern in Kilgore, Texas.<br />
<a href="http://bit.ly/GY2vb" rel="nofollow">http://bit.ly/GY2vb</a><br />
 <a href="http://twitpic.com/58sjf" rel="nofollow">http://twitpic.com/58sjf</a> <a href="http://twitter.com/cybercoder/statuses/1810715456" class="aktt_tweet_time">#</a></li>
<li>48 hours since I looked at any code, starting to have programming withdrawals. <a href="http://twitter.com/cybercoder/statuses/1812210420" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> &#8211; @sapheyerblu, @RonDavies, @linkmoneydotorg, @deanmeistr, @jmacofearth, @rerockstarRT, @Stephen_Bray, @recr, @<a href="http://twitter.com/mulyoo" class="aktt_username">mulyoo</a> <a href="http://twitter.com/cybercoder/statuses/1812455641" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> &#8211; @sapheyerblu, @RonDavies, @linkmoneydotorg, @deanmeistr, @jmacofearth, @rerockstar, @Stephen_Bray, @recr, @<a href="http://twitter.com/mulyoo" class="aktt_username">mulyoo</a> <a href="http://twitter.com/cybercoder/statuses/1812464964" class="aktt_tweet_time">#</a></li>
<li>Glad most apps I use are web based and I carry all my web work with me on a thumb drive, now I can do some work, for relaxation, lol&#8230; <a href="http://twitter.com/cybercoder/statuses/1815777118" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-05-17 <a href="http://ff.im/2Y3Rw" rel="nofollow">http://ff.im/2Y3Rw</a> <a href="http://twitter.com/cybercoder/statuses/1824191582" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-05-17 <a href="http://tinyurl.com/q2p5b3" rel="nofollow">http://tinyurl.com/q2p5b3</a> <a href="http://twitter.com/cybercoder/statuses/1824474187" class="aktt_tweet_time">#</a></li>
<li>While testing my new WordPress Plugin it became obvious that TwitWord research is now like Keyword Research. <a href="http://twitter.com/cybercoder/statuses/1826556110" class="aktt_tweet_time">#</a></li>
<li>I am amazed when I can not find an iPhone App developer on Twitter! You would think they would all be here. <a href="http://twitter.com/cybercoder/statuses/1826721988" class="aktt_tweet_time">#</a></li>
<li>Dead stop for accident on  I20 in Monroe, Louisiana.<br />
<a href="http://bit.ly/13b1cV" rel="nofollow">http://bit.ly/13b1cV</a><br />
 <a href="http://twitpic.com/5davm" rel="nofollow">http://twitpic.com/5davm</a> <a href="http://twitter.com/cybercoder/statuses/1827182058" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> question, if &quot;E&quot; is edge, and &quot;3G&quot; is 3G what is &quot;o&quot;? That is first time I have seen that one on the top left of screen. <a href="http://twitter.com/cybercoder/statuses/1827283234" class="aktt_tweet_time">#</a></li>
<li>Too many people think they drive ok while talking on the phone. <a href="http://twitter.com/cybercoder/statuses/1827339728" class="aktt_tweet_time">#</a></li>
<li>Glad I had my iPhone on this trip, my wife likes to drive and control the radio, our musical taste is not always the same, lol <a href="http://twitter.com/cybercoder/statuses/1827804420" class="aktt_tweet_time">#</a></li>
<li>Ah, finally back home, house is still in one piece, kids are safe, pets are alive, and my faithful computers are just waiting for me to work <a href="http://twitter.com/cybercoder/statuses/1829149605" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> Photography seems to be carving out it&#39;s own little niche on the net. <a href="http://tinyurl.com/q6nwf2" rel="nofollow">http://tinyurl.com/q6nwf2</a> <a href="http://twitter.com/cybercoder/statuses/1835974333" class="aktt_tweet_time">#</a></li>
<li>Working on a database for WordPress solutions, I see a lot of the same problems over and over with range of clients. <a href="http://twitter.com/cybercoder/statuses/1837104728" class="aktt_tweet_time">#</a></li>
<li>If you buy and sell Domain Names I recommend using @NameCheap, there is not an easier solution to push to another person. <a href="http://twitter.com/cybercoder/statuses/1840539628" class="aktt_tweet_time">#</a></li>
<li>RT @paulglavin: WordPress problem resolved! Custom permalinks + static page = known bug. <a href="http://bit.ly/4uDl9" rel="nofollow">http://bit.ly/4uDl9</a> <a href="http://twitter.com/cybercoder/statuses/1841995533" class="aktt_tweet_time">#</a></li>
<li>Good morning everyone! <a href="http://twitter.com/cybercoder/statuses/1846697314" class="aktt_tweet_time">#</a></li>
<li>Business Class @<a href="http://twitter.com/Comcast" class="aktt_username">Comcast</a> down this morning, another time to be thankful for my #iPhone. <a href="http://twitter.com/cybercoder/statuses/1846941674" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> issue, router is up, service is down, the iPhone will not let go of Wifi automatically, Have to change manually. <a href="http://twitter.com/cybercoder/statuses/1847129922" class="aktt_tweet_time">#</a></li>
<li>Of course, I send all my info to @ComcastBill, and @<a href="http://twitter.com/Comcast" class="aktt_username">Comcast</a> starts working. <a href="http://twitter.com/cybercoder/statuses/1848432074" class="aktt_tweet_time">#</a></li>
<li>My Copier Salesman just shared the Bump #<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> App with me, love the creativity and simplicity, <a href="http://tinyurl.com/djocfb" rel="nofollow">http://tinyurl.com/djocfb</a> <a href="http://twitter.com/cybercoder/statuses/1848462502" class="aktt_tweet_time">#</a></li>
<li>Willie Nelson Spirit of 76 <a href="http://tinyurl.com/qdbrwb" rel="nofollow">http://tinyurl.com/qdbrwb</a> <a href="http://twitter.com/cybercoder/statuses/1856599879" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> Tip &#8211; If an app freezes, from the app hold the home key down 6 seconds to reset the app. <a href="http://twitter.com/cybercoder/statuses/1858835274" class="aktt_tweet_time">#</a></li>
<li>Being a big Weather Channel fan (@TWCi) surprised to find myself using  @<a href="http://twitter.com/USAToday" class="aktt_username">USAToday</a> #<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> app more for weather info <a href="http://twitter.com/cybercoder/statuses/1861751173" class="aktt_tweet_time">#</a></li>
<li>Twitter Tip &#8211; If you do nothing else, change the avatar to a custom picture. Please ! <a href="http://twitter.com/cybercoder/statuses/1862321389" class="aktt_tweet_time">#</a></li>
<li>The pressure of real time Twitter search is causing Google to index even faster, new site less than 24 hours as test. <a href="http://twitter.com/cybercoder/statuses/1865774959" class="aktt_tweet_time">#</a></li>
<li>Enjoying the Texas Merlot from Keipersol Winery in Bullard, Texas. Excellent Restaurant there too! <a href="http://twitter.com/cybercoder/statuses/1866602679" class="aktt_tweet_time">#</a></li>
<li>RT @MarkIsMusing: I wasn’t really asleep I was just meditating on unconsciousness. – unknown <a href="http://twitter.com/cybercoder/statuses/1870160280" class="aktt_tweet_time">#</a></li>
<li>Kris Allen American Idol <a href="http://twurl.nl/t22fru" rel="nofollow">http://twurl.nl/t22fru</a> <a href="http://twitter.com/cybercoder/statuses/1873226875" class="aktt_tweet_time">#</a></li>
<li>Just my luck, planned a remodel job on the house this weekend, and now it is going to rain all weekend. <a href="http://twitter.com/cybercoder/statuses/1873699449" class="aktt_tweet_time">#</a></li>
<li>Oh well, guess if it rains, I can always create some web sites, or programs or some other income generating goodness! <a href="http://twitter.com/cybercoder/statuses/1873910819" class="aktt_tweet_time">#</a></li>
<li>I used to work in real life so I could play on computers, now I play on computers to pay for real life ! <a href="http://twitter.com/cybercoder/statuses/1873925686" class="aktt_tweet_time">#</a></li>
<li>Kris Allen wins American Idol and look how much merchandise you can already buy of his, unreal <a href="http://tinyurl.com/pwrn2b" rel="nofollow">http://tinyurl.com/pwrn2b</a> <a href="http://twitter.com/cybercoder/statuses/1874016805" class="aktt_tweet_time">#</a></li>
<li>I have had a couple request for Dreamhost Promo Codes, 1 year unlimited Hosting for $50, use CYBER50 <a href="http://twitter.com/cybercoder/statuses/1875743104" class="aktt_tweet_time">#</a></li>
<li>My short term memory is really starting to concern me, seems to be worse lately, I think, what was I saying&#8230; <a href="http://twitter.com/cybercoder/statuses/1876262874" class="aktt_tweet_time">#</a></li>
<li>RT @whodeani: Apple to answer netbook market with $500-$700 tablet <a href="http://ow.ly/8oXW" rel="nofollow">http://ow.ly/8oXW</a> <a href="http://twitter.com/cybercoder/statuses/1876988411" class="aktt_tweet_time">#</a></li>
<li>RT @google: Google Chrome: now with more zip! <a href="http://bit.ly/AY9ZZ" rel="nofollow">http://bit.ly/AY9ZZ</a> <a href="http://twitter.com/cybercoder/statuses/1877335479" class="aktt_tweet_time">#</a></li>
<li>FreeDrumLessons on 440TV <a href="http://tinyurl.com/oocz37" rel="nofollow">http://tinyurl.com/oocz37</a> <a href="http://twitter.com/cybercoder/statuses/1880372591" class="aktt_tweet_time">#</a></li>
<li>Twitter Tip Repeat &#8211; If you send an auto DM to tell me how to get 16,000 followers, shouldn&#39;t you have 16,000 followers? <a href="http://twitter.com/cybercoder/statuses/1881632527" class="aktt_tweet_time">#</a></li>
<li>FollowFriday &#8211; @tweetmaker, @wpdude, @BlueLint, @Donshapiro1, @manz76, @MindofZ, @Sweetnote, @MyaLynn, @MicBriggs, @<a href="http://twitter.com/iPhoneRTs" class="aktt_username">iPhoneRTs</a> <a href="http://twitter.com/cybercoder/statuses/1882368477" class="aktt_tweet_time">#</a></li>
<li>WordPress Tip &#8211; Use a static page while you are in development mode of the blog/site. Example: <a href="http://tinyurl.com/ox98on" rel="nofollow">http://tinyurl.com/ox98on</a> <a href="http://twitter.com/cybercoder/statuses/1882697133" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/mikiesoft" class="aktt_username">mikiesoft</a> @<a href="http://twitter.com/440tv" class="aktt_username">440tv</a> Great site for musicians! <a href="http://tinyurl.com/qgzysv" rel="nofollow">http://tinyurl.com/qgzysv</a> <a href="http://twitter.com/cybercoder/statuses/1883366880" class="aktt_tweet_time">#</a></li>
<li>Rescheduling my DIY house work, just not willing to frustrate myself with the rain, I will program instead, oh darn, lol <a href="http://twitter.com/cybercoder/statuses/1883423059" class="aktt_tweet_time">#</a></li>
<li>What is the best way to get an appraisal for a domain name? Then, what is best place to sell? <a href="http://twitter.com/cybercoder/statuses/1883601134" class="aktt_tweet_time">#</a></li>
<li>Domain I am selling is EmergingMediaSpecialist.com, it is an up and coming term, site ranks #<a href="http://search.twitter.com/search?q=%231" class="aktt_hashtag">1</a> for Emerging Media Specialist <a href="http://twitter.com/cybercoder/statuses/1884060636" class="aktt_tweet_time">#</a></li>
<li>My oldest daughter picked out a Beatles puzzle for us to put together this weekend.  <a href="http://twitpic.com/5qnnp" rel="nofollow">http://twitpic.com/5qnnp</a> <a href="http://twitter.com/cybercoder/statuses/1889521438" class="aktt_tweet_time">#</a></li>
<li>One Hit Wonders <a href="http://tinyurl.com/pvfm2p" rel="nofollow">http://tinyurl.com/pvfm2p</a> <a href="http://twitter.com/cybercoder/statuses/1891969821" class="aktt_tweet_time">#</a></li>
<li>Breakfast @Jo&#39;s Diner waiting for the bad weather to roll in.<br />
<a href="http://bit.ly/f9GKT" rel="nofollow">http://bit.ly/f9GKT</a> <a href="http://twitter.com/cybercoder/statuses/1893998207" class="aktt_tweet_time">#</a></li>
<li>Just spent 14 hours working on my house, that&#39;s hard labor to a desk jockey like myself, but worth the time. <a href="http://twitter.com/cybercoder/statuses/1899681832" class="aktt_tweet_time">#</a></li>
<li>Time Won’t Let Me ~ The Outsiders <a href="http://tinyurl.com/ov4vmk" rel="nofollow">http://tinyurl.com/ov4vmk</a> <a href="http://twitter.com/cybercoder/statuses/1900365362" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-05-24 <a href="http://tinyurl.com/p7fb64" rel="nofollow">http://tinyurl.com/p7fb64</a> <a href="http://twitter.com/cybercoder/statuses/1900947274" class="aktt_tweet_time">#</a></li>
<li>“Lies” The Knickerbockers <a href="http://tinyurl.com/p9so2c" rel="nofollow">http://tinyurl.com/p9so2c</a> <a href="http://twitter.com/cybercoder/statuses/1910334115" class="aktt_tweet_time">#</a></li>
<li>Bob Dylan Forever Young at 68 <a href="http://tinyurl.com/rcdlfc" rel="nofollow">http://tinyurl.com/rcdlfc</a> <a href="http://twitter.com/cybercoder/statuses/1911069552" class="aktt_tweet_time">#</a></li>
<li>Give Peace A Chance John &amp; Yoko <a href="http://tinyurl.com/qmpq6r" rel="nofollow">http://tinyurl.com/qmpq6r</a> <a href="http://twitter.com/cybercoder/statuses/1929109430" class="aktt_tweet_time">#</a></li>
<li>tonepedia.com <a href="http://tinyurl.com/p823ge" rel="nofollow">http://tinyurl.com/p823ge</a> <a href="http://twitter.com/cybercoder/statuses/1933622849" class="aktt_tweet_time">#</a></li>
<li>Trying to find some more online contract work. <a href="http://twitter.com/cybercoder/statuses/1940398701" class="aktt_tweet_time">#</a></li>
<li>Crosby, Stills &amp; Nash Demos <a href="http://tinyurl.com/pyo8su" rel="nofollow">http://tinyurl.com/pyo8su</a> <a href="http://twitter.com/cybercoder/statuses/1945423846" class="aktt_tweet_time">#</a></li>
<li>Looking for full time job in Jackson, Mississippi area. Over 20+ years programming and 15+ Internet experience! <a href="http://twitter.com/cybercoder/statuses/1947423346" class="aktt_tweet_time">#</a></li>
<li>I appreciate all the DM&#39;s about work, as I get a lot of DM&#39;s the best method to contact me is <a href="http://tinyurl.com/kvdmm8" rel="nofollow">http://tinyurl.com/kvdmm8</a> <a href="http://twitter.com/cybercoder/statuses/1948748521" class="aktt_tweet_time">#</a></li>
<li>The Grass Roots <a href="http://tinyurl.com/mlvz4k" rel="nofollow">http://tinyurl.com/mlvz4k</a> <a href="http://twitter.com/cybercoder/statuses/1956485195" class="aktt_tweet_time">#</a></li>
<li>Looking for some good Classic Rock blogs and sites, If you have a recommendation, please post it. <a href="http://twitter.com/cybercoder/statuses/1959650182" class="aktt_tweet_time">#</a></li>
<li>RT @stoutlabs: Hey coders: want a periodic reminder to keep your back from going out like mine did?  Follow @<a href="http://twitter.com/areyousittingup" class="aktt_username">areyousittingup</a> <a href="http://twitter.com/cybercoder/statuses/1960972636" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> &#8211; @stoutlabs, @mck66,  @BookkeeperSC,  @linkmoneydotorg,  @waynejohn,  @mikiesoft,  @<a href="http://twitter.com/Ben_Sky" class="aktt_username">Ben_Sky</a> &amp; TGIF !!!!! <a href="http://twitter.com/cybercoder/statuses/1961045769" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-05-31 <a href="http://tinyurl.com/l23xo2" rel="nofollow">http://tinyurl.com/l23xo2</a> <a href="http://twitter.com/cybercoder/statuses/1978799094" class="aktt_tweet_time">#</a></li>
<li>Good Monday morning to everyone, settling in for another long week, at least the weather is beautiful! <a href="http://twitter.com/cybercoder/statuses/1991045627" class="aktt_tweet_time">#</a></li>
<li>Just checked on a site I am helping someone with, with a couple minor changes we have more than doubled the indexed pages. <a href="http://twitter.com/cybercoder/statuses/1991055347" class="aktt_tweet_time">#</a></li>
<li>Trigger Ads Based on Post Word Count <a href="http://tinyurl.com/mshh2m" rel="nofollow">http://tinyurl.com/mshh2m</a> <a href="http://twitter.com/cybercoder/statuses/1993200216" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/namecheap" class="aktt_username">namecheap</a> is giving away free domains &amp; even vacations on twitter <a href="http://budurl.com/c8m8" rel="nofollow">http://budurl.com/c8m8</a> <a href="http://twitter.com/cybercoder/statuses/2003798640" class="aktt_tweet_time">#</a></li>
<li>Just added myself to the <a href="http://wefollow.com" rel="nofollow">http://wefollow.com</a> twitter directory under:  #<a href="http://search.twitter.com/search?q=%23wordpress" class="aktt_hashtag">wordpress</a> #iphone #<a href="http://search.twitter.com/search?q=%23mississippi" class="aktt_hashtag">mississippi</a> <a href="http://twitter.com/cybercoder/statuses/2005331406" class="aktt_tweet_time">#</a></li>
<li>Almost sad to see companies not making money on the Internet with good products, while people make money with NO products <a href="http://twitter.com/cybercoder/statuses/2006531625" class="aktt_tweet_time">#</a></li>
<li>RT @deadtreemedia: Newspaper Ad Sales Plummet $2.6 Billion In Q1 2009 (see the graph) &#8211; <a href="http://xr.com/e09c" rel="nofollow">http://xr.com/e09c</a><br />
undefined <a href="http://twitter.com/cybercoder/statuses/2008171837" class="aktt_tweet_time">#</a></li>
<li>If everyone made everything that was promised everywhere online, where would all that money come from ? <a href="http://twitter.com/cybercoder/statuses/2008208923" class="aktt_tweet_time">#</a></li>
<li>See which Twitter users visit YOUR site with the TwitterRemote widget: <a href="http://TwitterRemote.com/" rel="nofollow">http://TwitterRemote.com/</a> <a href="http://twitter.com/cybercoder/statuses/2018643217" class="aktt_tweet_time">#</a></li>
<li>Just installed TwitterRemote (<a href="http://TwitterRemote.com/" rel="nofollow">http://TwitterRemote.com/</a>) on my blog: <a href="http://tinyurl.com/9umbxx" rel="nofollow">http://tinyurl.com/9umbxx</a> <a href="http://twitter.com/cybercoder/statuses/2018650206" class="aktt_tweet_time">#</a></li>
<li>Google Analytics showing good traffic from @Bing, listed as a referring site, not search engine without search terms <a href="http://twitter.com/cybercoder/statuses/2029243638" class="aktt_tweet_time">#</a></li>
<li>RIP David Carradine <a href="http://tinyurl.com/qpkt8x" rel="nofollow">http://tinyurl.com/qpkt8x</a> Kung Fu was a prime time show when I was a kid! <a href="http://twitter.com/cybercoder/statuses/2031603945" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> Part 1 &#8211; @Cuevman81, @vicksburgnews, @ofdomejean, @BAokiRT, @seancarlos, @valentmustamin, @niron, @bing, @cjweb, @<a href="http://twitter.com/waynejohn" class="aktt_username">waynejohn</a> <a href="http://twitter.com/cybercoder/statuses/2042769694" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> Part 2 &#8211; @seotips2go, @wideglidemike, @deadtreemedia, SamRHall, @funwithtrains, @ClintonBennett, @ linkmoneydotorg <a href="http://twitter.com/cybercoder/statuses/2042814622" class="aktt_tweet_time">#</a></li>
<li>RT @linkmoneydotorg: 1966 Ford Fairlane For sale (photos) &#8211; AmericanClassicCarSale &#8211; <a href="http://xr.com/f60" rel="nofollow">http://xr.com/f60</a> #<a href="http://search.twitter.com/search?q=%23classiccar" class="aktt_hashtag">classiccar</a> &#8211; Beautiful Car!!! <a href="http://twitter.com/cybercoder/statuses/2042844216" class="aktt_tweet_time">#</a></li>
<li>Only 42 people in the WeFollow Mississippi Tag ? That&#39;s pretty lame. <a href="http://wefollow.com/tag/mississippi" rel="nofollow">http://wefollow.com/tag/mississippi</a> <a href="http://twitter.com/cybercoder/statuses/2043562423" class="aktt_tweet_time">#</a></li>
<li>Showing age, today is my 22nd Wedding Anniversary,my wife goes on a road trip and I stay home to work, lol&#8230;. <a href="http://twitter.com/cybercoder/statuses/2046655639" class="aktt_tweet_time">#</a></li>
<li>Getting some Ichihan Buffett before attempting to code all night!<br />
<a href="http://bit.ly/IdVHi" rel="nofollow">http://bit.ly/IdVHi</a> <a href="http://twitter.com/cybercoder/statuses/2048517967" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-06-07 <a href="http://tinyurl.com/qjqgfm" rel="nofollow">http://tinyurl.com/qjqgfm</a> <a href="http://twitter.com/cybercoder/statuses/2063124018" class="aktt_tweet_time">#</a></li>
<li>Enjoying the new Crosby, Stills &amp; Nash Demos CD <a href="http://tinyurl.com/ps9dsl" rel="nofollow">http://tinyurl.com/ps9dsl</a> <a href="http://twitter.com/cybercoder/statuses/2065360532" class="aktt_tweet_time">#</a></li>
<li>Happy Birthday to @TheYoungGuy, before long we may have to change your name to TheNotSoYoungGuy, ROFL <a href="http://twitter.com/cybercoder/statuses/2066126841" class="aktt_tweet_time">#</a></li>
<li>Thanks @coinblogger, @<a href="http://twitter.com/funwithtrains" class="aktt_username">funwithtrains</a> &amp; @<a href="http://twitter.com/waynejohn" class="aktt_username">waynejohn</a> for testing and refining CybersEbay WordPress Plugin <a href="http://tinyurl.com/pzaznu" rel="nofollow">http://tinyurl.com/pzaznu</a> <a href="http://twitter.com/cybercoder/statuses/2066401330" class="aktt_tweet_time">#</a></li>
<li>Just UN installed TwitterRemote (<a href="http://TwitterRemote.com/" rel="nofollow">http://TwitterRemote.com/</a>) on my blog: I could not see that it did anything ! <a href="http://twitter.com/cybercoder/statuses/2067062709" class="aktt_tweet_time">#</a></li>
<li>Thanks @<a href="http://twitter.com/JohnZReagan" class="aktt_username">JohnZReagan</a> I am glad my Ebay Plugin has helped you so much. <a href="http://tinyurl.com/pqpkee" rel="nofollow">http://tinyurl.com/pqpkee</a> <a href="http://twitter.com/cybercoder/statuses/2068102777" class="aktt_tweet_time">#</a></li>
<li>Cybers Ebay WordPress Plugin <a href="http://tinyurl.com/6mhqyf" rel="nofollow">http://tinyurl.com/6mhqyf</a> , this has easily become my favorite passive income stream. <a href="http://twitter.com/cybercoder/statuses/2075482622" class="aktt_tweet_time">#</a></li>
<li>I finally found a Web Based Twitter client I like, @<a href="http://twitter.com/TwitHive" class="aktt_username">TwitHive</a> <a href="http://twitter.com/cybercoder/statuses/2076018757" class="aktt_tweet_time">#</a></li>
<li>So far, @<a href="http://twitter.com/TwitHive" class="aktt_username">TwitHive</a> is working great in Chrome. <a href="http://twitter.com/cybercoder/statuses/2076181467" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/LPCutler" class="aktt_username">LPCutler</a>  @<a href="http://twitter.com/jduganbarrett" class="aktt_username">jduganbarrett</a>  Blogger is the aol of blogs. At least have some self-respect and get a wordpress. &lt;- I like the analogy <a href="http://twitter.com/LPCutler/statuses/2081719675" class="aktt_tweet_reply">in reply to LPCutler</a> <a href="http://twitter.com/cybercoder/statuses/2081765943" class="aktt_tweet_time">#</a></li>
<li>WordPress Threaded Comments <a href="http://tinyurl.com/l6fcrh" rel="nofollow">http://tinyurl.com/l6fcrh</a> , a 5 minute solution to adding threaded comments to WP blog. <a href="http://twitter.com/cybercoder/statuses/2090161637" class="aktt_tweet_time">#</a></li>
<li>WordPress Threaded Comments <a href="http://tinyurl.com/l6fcrh" rel="nofollow">http://tinyurl.com/l6fcrh</a> <a href="http://twitter.com/cybercoder/statuses/2098212491" class="aktt_tweet_time">#</a></li>
<li>Twitter stuff on eBay, amazing the things people come up with to sell for Twitter, <a href="http://tinyurl.com/mwwevv" rel="nofollow">http://tinyurl.com/mwwevv</a> <a href="http://twitter.com/cybercoder/statuses/2103216872" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/RichardLemon" class="aktt_username">RichardLemon</a> 10 Useful WordPress Loop Hacks  <a href="http://tr.im/o2GU" rel="nofollow">http://tr.im/o2GU</a> <a href="http://twitter.com/RichardLemon/statuses/2104596476" class="aktt_tweet_reply">in reply to RichardLemon</a> <a href="http://twitter.com/cybercoder/statuses/2104623449" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/blogdesigner" class="aktt_username">blogdesigner</a> Understanding action hooks in wordpress  <a href="http://tinyurl.com/qmvc7a" rel="nofollow">http://tinyurl.com/qmvc7a</a> #<a href="http://search.twitter.com/search?q=%23wpwednesday" class="aktt_hashtag">wpwednesday</a> <a href="http://twitter.com/blogdesigner/statuses/2106364756" class="aktt_tweet_reply">in reply to blogdesigner</a> <a href="http://twitter.com/cybercoder/statuses/2106407638" class="aktt_tweet_time">#</a></li>
<li>Is Google Wave Next? <a href="http://tinyurl.com/lrcqyb" rel="nofollow">http://tinyurl.com/lrcqyb</a> <a href="http://twitter.com/cybercoder/statuses/2108003109" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/DreamHost" class="aktt_username">DreamHost</a> Psst&#8230; WordPress 2.8 is now available in the One-Click Installer. Let us know if there&#39;s any problems with upgrades! <a href="http://twitter.com/cybercoder/statuses/2130737584" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> &#8211; @waynejohn, @linkmoneydotorg, @mikiesoft, @musicramble, @<a href="http://twitter.com/guitarramble" class="aktt_username">guitarramble</a> &#8211; More to come&#8230;&#8230; <a href="http://twitter.com/cybercoder/statuses/2133591733" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> &#8211; Some local people to follow &#8211; @Eric_Law_WLBT, @Jackson_Jobs, @WLBT, @WJTV, @clarionledger, @<a href="http://twitter.com/VikingClassic" class="aktt_username">VikingClassic</a> <a href="http://twitter.com/cybercoder/statuses/2135704332" class="aktt_tweet_time">#</a></li>
<li>RT @clarionledger: U.S. gas prices rise for 45 straight days <a href="http://tinyurl.com/mnxphr" rel="nofollow">http://tinyurl.com/mnxphr</a> <a href="http://twitter.com/cybercoder/statuses/2135764554" class="aktt_tweet_time">#</a></li>
<li>Fly Quantas, Quantas never crashes !!!! <a href="http://twitter.com/cybercoder/statuses/2156866672" class="aktt_tweet_time">#</a></li>
<li>Awesome acoustic song from Stephen Stills ! ♫ <a href="http://blip.fm/~8660m" rel="nofollow">http://blip.fm/~8660m</a> <a href="http://twitter.com/cybercoder/statuses/2157395774" class="aktt_tweet_time">#</a></li>
<li>listening to &quot;Before You Accuse Me &#8211; Eric Clapton&quot; ♫ <a href="http://blip.fm/~866e0" rel="nofollow">http://blip.fm/~866e0</a> <a href="http://twitter.com/cybercoder/statuses/2157451709" class="aktt_tweet_time">#</a></li>
<li>There will never be another SRV ! ♫ <a href="http://blip.fm/~866oj" rel="nofollow">http://blip.fm/~866oj</a> <a href="http://twitter.com/cybercoder/statuses/2157496794" class="aktt_tweet_time">#</a></li>
<li>listening to &quot;Finish What Ya Started &#8211; Van Halen&quot; ♫ <a href="http://blip.fm/~867cp" rel="nofollow">http://blip.fm/~867cp</a> <a href="http://twitter.com/cybercoder/statuses/2157605230" class="aktt_tweet_time">#</a></li>
<li>Even in the shade it is hot !! If there was a breeze it would help, just took our afternoon walk, probably lost 5 lbs from the heat <a href="http://twitter.com/cybercoder/statuses/2158837843" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-06-14 <a href="http://tinyurl.com/mcujdz" rel="nofollow">http://tinyurl.com/mcujdz</a> <a href="http://twitter.com/cybercoder/statuses/2171646411" class="aktt_tweet_time">#</a></li>
<li>Added an automated Twitter Follower page to my site <a href="http://tinyurl.com/nqoxpg" rel="nofollow">http://tinyurl.com/nqoxpg</a>, gonna take awhile to populate due to Twitter API limit <a href="http://twitter.com/cybercoder/statuses/2195764993" class="aktt_tweet_time">#</a></li>
<li>Modified Automated Follower page, now Top 50 and a little algo to it, I just love the @<a href="http://twitter.com/Twitter" class="aktt_username">Twitter</a> API <a href="http://tinyurl.com/nqoxpg" rel="nofollow">http://tinyurl.com/nqoxpg</a> <a href="http://twitter.com/cybercoder/statuses/2199175042" class="aktt_tweet_time">#</a></li>
<li>Really digging the new Chickenfoot, just good ol rock and roll. Sammy ain&#39;t that deep, but man he sure has fun ! <a href="http://twitter.com/cybercoder/statuses/2199337674" class="aktt_tweet_time">#</a></li>
<li>and I forgot, @<a href="http://twitter.com/chickenfoot" class="aktt_username">chickenfoot</a> has got some killer stuff out there on YouTube <a href="http://tinyurl.com/ncmrac" rel="nofollow">http://tinyurl.com/ncmrac</a> <a href="http://twitter.com/cybercoder/statuses/2199366956" class="aktt_tweet_time">#</a></li>
<li>Why do so many Tweeps use auto DM? I have not seen on person say they like getting them. <a href="http://twitter.com/cybercoder/statuses/2207913593" class="aktt_tweet_time">#</a></li>
<li>Giving #<a href="http://search.twitter.com/search?q=%23Tweetdeck" class="aktt_hashtag">Tweetdeck</a> for iPhone a run. Like the groups, need a good DM management page?! <a href="http://twitter.com/cybercoder/statuses/2208132027" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23Tweetdeck" class="aktt_hashtag">Tweetdeck</a> Fail, iPhone app will not load all friends for me to choose from for a group? Need a search option! <a href="http://twitter.com/cybercoder/statuses/2208205651" class="aktt_tweet_time">#</a></li>
<li>Joe Cocker Hymn For My Soul <a href="http://tinyurl.com/lxz6n6" rel="nofollow">http://tinyurl.com/lxz6n6</a> <a href="http://twitter.com/cybercoder/statuses/2211631882" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> updated to OS 3.0, now to dig in and check it out, of course without the 2 important ones AT&amp;T won&#39;t let us have! <a href="http://twitter.com/cybercoder/statuses/2212863279" class="aktt_tweet_time">#</a></li>
<li>RT @AllynPaul: some dude with 12 followers offered me a free ebook on how to get followers! he rocks! /rollseyes <a href="http://twitter.com/cybercoder/statuses/2237081240" class="aktt_tweet_time">#</a></li>
<li>I need to finish my Twitter DM Spam filter this weekend. This is about the only Spam in my life now that I have to deal with. <a href="http://twitter.com/cybercoder/statuses/2237904180" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> &#8211; @allynpaul, @waynejohn, @mikiesoft,  @Eric_Law_WLBT, @golftrainer, @WJTV, @jacksonmetro, @<a href="http://twitter.com/musicramble" class="aktt_username">musicramble</a> <a href="http://twitter.com/cybercoder/statuses/2244284072" class="aktt_tweet_time">#</a></li>
<li>Paul McCartney still rocking at 67 <a href="http://tinyurl.com/nn7tx8" rel="nofollow">http://tinyurl.com/nn7tx8</a> <a href="http://twitter.com/cybercoder/statuses/2246094860" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> &#8211; Everyone who follows me and is involved with WordPress !! <a href="http://bit.ly/m6e2A" rel="nofollow">http://bit.ly/m6e2A</a> <a href="http://twitter.com/cybercoder/statuses/2247655692" class="aktt_tweet_time">#</a></li>
<li>Dr was not kidding when he said to take the muscle relaxer 9 hours before you want to wake up! <a href="http://twitter.com/cybercoder/statuses/2258053839" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-06-21 <a href="http://tinyurl.com/mzz6ce" rel="nofollow">http://tinyurl.com/mzz6ce</a> <a href="http://twitter.com/cybercoder/statuses/2263177368" class="aktt_tweet_time">#</a></li>
<li>Allright, got the new @<a href="http://twitter.com/Chickenfoot" class="aktt_username">Chickenfoot</a> CD for Fathers day! We got TUNES !! <a href="http://twitter.com/cybercoder/statuses/2271048941" class="aktt_tweet_time">#</a></li>
<li>If you need help getting your Blog going, check out 3rd Party Blog!  <a href="http://3rdpartyblog.com/" rel="nofollow">http://3rdpartyblog.com/</a> <a href="http://twitter.com/cybercoder/statuses/2273206135" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/Suntimes" class="aktt_username">Suntimes</a> iPhone 3G S sold 1 million this weekend.  <a href="http://tr.im/pkjP" rel="nofollow">http://tr.im/pkjP</a> Prespective: T-Mobile&#39;s Google phone sold 1 million units since Oct <a href="http://twitter.com/Suntimes/statuses/2279368146" class="aktt_tweet_reply">in reply to Suntimes</a> <a href="http://twitter.com/cybercoder/statuses/2279405752" class="aktt_tweet_time">#</a></li>
<li>Todd Rundgren A Wizard at 61 <a href="http://tinyurl.com/mulh3t" rel="nofollow">http://tinyurl.com/mulh3t</a> <a href="http://twitter.com/cybercoder/statuses/2281849691" class="aktt_tweet_time">#</a></li>
<li>I have to use 2 Tweeter iPhone apps, @<a href="http://twitter.com/Tweetdeck" class="aktt_username">Tweetdeck</a> and @<a href="http://twitter.com/Tweetie" class="aktt_username">Tweetie</a> since each is missing key elements or not working 100%. <a href="http://twitter.com/cybercoder/statuses/2294953038" class="aktt_tweet_time">#</a></li>
<li>Free Wifi at the Doctors office, that helps at least take my mind off the pain, lol <a href="http://twitter.com/cybercoder/statuses/2295668189" class="aktt_tweet_time">#</a></li>
<li>Updating the WordPress Twitter list @ <a href="http://bit.ly/m6e2A" rel="nofollow">http://bit.ly/m6e2A</a> <a href="http://twitter.com/cybercoder/statuses/2310416869" class="aktt_tweet_time">#</a></li>
<li>Added a Mississipi Twitter list to my site @ <a href="http://bit.ly/I3pBJ" rel="nofollow">http://bit.ly/I3pBJ</a> <a href="http://twitter.com/cybercoder/statuses/2311821201" class="aktt_tweet_time">#</a></li>
<li>Added pagination to the Mississippi Twitter list to help load times, <a href="http://bit.ly/I3pBJ" rel="nofollow">http://bit.ly/I3pBJ</a> <a href="http://twitter.com/cybercoder/statuses/2320021832" class="aktt_tweet_time">#</a></li>
<li>Happy Birthday Mick Fleetwood <a href="http://tinyurl.com/nv9qdx" rel="nofollow">http://tinyurl.com/nv9qdx</a> <a href="http://twitter.com/cybercoder/statuses/2322693531" class="aktt_tweet_time">#</a></li>
<li>I can always find a Eric Clapton song to fit my mood, has to be one of the most timeless musicians ever, IMHO. <a href="http://twitter.com/cybercoder/statuses/2332040175" class="aktt_tweet_time">#</a></li>
<li>Michael Jackson 1958 &#8211; 2009 <a href="http://tinyurl.com/ldpwnk" rel="nofollow">http://tinyurl.com/ldpwnk</a> <a href="http://twitter.com/cybercoder/statuses/2340689612" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> &#8211; CyberCoders Top 50 Followers <a href="http://bit.ly/6HDv5" rel="nofollow">http://bit.ly/6HDv5</a> <a href="http://twitter.com/cybercoder/statuses/2343418219" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> &#8211; CyberCoder WordPress Twitter followers &#8211; <a href="http://bit.ly/m6e2A" rel="nofollow">http://bit.ly/m6e2A</a> <a href="http://twitter.com/cybercoder/statuses/2343562523" class="aktt_tweet_time">#</a></li>
<li>Good article in USA Today &#8211; Businesses use Twitter to communicate with customers <a href="http://usat.me/?35467282" rel="nofollow">http://usat.me/?35467282</a> <a href="http://twitter.com/cybercoder/statuses/2344015781" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> &#8211; Mississippi Twitters&#39; &#8211; <a href="http://bit.ly/I3pBJ" rel="nofollow">http://bit.ly/I3pBJ</a> <a href="http://twitter.com/cybercoder/statuses/2344495545" class="aktt_tweet_time">#</a></li>
<li>We have now found 1255 people Tweeting from Mississippi. <a href="http://bit.ly/3dd8n4" rel="nofollow">http://bit.ly/3dd8n4</a> <a href="http://twitter.com/cybercoder/statuses/2349902003" class="aktt_tweet_time">#</a></li>
<li>One of my all time favorite songs! ♫ <a href="http://blip.fm/~8z2x7" rel="nofollow">http://blip.fm/~8z2x7</a> <a href="http://twitter.com/cybercoder/statuses/2358353745" class="aktt_tweet_time">#</a></li>
<li>Tommy Bolin was so unique, I always loved his sound.  ♫ <a href="http://blip.fm/~8z35h" rel="nofollow">http://blip.fm/~8z35h</a> <a href="http://twitter.com/cybercoder/statuses/2358423111" class="aktt_tweet_time">#</a></li>
<li>2 of my fav guitarists together, Jeff Beck and SRV ! ♫ <a href="http://blip.fm/~8z3b4" rel="nofollow">http://blip.fm/~8z3b4</a> <a href="http://twitter.com/cybercoder/statuses/2358463526" class="aktt_tweet_time">#</a></li>
<li>Last Tweet went to wrong song, let&#39;s try this again, for Jeff Beck and SRV ♫ <a href="http://blip.fm/~8z3d1" rel="nofollow">http://blip.fm/~8z3d1</a> <a href="http://twitter.com/cybercoder/statuses/2358480141" class="aktt_tweet_time">#</a></li>
<li>Digital music sure makes programming easier! <a href="http://twitter.com/cybercoder/statuses/2358486232" class="aktt_tweet_time">#</a></li>
<li>Sammy Hagar flashback with Ronnie Montrose. ♫ <a href="http://blip.fm/~8z3jp" rel="nofollow">http://blip.fm/~8z3jp</a> <a href="http://twitter.com/cybercoder/statuses/2358529090" class="aktt_tweet_time">#</a></li>
<li>Checking out the old Mustangs, slight price range here, $100 to $150k, <a href="http://www.1968mustangforsale.com/" rel="nofollow">http://www.1968mustangforsale.com/</a> <a href="http://twitter.com/cybercoder/statuses/2373550722" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/waynejohn" class="aktt_username">waynejohn</a> Facebook, Twitter and Peers for Sale — Privately &#8211; DealBook Blog &#8230; <a href="http://tinyurl.com/lfh5uu" rel="nofollow">http://tinyurl.com/lfh5uu</a> <a href="http://twitter.com/cybercoder/statuses/2387203672" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/KIntheHouse" class="aktt_username">KIntheHouse</a> Top iPhone Resource is opening 2 slots for guest bloggers with the new site re-design! <a href="http://bit.ly/gtBGR" rel="nofollow">http://bit.ly/gtBGR</a> <a href="http://twitter.com/cybercoder/statuses/2391510022" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/waynejohn" class="aktt_username">waynejohn</a> Twitter Grows “Uncomfortable” With The Use Of The Word Tweet In &#8230; <a href="http://tinyurl.com/lhmh6r" rel="nofollow">http://tinyurl.com/lhmh6r</a> <a href="http://twitter.com/cybercoder/statuses/2418976556" class="aktt_tweet_time">#</a></li>
<li>It really helps when clients give good definitions, Clear definition lead to concise programming! <a href="http://twitter.com/cybercoder/statuses/2422689265" class="aktt_tweet_time">#</a></li>
<li>Mississippi Twitter list has been updated. <a href="http://bit.ly/I3pBJ" rel="nofollow">http://bit.ly/I3pBJ</a> <a href="http://twitter.com/cybercoder/statuses/2423118827" class="aktt_tweet_time">#</a></li>
<li>After 20 years, I still find myself in a position of convincing clients that &quot;the new technology&quot; is a good thing ! <a href="http://twitter.com/cybercoder/statuses/2429333551" class="aktt_tweet_time">#</a></li>
<li>New method of SPAM, send a Tweet about a product and randomly include other people, BAD TACTIC  Block those ! <a href="http://twitter.com/cybercoder/statuses/2435712262" class="aktt_tweet_time">#</a></li>
<li>Thanks to @<a href="http://twitter.com/HarrahsTunica" class="aktt_username">HarrahsTunica</a> just found @<a href="http://twitter.com/billengvall" class="aktt_username">billengvall</a> on Twitter, my all time favorite comedian by far! <a href="http://twitter.com/cybercoder/statuses/2437980456" class="aktt_tweet_time">#</a></li>
<li>R.I.P. Sky Saxon of The Seeds <a href="http://tinyurl.com/os92bc" rel="nofollow">http://tinyurl.com/os92bc</a> <a href="http://twitter.com/cybercoder/statuses/2438903334" class="aktt_tweet_time">#</a></li>
<li>Eric Clapton Steve Winwood Tour <a href="http://tinyurl.com/lg5pyz" rel="nofollow">http://tinyurl.com/lg5pyz</a> <a href="http://twitter.com/cybercoder/statuses/2438904426" class="aktt_tweet_time">#</a></li>
<li>Let It Roll Songs by George Harrison <a href="http://tinyurl.com/nbed4d" rel="nofollow">http://tinyurl.com/nbed4d</a> <a href="http://twitter.com/cybercoder/statuses/2438905318" class="aktt_tweet_time">#</a></li>
<li>Thanks to @<a href="http://twitter.com/birdofparadox" class="aktt_username">birdofparadox</a> &amp; @<a href="http://twitter.com/TbroOnline" class="aktt_username">TbroOnline</a> I adjusted the Mississippi Twitter list, now at 1386 &#8211; <a href="http://tinyurl.com/mdzo4t" rel="nofollow">http://tinyurl.com/mdzo4t</a> <a href="http://twitter.com/cybercoder/statuses/2443382545" class="aktt_tweet_time">#</a></li>
<li>Time to move to the home office for the long weekend. <a href="http://twitter.com/cybercoder/statuses/2443530262" class="aktt_tweet_time">#</a></li>
<li>Is it showing that I took the day off to finish painting my house, lol. <a href="http://twitter.com/cybercoder/statuses/2461558773" class="aktt_tweet_time">#</a></li>
<li>For #<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> I recommend all the wonderful people in Mississippi on this list, <a href="http://bit.ly/I3pBJ" rel="nofollow">http://bit.ly/I3pBJ</a> <a href="http://twitter.com/cybercoder/statuses/2461573030" class="aktt_tweet_time">#</a></li>
<li>Happy 4th of July ! Have a fun and safe Holiday. <a href="http://twitter.com/cybercoder/statuses/2468380694" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/WLBT" class="aktt_username">WLBT</a> Nashville police confirm former Titans QB &amp; Mississippi native Steve McNair has been found dead from a gunshot wound to the head. <a href="http://twitter.com/cybercoder/statuses/2473739986" class="aktt_tweet_time">#</a></li>
<li>Solved a problem this morning that has been bothering me for a couple of years! <a href="http://twitter.com/cybercoder/statuses/2484947404" class="aktt_tweet_time">#</a></li>
<li>Sony Walkman turns 30 <a href="http://tinyurl.com/odh2oe" rel="nofollow">http://tinyurl.com/odh2oe</a> <a href="http://twitter.com/cybercoder/statuses/2493039875" class="aktt_tweet_time">#</a></li>
<li>Another excellent Marketing campaign using Twitter ! <a href="http://bit.ly/96bxC" rel="nofollow">http://bit.ly/96bxC</a> #<a href="http://search.twitter.com/search?q=%23moonfruit" class="aktt_hashtag">moonfruit</a> <a href="http://twitter.com/cybercoder/statuses/2496406830" class="aktt_tweet_time">#</a></li>
<li>I was lucky enough to be part of the Twitter Accounts that got accidentally  suspended yesterday. <a href="http://tinyurl.com/p6hcr7" rel="nofollow">http://tinyurl.com/p6hcr7</a> <a href="http://twitter.com/cybercoder/statuses/2496598484" class="aktt_tweet_time">#</a></li>
<li>Get $30 off Hosting at Dreamhost, use Promo Code CYBER30, <a href="http://www.dreamhost.com/hosting.html" rel="nofollow">http://www.dreamhost.com/hosting.html</a> <a href="http://twitter.com/cybercoder/statuses/2500135367" class="aktt_tweet_time">#</a></li>
<li>Nice to an increase in local activity on Twitter. Still see lot&#39;s of opportunity for local companies on Twitter. <a href="http://twitter.com/cybercoder/statuses/2505315203" class="aktt_tweet_time">#</a></li>
<li>Happy Birthday Ringo Starr <a href="http://tinyurl.com/mvysxf" rel="nofollow">http://tinyurl.com/mvysxf</a> <a href="http://twitter.com/cybercoder/statuses/2509814258" class="aktt_tweet_time">#</a></li>
<li>Brian Jones &amp; the Rolling Stones <a href="http://tinyurl.com/mq35er" rel="nofollow">http://tinyurl.com/mq35er</a> <a href="http://twitter.com/cybercoder/statuses/2528517363" class="aktt_tweet_time">#</a></li>
<li>Looks like another day to play Fireman, woke up to emails from people needing immediate help, drinking the coffee fast, lol <a href="http://twitter.com/cybercoder/statuses/2531741218" class="aktt_tweet_time">#</a></li>
<li>Welcome to Twitter @BroadstreetCafe, reminded me I need to stop by there for some coffee and goodies ! <a href="http://twitter.com/cybercoder/statuses/2537447662" class="aktt_tweet_time">#</a></li>
<li>Looking for a WordPress person? Here is a good list to help you get started <a href="http://bit.ly/1DVxm" rel="nofollow">http://bit.ly/1DVxm</a> <a href="http://twitter.com/cybercoder/statuses/2541043474" class="aktt_tweet_time">#</a></li>
<li>The @<a href="http://twitter.com/bitly" class="aktt_username">bitly</a> API is excellent, and their website has a lot of great data to help you track your shortened links! <a href="http://twitter.com/cybercoder/statuses/2541491149" class="aktt_tweet_time">#</a></li>
<li>Musicians Tuned Into Twitter <a href="http://tinyurl.com/l275r3" rel="nofollow">http://tinyurl.com/l275r3</a> <a href="http://twitter.com/cybercoder/statuses/2549436198" class="aktt_tweet_time">#</a></li>
<li>Twitter Tip, if you use the @<a href="http://twitter.com/Bitly" class="aktt_username">Bitly</a> API you can get instant access to the click throughs of you Twitter Links! <a href="http://twitter.com/cybercoder/statuses/2550268683" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/ChristineReaves" class="aktt_username">ChristineReaves</a> RT @<a href="http://twitter.com/eatjxn" class="aktt_username">eatjxn</a> mentioned Twitter Tuesday @SalAndMookies. (Count me in Next Week !) <a href="http://twitter.com/cybercoder/statuses/2552609692" class="aktt_tweet_time">#</a></li>
<li>Why do people with a few followers post how to get a bunch of followers and think we will believe them? You go first, lol <a href="http://twitter.com/cybercoder/statuses/2557528467" class="aktt_tweet_time">#</a></li>
<li>Been awhile since we have been in Fondren area, gonna cruise through and check it out.  Used to love eating at Roosters. <a href="http://twitter.com/cybercoder/statuses/2559890804" class="aktt_tweet_time">#</a></li>
<li>Mississippi Twitter List has been updated <a href="http://bit.ly/VWHxL" rel="nofollow">http://bit.ly/VWHxL</a> <a href="http://twitter.com/cybercoder/statuses/2567812307" class="aktt_tweet_time">#</a></li>
<li>Mississippi Twitter List has been updated, (correct link here) <a href="http://bit.ly/Stsbe" rel="nofollow">http://bit.ly/Stsbe</a> <a href="http://twitter.com/cybercoder/statuses/2567850655" class="aktt_tweet_time">#</a></li>
<li>looking for a job (or contract work) in Jackson Mississippi area, About CyberCoder (David Cooley) | CyberCoded <a href="http://bit.ly/tmv5i" rel="nofollow">http://bit.ly/tmv5i</a> <a href="http://twitter.com/cybercoder/statuses/2568237140" class="aktt_tweet_time">#</a></li>
<li>Thanks @<a href="http://twitter.com/BearBob" class="aktt_username">BearBob</a> &amp; @BroadstreetCafe, I certainly follow both of you! #FollowFriday, PS: The cake and coffee was great ! <a href="http://twitter.com/cybercoder/statuses/2570057879" class="aktt_tweet_time">#</a></li>
<li>Good discussions and commentary, @TbroOnline, #FollowFriday, and I like the push to cleanup #<a href="http://search.twitter.com/search?q=%23FF" class="aktt_hashtag">FF</a> <a href="http://twitter.com/cybercoder/statuses/2570495343" class="aktt_tweet_time">#</a></li>
<li>The Mississippi Twitter List has a new home, the old page from CyberCoded.net will 301 redirect. <a href="http://bit.ly/38xYi" rel="nofollow">http://bit.ly/38xYi</a> <a href="http://twitter.com/cybercoder/statuses/2573767599" class="aktt_tweet_time">#</a></li>
<li>Hopefully there will be a post next after the latest update, now being auto scheduled, pardon my testing. 1, 2 check&#8230; lol <a href="http://twitter.com/cybercoder/statuses/2574138753" class="aktt_tweet_time">#</a></li>
<li>The Mississippi Twitter List was just updated! <a href="http://bit.ly/38xYi" rel="nofollow">http://bit.ly/38xYi</a> <a href="http://twitter.com/cybercoder/statuses/2574205948" class="aktt_tweet_time">#</a></li>
<li>Yeah, time to go home&#8230;oh wait&#8230;I have to finish painting the house, maybe I should just stay here, hmmm&#8230; <a href="http://twitter.com/cybercoder/statuses/2574280612" class="aktt_tweet_time">#</a></li>
<li>The Mississippi Twitter List was just updated! <a href="http://bit.ly/38xYi" rel="nofollow">http://bit.ly/38xYi</a> <a href="http://twitter.com/cybercoder/statuses/2580952703" class="aktt_tweet_time">#</a></li>
<li>Great day to be working inside, just way too hot out there! <a href="http://twitter.com/cybercoder/statuses/2588697393" class="aktt_tweet_time">#</a></li>
<li>NEW Features added to the Mississippi Twitter List. 1) Search the list and 2) see click history! <a href="http://bit.ly/38xYi" rel="nofollow">http://bit.ly/38xYi</a> <a href="http://twitter.com/cybercoder/statuses/2589518876" class="aktt_tweet_time">#</a></li>
<li>Been a long fun day, lots of programming with the Twitter API and Bit.ly API, really cool tools to work with. <a href="http://twitter.com/cybercoder/statuses/2593436122" class="aktt_tweet_time">#</a></li>
<li>The Mississippi Twitter List was just updated! <a href="http://bit.ly/38xYi" rel="nofollow">http://bit.ly/38xYi</a> <a href="http://twitter.com/cybercoder/statuses/2595721979" class="aktt_tweet_time">#</a></li>
<li>I may have to develop a system to manage DM&#39;s, I have yet to find anything that handles that. Any suggestions welcomed. <a href="http://twitter.com/cybercoder/statuses/2600723949" class="aktt_tweet_time">#</a></li>
<li>The Mississippi Twitter List was just updated! <a href="http://bit.ly/38xYi" rel="nofollow">http://bit.ly/38xYi</a> <a href="http://twitter.com/cybercoder/statuses/2602096626" class="aktt_tweet_time">#</a></li>
<li>The Mississippi Twitter List was just updated! <a href="http://bit.ly/38xYi" rel="nofollow">http://bit.ly/38xYi</a> <a href="http://twitter.com/cybercoder/statuses/2604567848" class="aktt_tweet_time">#</a></li>
<li>Twitter Tip, if you want something ReTweeted (RT) use only 122 characters to leave room for the RT a space and name <a href="http://twitter.com/cybercoder/statuses/2615175425" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/Cancer_info" class="aktt_username">Cancer_info</a> DOWN with cancer, UP with cops: Relay for Life provides funding for cancer research- <a href="http://tinyurl.com/na7ww9" rel="nofollow">http://tinyurl.com/na7ww9</a> <a href="http://twitter.com/cybercoder/statuses/2615245576" class="aktt_tweet_time">#</a></li>
<li>Twitter Tip Revision, To leave room for RT, a Tweet should really be 121 characters, RT @<a href="http://twitter.com/name" class="aktt_username">name</a> (longest possible is 19) <a href="http://twitter.com/cybercoder/statuses/2615785815" class="aktt_tweet_time">#</a></li>
<li>ohhh, I hear thunder, if it rains I may have to go stand out in the rain to show my appreciation! <a href="http://twitter.com/cybercoder/statuses/2617422374" class="aktt_tweet_time">#</a></li>
<li>Oh look, water that fell from the sky. We had heard about this happening, just forgot what it was like.   <a href="http://twitpic.com/a8sw0" rel="nofollow">http://twitpic.com/a8sw0</a> <a href="http://twitter.com/cybercoder/statuses/2618037124" class="aktt_tweet_time">#</a></li>
<li>Days like this where I spend the whole day in one small area of a large database system makes my eyes cross, lol&#8230; <a href="http://twitter.com/cybercoder/statuses/2621102965" class="aktt_tweet_time">#</a></li>
<li>The Mississippi Twitter List was just updated! <a href="http://bit.ly/38xYi" rel="nofollow">http://bit.ly/38xYi</a> <a href="http://twitter.com/cybercoder/statuses/2621733944" class="aktt_tweet_time">#</a></li>
<li>RT @TechCrunch: Google Loses Engineering Director Who Once Caused Steve Ballmer To Melt Down <a href="http://tcrn.ch/5o1" rel="nofollow">http://tcrn.ch/5o1</a> by @<a href="http://twitter.com/parislemon" class="aktt_username">parislemon</a> <a href="http://twitter.com/cybercoder/statuses/2629723851" class="aktt_tweet_time">#</a></li>
<li>The Mississippi Twitter List was just updated! <a href="http://bit.ly/38xYi" rel="nofollow">http://bit.ly/38xYi</a> <a href="http://twitter.com/cybercoder/statuses/2629805193" class="aktt_tweet_time">#</a></li>
<li>Good News is same as Bad News, caught up on all my coding projects! Better find some more work, before wife reads this! <a href="http://twitter.com/cybercoder/statuses/2636999261" class="aktt_tweet_time">#</a></li>
<li>Gonna miss Mark Lucovsky at Google, he was great help and open to working  with people. <a href="http://bit.ly/42i7y" rel="nofollow">http://bit.ly/42i7y</a> <a href="http://twitter.com/cybercoder/statuses/2637310967" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/SalAndMookies" class="aktt_username">SalAndMookies</a> @ChristineReaves: Who&#39;s all going to Twitter Tuesday @SalAndMookies? <a href="http://twitter.com/cybercoder/statuses/2637535151" class="aktt_tweet_time">#</a></li>
<li>Thanks Lucovsky! Google AJAX APIs Blog: Add a Blog Bar to your site <a href="http://bit.ly/CPw53" rel="nofollow">http://bit.ly/CPw53</a>, Good Luck at #<a href="http://search.twitter.com/search?q=%23VMWare" class="aktt_hashtag">VMWare</a> <a href="http://twitter.com/cybercoder/statuses/2637596526" class="aktt_tweet_time">#</a></li>
<li>The Mississippi Twitter List was just updated! <a href="http://bit.ly/38xYi" rel="nofollow">http://bit.ly/38xYi</a> <a href="http://twitter.com/cybercoder/statuses/2640195331" class="aktt_tweet_time">#</a></li>
<li>RT @waynejohn: Twitter Traffic More Valuable than Facebook or Digg for Video &#8230; <a href="http://tinyurl.com/l4fbe8" rel="nofollow">http://tinyurl.com/l4fbe8</a> <a href="http://twitter.com/cybercoder/statuses/2641570189" class="aktt_tweet_time">#</a></li>
<li>The Mississippi Twitter List was just updated! <a href="http://bit.ly/38xYi" rel="nofollow">http://bit.ly/38xYi</a> <a href="http://twitter.com/cybercoder/statuses/2648542780" class="aktt_tweet_time">#</a></li>
<li>RT @foxwebco: When was the last time your web site was updated? Visitor #&#39;s for today? Last week? If you don&#39;t know you won&#39;t win! <a href="http://twitter.com/cybercoder/statuses/2650569226" class="aktt_tweet_time">#</a></li>
<li>BingTweets looks pretty good -&gt; Check out BingTweets about cybercoder <a href="http://bit.ly/6zkEY" rel="nofollow">http://bit.ly/6zkEY</a> #<a href="http://search.twitter.com/search?q=%23bing" class="aktt_hashtag">bing</a> <a href="http://twitter.com/cybercoder/statuses/2652146552" class="aktt_tweet_time">#</a></li>
<li>The new Twitter Rock and Roll List is now available @MusicRamble, <a href="http://bit.ly/41cfWW" rel="nofollow">http://bit.ly/41cfWW</a> <a href="http://twitter.com/cybercoder/statuses/2653558639" class="aktt_tweet_time">#</a></li>
<li>NEW! Twitter Rock and Roll List <a href="http://bit.ly/VcCt1" rel="nofollow">http://bit.ly/VcCt1</a> <a href="http://twitter.com/cybercoder/statuses/2655128345" class="aktt_tweet_time">#</a></li>
<li>The Mississippi Twitter List was just updated! <a href="http://bit.ly/38xYi" rel="nofollow">http://bit.ly/38xYi</a> <a href="http://twitter.com/cybercoder/statuses/2659035153" class="aktt_tweet_time">#</a></li>
<li>The @<a href="http://twitter.com/MusicRamble" class="aktt_username">MusicRamble</a> Rock and Roll Twitter list has taken off nicely today <a href="http://bit.ly/41cfWW" rel="nofollow">http://bit.ly/41cfWW</a> <a href="http://twitter.com/cybercoder/statuses/2662085990" class="aktt_tweet_time">#</a></li>
<li>The Mississippi Twitter List was just updated! <a href="http://bit.ly/38xYi" rel="nofollow">http://bit.ly/38xYi</a> <a href="http://twitter.com/cybercoder/statuses/2667186423" class="aktt_tweet_time">#</a></li>
<li>RT @foxwebco: Twitter Lesson #1: Have a plan. Engage the plan. Revise often. Measure success. Add value to followers. <a href="http://twitter.com/cybercoder/statuses/2669141369" class="aktt_tweet_time">#</a></li>
<li>RT @MusicRamble: The Rock and Roll Twitter List was just updated! <a href="http://bit.ly/41cfWW" rel="nofollow">http://bit.ly/41cfWW</a> <a href="http://twitter.com/cybercoder/statuses/2669618928" class="aktt_tweet_time">#</a></li>
<li>Rock and Roll Tweetchic Cool <a href="http://bit.ly/pGSBe" rel="nofollow">http://bit.ly/pGSBe</a> <a href="http://twitter.com/cybercoder/statuses/2673954133" class="aktt_tweet_time">#</a></li>
<li>Thanks everyone for the support of the Mississippi Twitter List, this search going up in stats <a href="http://bit.ly/CfHGU" rel="nofollow">http://bit.ly/CfHGU</a> <a href="http://twitter.com/cybercoder/statuses/2675278060" class="aktt_tweet_time">#</a></li>
<li>The Mississippi Twitter List was just updated! <a href="http://bit.ly/38xYi" rel="nofollow">http://bit.ly/38xYi</a> <a href="http://twitter.com/cybercoder/statuses/2677466000" class="aktt_tweet_time">#</a></li>
<li>Wish we could get the rain without the Thunder, my Border Collie does not handle the noise well. <a href="http://twitter.com/cybercoder/statuses/2679328345" class="aktt_tweet_time">#</a></li>
<li>The Mississippi Twitter List was just updated! <a href="http://bit.ly/38xYi" rel="nofollow">http://bit.ly/38xYi</a> <a href="http://twitter.com/cybercoder/statuses/2685800346" class="aktt_tweet_time">#</a></li>
<li>Had a good meeting this morning, looking forward to the rest of the day. Will try to get some #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> later <a href="http://twitter.com/cybercoder/statuses/2691924986" class="aktt_tweet_time">#</a></li>
<li>Montreux Jazz Festival 2009 <a href="http://bit.ly/68WmR" rel="nofollow">http://bit.ly/68WmR</a> <a href="http://twitter.com/cybercoder/statuses/2695462807" class="aktt_tweet_time">#</a></li>
<li>The day sure went by fast, had some great meetings today. Now I have to knock some code out, but that&#39;s the part I love! <a href="http://twitter.com/cybercoder/statuses/2696196978" class="aktt_tweet_time">#</a></li>
<li>The Mississippi Twitter List was just updated! <a href="http://bit.ly/38xYi" rel="nofollow">http://bit.ly/38xYi</a> <a href="http://twitter.com/cybercoder/statuses/2696577151" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @eatjxn, Because I love food, and after all these years I am still looking for new places to eat. <a href="http://twitter.com/cybercoder/statuses/2697992973" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @broadstreetcafe, The Sticky Bun and Coffee were excellent today, we really appreciate that free treat! <a href="http://twitter.com/cybercoder/statuses/2698021577" class="aktt_tweet_time">#</a></li>
<li>#FollowFriday, @waynejohn, proof that people do not have to be alike or even agree on things to work well together! <a href="http://twitter.com/cybercoder/statuses/2698061070" class="aktt_tweet_time">#</a></li>
<li>#FollowFridy, @linkmoneydotorg, enjoy the chats and debates, always learning from others is a good thing. <a href="http://twitter.com/cybercoder/statuses/2698091745" class="aktt_tweet_time">#</a></li>
<li>RIP &#8211; Walter Cronkite, November 4, 1916 &#8211; July 17, 2009 <a href="http://bit.ly/7gImT" rel="nofollow">http://bit.ly/7gImT</a> <a href="http://twitter.com/cybercoder/statuses/2698131251" class="aktt_tweet_time">#</a></li>
<li>#FollowFriday, @mikiesoft, well face it, blood is thicker than water, and I have always like the old guy, ROFL <a href="http://twitter.com/cybercoder/statuses/2698187916" class="aktt_tweet_time">#</a></li>
<li>Just a thought&#8230;.have you ever seen anyone eat a popsicle when they are mad? Nope, ya just can&#39;t do it, lol&#8230; <a href="http://twitter.com/cybercoder/statuses/2698738677" class="aktt_tweet_time">#</a></li>
<li>The Mississippi Twitter List was just updated! <a href="http://bit.ly/38xYi" rel="nofollow">http://bit.ly/38xYi</a> <a href="http://twitter.com/cybercoder/statuses/2704266099" class="aktt_tweet_time">#</a></li>
<li>Nothing like getting extremely sick on a beautiful weekend like this. Now behind on work, and ruined my family plans too. <a href="http://twitter.com/cybercoder/statuses/2707442791" class="aktt_tweet_time">#</a></li>
<li>The Mississippi Twitter List was just updated! <a href="http://bit.ly/38xYi" rel="nofollow">http://bit.ly/38xYi</a> <a href="http://twitter.com/cybercoder/statuses/2712532297" class="aktt_tweet_time">#</a></li>
<li>RT @foxwebco: @<a href="http://twitter.com/eric_law_wlbt" class="aktt_username">eric_law_wlbt</a> can you get this weather in a holding pattern for a couple of days please? THX!! <a href="http://twitter.com/cybercoder/statuses/2715905881" class="aktt_tweet_time">#</a></li>
<li>The Mississippi Twitter List was just updated! <a href="http://bit.ly/38xYi" rel="nofollow">http://bit.ly/38xYi</a> <a href="http://twitter.com/cybercoder/statuses/2720064283" class="aktt_tweet_time">#</a></li>
<li>If you are on the Mississippi Twitter List, please follow @<a href="http://twitter.com/Twitissippi" class="aktt_username">Twitissippi</a> for future updates. <a href="http://bit.ly/38xYi" rel="nofollow">http://bit.ly/38xYi</a> <a href="http://twitter.com/cybercoder/statuses/2722118981" class="aktt_tweet_time">#</a></li>
<li>Does anyone think sending an Auto DM is a good idea? <a href="http://twitter.com/cybercoder/statuses/2723105328" class="aktt_tweet_time">#</a></li>
<li>Congratulations to @<a href="http://twitter.com/stewartcink" class="aktt_username">stewartcink</a> on the Open Championship! <a href="http://twitter.com/cybercoder/statuses/2725720317" class="aktt_tweet_time">#</a></li>
<li>Gordon Waller 1945 &#8211; 2009 <a href="http://bit.ly/gYqQY" rel="nofollow">http://bit.ly/gYqQY</a> <a href="http://twitter.com/cybercoder/statuses/2727027269" class="aktt_tweet_time">#</a></li>
<li>RT @thedebthawk: Mark has commented in Dave Ramsey&#39;s Holistic Approach to Debt Reduction: <a href="http://bit.ly/12DEeM" rel="nofollow">http://bit.ly/12DEeM</a> <a href="http://twitter.com/cybercoder/statuses/2738733656" class="aktt_tweet_time">#</a></li>
<li>Good keyword research must include reviewing your current keyword statistical data and what is or is not working now. <a href="http://twitter.com/cybercoder/statuses/2739751272" class="aktt_tweet_time">#</a></li>
<li>Reminder, the Mississippi Twitter List has been moved to it&#39;s own Twitter account @<a href="http://twitter.com/twitissippi" class="aktt_username">twitissippi</a> <a href="http://twitter.com/cybercoder/statuses/2741068784" class="aktt_tweet_time">#</a></li>
<li>Obvious that people are using keyword search to follow people, I change my bio and get different type followers, lol <a href="http://twitter.com/cybercoder/statuses/2742647211" class="aktt_tweet_time">#</a></li>
<li>RT @twitissippi: @<a href="http://twitter.com/TimHarbor" class="aktt_username">TimHarbor</a> was just added to the Mississippi Twitter List @ <a href="http://bit.ly/38xYi" rel="nofollow">http://bit.ly/38xYi</a> <a href="http://twitter.com/cybercoder/statuses/2743658403" class="aktt_tweet_time">#</a></li>
<li>I added those who requested to be on the Mississippi Twitter List, please note support for the list is now @<a href="http://twitter.com/twitissippi" class="aktt_username">twitissippi</a> <a href="http://twitter.com/cybercoder/statuses/2743827122" class="aktt_tweet_time">#</a></li>
<li>Looks like a couple million people signed up for the same junk,&quot;&#8230;WOW the best site online to gain more&#8230;&quot; ROFL <a href="http://twitter.com/cybercoder/statuses/2745764238" class="aktt_tweet_time">#</a></li>
<li>RT @problogger: Reading: A Non-Intrusive Way To Integrate Twitter With Your Blog &#8211; <a href="http://is.gd/1FInK" rel="nofollow">http://is.gd/1FInK</a> <a href="http://twitter.com/cybercoder/statuses/2756775427" class="aktt_tweet_time">#</a></li>
<li>RT @workshifting: Lifestyle design tips that rock stars can teach you, brought to you by @<a href="http://twitter.com/g_ro" class="aktt_username">g_ro</a> <a href="http://bit.ly/xnUFn" rel="nofollow">http://bit.ly/xnUFn</a> <a href="http://twitter.com/cybercoder/statuses/2758303668" class="aktt_tweet_time">#</a></li>
<li>RT @NascarList: Just wanted to have some fun, so I am putting together a list of Nascar related Twitter accounts <a href="http://bit.ly/wWK5O" rel="nofollow">http://bit.ly/wWK5O</a> <a href="http://twitter.com/cybercoder/statuses/2762395537" class="aktt_tweet_time">#</a></li>
<li>With economy the way it is, companies moving more online, Internet skills and  experience should be high demand. <a href="http://twitter.com/cybercoder/statuses/2763992987" class="aktt_tweet_time">#</a></li>
<li>Santana Feliz Cumpleaños! <a href="http://bit.ly/PPb5r" rel="nofollow">http://bit.ly/PPb5r</a> <a href="http://twitter.com/cybercoder/statuses/2768894466" class="aktt_tweet_time">#</a></li>
<li>WordPress 8.2 was a little slow, but everything seems to be working fine. One down, a lot more to go&#8230; <a href="http://twitter.com/cybercoder/statuses/2769027295" class="aktt_tweet_time">#</a></li>
<li>FireFox and Chrome have gained a lot of ground in the Browser War  <a href="http://bit.ly/oryF3" rel="nofollow">http://bit.ly/oryF3</a> <a href="http://twitter.com/cybercoder/statuses/2769115233" class="aktt_tweet_time">#</a></li>
<li>WordPress installation has certainly improved with time, no snags with updating multiple blogs to 2.8.2 on auto update. <a href="http://twitter.com/cybercoder/statuses/2771712657" class="aktt_tweet_time">#</a></li>
<li>RT @wiljax: Are you creative? Do you want to be? Here are 11 traits of creative people  <a href="http://su.pr/2QH9Zz" rel="nofollow">http://su.pr/2QH9Zz</a> #<a href="http://search.twitter.com/search?q=%23fb" class="aktt_hashtag">fb</a> (via @jenaew) <a href="http://twitter.com/cybercoder/statuses/2779887899" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/MarshallRamsey" class="aktt_username">MarshallRamsey</a> Great forecast Banjo, Mollie the Collie agrees, LOL <a href="http://bit.ly/19fm2h" rel="nofollow">http://bit.ly/19fm2h</a> <a href="http://twitter.com/cybercoder/statuses/2780026490" class="aktt_tweet_time">#</a></li>
<li>This is the year I plan to go from Windows to MAC, so far looking like it will not be squeezed in, did go to iPhone, lol <a href="http://twitter.com/cybercoder/statuses/2783075522" class="aktt_tweet_time">#</a></li>
<li>Every time I take Anti Biotics I have flashbacks to Chemotherapy, and frankly, it is a bad feeling&#8230;. <a href="http://twitter.com/cybercoder/statuses/2784004069" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/MusicRamble" class="aktt_username">MusicRamble</a> @<a href="http://twitter.com/360FromTheEdge" class="aktt_username">360FromTheEdge</a> are pictures being Tweeted by U2 Guitarist the Edge, no text, just pics. <a href="http://twitter.com/cybercoder/statuses/2785501247" class="aktt_tweet_time">#</a></li>
<li>I love troubleshooting, I think it is a great way to exercise the brain and learn to keep an open mind on things. <a href="http://twitter.com/cybercoder/statuses/2802696471" class="aktt_tweet_time">#</a></li>
<li>I may have have to go to Tupelo now, good looking guitars and stuff @<a href="http://twitter.com/NeatOldGuitars" class="aktt_username">NeatOldGuitars</a> <a href="http://twitter.com/cybercoder/statuses/2803705922" class="aktt_tweet_time">#</a></li>
<li>Jonathan Tyler &amp; The Northern Lights <a href="http://bit.ly/F4hi3" rel="nofollow">http://bit.ly/F4hi3</a> <a href="http://twitter.com/cybercoder/statuses/2804724984" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/resultsrev" class="aktt_username">resultsrev</a> Great resource for Marketing and Social Media expertise!  #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/2818088727" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/execbp" class="aktt_username">execbp</a> Just came across Greg this week, I like the idea and focus for his local area. #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/2818179975" class="aktt_tweet_time">#</a></li>
<li>Just built a #<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> form so my #<a href="http://search.twitter.com/search?q=%23FF" class="aktt_hashtag">FF</a> post are always formatted the same. <a href="http://twitter.com/cybercoder/statuses/2818368031" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/ChristineReaves" class="aktt_username">ChristineReaves</a> My favorite Jackson Area Realtor! Also like her Twitter flow and info. #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/2818499059" class="aktt_tweet_time">#</a></li>
<li>RT @twitissippi: Added new Twitter Search widget for Mississippi to Twitissippi.com <a href="http://bit.ly/38xYi" rel="nofollow">http://bit.ly/38xYi</a> <a href="http://twitter.com/cybercoder/statuses/2819105629" class="aktt_tweet_time">#</a></li>
<li>Paul McCartney to play Dallas Cowboys Stadium <a href="http://bit.ly/Ed6oq" rel="nofollow">http://bit.ly/Ed6oq</a> <a href="http://twitter.com/cybercoder/statuses/2826521457" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/twitissippi" class="aktt_username">twitissippi</a> NEW ! Total Tweets, Avg per day, Tweeting since, added to the Mississippi Twitter List, <a href="http://bit.ly/38xYi" rel="nofollow">http://bit.ly/38xYi</a> <a href="http://twitter.com/cybercoder/statuses/2841965917" class="aktt_tweet_time">#</a></li>
<li>Heading to @<a href="http://twitter.com/EatatKittrells" class="aktt_username">EatatKittrells</a> for dinner, good thing my wife likes to drive while I post!<br />
<a href="http://bit.ly/8LoGe" rel="nofollow">http://bit.ly/8LoGe</a> <a href="http://twitter.com/EatatKittrells/statuses/2698731599" class="aktt_tweet_reply">in reply to EatatKittrells</a> <a href="http://twitter.com/cybercoder/statuses/2843678654" class="aktt_tweet_time">#</a></li>
<li>Thanks @EatatKittrells, fantastic meal, and really enjoyed meeting John and Danielle after dinner, more info to come! <a href="http://twitter.com/cybercoder/statuses/2847435592" class="aktt_tweet_time">#</a></li>
<li>Working on more features for the @<a href="http://twitter.com/Twitissippi" class="aktt_username">Twitissippi</a> Mississippi Twitter List <a href="http://bit.ly/38xYi" rel="nofollow">http://bit.ly/38xYi</a> <a href="http://twitter.com/cybercoder/statuses/2857023742" class="aktt_tweet_time">#</a></li>
<li>lots of coding this weekend, great dinner @<a href="http://twitter.com/EatatKittrells" class="aktt_username">EatatKittrells</a> last night, not much sleep = break time ! <a href="http://twitter.com/cybercoder/statuses/2859814540" class="aktt_tweet_time">#</a></li>
<li>Why in the world is Guy Fieri -Diners, Drive-ins and Dives not on Twitter? <a href="http://bit.ly/CRqgK" rel="nofollow">http://bit.ly/CRqgK</a> <a href="http://twitter.com/cybercoder/statuses/2859970562" class="aktt_tweet_time">#</a></li>
<li>I knew better, @<a href="http://twitter.com/ChefGuyFieri" class="aktt_username">ChefGuyFieri</a> is here, now we need to talk him in to going to @<a href="http://twitter.com/eatatkittrells" class="aktt_username">eatatkittrells</a> in Lexington, Mississippi <a href="http://twitter.com/cybercoder/statuses/2860056729" class="aktt_tweet_time">#</a></li>
<li>RT @twitissippi: 4 new ways to the sort the Mississippi Twitter List have been added! <a href="http://bit.ly/38xYi" rel="nofollow">http://bit.ly/38xYi</a> <a href="http://twitter.com/cybercoder/statuses/2862560698" class="aktt_tweet_time">#</a></li>
<li>Band On The Run in NYC <a href="http://bit.ly/fYqKF" rel="nofollow">http://bit.ly/fYqKF</a> <a href="http://twitter.com/cybercoder/statuses/2867536308" class="aktt_tweet_time">#</a></li>
<li>Finally got my @<a href="http://twitter.com/TweetDeck" class="aktt_username">TweetDeck</a> sorted out, gonna give it one more try as my main Twitter client, at least on iPhone. <a href="http://twitter.com/cybercoder/statuses/2871037693" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23MusicMonday" class="aktt_hashtag">MusicMonday</a> Highly recommend Jude Cole, personal favorite is View From Third Street <a href="http://bit.ly/11gvJI" rel="nofollow">http://bit.ly/11gvJI</a> <a href="http://twitter.com/cybercoder/statuses/2871074267" class="aktt_tweet_time">#</a></li>
<li>Cool things with Twitter &#8211; @<a href="http://twitter.com/towerbridge" class="aktt_username">towerbridge</a> Tweets every time the London Tower Bridges opens or closes <a href="http://twitter.com/cybercoder/statuses/2873209359" class="aktt_tweet_time">#</a></li>
<li>Check Google, each ship that passes the Tower Bridge gets indexed,  <a href="http://bit.ly/id0xX" rel="nofollow">http://bit.ly/id0xX</a>, just think about it! <a href="http://twitter.com/cybercoder/statuses/2873263938" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/mikiesoft" class="aktt_username">mikiesoft</a> Our Texas on Twitter List is growing by leaps and bounds! Thanks to @<a href="http://twitter.com/cybercoder" class="aktt_username">cybercoder</a> <a href="http://bit.ly/JCnEa" rel="nofollow">http://bit.ly/JCnEa</a> <a href="http://twitter.com/cybercoder/statuses/2873455159" class="aktt_tweet_time">#</a></li>
<li>I need an auto Tweet when the coffee is ready! <a href="http://twitter.com/cybercoder/statuses/2874578453" class="aktt_tweet_time">#</a></li>
<li>RT @mw55: that wasnt a thought.  false alarm.  how will i recognize one ? <a href="http://twitter.com/cybercoder/statuses/2876843592" class="aktt_tweet_time">#</a></li>
<li>RT @MarkClayson: Google Sells Stake in AOL, Loses $717 Million <a href="http://bit.ly/vuM5L" rel="nofollow">http://bit.ly/vuM5L</a> <a href="http://twitter.com/cybercoder/statuses/2879194148" class="aktt_tweet_time">#</a></li>
<li>Twitters&#39; own Twitter 101, with good case studies is a must read for any business using Twitter <a href="http://bit.ly/8kePK" rel="nofollow">http://bit.ly/8kePK</a> <a href="http://twitter.com/cybercoder/statuses/2881880194" class="aktt_tweet_time">#</a></li>
<li>Tejas Brothers <a href="http://bit.ly/E5loC" rel="nofollow">http://bit.ly/E5loC</a> <a href="http://twitter.com/cybercoder/statuses/2885243851" class="aktt_tweet_time">#</a></li>
<li>If you are not seeing an increase in traffic to a web site from Twitter, your missing something! <a href="http://twitter.com/cybercoder/statuses/2890875956" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/mashable" class="aktt_username">mashable</a> 5 Easy Social Media Wins for Your Small Business <a href="http://bit.ly/OMuZZ" rel="nofollow">http://bit.ly/OMuZZ</a> <a href="http://twitter.com/cybercoder/statuses/2893125513" class="aktt_tweet_time">#</a></li>
<li>We never want errors, but there is nothing like a funny 404 to make people remember you. <a href="http://bit.ly/2hZsj" rel="nofollow">http://bit.ly/2hZsj</a> <a href="http://twitter.com/cybercoder/statuses/2893801583" class="aktt_tweet_time">#</a></li>
<li>Ok, enough coding for the day I think, VH1 show on 80&#39;s one hit wonders is cracking me up&#8230;all that hair&#8230; <a href="http://twitter.com/cybercoder/statuses/2902024963" class="aktt_tweet_time">#</a></li>
<li>Ronnie Scott&#8217;s Golden Anniversary <a href="http://bit.ly/4bGH4A" rel="nofollow">http://bit.ly/4bGH4A</a> <a href="http://twitter.com/cybercoder/statuses/2906890952" class="aktt_tweet_time">#</a></li>
<li>Only got 3 hours of sleep before the thunderstorms rolled in and Mollie the Collie started her &quot;freak out&quot; dance, lol&#8230; <a href="http://twitter.com/cybercoder/statuses/2907137515" class="aktt_tweet_time">#</a></li>
<li>RT @TechCrunch: Microsoft-Yahoo Search Deal: The Official Press Release <a href="http://tcrn.ch/1V4K" rel="nofollow">http://tcrn.ch/1V4K</a> by @<a href="http://twitter.com/robinwauters" class="aktt_username">robinwauters</a> <a href="http://twitter.com/cybercoder/statuses/2911295021" class="aktt_tweet_time">#</a></li>
<li>RT @LetItBeatles: &quot;He (John) was the visionary and that&#39;s why The Beatles happened.&quot; &#8211; Paul Mccartney <a href="http://twitter.com/cybercoder/statuses/2913084292" class="aktt_tweet_time">#</a></li>
<li>RT @jacksonmetro: Customer service means&#8230;looking at customer, greeting them and not talking on your cell phone. Is this a lost art? <a href="http://twitter.com/cybercoder/statuses/2913892978" class="aktt_tweet_time">#</a></li>
<li>Hilarious, Kevin Spacey on David Letterman Tweeting LIVE <a href="http://bit.ly/19y8yV" rel="nofollow">http://bit.ly/19y8yV</a> <a href="http://twitter.com/cybercoder/statuses/2914459664" class="aktt_tweet_time">#</a></li>
<li>RT @twitissippi: @<a href="http://twitter.com/CupsCoffeeShop" class="aktt_username">CupsCoffeeShop</a> was just added to the Mississippi Twitter List @ <a href="http://bit.ly/38xYi" rel="nofollow">http://bit.ly/38xYi</a> <a href="http://twitter.com/cybercoder/statuses/2915488517" class="aktt_tweet_time">#</a></li>
<li>RT @SalAndMookies: Mountain Dew Taste Labs to Dock at Sal &amp; Mookie&#39;s this Weds night&#8230;  <a href="http://bit.ly/40mgtX" rel="nofollow">http://bit.ly/40mgtX</a> 5pm-8pm <a href="http://twitter.com/cybercoder/statuses/2916980294" class="aktt_tweet_time">#</a></li>
<li>Under the gun to finish this project, and looks like it might be another code fest weekend on the net, oh boy! <a href="http://twitter.com/cybercoder/statuses/2932339502" class="aktt_tweet_time">#</a></li>
<li>Which is harder, learning from outside the box to be more inside, or inside the box to be more outside? <a href="http://twitter.com/cybercoder/statuses/2933980567" class="aktt_tweet_time">#</a></li>
<li>Test Bing vs. Google on this one page, some interesting results.  <a href="http://bit.ly/Q20OR" rel="nofollow">http://bit.ly/Q20OR</a> <a href="http://twitter.com/cybercoder/statuses/2934131006" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/SalAndMookies" class="aktt_username">SalAndMookies</a> Great time Wed with the Dew Challenge. Food was great, even the rain could not stop the fun. #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/2950428666" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/CupsCoffeeShop" class="aktt_username">CupsCoffeeShop</a> Great start on Twitter this week, keep the Tweets and the coffee coming! #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/2950462666" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/mikiesoft" class="aktt_username">mikiesoft</a> working hard on the Texas List <a href="http://bit.ly/JCnEa" rel="nofollow">http://bit.ly/JCnEa</a> and @MusicRamble, thanks! #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/2950502921" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/EatatKittrells" class="aktt_username">EatatKittrells</a> Dinner last weekend was awesome! Everyone needs to try @eatatkittrells, worth the trip. #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/2950538652" class="aktt_tweet_time">#</a></li>
<li>RT @foxwebco: Note to retailers on Twitter: If you are here, you must answer tweets like your phone! 2 days is too long. <a href="http://twitter.com/cybercoder/statuses/2954167416" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/jacksonmetro" class="aktt_username">jacksonmetro</a> Customer service means.looking at customer, greeting them and not talking on your cell phone&#8230; <a href="http://twitter.com/cybercoder/statuses/3054139370" class="aktt_tweet_time">#</a></li>
<li>The Script <a href="http://bit.ly/pWWs5" rel="nofollow">http://bit.ly/pWWs5</a> <a href="http://twitter.com/cybercoder/statuses/3057333101" class="aktt_tweet_time">#</a></li>
<li>The new @<a href="http://twitter.com/Twitter" class="aktt_username">Twitter</a> home page makes it a lot easier to show someone what Twitter is and how it works. <a href="http://twitter.com/cybercoder/statuses/3058604077" class="aktt_tweet_time">#</a></li>
<li>Fans On The Run <a href="http://bit.ly/EvqZA" rel="nofollow">http://bit.ly/EvqZA</a> <a href="http://twitter.com/cybercoder/statuses/3066864380" class="aktt_tweet_time">#</a></li>
<li>Win a Limited Edition Fender Stratocaster during Woodstock 40th Anniversary <a href="http://bit.ly/JGPGD" rel="nofollow">http://bit.ly/JGPGD</a> <a href="http://twitter.com/cybercoder/statuses/3084664577" class="aktt_tweet_time">#</a></li>
<li>RT @nwjerseyliz: @<a href="http://twitter.com/cybercoder" class="aktt_username">cybercoder</a> You should have a New Jersey list! (We are heading that way) <a href="http://twitter.com/cybercoder/statuses/3089119700" class="aktt_tweet_time">#</a></li>
<li>Got a lot done on some programs I am hoping to release soon, all in all, pretty good weekend ! <a href="http://twitter.com/cybercoder/statuses/3096442066" class="aktt_tweet_time">#</a></li>
<li>RT @TwitStates: The Louisiana Twitter List was just updated! @ <a href="http://bit.ly/H2nGt" rel="nofollow">http://bit.ly/H2nGt</a> <a href="http://twitter.com/cybercoder/statuses/3103690030" class="aktt_tweet_time">#</a></li>
<li>RT @TwitStates: The Arkansas Twitter List was just updated! @ <a href="http://bit.ly/6z7xo" rel="nofollow">http://bit.ly/6z7xo</a> <a href="http://twitter.com/cybercoder/statuses/3104318622" class="aktt_tweet_time">#</a></li>
<li>RT @thenerdsdotnet: Weekly Deal &#8211; USB Cup Warmer with Stainless Steel Cup &#8211; No more cold coffee <a href="http://bit.ly/pUXVr" rel="nofollow">http://bit.ly/pUXVr</a> <a href="http://twitter.com/cybercoder/statuses/3104758148" class="aktt_tweet_time">#</a></li>
<li>I give up on@<a href="http://twitter.com/TweetDeck" class="aktt_username">TweetDeck</a> for the iPhone, the Group function just does not function right <a href="http://twitter.com/cybercoder/statuses/3105844315" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/KIntheHouse" class="aktt_username">KIntheHouse</a> @TamuraJones: #<a href="http://search.twitter.com/search?q=%23GWave" class="aktt_hashtag">GWave</a> the Google Wave Team is on twitter @<a href="http://twitter.com/googlewaveteam" class="aktt_username">googlewaveteam</a> <a href="http://twitter.com/cybercoder/statuses/3109382394" class="aktt_tweet_time">#</a></li>
<li>Modified Mississippi List system to load faster, added menu bar and YouTube videos to the sidebar. <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/3111546369" class="aktt_tweet_time">#</a></li>
<li>RT @TwitStates: A big thanks to our Mississippi Sponsors @bravobuzz, @broadstreetcafe, and @<a href="http://twitter.com/salandmookies" class="aktt_username">salandmookies</a> <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/3125290510" class="aktt_tweet_time">#</a></li>
<li>Flam.TV <a href="http://bit.ly/qUFRH" rel="nofollow">http://bit.ly/qUFRH</a> <a href="http://twitter.com/cybercoder/statuses/3142716447" class="aktt_tweet_time">#</a></li>
<li>RT @TwitStates: Congratulations! @<a href="http://twitter.com/ATISocialMktg" class="aktt_username">ATISocialMktg</a> No. 50,000 on TwitterStates!  DM @<a href="http://twitter.com/CyberCoder" class="aktt_username">CyberCoder</a> for Special Thanks on <a href="http://bit.ly/OYda6" rel="nofollow">http://bit.ly/OYda6</a> <a href="http://twitter.com/cybercoder/statuses/3150378855" class="aktt_tweet_time">#</a></li>
<li>RT @TwitStates: The Mississippi Twitter List was just updated! <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> #<a href="http://search.twitter.com/search?q=%23Mississippi" class="aktt_hashtag">Mississippi</a> <a href="http://twitter.com/cybercoder/statuses/3165884249" class="aktt_tweet_time">#</a></li>
<li>RT @TwitStates: @<a href="http://twitter.com/SalAndMookies" class="aktt_username">SalAndMookies</a> was just updated on the Mississippi Twitter List <a href="http://bit.ly/f2qxm" rel="nofollow">http://bit.ly/f2qxm</a><br />
 #<a href="http://search.twitter.com/search?q=%23Mississippi" class="aktt_hashtag">Mississippi</a> <a href="http://twitter.com/cybercoder/statuses/3167708823" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> Bringing Twitter Local &#8211; Go Local Be Social #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/3177415030" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/waynejohn" class="aktt_username">waynejohn</a> The West Coast Rep. for TwitterStates.com &#8211; @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/3177477085" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/mikiesoft" class="aktt_username">mikiesoft</a> The Central States Manager for TwitterStates.com &#8211; @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/3177495107" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/ClintonBennett" class="aktt_username">ClintonBennett</a> The Eastern Region Manager for TwitterStates.com &#8211; @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/3177506984" class="aktt_tweet_time">#</a></li>
<li>RT @mikiesoft: read my new blog post <a href="http://bit.ly/3GmLV" rel="nofollow">http://bit.ly/3GmLV</a> with the how and why we created <a href="http://www.twitterstates.com" rel="nofollow">http://www.twitterstates.com</a> <a href="http://twitter.com/cybercoder/statuses/3180626947" class="aktt_tweet_time">#</a></li>
<li>Show Me The Music Songwriting Contest <a href="http://bit.ly/2RR5jk" rel="nofollow">http://bit.ly/2RR5jk</a> <a href="http://twitter.com/cybercoder/statuses/3182835719" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> @<a href="http://twitter.com/bfholmes" class="aktt_username">bfholmes</a> There ya go, we got Washington DC started up on TwitterStates.com <a href="http://bit.ly/WwEhG" rel="nofollow">http://bit.ly/WwEhG</a> <a href="http://twitter.com/cybercoder/statuses/3189593482" class="aktt_tweet_time">#</a></li>
<li>TwitterStates.com now includes Washington DC, Location added to each listing, Blog coming soon! <a href="http://bit.ly/69v4R" rel="nofollow">http://bit.ly/69v4R</a> <a href="http://twitter.com/cybercoder/statuses/3190612849" class="aktt_tweet_time">#</a></li>
<li>very tired and need to crash, if I could just quit thinking of all the things I need to get done&#8230;. <a href="http://twitter.com/cybercoder/statuses/3190630167" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/mashable" class="aktt_username">mashable</a> Mashable was just on CNN with reference to our Hudson crash story: <a href="http://bit.ly/sNxM0" rel="nofollow">http://bit.ly/sNxM0</a> <a href="http://twitter.com/cybercoder/statuses/3196154463" class="aktt_tweet_time">#</a></li>
<li>RT @TwitStates: Welcoming @<a href="http://twitter.com/ChristineReaves" class="aktt_username">ChristineReaves</a> as a Sponsor of  Mississippi page of TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/3200921077" class="aktt_tweet_time">#</a></li>
<li>RT @ChristineReaves: @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> The sponsor ad looks great and so does the site. Thanks for all you do. <a href="http://twitter.com/cybercoder/statuses/3207790981" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> The Mississippi Twitter Directory was just updated at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/3220654051" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> The District Of Columbia Twitter Directory was just updated at TwitterStates.com <a href="http://bit.ly/B65YJ" rel="nofollow">http://bit.ly/B65YJ</a> <a href="http://twitter.com/cybercoder/statuses/3227199663" class="aktt_tweet_time">#</a></li>
<li>Online tools sure make working with people across the country easier. @<a href="http://twitter.com/Skype" class="aktt_username">Skype</a> has been audio tool of choice so far. <a href="http://twitter.com/cybercoder/statuses/3229734803" class="aktt_tweet_time">#</a></li>
<li>uh oh, after 22 years, my wife started to call me by another name, lol, she almost called me CyberCoder, ROFL <a href="http://twitter.com/cybercoder/statuses/3230864957" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> The Mississippi Twitter Directory was just updated at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/3234527661" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> The District Of Columbia Twitter Directory was just updated at TwitterStates.com <a href="http://bit.ly/B65YJ" rel="nofollow">http://bit.ly/B65YJ</a> <a href="http://twitter.com/cybercoder/statuses/3250401642" class="aktt_tweet_time">#</a></li>
<li>Big thanks to @clintonbennett, @mikiesoft, @<a href="http://twitter.com/waynejohn" class="aktt_username">waynejohn</a> for the long hours developing TwitterStates.com <a href="http://bit.ly/69v4R" rel="nofollow">http://bit.ly/69v4R</a> <a href="http://twitter.com/cybercoder/statuses/3258085160" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> The Mississippi Twitter Directory was just updated at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/3259311650" class="aktt_tweet_time">#</a></li>
<li>RT @jacksonmetro: Kenny Wayne Shepherd at Ameristar Sept. 26th. Sounds like I&#39;ll have to go. <a href="http://twitter.com/cybercoder/statuses/3265892165" class="aktt_tweet_time">#</a></li>
<li>RT @ChristineReaves: Aug 19, 10% of purchase going to CARA. Sal and Mookies, Broad Street or Bravo. Coupon Needed. <a href="http://twitter.com/cybercoder/statuses/3270523772" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> The District Of Columbia Twitter Directory was just updated at TwitterStates.com <a href="http://bit.ly/B65YJ" rel="nofollow">http://bit.ly/B65YJ</a> <a href="http://twitter.com/cybercoder/statuses/3271963554" class="aktt_tweet_time">#</a></li>
<li>RT @waynejohn: I scream, you scream, we all scream for iGoogle social! <a href="http://bit.ly/4oYVHG" rel="nofollow">http://bit.ly/4oYVHG</a> <a href="http://twitter.com/cybercoder/statuses/3272172721" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> The Mississippi Twitter Directory was just updated at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/3280319109" class="aktt_tweet_time">#</a></li>
<li>Les Paul 1915-2009 <a href="http://bit.ly/ytz67" rel="nofollow">http://bit.ly/ytz67</a> <a href="http://twitter.com/cybercoder/statuses/3293365889" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/mikiesoft" class="aktt_username">mikiesoft</a> Les Paul 1915-2009 <a href="http://bit.ly/ytz67" rel="nofollow">http://bit.ly/ytz67</a> <a href="http://twitter.com/cybercoder/statuses/3294325041" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> The District Of Columbia Twitter Directory was just updated at TwitterStates.com <a href="http://bit.ly/B65YJ" rel="nofollow">http://bit.ly/B65YJ</a> <a href="http://twitter.com/cybercoder/statuses/3296022962" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> @<a href="http://twitter.com/emilysteen" class="aktt_username">emilysteen</a> was just added to the Mississippi Twitter List <a href="http://bit.ly/fqqCa" rel="nofollow">http://bit.ly/fqqCa</a><br />
 #<a href="http://search.twitter.com/search?q=%23Mississippi" class="aktt_hashtag">Mississippi</a> <a href="http://twitter.com/cybercoder/statuses/3296833136" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> @<a href="http://twitter.com/lareecarucker" class="aktt_username">lareecarucker</a> was just added to the Mississippi Twitter List <a href="http://bit.ly/1kjWcH" rel="nofollow">http://bit.ly/1kjWcH</a><br />
 #<a href="http://search.twitter.com/search?q=%23Mississippi" class="aktt_hashtag">Mississippi</a> <a href="http://twitter.com/cybercoder/statuses/3296913417" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> The Mississippi Twitter Directory was just updated at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/3304821377" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/mikiesoft" class="aktt_username">mikiesoft</a> Thanks for all your hard work on @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> and @MusicRamble, I need to bottle the energy! #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/3307663829" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/ClintonBennett" class="aktt_username">ClintonBennett</a> If you want someone to dig into a project, Clint is your guy, Thanks for all the help Clint #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/3307760720" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/waynejohn" class="aktt_username">waynejohn</a> If you need a programmer (besides me, lol), call Wayne, this guy has the skills #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/3307790244" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/ChrisArts" class="aktt_username">ChrisArts</a> Interesting and informative Twitter stream. #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/3310872075" class="aktt_tweet_time">#</a></li>
<li>The Oregon Twitter Directory was just updated! <a href="http://bit.ly/AGxOl" rel="nofollow">http://bit.ly/AGxOl</a> #<a href="http://search.twitter.com/search?q=%23Oregon" class="aktt_hashtag">Oregon</a> <a href="http://twitter.com/cybercoder/statuses/3314196119" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/JoeTHarris" class="aktt_username">JoeTHarris</a> If you need anything to do with Mortgages in Mississippi, Call on Joe <a href="http://twitter.com/cybercoder/statuses/3316453584" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> If you want a GREAT meal, and a little break at the same time, go to @<a href="http://twitter.com/EatatKittrells" class="aktt_username">EatatKittrells</a> in Lexington. <a href="http://bit.ly/43Fh0c" rel="nofollow">http://bit.ly/43Fh0c</a> <a href="http://twitter.com/cybercoder/statuses/3316530449" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> The District Of Columbia Twitter Directory was updated at TwitterStates.com <a href="http://bit.ly/B65YJ" rel="nofollow">http://bit.ly/B65YJ</a> <a href="http://twitter.com/cybercoder/statuses/3326654390" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> @<a href="http://twitter.com/madmaxbooking" class="aktt_username">madmaxbooking</a> was just added to the Mississippi Twitter List <a href="http://bit.ly/Z7Syq" rel="nofollow">http://bit.ly/Z7Syq</a><br />
 #<a href="http://search.twitter.com/search?q=%23Mississippi" class="aktt_hashtag">Mississippi</a> <a href="http://twitter.com/cybercoder/statuses/3331329711" class="aktt_tweet_time">#</a></li>
<li>Woodstock 40 Years of Peace &amp; Music <a href="http://bit.ly/13dMbZ" rel="nofollow">http://bit.ly/13dMbZ</a> <a href="http://twitter.com/cybercoder/statuses/3333461636" class="aktt_tweet_time">#</a></li>
<li>Just added myself to the <a href="http://wefollow.com" rel="nofollow">http://wefollow.com</a> twitter directory under: #php, #wordpress, #<a href="http://search.twitter.com/search?q=%23mississippi" class="aktt_hashtag">mississippi</a> <a href="http://twitter.com/cybercoder/statuses/3333905080" class="aktt_tweet_time">#</a></li>
<li>RT @waynejohn: time to wind down a little&#8230;been going all day&#8230;hell, all week/month/year! (Yep agree) <a href="http://twitter.com/cybercoder/statuses/3339307180" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> The Mississippi Twitter Directory was updated at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/3342676448" class="aktt_tweet_time">#</a></li>
<li>Updated my information on the TwitterStates.com Mississippi Directory <a href="http://bit.ly/oiqPl" rel="nofollow">http://bit.ly/oiqPl</a> <a href="http://twitter.com/cybercoder/statuses/3344509195" class="aktt_tweet_time">#</a></li>
<li>RT @TwitStates: Now you can Add or Update your own information on TwitterStates.com <a href="http://bit.ly/69v4R" rel="nofollow">http://bit.ly/69v4R</a> <a href="http://twitter.com/cybercoder/statuses/3345808855" class="aktt_tweet_time">#</a></li>
<li>RT @linkmoneydotorg: Twitter does not seem to work with Windows &#8211; Firefox 3.5.2. <a href="http://twitter.com/cybercoder/statuses/3349027699" class="aktt_tweet_time">#</a></li>
<li>RT @TechCrunch: Firefox 3.5 Is Breaking Twitter, Or Vice Versa. <a href="http://tcrn.ch/6ISV" rel="nofollow">http://tcrn.ch/6ISV</a> by @<a href="http://twitter.com/arrington" class="aktt_username">arrington</a> <a href="http://twitter.com/cybercoder/statuses/3349039910" class="aktt_tweet_time">#</a></li>
<li>The Legacy of the Woodstock Music Festival <a href="http://bit.ly/ZdA7G" rel="nofollow">http://bit.ly/ZdA7G</a> <a href="http://twitter.com/cybercoder/statuses/3351996005" class="aktt_tweet_time">#</a></li>
<li>Bethel Woods Center celebrates Woodstock <a href="http://bit.ly/2UQeOo" rel="nofollow">http://bit.ly/2UQeOo</a> <a href="http://twitter.com/cybercoder/statuses/3357421223" class="aktt_tweet_time">#</a></li>
<li>Taking Woodstock <a href="http://bit.ly/ia40i" rel="nofollow">http://bit.ly/ia40i</a> <a href="http://twitter.com/cybercoder/statuses/3359702751" class="aktt_tweet_time">#</a></li>
<li>Add and Update your own information on the Mississippi Twitter Directory <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/3360656013" class="aktt_tweet_time">#</a></li>
<li>Updated my information on the TwitterStates.com Mississippi Twitter Directory <a href="http://bit.ly/oiqPl" rel="nofollow">http://bit.ly/oiqPl</a> <a href="http://twitter.com/cybercoder/statuses/3360740627" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/Logic_Meister" class="aktt_username">Logic_Meister</a> @techxav: Mozilla to Stubborn Firefox 3.0 Users: “We Will Force You To Upgrade To Version 3.5″ <a href="http://bit.ly/17IVoA" rel="nofollow">http://bit.ly/17IVoA</a> <a href="http://twitter.com/cybercoder/statuses/3362456436" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> The District Of Columbia Twitter Directory was updated at TwitterStates.com <a href="http://bit.ly/B65YJ" rel="nofollow">http://bit.ly/B65YJ</a> <a href="http://twitter.com/cybercoder/statuses/3378150330" class="aktt_tweet_time">#</a></li>
<li>Woodstock: 3 Days of Peace &amp; Music on Vinyl <a href="http://bit.ly/15Qs5q" rel="nofollow">http://bit.ly/15Qs5q</a> <a href="http://twitter.com/cybercoder/statuses/3378291320" class="aktt_tweet_time">#</a></li>
<li>Updated my information on the TwitterStates.com Mississippi Twitter Directory <a href="http://bit.ly/oiqPl" rel="nofollow">http://bit.ly/oiqPl</a> <a href="http://twitter.com/cybercoder/statuses/3381652233" class="aktt_tweet_time">#</a></li>
<li>Updated my information on the TwitterStates.com Mississippi Twitter Directory <a href="http://bit.ly/oiqPl" rel="nofollow">http://bit.ly/oiqPl</a> <a href="http://twitter.com/cybercoder/statuses/3392501578" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> The Mississippi Twitter Directory was updated at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/3399960690" class="aktt_tweet_time">#</a></li>
<li>Updated my information on the TwitterStates.com Mississippi Twitter Directory <a href="http://bit.ly/oiqPl" rel="nofollow">http://bit.ly/oiqPl</a> <a href="http://twitter.com/cybercoder/statuses/3404754137" class="aktt_tweet_time">#</a></li>
<li>Paul McCartney creates Beatlemania (again!) <a href="http://tinyurl.com/lrj3vu" rel="nofollow">http://tinyurl.com/lrj3vu</a> <a href="http://twitter.com/cybercoder/statuses/3409275859" class="aktt_tweet_time">#</a></li>
<li>Updated my information on the TwitterStates.com Mississippi Twitter Directory <a href="http://bit.ly/oiqPl" rel="nofollow">http://bit.ly/oiqPl</a> <a href="http://twitter.com/cybercoder/statuses/3413510974" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> The District Of Columbia Twitter Directory was updated at TwitterStates.com <a href="http://bit.ly/B65YJ" rel="nofollow">http://bit.ly/B65YJ</a> <a href="http://twitter.com/cybercoder/statuses/3424899083" class="aktt_tweet_time">#</a></li>
<li>wow, that rain is really coming down, I think we have seen it all this year, from drought to gully washer <a href="http://twitter.com/cybercoder/statuses/3430750054" class="aktt_tweet_time">#</a></li>
<li>ok, who took my Trending Topics off the sidebar from Twitter? Please put them back, thanks&#8230;. <a href="http://twitter.com/cybercoder/statuses/3431213721" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> Rhode Island has got to be the most active State right now in TwitterStates Directory <a href="http://bit.ly/69v4R" rel="nofollow">http://bit.ly/69v4R</a> <a href="http://twitter.com/cybercoder/statuses/3434423188" class="aktt_tweet_time">#</a></li>
<li>RT @mikiesoft: If you&#39;re paranoid, then Twitter&#39;s probably not for you.  Look at all these people following me! &lt;-(ROFL) <a href="http://twitter.com/cybercoder/statuses/3442300067" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/melissakeyes" class="aktt_username">melissakeyes</a> @<a href="http://twitter.com/waynejohn" class="aktt_username">waynejohn</a> LOL, <a href="http://bit.ly/69v4R" rel="nofollow">http://bit.ly/69v4R</a>, this little guy is everywhere, <a href="http://bit.ly/4oItur" rel="nofollow">http://bit.ly/4oItur</a> <a href="http://twitter.com/cybercoder/statuses/3443120116" class="aktt_tweet_time">#</a></li>
<li>Me and the @<a href="http://twitter.com/Banff_Squirrel" class="aktt_username">Banff_Squirrel</a> Updated our profiles at TwitterStates.com <a href="http://bit.ly/69v4R" rel="nofollow">http://bit.ly/69v4R</a> <a href="http://twitter.com/cybercoder/statuses/3443478226" class="aktt_tweet_time">#</a></li>
<li>Paul McCartney in Arlington, Texas <a href="http://bit.ly/3wEXuq" rel="nofollow">http://bit.ly/3wEXuq</a> <a href="http://twitter.com/cybercoder/statuses/3447438000" class="aktt_tweet_time">#</a></li>
<li>Giving @<a href="http://twitter.com/CoTweet" class="aktt_username">CoTweet</a> a Trial run, looks very promising, could be great tool for business with multiple users Tweeting. <a href="http://twitter.com/cybercoder/statuses/3450645434" class="aktt_tweet_time">#</a></li>
<li>RT @TwitStates: Help keep the data up to date on your Twitter States Directory, update your Profile today <a href="http://bit.ly/1hFgR8" rel="nofollow">http://bit.ly/1hFgR8</a> <a href="http://twitter.com/cybercoder/statuses/3453414211" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/Banff_Squirrel" class="aktt_username">Banff_Squirrel</a> Why, well, any Squirrel with an eye for the camera like that, deserves to be followed! #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/3454387309" class="aktt_tweet_time">#</a></li>
<li>RT @TwitStates: RT @<a href="http://twitter.com/waynejohn" class="aktt_username">waynejohn</a> Our homepage was invaded <a href="http://www.twitterstates.com.(graphics" rel="nofollow">http://www.twitterstates.com.(graphics</a> are a bit Squirrely &#8211; CC) <a href="http://twitter.com/cybercoder/statuses/3454583111" class="aktt_tweet_time">#</a></li>
<li>I would rather be in Bristol Tennessee tonight for the Nascar race, but oh well, programming and watching it on TV <a href="http://twitter.com/cybercoder/statuses/3482079491" class="aktt_tweet_time">#</a></li>
<li>Over 2000 Mississippians in the Mississippi Twitter Directory. <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/3482243984" class="aktt_tweet_time">#</a></li>
<li>Taking Woodstock Soundtrack CD Available August 25th <a href="http://bit.ly/lpV6k" rel="nofollow">http://bit.ly/lpV6k</a> <a href="http://twitter.com/cybercoder/statuses/3508998424" class="aktt_tweet_time">#</a></li>
<li>Start the week with updating my TwitterStates.com Mississippi Directory profile <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/3511710809" class="aktt_tweet_time">#</a></li>
<li>RT @SisterHazelBand: @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> We need 15,000 more people following to pass Jon Secada for #<a href="http://search.twitter.com/search?q=%233" class="aktt_hashtag">3</a> in Florida. <a href="http://twitter.com/cybercoder/statuses/3514660908" class="aktt_tweet_time">#</a></li>
<li>RT @countyconnect: @<a href="http://twitter.com/jacksonmetro" class="aktt_username">jacksonmetro</a> on the website click on the flipping icon for Rankin. &lt;- I would have never found that! <a href="http://twitter.com/cybercoder/statuses/3517297160" class="aktt_tweet_time">#</a></li>
<li>RT @Clinton_Bennett: New Blog post! &quot;Work Systems- Beyond the Chaos&quot; <a href="http://wp.me/pC9fP-p" rel="nofollow">http://wp.me/pC9fP-p</a> Excellent reading for business managers. <a href="http://twitter.com/cybercoder/statuses/3526275875" class="aktt_tweet_time">#</a></li>
<li>RT @waynejohn: Facebook App Developer To Apple: Tear Down This App Store Wall <a href="http://bit.ly/7bXoT" rel="nofollow">http://bit.ly/7bXoT</a> <a href="http://twitter.com/cybercoder/statuses/3534116679" class="aktt_tweet_time">#</a></li>
<li>RT @jacksonmetro: RT @JacksonZoo: Its Twitter 2 For Tuesday.  Today buy one child&#39;s admission &#8211; get one free! <a href="http://twitter.com/cybercoder/statuses/3534602767" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> Update your info, and get your picture on the front page of TwitterStates.com, <a href="http://bit.ly/69v4R" rel="nofollow">http://bit.ly/69v4R</a> <a href="http://twitter.com/cybercoder/statuses/3534666558" class="aktt_tweet_time">#</a></li>
<li>10 valuable Twitter utilities for business users <a href="http://blogs.zdnet.com/BTL/?p=22750" rel="nofollow">http://blogs.zdnet.com/BTL/?p=22750</a> <a href="http://twitter.com/cybercoder/statuses/3537001777" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> @<a href="http://twitter.com/usnx" class="aktt_username">usnx</a> was just updated on the Mississippi Twitter List <a href="http://bit.ly/mvSDw" rel="nofollow">http://bit.ly/mvSDw</a><br />
 #<a href="http://search.twitter.com/search?q=%23Mississippi" class="aktt_hashtag">Mississippi</a> <a href="http://twitter.com/cybercoder/statuses/3542981891" class="aktt_tweet_time">#</a></li>
<li>Live Nation Ultimate Concert Contest <a href="http://bit.ly/1auaBS" rel="nofollow">http://bit.ly/1auaBS</a> <a href="http://twitter.com/cybercoder/statuses/3550896271" class="aktt_tweet_time">#</a></li>
<li>Sheldor is AFK ! <a href="http://twitter.com/sheldor" rel="nofollow">http://twitter.com/sheldor</a> <a href="http://twitter.com/cybercoder/statuses/3558325888" class="aktt_tweet_time">#</a></li>
<li>Sheldor Is Back Online&#8230; <a href="http://bit.ly/5fhEB" rel="nofollow">http://bit.ly/5fhEB</a> <a href="http://twitter.com/cybercoder/statuses/3560365501" class="aktt_tweet_time">#</a></li>
<li>RT @TwitStates: @<a href="http://twitter.com/MatthewHass008" class="aktt_username">MatthewHass008</a> Washington State Twitter Directory <a href="http://bit.ly/uiHXX" rel="nofollow">http://bit.ly/uiHXX</a>, thanks Matt, appreciate the Tweet <a href="http://twitter.com/cybercoder/statuses/3568780560" class="aktt_tweet_time">#</a></li>
<li>RT @MusicRamble: We&#39;re giving away a free copy of the Taking Woodstock soundtrack, Please leave a comment to win! <a href="http://bit.ly/2hOF43" rel="nofollow">http://bit.ly/2hOF43</a> <a href="http://twitter.com/cybercoder/statuses/3578331784" class="aktt_tweet_time">#</a></li>
<li>RT @Sealyme: RT @jacksonmetro: Aug 29th-Dog Days of Summer.Pelahatchie Shore Park. Proceeds benefit CARA animal shelter. info: carams.org. <a href="http://twitter.com/cybercoder/statuses/3580435048" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/waynejohn" class="aktt_username">waynejohn</a> Django-SocialAuth &#8211; Login via twitter, facebook, openid, yahoo &#8230; <a href="http://bit.ly/OcLWN" rel="nofollow">http://bit.ly/OcLWN</a> <a href="http://twitter.com/cybercoder/statuses/3582304593" class="aktt_tweet_time">#</a></li>
<li>How To Create A Dynamic “Tweet This Button” With PHP «  Sascha Kimmel <a href="http://bit.ly/Tsw9V" rel="nofollow">http://bit.ly/Tsw9V</a> <a href="http://twitter.com/cybercoder/statuses/3584289152" class="aktt_tweet_time">#</a></li>
<li>Twitter Tip -If you want a complete backup of your Twitter Account, think about it before you hit 3200 Tweets <a href="http://twitter.com/cybercoder/statuses/3586778508" class="aktt_tweet_time">#</a></li>
<li>I must have been sleeping last week, I missed the Facebook buying FriendFeed issue. Probably another great tool down&#8230; <a href="http://twitter.com/cybercoder/statuses/3592480621" class="aktt_tweet_time">#</a></li>
<li>Heroes of Woodstock Tour <a href="http://bit.ly/UXGDl" rel="nofollow">http://bit.ly/UXGDl</a> <a href="http://twitter.com/cybercoder/statuses/3597676535" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/itcn" class="aktt_username">itcn</a> If Famous Graphic Artists Were Web Designers… <a href="http://bit.ly/2Fl4Kg" rel="nofollow">http://bit.ly/2Fl4Kg</a> <a href="http://twitter.com/cybercoder/statuses/3602069652" class="aktt_tweet_time">#</a></li>
<li>RT @Clinton_Bennett: @<a href="http://twitter.com/bradshorr" class="aktt_username">bradshorr</a> Excellent points about blog post strategy &#8211; <a href="http://bit.ly/gY6UA" rel="nofollow">http://bit.ly/gY6UA</a> <a href="http://twitter.com/cybercoder/statuses/3602851957" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> &#8211; @<a href="http://twitter.com/Einsteinsoilery" class="aktt_username">Einsteinsoilery</a> this looks like an awesome place to do business <a href="http://twitter.com/cybercoder/statuses/3603431345" class="aktt_tweet_time">#</a></li>
<li>RT @problogger: How to Move Beyond Advertising Revenue on a Blog &#8211; <a href="http://www.aweber.com/b/1XAsM" rel="nofollow">http://www.aweber.com/b/1XAsM</a> <a href="http://twitter.com/cybercoder/statuses/3607749668" class="aktt_tweet_time">#</a></li>
<li>RT @FondrenIns: We are now on TWITTER! ( Welcome to Twitter ! ) <a href="http://twitter.com/cybercoder/statuses/3612157245" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/3617935875" class="aktt_tweet_time">#</a></li>
<li>RT @jacksonmetro: TODAY ! Dog Days of Summer.Pelahatchie Shore Park. Proceeds benefit CARA animal shelter <a href="http://bit.ly/FXKHc" rel="nofollow">http://bit.ly/FXKHc</a> <a href="http://twitter.com/cybercoder/statuses/3624897397" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TwitStates" class="aktt_username">TwitStates</a> New blog post: Rapid Growth &amp; Recent Changes <a href="http://bit.ly/lMnBi" rel="nofollow">http://bit.ly/lMnBi</a> <a href="http://twitter.com/cybercoder/statuses/3636694470" class="aktt_tweet_time">#</a></li>
<li>good day coding, worked on 2 different client WordPress sites, and also went to the CARA Dog Days of Summer <a href="http://twitter.com/cybercoder/statuses/3639095289" class="aktt_tweet_time">#</a></li>
<li>Get $30 off Hosting at Dreamhost, use Promo Code CYBER30, <a href="http://www.dreamhost.com/hosting.html" rel="nofollow">http://www.dreamhost.com/hosting.html</a> <a href="http://twitter.com/cybercoder/statuses/3639864212" class="aktt_tweet_time">#</a></li>
<li>Seems there is a Fail Whale swimming around, Twitter / Search &#8211; following not working <a href="http://bit.ly/mmZr5" rel="nofollow">http://bit.ly/mmZr5</a> <a href="http://twitter.com/cybercoder/statuses/3643914240" class="aktt_tweet_time">#</a></li>
<li>Roger Dean <a href="http://bit.ly/bCDtk" rel="nofollow">http://bit.ly/bCDtk</a> <a href="http://twitter.com/cybercoder/statuses/3660839963" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/3665233724" class="aktt_tweet_time">#</a></li>
<li>surprised that @<a href="http://twitter.com/Twitter" class="aktt_username">Twitter</a> has not learned to give status on problems such as current following, unfollowing issues <a href="http://twitter.com/cybercoder/statuses/3666656142" class="aktt_tweet_time">#</a></li>
<li>Is the follow / unfollow not working possibly a sign of big change coming to Twitter? <a href="http://twitter.com/cybercoder/statuses/3669111606" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/chrisbrogan" class="aktt_username">chrisbrogan</a> Simple Is Best <a href="http://bit.ly/3GEjp7" rel="nofollow">http://bit.ly/3GEjp7</a> <a href="http://twitter.com/cybercoder/statuses/3672744638" class="aktt_tweet_time">#</a></li>
<li>Beatles Remasters Rock Band <a href="http://bit.ly/c0rK1" rel="nofollow">http://bit.ly/c0rK1</a> <a href="http://twitter.com/cybercoder/statuses/3683394630" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/mashable" class="aktt_username">mashable</a> Twitter is Now Bigger than MySpace in the UK <a href="http://bit.ly/3ESVrI" rel="nofollow">http://bit.ly/3ESVrI</a> <a href="http://twitter.com/cybercoder/statuses/3689733584" class="aktt_tweet_time">#</a></li>
<li>Test change on TwitterStates.com. Listings ONLY show those who come and Add or Update themselves. <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/3691589678" class="aktt_tweet_time">#</a></li>
<li>Just added custom group of twitter users [http://twitwho.net/group/565953734], named 1. <a href="http://twitter.com/cybercoder/statuses/3693115691" class="aktt_tweet_time">#</a></li>
<li>Beatles Rock Band 3D Animation <a href="http://bit.ly/ZUoCw" rel="nofollow">http://bit.ly/ZUoCw</a> <a href="http://twitter.com/cybercoder/statuses/3707297691" class="aktt_tweet_time">#</a></li>
<li>If you want the easiest and best way to register Domain Names, give NameCheap a try <a href="http://bit.ly/1aj7ZL" rel="nofollow">http://bit.ly/1aj7ZL</a> <a href="http://twitter.com/cybercoder/statuses/3711639004" class="aktt_tweet_time">#</a></li>
<li>Sue Maden is Taking Woodstock home <a href="http://bit.ly/82uWd" rel="nofollow">http://bit.ly/82uWd</a> <a href="http://twitter.com/cybercoder/statuses/3723592087" class="aktt_tweet_time">#</a></li>
<li>RT @usnx: Congratulations to Mississippi Association of Supervisors on launching their new website!  Check them out &#8211; <a href="http://bit.ly/Cz4iE" rel="nofollow">http://bit.ly/Cz4iE</a> <a href="http://twitter.com/cybercoder/statuses/3734849193" class="aktt_tweet_time">#</a></li>
<li>RT @mashable: Facebook for Mobile is Growing Rapidly &#8211; <a href="http://bit.ly/DuNTz" rel="nofollow">http://bit.ly/DuNTz</a> <a href="http://twitter.com/cybercoder/statuses/3738460360" class="aktt_tweet_time">#</a></li>
<li>RT @jacksonmetro: Celtic Fest signs are all around town. Info at this site <a href="http://www.celticfestms.org/" rel="nofollow">http://www.celticfestms.org/</a>. I&#39;ve never been is it any fun? <a href="http://twitter.com/cybercoder/statuses/3740052625" class="aktt_tweet_time">#</a></li>
<li>Activating a new ATT phone, I can not recall the last thing I did that took this much time and energy, holy moly&#8230;. <a href="http://twitter.com/cybercoder/statuses/3743738664" class="aktt_tweet_time">#</a></li>
<li>WheresEric.com <a href="http://bit.ly/2UKFXO" rel="nofollow">http://bit.ly/2UKFXO</a> <a href="http://twitter.com/cybercoder/statuses/3750948740" class="aktt_tweet_time">#</a></li>
<li>Been in Meetings almost all day, very unusual for me, threw me out of sync&#8230; <a href="http://twitter.com/cybercoder/statuses/3764325975" class="aktt_tweet_time">#</a></li>
<li>Trying out the new Facebook iPhone app, quite different from previous <a href="http://twitter.com/cybercoder/statuses/3770686962" class="aktt_tweet_time">#</a></li>
<li>Austin City Limits Music Festival 2009 <a href="http://bit.ly/oQwxV" rel="nofollow">http://bit.ly/oQwxV</a> <a href="http://twitter.com/cybercoder/statuses/3773860777" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/mashable" class="aktt_username">mashable</a> HOW TO: Use Twitter’s Advanced Search Features <a href="http://bit.ly/iz6LZ" rel="nofollow">http://bit.ly/iz6LZ</a> <a href="http://twitter.com/cybercoder/statuses/3777920347" class="aktt_tweet_time">#</a></li>
<li>Saw a nice T bucket while having lunch at @<a href="http://twitter.com/broadstreetcafe" class="aktt_username">broadstreetcafe</a> today, did not realize they were so popular <a href="http://bit.ly/LtKqG" rel="nofollow">http://bit.ly/LtKqG</a> <a href="http://twitter.com/cybercoder/statuses/3791386520" class="aktt_tweet_time">#</a></li>
<li>RT @TwitStates: Get listed in the TwitterStates Directory at <a href="http://bit.ly/sIbGb" rel="nofollow">http://bit.ly/sIbGb</a> <a href="http://twitter.com/cybercoder/statuses/3797998299" class="aktt_tweet_time">#</a></li>
<li>the radar on the iPhone @<a href="http://twitter.com/TWCi" class="aktt_username">TWCi</a> app is much better than the web version, being able to zoom in and out without refreshing <a href="http://twitter.com/cybercoder/statuses/3802957078" class="aktt_tweet_time">#</a></li>
<li>RT @TwitStates: Are you on the front page? Just update your info and you will be! <a href="http://bit.ly/69v4R" rel="nofollow">http://bit.ly/69v4R</a> <a href="http://twitter.com/cybercoder/statuses/3803466403" class="aktt_tweet_time">#</a></li>
<li>anybody notice the bizarre and random page numbers if you look at your Twitter Followers and go to the next page? <a href="http://twitter.com/cybercoder/statuses/3803562195" class="aktt_tweet_time">#</a></li>
<li>The Beatles Digital Remasters <a href="http://bit.ly/8gNqk" rel="nofollow">http://bit.ly/8gNqk</a> <a href="http://twitter.com/cybercoder/statuses/3815167124" class="aktt_tweet_time">#</a></li>
<li>Built a Used Car Database (1990-2009), since there was not one available at reasonable price. <a href="http://bit.ly/iCly" rel="nofollow">http://bit.ly/iCly</a> <a href="http://twitter.com/cybercoder/statuses/3818341194" class="aktt_tweet_time">#</a></li>
<li>Hope everyone enjoys their Labor Day Holiday today ! <a href="http://twitter.com/cybercoder/statuses/3818608599" class="aktt_tweet_time">#</a></li>
<li>Used Car Database <a href="http://bit.ly/ACCVn" rel="nofollow">http://bit.ly/ACCVn</a> <a href="http://twitter.com/cybercoder/statuses/3824062102" class="aktt_tweet_time">#</a></li>
<li>API Explained, This video does a good job of explaining in very easy terms how API’s work. <a href="http://bit.ly/c9w44" rel="nofollow">http://bit.ly/c9w44</a> <a href="http://twitter.com/cybercoder/statuses/3824203352" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/NascarList" class="aktt_username">NascarList</a> The Nascar Twitter List was just updated! <a href="http://bit.ly/wWK5O" rel="nofollow">http://bit.ly/wWK5O</a> <a href="http://twitter.com/cybercoder/statuses/3841921637" class="aktt_tweet_time">#</a></li>
<li>Reading : Tweet for hire: More big businesses hire tweeters (from @clarionledger) <a href="http://bit.ly/98L1i" rel="nofollow">http://bit.ly/98L1i</a> <a href="http://twitter.com/cybercoder/statuses/3844732198" class="aktt_tweet_time">#</a></li>
<li>RT @usnx: Guess who is debuting their new website this Thursday!!!! <a href="http://twitter.com/cybercoder/statuses/3845311961" class="aktt_tweet_time">#</a></li>
<li>Using Twitter to Follow a Topic &quot;using Twitter more these days, and Google Reader less&quot; <a href="http://bit.ly/T1g9x" rel="nofollow">http://bit.ly/T1g9x</a> <a href="http://twitter.com/cybercoder/statuses/3846539391" class="aktt_tweet_time">#</a></li>
<li>Programming has never been as much fun as it is these days with all the Social tools and API&#39;s <a href="http://twitter.com/cybercoder/statuses/3852340768" class="aktt_tweet_time">#</a></li>
<li>Beatles Catalog Digitally Remastered for the 1st time <a href="http://bit.ly/4RxDQ" rel="nofollow">http://bit.ly/4RxDQ</a> <a href="http://twitter.com/cybercoder/statuses/3858670614" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/mashable" class="aktt_username">mashable</a> MyTwitFace: TweetDeck Adds Major Facebook and MySpace Features <a href="http://bit.ly/4zErVI" rel="nofollow">http://bit.ly/4zErVI</a> <a href="http://twitter.com/cybercoder/statuses/3862296350" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/3868023197" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/jacksonmetro" class="aktt_username">jacksonmetro</a> 5th Annual Fur Ball <a href="http://www.msarl.org" rel="nofollow">http://www.msarl.org</a> fundraiser for Mississippi Animal Rescue League. 9/10/09 at 7pm <a href="http://twitter.com/cybercoder/statuses/3892961010" class="aktt_tweet_time">#</a></li>
<li>RT @usnx: Look who got a fresh new look: U.S. NetworX did! <a href="http://bit.ly/2jzLi" rel="nofollow">http://bit.ly/2jzLi</a> (very nice, like the new blog!) <a href="http://twitter.com/cybercoder/statuses/3896853674" class="aktt_tweet_time">#</a></li>
<li>Recording The Beatles <a href="http://bit.ly/1qwd5Q" rel="nofollow">http://bit.ly/1qwd5Q</a> <a href="http://twitter.com/cybercoder/statuses/3904755798" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/alleyinsider" class="aktt_username">alleyinsider</a> The Google Brain Drain Goes On And On (GOOG) <a href="http://bit.ly/2ys4MZ" rel="nofollow">http://bit.ly/2ys4MZ</a> <a href="http://twitter.com/cybercoder/statuses/3910017285" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/JacksonMetro" class="aktt_username">JacksonMetro</a> Keeping us informed on current events and good eats ! #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/3914391027" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/JeffGoodBRAVO" class="aktt_username">JeffGoodBRAVO</a> Your restaurants bring consistency to great food and SERVICE ! #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/3914436614" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/WayneJohn" class="aktt_username">WayneJohn</a> like working with someone from another planet, yet on the same page, lol&#8230; #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/3914466077" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/MarshallRamsey" class="aktt_username">MarshallRamsey</a> Creating laughter is a true skill and art within itself. #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/3914531198" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/clintonbennett" class="aktt_username">clintonbennett</a> My wife thinks we are arguing, nah, we are just disussing with spirt! #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/3914601435" class="aktt_tweet_time">#</a></li>
<li>Since Facebook now as a Lite version, does that mean Twitter needs a heavy version? yeah, think&#8230;.150 characters? <a href="http://twitter.com/cybercoder/statuses/3914694113" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/3935221939" class="aktt_tweet_time">#</a></li>
<li>Enjoyed CelticFest today, just a little rain, not enough to wash out a good time <a href="http://twitter.com/cybercoder/statuses/3944905012" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-09-13 <a href="http://bit.ly/whJXY" rel="nofollow">http://bit.ly/whJXY</a> <a href="http://twitter.com/cybercoder/statuses/3952074553" class="aktt_tweet_time">#</a></li>
<li>Convert Static HTML Site to WordPress Easily  <a href="http://bit.ly/aCGdk" rel="nofollow">http://bit.ly/aCGdk</a> <a href="http://twitter.com/cybercoder/statuses/3954231198" class="aktt_tweet_time">#</a></li>
<li>got my Direct Message backup routine working, that should make it easier to keep up with DM&#39;s <a href="http://twitter.com/cybercoder/statuses/3968075185" class="aktt_tweet_time">#</a></li>
<li>the Twitter API is one of the easiest API&#39;s to work with, I enjoy coding with PHP and connecting with WordPress <a href="http://twitter.com/cybercoder/statuses/3968214160" class="aktt_tweet_time">#</a></li>
<li>recordingthebeatles.com <a href="http://bit.ly/17XWYR" rel="nofollow">http://bit.ly/17XWYR</a> <a href="http://twitter.com/cybercoder/statuses/3971359660" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/Touch_Guitars" class="aktt_username">Touch_Guitars</a> See Dave Bunker play one of his original patented Touch Guitars™ <a href="http://bit.ly/CPgZ8" rel="nofollow">http://bit.ly/CPgZ8</a> <a href="http://twitter.com/cybercoder/statuses/3980246511" class="aktt_tweet_time">#</a></li>
<li>. <a href="http://twitter.com/cybercoder/statuses/3986778643" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/3986827192" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/linkmoneydotorg" class="aktt_username">linkmoneydotorg</a> The Power of Using Twitter Advanced Search | LinkMoney dot org <a href="http://bit.ly/aODHa" rel="nofollow">http://bit.ly/aODHa</a> <a href="http://twitter.com/cybercoder/statuses/4003535951" class="aktt_tweet_time">#</a></li>
<li>RT @TwitStates: Add or Update your information on the TwitterStates.com Twitter Directory <a href="http://bit.ly/1hFgR8" rel="nofollow">http://bit.ly/1hFgR8</a> <a href="http://twitter.com/cybercoder/statuses/4028700614" class="aktt_tweet_time">#</a></li>
<li>last day in the office, migrating to 100% self employed, let&#39;s hope recession is really over, lol&#8230; <a href="http://twitter.com/cybercoder/statuses/4030588616" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TechCrunch" class="aktt_username">TechCrunch</a> Imitation Isn’t Always Flattery: Microsoft Previews Google Apps Killer To Beta Testers <a href="http://bit.ly/1XJuMf" rel="nofollow">http://bit.ly/1XJuMf</a> <a href="http://twitter.com/cybercoder/statuses/4058350759" class="aktt_tweet_time">#</a></li>
<li>my ghost DM&#39;s are growing, I now have 27 invisible Direct Messages on my Twitter account <a href="http://twitter.com/cybercoder/statuses/4067967985" class="aktt_tweet_time">#</a></li>
<li>Twitter finally has some new Default Avatars, at least they are a little more random in color <a href="http://twitter.com/cybercoder/statuses/4070370009" class="aktt_tweet_time">#</a></li>
<li>B.B. King 84 <a href="http://bit.ly/34qDvK" rel="nofollow">http://bit.ly/34qDvK</a> <a href="http://twitter.com/cybercoder/statuses/4074013070" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/thedebthawk" class="aktt_username">thedebthawk</a> Solid financial articles to help anyone save and earn more money. #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/4077537895" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/warmchocmilk" class="aktt_username">warmchocmilk</a> a new friend and warm chocolate milk, does it get any better? #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/4077708377" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/USNX" class="aktt_username">USNX</a> great web designs and a $200 Visa card <a href="http://bit.ly/LwBOa" rel="nofollow">http://bit.ly/LwBOa</a> #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/4077765946" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/work_freelance" class="aktt_username">work_freelance</a> a steady stream of possible Freelance work !  #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/4077853654" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/ddrivegeorge" class="aktt_username">ddrivegeorge</a> some very useful and original DHTML &amp; Javascripts to enhance your web site #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/4078397202" class="aktt_tweet_time">#</a></li>
<li>RT @samrhall: &#8230;a Jackson blogger is getting beat up on by some lawyers. Read about her fight here. <a href="http://bit.ly/2R9J3F" rel="nofollow">http://bit.ly/2R9J3F</a> <a href="http://twitter.com/cybercoder/statuses/4082158424" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TechCrunch" class="aktt_username">TechCrunch</a> Closing In On Launch Twitter Tweaks Its Retweet API And A Picture Of How It Will Look <a href="http://bit.ly/v4Zer" rel="nofollow">http://bit.ly/v4Zer</a> <a href="http://twitter.com/cybercoder/statuses/4088516907" class="aktt_tweet_time">#</a></li>
<li>need to dig in this weekend with the new Twitter API calls <a href="http://bit.ly/1emmMQ" rel="nofollow">http://bit.ly/1emmMQ</a> <a href="http://twitter.com/cybercoder/statuses/4088558079" class="aktt_tweet_time">#</a></li>
<li>Abbey Road Studios <a href="http://bit.ly/7dczI" rel="nofollow">http://bit.ly/7dczI</a> <a href="http://twitter.com/cybercoder/statuses/4108669722" class="aktt_tweet_time">#</a></li>
<li>Texas vs Texas Tech tonight, Hook Em  Horns! <a href="http://twitter.com/cybercoder/statuses/4110655953" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-09-20 <a href="http://bit.ly/krhpS" rel="nofollow">http://bit.ly/krhpS</a> <a href="http://twitter.com/cybercoder/statuses/4120596882" class="aktt_tweet_time">#</a></li>
<li>I think I learned the same lesson again, quit working on Sunday! <a href="http://twitter.com/cybercoder/statuses/4134522872" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/mashable" class="aktt_username">mashable</a> 6 Tips for Customizing Your Small Business Blog <a href="http://bit.ly/uGSkm" rel="nofollow">http://bit.ly/uGSkm</a> <a href="http://twitter.com/cybercoder/statuses/4145075961" class="aktt_tweet_time">#</a></li>
<li>Google Is Searching For Beautiful Minds, But So Far No M.I.T. Students Have Broken Its Code. <a href="http://bit.ly/3WheUQ" rel="nofollow">http://bit.ly/3WheUQ</a> <a href="http://twitter.com/cybercoder/statuses/4149413582" class="aktt_tweet_time">#</a></li>
<li>Excellent WordPress Plugin if you need to put PHP code in your Widgetized Sidebar <a href="http://bit.ly/10iras" rel="nofollow">http://bit.ly/10iras</a> <a href="http://twitter.com/cybercoder/statuses/4152413509" class="aktt_tweet_time">#</a></li>
<li>I am in the Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/4162717131" class="aktt_tweet_time">#</a></li>
<li>after using Pandora for years, just realized it works with my keyboard music control keys <a href="http://twitter.com/cybercoder/statuses/4172403018" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/mashable" class="aktt_username">mashable</a> Yahoo Revamps Search Results (And Prepares Them for Bing) <a href="http://bit.ly/3Bq9l1" rel="nofollow">http://bit.ly/3Bq9l1</a> <a href="http://twitter.com/cybercoder/statuses/4174474955" class="aktt_tweet_time">#</a></li>
<li>I like the new ability to modify the iPhone screens from within iTunes, much easier to setup the pages like I want them <a href="http://twitter.com/cybercoder/statuses/4177905860" class="aktt_tweet_time">#</a></li>
<li>This makes it look like Google is creating Spam. <a href="http://twitter.com/AppSales" rel="nofollow">http://twitter.com/AppSales</a> <a href="http://twitter.com/cybercoder/statuses/4313231905" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/OPENForum" class="aktt_username">OPENForum</a> Google Wave: What Small Businesses Should Know : American Express OPEN Forum <a href="http://retwt.me/drXI" rel="nofollow">http://retwt.me/drXI</a> <a href="http://twitter.com/cybercoder/statuses/4321045960" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/mashable" class="aktt_username">mashable</a> Twitter’s Location Features Will Be Completely Opt-In <a href="http://bit.ly/Q2oug" rel="nofollow">http://bit.ly/Q2oug</a> <a href="http://twitter.com/cybercoder/statuses/4332941936" class="aktt_tweet_time">#</a></li>
<li>There is some Gmail Fail going on today. <a href="http://twitter.com/cybercoder/statuses/4343091465" class="aktt_tweet_time">#</a></li>
<li>Since the last iPhone update my iPhone battery life is pathetic <a href="http://twitter.com/cybercoder/statuses/4348318338" class="aktt_tweet_time">#</a></li>
<li>Here is another fun API to work with, Monetizing with the Google Maps API <a href="http://bit.ly/EuDBD" rel="nofollow">http://bit.ly/EuDBD</a> <a href="http://twitter.com/cybercoder/statuses/4349139478" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/4367471068" class="aktt_tweet_time">#</a></li>
<li>hanging guitars in my office to make them easier to reach when I need to pluck and think, lol&#8230; <a href="http://twitter.com/cybercoder/statuses/4380655410" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/mynew30" class="aktt_username">mynew30</a> positive attitude is contagious,<br />
I am close to the new 30 myself,<br />
good recipes Deep South Dish<br />
<a href="http://bit.l" rel="nofollow">http://bit.l</a> &#8230; <a href="http://twitter.com/cybercoder/statuses/4380880799" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/mynew30" class="aktt_username">mynew30</a> good recipes Deep South Dish <a href="http://bit.ly/15jqPb" rel="nofollow">http://bit.ly/15jqPb</a> (fixed link) <a href="http://twitter.com/cybercoder/statuses/4382771445" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @USNX, good Web Design, Development and Web Servers <a href="http://bit.ly/5tQDa" rel="nofollow">http://bit.ly/5tQDa</a> <a href="http://twitter.com/cybercoder/statuses/4382842922" class="aktt_tweet_time">#</a></li>
<li>I have not upgraded yet, but seeing lots of talk about Iphone MMS Not Working <a href="http://bit.ly/PJpKx" rel="nofollow">http://bit.ly/PJpKx</a> <a href="http://twitter.com/cybercoder/statuses/4382948005" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-09-27 <a href="http://bit.ly/1Nf76D" rel="nofollow">http://bit.ly/1Nf76D</a> <a href="http://twitter.com/cybercoder/statuses/4413415904" class="aktt_tweet_time">#</a></li>
<li>finally had a chance to try the iPhone MMS, works great, did not have any problems <a href="http://twitter.com/cybercoder/statuses/4422768602" class="aktt_tweet_time">#</a></li>
<li>after 10 years with AT&amp;T, an iPhone and family plan, you would think I could get a deal on adding a Netbook <a href="http://twitter.com/cybercoder/statuses/4424976746" class="aktt_tweet_time">#</a></li>
<li>Namecheap &#8211; Cheap and easy Domain Registrations with push options <a href="http://bit.ly/1aj7ZL" rel="nofollow">http://bit.ly/1aj7ZL</a> <a href="http://twitter.com/cybercoder/statuses/4442925205" class="aktt_tweet_time">#</a></li>
<li>Not all Bots are bad, but really tired of 100% bots of the same old info. <a href="http://twitter.com/cybercoder/statuses/4443310086" class="aktt_tweet_time">#</a></li>
<li>Dallas Cowboys on Monday Night Football | Ramble On <a href="http://bit.ly/Jd71u" rel="nofollow">http://bit.ly/Jd71u</a> <a href="http://twitter.com/cybercoder/statuses/4452646146" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TechCrunch" class="aktt_username">TechCrunch</a> Google Wave Starts Rolling, Picks Up Over 100,000 New Riders <a href="http://bit.ly/14bATP" rel="nofollow">http://bit.ly/14bATP</a> <a href="http://twitter.com/cybercoder/statuses/4496344505" class="aktt_tweet_time">#</a></li>
<li>RT @waynejohn: 10 Easy jQuery Tricks for Designers &#8211; <a href="http://bit.ly/Aog8w" rel="nofollow">http://bit.ly/Aog8w</a> <a href="http://twitter.com/cybercoder/statuses/4498050954" class="aktt_tweet_time">#</a></li>
<li>CyberCoders mobile version <a href="http://bit.ly/VaBta" rel="nofollow">http://bit.ly/VaBta</a> <a href="http://twitter.com/cybercoder/statuses/4500708067" class="aktt_tweet_time">#</a></li>
<li>Just registered my first couple .mobi domains, cybercoder.mobi and cybercoders.mobi <a href="http://twitter.com/cybercoder/statuses/4500908198" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/4504067649" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/mashable" class="aktt_username">mashable</a> Comment Contest: Win an HP ENVY 13! <a href="http://bit.ly/9CwhI" rel="nofollow">http://bit.ly/9CwhI</a> <a href="http://twitter.com/cybercoder/statuses/4504883377" class="aktt_tweet_time">#</a></li>
<li>Dave Price Tests His Luck, Your Kindness &#8211; The Early Show &#8211; CBS News <a href="http://bit.ly/WK5Lr" rel="nofollow">http://bit.ly/WK5Lr</a> <a href="http://twitter.com/cybercoder/statuses/4523690549" class="aktt_tweet_time">#</a></li>
<li>My Comcast DVR keeps pausing at all the wrong times! <a href="http://twitter.com/cybercoder/statuses/4534976840" class="aktt_tweet_time">#</a></li>
<li>Today was first day of being self employed, not a whole lot of jobs available in this area. <a href="http://twitter.com/cybercoder/statuses/4537224997" class="aktt_tweet_time">#</a></li>
<li>RT @waynejohn: Simple PHP Contact Form &#8211; <a href="http://bit.ly/5g7Ws" rel="nofollow">http://bit.ly/5g7Ws</a> <a href="http://twitter.com/cybercoder/statuses/4551484107" class="aktt_tweet_time">#</a></li>
<li>DavaFaith&#39;s YouTube Channel <a href="http://bit.ly/3dGLfr" rel="nofollow">http://bit.ly/3dGLfr</a> <a href="http://twitter.com/cybercoder/statuses/4565744445" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/4578466934" class="aktt_tweet_time">#</a></li>
<li>Taking a little hike at Roosevelt State Park<br />
<a href="http://bit.ly/Mxsgp" rel="nofollow">http://bit.ly/Mxsgp</a><br />
 <a href="http://twitpic.com/k3que" rel="nofollow">http://twitpic.com/k3que</a> <a href="http://twitter.com/cybercoder/statuses/4582209982" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-10-04 <a href="http://bit.ly/3xsUR" rel="nofollow">http://bit.ly/3xsUR</a> <a href="http://twitter.com/cybercoder/statuses/4598735764" class="aktt_tweet_time">#</a></li>
<li>A good mobile website can be  more  valuable than a mobile app. <a href="http://twitter.com/cybercoder/statuses/4615345988" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/mashable" class="aktt_username">mashable</a> Google Ads Get an iPhone Makeover <a href="http://bit.ly/27axWc" rel="nofollow">http://bit.ly/27axWc</a> <a href="http://twitter.com/cybercoder/statuses/4629019929" class="aktt_tweet_time">#</a></li>
<li>New York City man arrested for using Twitter to alert protesters about police locations <a href="http://bit.ly/W0coq" rel="nofollow">http://bit.ly/W0coq</a> <a href="http://twitter.com/cybercoder/statuses/4642982390" class="aktt_tweet_time">#</a></li>
<li>Build A Niche Store (BANS) Is For Sale For A Mere $500,000 <a href="http://bit.ly/JZzXe" rel="nofollow">http://bit.ly/JZzXe</a> <a href="http://twitter.com/cybercoder/statuses/4654206096" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/DaveTaylor" class="aktt_username">DaveTaylor</a> &#8230;if you invite me to join your Mafia family, you&#39;ve found an easy path for me to unfollow you&#8230; <a href="http://twitter.com/cybercoder/statuses/4683545942" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/Andy_Burton" class="aktt_username">Andy_Burton</a> Twitter CEO on the Future of Twitter &#8211; CBS News <a href="http://bit.ly/g42SS" rel="nofollow">http://bit.ly/g42SS</a> <a href="http://twitter.com/cybercoder/statuses/4684278115" class="aktt_tweet_time">#</a></li>
<li>Eric Schmidt On Twitter: I&#39;ve Avoided It So Far <a href="http://bit.ly/J8SM2" rel="nofollow">http://bit.ly/J8SM2</a> <a href="http://twitter.com/cybercoder/statuses/4697126419" class="aktt_tweet_time">#</a></li>
<li>Twitter becoming an important tool for job seekers <a href="http://bit.ly/LvvHt" rel="nofollow">http://bit.ly/LvvHt</a> <a href="http://twitter.com/cybercoder/statuses/4698434025" class="aktt_tweet_time">#</a></li>
<li>Powermat Lets The Chargers Do The Talking <a href="http://bit.ly/4crtUw" rel="nofollow">http://bit.ly/4crtUw</a> looks like an interesting product. <a href="http://twitter.com/cybercoder/statuses/4700316149" class="aktt_tweet_time">#</a></li>
<li>Powermat Lets The Chargers Do The Talking <a href="http://bit.ly/4crtUw" rel="nofollow">http://bit.ly/4crtUw</a> looks like an interesting product.: <a href="http://bit.ly/Jd1w3" rel="nofollow">http://bit.ly/Jd1w3</a> <a href="http://twitter.com/cybercoder/statuses/4709242896" class="aktt_tweet_time">#</a></li>
<li>Setting up and working out the specifics of this Fan Page. <a href="http://twitter.com/cybercoder/statuses/4709733861" class="aktt_tweet_time">#</a></li>
<li>looks like we are having some Twitter Fail, all the streams are outdated <a href="http://twitter.com/cybercoder/statuses/4711538281" class="aktt_tweet_time">#</a></li>
<li>Spam at it&#39;s finest -&gt;  @<a href="http://twitter.com/veronicaButremo" class="aktt_username">veronicaButremo</a> <a href="http://twitter.com/cybercoder/statuses/4713673588" class="aktt_tweet_time">#</a></li>
<li>It has been confirmed, it is IMPOSSIBLE to get support from WalMart, 3 weeks, no answers, more run around, unreal <a href="http://twitter.com/cybercoder/statuses/4715118594" class="aktt_tweet_time">#</a></li>
<li>Came home to the utility room flooding thanks to a leaking hose, couple hours later, all fixed, just killed the evening <a href="http://twitter.com/cybercoder/statuses/4723269158" class="aktt_tweet_time">#</a></li>
<li>As Google and Microsoft vie, Twitter could turn tweets into dollars <a href="http://bit.ly/z7RaZ" rel="nofollow">http://bit.ly/z7RaZ</a> <a href="http://twitter.com/cybercoder/statuses/4723359804" class="aktt_tweet_time">#</a></li>
<li>Imagine John Lennon at 69 <a href="http://bit.ly/3RVfkl" rel="nofollow">http://bit.ly/3RVfkl</a> <a href="http://twitter.com/cybercoder/statuses/4723841378" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/chr1sa" class="aktt_username">chr1sa</a> One of the best thing I ever<br />
learned, was how to use the<br />
&quot;Long Tail&quot; to my online<br />
advantage! #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/4735974095" class="aktt_tweet_time">#</a></li>
<li>Been a rough couple days, yesterday I was a Plumber, today a Mechanic, common skill, Troubleshooting, lol&#8230; <a href="http://twitter.com/cybercoder/statuses/4749720135" class="aktt_tweet_time">#</a></li>
<li>Hopefully I can stay on track today and be a Coder instead of doing home and car repairs all day&#8230; <a href="http://twitter.com/cybercoder/statuses/4761975370" class="aktt_tweet_time">#</a></li>
<li>I was reminded of the Baseball Analogy of Blogging this morning while doing keyword research. <a href="http://bit.ly/BqKaz" rel="nofollow">http://bit.ly/BqKaz</a> <a href="http://twitter.com/cybercoder/statuses/4762150943" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/4763649356" class="aktt_tweet_time">#</a></li>
<li>I like Tweetie 2 , and I can wait for Twitter List support since TweetDeck does not work well for me <a href="http://bit.ly/Y98wm" rel="nofollow">http://bit.ly/Y98wm</a> <a href="http://twitter.com/cybercoder/statuses/4764275444" class="aktt_tweet_time">#</a></li>
<li>Really like the Direct Mesage interface in the Tweetie 2 iPhone app. <a href="http://twitter.com/cybercoder/statuses/4770362273" class="aktt_tweet_time">#</a></li>
<li>RT @TechCrunch: T-Mobile Sidekick Disaster: Microsoft&#39;s Servers Crashed, And They Don&#39;t Have A Backup <a href="http://bit.ly/4vH5ii" rel="nofollow">http://bit.ly/4vH5ii</a> <a href="http://twitter.com/cybercoder/statuses/4770457439" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/jacksonmetro" class="aktt_username">jacksonmetro</a> &#8230;went for a cup of coffee at a new place in Brandon. Two Ugly Mugs. Good @<a href="http://twitter.com/twouglymugs" class="aktt_username">twouglymugs</a> <a href="http://twitter.com/cybercoder/statuses/4774011436" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-10-11 <a href="http://bit.ly/3IQFl" rel="nofollow">http://bit.ly/3IQFl</a> <a href="http://twitter.com/cybercoder/statuses/4780101849" class="aktt_tweet_time">#</a></li>
<li>For some, hard times are a gateway to new careers <a href="http://usat.me/?36498412" rel="nofollow">http://usat.me/?36498412</a> <a href="http://twitter.com/cybercoder/statuses/4808839134" class="aktt_tweet_time">#</a></li>
<li>Social tools like Facebook, Twitter help business get word out <a href="http://bit.ly/102w56" rel="nofollow">http://bit.ly/102w56</a> <a href="http://twitter.com/cybercoder/statuses/4809361997" class="aktt_tweet_time">#</a></li>
<li>Mississippi State Fair <a href="http://bit.ly/CTBHl" rel="nofollow">http://bit.ly/CTBHl</a> <a href="http://twitter.com/cybercoder/statuses/4812124416" class="aktt_tweet_time">#</a></li>
<li>almost 5pm, fresh pot of coffee, much more coding to come today <a href="http://twitter.com/cybercoder/statuses/4817859563" class="aktt_tweet_time">#</a></li>
<li>Maybe we have a new way to rank TV shows, @<a href="http://twitter.com/CrimMinds_CBS" class="aktt_username">CrimMinds_CBS</a> has a lot more followers than @<a href="http://twitter.com/Numb3rs_CBS" class="aktt_username">Numb3rs_CBS</a> <a href="http://twitter.com/cybercoder/statuses/4823262421" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/mashable" class="aktt_username">mashable</a> Gist Launches iPhone App for Power Networking On the Go <a href="http://bit.ly/nXMRu" rel="nofollow">http://bit.ly/nXMRu</a> <a href="http://twitter.com/cybercoder/statuses/4836803797" class="aktt_tweet_time">#</a></li>
<li>If you wand some great music to work and be creative by, set a Pandora station to John Paul Jones <a href="http://twitter.com/cybercoder/statuses/4838048515" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/4838317071" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/jacksonmetro" class="aktt_username">jacksonmetro</a> Glad to have @<a href="http://twitter.com/Steveagent" class="aktt_username">Steveagent</a> join us on Twitter. (and Twitter will never be the same, lol) <a href="http://twitter.com/cybercoder/statuses/4838501383" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/mashable" class="aktt_username">mashable</a> Twitter Warning: Don’t Change Your Email, Username or Password! <a href="http://bit.ly/1at66Z" rel="nofollow">http://bit.ly/1at66Z</a> <a href="http://twitter.com/cybercoder/statuses/4848920382" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23googlewave" class="aktt_hashtag">googlewave</a> &quot;Invitations will not be sent immediately. We have a lot of stamps to lick.&quot;, stamps? now thats high tech <a href="http://twitter.com/cybercoder/statuses/4862170527" class="aktt_tweet_time">#</a></li>
<li>Surprised at how few of the people in my Contacts have #googlewave. Hard to  test without more connections. <a href="http://twitter.com/cybercoder/statuses/4867378112" class="aktt_tweet_time">#</a></li>
<li>Oklahoma is the most active State today on TwitterStates.com, so far. <a href="http://bit.ly/69v4R" rel="nofollow">http://bit.ly/69v4R</a> <a href="http://twitter.com/cybercoder/statuses/4867507827" class="aktt_tweet_time">#</a></li>
<li>New eBay Partner Network system working well,already surpassed last months total income. <a href="http://twitter.com/cybercoder/statuses/4869229537" class="aktt_tweet_time">#</a></li>
<li>Be careful what site you give your info to, another round of SPAM DM&#39;s, &quot;i made $300 today with&#8230;&quot; <a href="http://twitter.com/cybercoder/statuses/4872705948" class="aktt_tweet_time">#</a></li>
<li>ROFL, Jimmy Fallon Raps as Billy Ray Cyrus: He&#39;s Still on Twitter  <a href="http://bit.ly/1l0Gqf" rel="nofollow">http://bit.ly/1l0Gqf</a> <a href="http://twitter.com/cybercoder/statuses/4891519942" class="aktt_tweet_time">#</a></li>
<li>Did Digg Buy Kevin Rose’s WeFollow Twitter Directory? <a href="http://bit.ly/2KCUUk" rel="nofollow">http://bit.ly/2KCUUk</a> <a href="http://twitter.com/cybercoder/statuses/4912333339" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/frommystudio" class="aktt_username">frommystudio</a> Very creative iPhone painting<br />
and photos. #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/4913969736" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/louisgray" class="aktt_username">louisgray</a> Good tech blogging from a West<br />
Coast Geek. #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/4914006382" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/twitstates" class="aktt_username">twitstates</a> One of my pet projects, and good<br />
way to find bloggers by U.S.<br />
State. #<a href="http://search.twitter.com/search?q=%23ff" class="aktt_hashtag">ff</a> <a href="http://twitter.com/cybercoder/statuses/4914028068" class="aktt_tweet_time">#</a></li>
<li>Now that&#39;s a Classic Car, 1969 Chevelle <a href="http://bit.ly/3EE2xF" rel="nofollow">http://bit.ly/3EE2xF</a> <a href="http://twitter.com/cybercoder/statuses/4942720271" class="aktt_tweet_time">#</a></li>
<li>ok, enough time spent looking at cars and such, time to get back to work. Wish the Twitter Lists API was ready. <a href="http://twitter.com/cybercoder/statuses/4942742305" class="aktt_tweet_time">#</a></li>
<li>The benefit to being Google, your guaranteed good search results, lol, wave &#8211; Google Search <a href="http://bit.ly/32abAM" rel="nofollow">http://bit.ly/32abAM</a> <a href="http://twitter.com/cybercoder/statuses/4944427537" class="aktt_tweet_time">#</a></li>
<li>playiing with Twitter Lists and the Twitter API, could lead to some interesting work,  <a href="http://bit.ly/4sSLQS" rel="nofollow">http://bit.ly/4sSLQS</a>, <a href="http://twitter.com/cybercoder/statuses/4974769713" class="aktt_tweet_time">#</a></li>
<li>simple form to see Twitter Lists, @<a href="http://twitter.com/Scobleizer" class="aktt_username">Scobleizer</a> is default, or key in username to see their list <a href="http://bit.ly/4sSLQS" rel="nofollow">http://bit.ly/4sSLQS</a> <a href="http://twitter.com/cybercoder/statuses/4991724858" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/steverumsby" class="aktt_username">steverumsby</a> &#8230; puzzled about why the seach &quot;with:public&quot; no longer works try &quot;group:public@a.gwave.com&quot; instead. <a href="http://twitter.com/cybercoder/statuses/4992640657" class="aktt_tweet_time">#</a></li>
<li>between a project I am working on the Twitter Lists / API and Google Wave, its like the floodgates are open <a href="http://twitter.com/cybercoder/statuses/4998403933" class="aktt_tweet_time">#</a></li>
<li>I think the NFL #<a href="http://search.twitter.com/search?q=%23mobile" class="aktt_hashtag">mobile</a> site is a lot better to use than the main site. #<a href="http://search.twitter.com/search?q=%23nfl" class="aktt_hashtag">nfl</a> <a href="http://twitter.com/cybercoder/statuses/5006189281" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/5018972718" class="aktt_tweet_time">#</a></li>
<li>Google Wave &quot;with:public&quot; search working again #googlewave. <a href="http://twitter.com/cybercoder/statuses/5021546776" class="aktt_tweet_time">#</a></li>
<li>My musical taste causes the iPhone Pandora app to freak out sometimes, lol <a href="http://twitter.com/cybercoder/statuses/5024632212" class="aktt_tweet_time">#</a></li>
<li>If #<a href="http://search.twitter.com/search?q=%23Twitter" class="aktt_hashtag">Twitter</a> is a stream, Google Waves is a raging river #<a href="http://search.twitter.com/search?q=%23googlewave" class="aktt_hashtag">googlewave</a> <a href="http://twitter.com/cybercoder/statuses/5026506577" class="aktt_tweet_time">#</a></li>
<li>On Google Wave? Add yourself to The Big Wave Twitter Directory <a href="http://bit.ly/48upxb" rel="nofollow">http://bit.ly/48upxb</a> #<a href="http://search.twitter.com/search?q=%23googlewave" class="aktt_hashtag">googlewave</a> <a href="http://twitter.com/cybercoder/statuses/5044114036" class="aktt_tweet_time">#</a></li>
<li>Last Tweet had wrong link, The Big Wave Twitter Directory <a href="http://bit.ly/1d3XYx" rel="nofollow">http://bit.ly/1d3XYx</a>, thanks @<a href="http://twitter.com/peterhough" class="aktt_username">peterhough</a> <a href="http://twitter.com/cybercoder/statuses/5044821961" class="aktt_tweet_time">#</a></li>
<li>Looking for Twitter Lists to be available at the end of the month, should be an interesting time. <a href="http://twitter.com/cybercoder/statuses/5045361463" class="aktt_tweet_time">#</a></li>
<li>I hope I am not missing the obvious, is there a way to buy a song from Pandora from within the Pandora iPhone app? <a href="http://twitter.com/cybercoder/statuses/5047062523" class="aktt_tweet_time">#</a></li>
<li>Two Keys to online success, Passion and Patience. If you have those, you have a solid foundation to work from. <a href="http://twitter.com/cybercoder/statuses/5047156564" class="aktt_tweet_time">#</a></li>
<li>Mashable&#39;s Guide to Jobs in Social Media &amp; Marketing <a href="http://bit.ly/3lSm2Y" rel="nofollow">http://bit.ly/3lSm2Y</a> <a href="http://twitter.com/cybercoder/statuses/5071945058" class="aktt_tweet_time">#</a></li>
<li>These are really cool, appear to be moving in open space, Mova Globe <a href="http://bit.ly/Hps8D" rel="nofollow">http://bit.ly/Hps8D</a> <a href="http://twitter.com/cybercoder/statuses/5074441019" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/davewiner" class="aktt_username">davewiner</a>  Is Google/Microsoft/Twitter in the news business?  <a href="http://bit.ly/bvE3N" rel="nofollow">http://bit.ly/bvE3N</a> <a href="http://twitter.com/cybercoder/statuses/5079736740" class="aktt_tweet_time">#</a></li>
<li>Back to giving HootSuite a shot, it does seem to be the best Web Client I have seen for Twitter. <a href="http://twitter.com/cybercoder/statuses/5081078457" class="aktt_tweet_time">#</a></li>
<li>RT @waynejohn: How to Market an Offline Event Online &#8211; <a href="http://bit.ly/2GhuuF" rel="nofollow">http://bit.ly/2GhuuF</a> <a href="http://twitter.com/cybercoder/statuses/5096897096" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/5098811401" class="aktt_tweet_time">#</a></li>
<li>CyberCoded &#8211; powered by FeedBurner <a href="http://bit.ly/12hGGX" rel="nofollow">http://bit.ly/12hGGX</a> <a href="http://twitter.com/cybercoder/statuses/5129405318" class="aktt_tweet_time">#</a></li>
<li>Please Retweet and Sign this Petition &#39;Bring The Mobile Slim Band to Hal &amp; Mal&#39;s&#39; &#8211; <a href="http://301.to/atx" rel="nofollow">http://301.to/atx</a> <a href="http://twitter.com/cybercoder/statuses/5130718047" class="aktt_tweet_time">#</a></li>
<li>Bring The Mobile Slim Band to Hal &amp; Mal&#39;s &#8211; Petition Spot <a href="http://bit.ly/48rEA4" rel="nofollow">http://bit.ly/48rEA4</a> <a href="http://twitter.com/cybercoder/statuses/5130793738" class="aktt_tweet_time">#</a></li>
<li>I ama looking for recommendations on a wireless stereo headset to use with an #<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> <a href="http://twitter.com/cybercoder/statuses/5131199499" class="aktt_tweet_time">#</a></li>
<li>CyberCoder  Amazon Astore shopping site <a href="http://bit.ly/32CA1v" rel="nofollow">http://bit.ly/32CA1v</a> <a href="http://twitter.com/cybercoder/statuses/5132001623" class="aktt_tweet_time">#</a></li>
<li>I need a Netbook with wireless service, leaning towards Verizon over ATT <a href="http://twitter.com/cybercoder/statuses/5136316412" class="aktt_tweet_time">#</a></li>
<li>How &#39;bout them boys ! and the Saints keep marching on ! #<a href="http://search.twitter.com/search?q=%23nfl" class="aktt_hashtag">nfl</a> <a href="http://twitter.com/cybercoder/statuses/5162080755" class="aktt_tweet_time">#</a></li>
<li>MLB.com has pitch by pitch live on their mobile site, now that&#39;s cool! <a href="http://twitter.com/cybercoder/statuses/5163332902" class="aktt_tweet_time">#</a></li>
<li>We&#39;re Sorry. Monopoly 2009 cannot be played on mobile browsers. Please go to playatmcd.com on your computer to enjoy the game. <a href="http://twitter.com/cybercoder/statuses/5163797747" class="aktt_tweet_time">#</a></li>
<li>RT @GeoffBeattie: Facebook and Twitter Data Becomes Search Engine Friendly <a href="http://bit.ly/3Kw0Fw" rel="nofollow">http://bit.ly/3Kw0Fw</a> <a href="http://twitter.com/cybercoder/statuses/5163967994" class="aktt_tweet_time">#</a></li>
<li>Off to a quick start for the day with some custom PHP &amp; MySql and  WordPress work waiting. <a href="http://twitter.com/cybercoder/statuses/5172205186" class="aktt_tweet_time">#</a></li>
<li>Good football weekend, Longhorns, Cowboys &amp; Saints WIN while the Giants lose ! <a href="http://twitter.com/cybercoder/statuses/5172326612" class="aktt_tweet_time">#</a></li>
<li>How To Add Twitter To Google Wave <a href="http://bit.ly/ONZpE" rel="nofollow">http://bit.ly/ONZpE</a> <a href="http://twitter.com/cybercoder/statuses/5172497428" class="aktt_tweet_time">#</a></li>
<li>The New, New, New Facebook: Hundreds of Thousands Organize in Protest <a href="http://bit.ly/4BpyK" rel="nofollow">http://bit.ly/4BpyK</a> <a href="http://twitter.com/cybercoder/statuses/5175428829" class="aktt_tweet_time">#</a></li>
<li>5 Twitter stars you&#39;ve never heard of &#8211; CNN.com <a href="http://bit.ly/1vccN8" rel="nofollow">http://bit.ly/1vccN8</a> <a href="http://twitter.com/cybercoder/statuses/5175693409" class="aktt_tweet_time">#</a></li>
<li>Enjoying some BB King on #<a href="http://search.twitter.com/search?q=%23MusicMonday" class="aktt_hashtag">MusicMonday</a> <a href="http://bit.ly/2PWAGt" rel="nofollow">http://bit.ly/2PWAGt</a> <a href="http://twitter.com/cybercoder/statuses/5178875160" class="aktt_tweet_time">#</a></li>
<li>RT @waynejohn: Facebook Share Adds Live Share Counts, Analytics &#8211; <a href="http://bit.ly/2pyMn6" rel="nofollow">http://bit.ly/2pyMn6</a> <a href="http://twitter.com/cybercoder/statuses/5178921420" class="aktt_tweet_time">#</a></li>
<li>Mississippi Twitter list using the new Twitter Lists @cybercoder/mississippi <a href="http://bit.ly/wgiVf" rel="nofollow">http://bit.ly/wgiVf</a> <a href="http://twitter.com/cybercoder/statuses/5179843154" class="aktt_tweet_time">#</a></li>
<li>Grudgingly, young people finally flock to Twitter <a href="http://bit.ly/WOY9y" rel="nofollow">http://bit.ly/WOY9y</a> <a href="http://twitter.com/cybercoder/statuses/5188623220" class="aktt_tweet_time">#</a></li>
<li>The Redskins do not need Joe Gibbs to come back and coach, they need him to buy the TEAM !! <a href="http://twitter.com/cybercoder/statuses/5189511700" class="aktt_tweet_time">#</a></li>
<li>18 Alternative Ways To Use WordPress | Make Money Online <a href="http://bit.ly/1ms6Ca" rel="nofollow">http://bit.ly/1ms6Ca</a> <a href="http://twitter.com/cybercoder/statuses/5199514207" class="aktt_tweet_time">#</a></li>
<li>Opera: State of the Mobile Web, September 2009 <a href="http://bit.ly/GQ1wg" rel="nofollow">http://bit.ly/GQ1wg</a> <a href="http://twitter.com/cybercoder/statuses/5207237795" class="aktt_tweet_time">#</a></li>
<li>NBA Season opens tonight, so I guess it is time to say GO SPURS ! <a href="http://twitter.com/cybercoder/statuses/5211715860" class="aktt_tweet_time">#</a></li>
<li>I like this, Home Security Alarm System with no upfront cost. <a href="http://bit.ly/kGxqd" rel="nofollow">http://bit.ly/kGxqd</a> <a href="http://twitter.com/cybercoder/statuses/5213259197" class="aktt_tweet_time">#</a></li>
<li>More Twitter search data showing in my Google Alerts lately, interesting considering the new Twitter/Google Deal. <a href="http://twitter.com/cybercoder/statuses/5213347141" class="aktt_tweet_time">#</a></li>
<li>Took about 5 minutes for mine to show up, See Your iPhone Drawings on a Times Square Billboard <a href="http://bit.ly/dXXkC" rel="nofollow">http://bit.ly/dXXkC</a> <a href="http://twitter.com/cybercoder/statuses/5234210784" class="aktt_tweet_time">#</a></li>
<li>RT @waynejohn: 15 Free Online Tools for Web Designers on a Budget | Web Design Ledger &#8211; <a href="http://bit.ly/WTRK3" rel="nofollow">http://bit.ly/WTRK3</a> <a href="http://twitter.com/cybercoder/statuses/5237534842" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/mashable" class="aktt_username">mashable</a> Share Your Pandora Tunes on Twitter and Facebook <a href="http://bit.ly/J5Vgv" rel="nofollow">http://bit.ly/J5Vgv</a> <a href="http://twitter.com/cybercoder/statuses/5238191751" class="aktt_tweet_time">#</a></li>
<li>RT @jacksonmetro: Forgot to include the link with that last post, Clinton Chamber of Commerce <a href="http://bit.ly/4qqXZe" rel="nofollow">http://bit.ly/4qqXZe</a> <a href="http://twitter.com/cybercoder/statuses/5238502672" class="aktt_tweet_time">#</a></li>
<li>I got my coffee and I got my tunes, now I must become totally immersed in the work <a href="http://twitter.com/cybercoder/statuses/5260104060" class="aktt_tweet_time">#</a></li>
<li>RT @mashable: Happy 40th Birthday, Internet! <a href="http://bit.ly/2hqlnJ" rel="nofollow">http://bit.ly/2hqlnJ</a> <a href="http://twitter.com/cybercoder/statuses/5261059058" class="aktt_tweet_time">#</a></li>
<li>Is the new ranking metric on Twitter going to be how many lists you are &quot;listed&quot; on? <a href="http://twitter.com/cybercoder/statuses/5271295474" class="aktt_tweet_time">#</a></li>
<li>Probably best viewpoint on it -&gt; RT @WendyWillis1: @<a href="http://twitter.com/cybercoder" class="aktt_username">cybercoder</a> Ranking Shmanking. Lol <a href="http://twitter.com/cybercoder/statuses/5271934078" class="aktt_tweet_time">#</a></li>
<li>Finished setting up WordPress site for client, now back to PHP/MySQL work for the day. <a href="http://twitter.com/cybercoder/statuses/5288524214" class="aktt_tweet_time">#</a></li>
<li>Found texting very cumbersome without qwerty after using an iPhone for last year. <a href="http://twitter.com/cybercoder/statuses/5289010893" class="aktt_tweet_time">#</a></li>
<li>Gonna try to wrap up some Twitter API work with new Twitter Lists this weekend, hopefully Listed has now be included. <a href="http://twitter.com/cybercoder/statuses/5289478539" class="aktt_tweet_time">#</a></li>
<li>Google&#39;s Eric Schmidt on What the Web Will Look Like in 5 Years <a href="http://bit.ly/3EDUnL" rel="nofollow">http://bit.ly/3EDUnL</a> <a href="http://twitter.com/cybercoder/statuses/5290800844" class="aktt_tweet_time">#</a></li>
<li>Full Video link of Eric Schmidt interview at Gartner Symposium/ITxpo Orlando 2009 <a href="http://bit.ly/2NOsSp" rel="nofollow">http://bit.ly/2NOsSp</a> <a href="http://twitter.com/cybercoder/statuses/5290959128" class="aktt_tweet_time">#</a></li>
<li>Wife got me an HP Mini with Verizon service as an early birthday present, so far very impressed! <a href="http://twitter.com/cybercoder/statuses/5299282627" class="aktt_tweet_time">#</a></li>
<li>Excellent customer service at the Verizon store in Flowwod MS, will be going back to see new Android phone next week <a href="http://twitter.com/cybercoder/statuses/5303091578" class="aktt_tweet_time">#</a></li>
<li>ICANN Approves Non-Latin Domain Name Characters &#8211; Reviews by PC Magazine <a href="http://bit.ly/3A9lce" rel="nofollow">http://bit.ly/3A9lce</a> <a href="http://twitter.com/cybercoder/statuses/5311325538" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/5312036055" class="aktt_tweet_time">#</a></li>
<li>Googd Morning! This is my first morning working exclusively from a HP Mini Netbook, so far working out great and easy ! <a href="http://twitter.com/cybercoder/statuses/5312159413" class="aktt_tweet_time">#</a></li>
<li>How to Write a Blog Post That’s Stickier than Velcro <a href="http://bit.ly/3RTHxy" rel="nofollow">http://bit.ly/3RTHxy</a> <a href="http://twitter.com/cybercoder/statuses/5322361618" class="aktt_tweet_time">#</a></li>
<li>Trick or Tweet | Music Ramble <a href="http://bit.ly/1kdEjL" rel="nofollow">http://bit.ly/1kdEjL</a> <a href="http://twitter.com/cybercoder/statuses/5323154809" class="aktt_tweet_time">#</a></li>
<li>Took my @<a href="http://twitter.com/Verizon" class="aktt_username">Verizon</a> Notebook for a ride to test the 3G connectivity away from my Wifi, worked great, very happy so far ! <a href="http://twitter.com/cybercoder/statuses/5323435317" class="aktt_tweet_time">#</a></li>
<li>oops, that was a @<a href="http://twitter.com/Verizon" class="aktt_username">Verizon</a> NETBOOK, not Notebook in the last post, HP Mini 311 <a href="http://twitter.com/cybercoder/statuses/5323711188" class="aktt_tweet_time">#</a></li>
<li>Honda could link to any of their sites, yet a commercial links to an interesting Facebook page <a href="http://bit.ly/32nXtX" rel="nofollow">http://bit.ly/32nXtX</a> <a href="http://twitter.com/cybercoder/statuses/5326361839" class="aktt_tweet_time">#</a></li>
<li>iPhone headset with microphone works great on the HP 311 Netbook #<a href="http://search.twitter.com/search?q=%23iphone" class="aktt_hashtag">iphone</a> #netbook <a href="http://twitter.com/cybercoder/statuses/5328148613" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-11-01 <a href="http://bit.ly/392AVa" rel="nofollow">http://bit.ly/392AVa</a> <a href="http://bit.ly/1jFDJC" rel="nofollow">http://bit.ly/1jFDJC</a> <a href="http://twitter.com/cybercoder/statuses/5333036563" class="aktt_tweet_time">#</a></li>
<li><a href="http://bit.ly/3dlWAs" rel="nofollow">http://bit.ly/3dlWAs</a> <a href="http://twitter.com/cybercoder/statuses/5333036765" class="aktt_tweet_time">#</a></li>
<li>Amazed with this HP Netbook. I have to admit that Windows 7 has something to do with home much I like the system,&#8230; <a href="http://bit.ly/1MWu3Q" rel="nofollow">http://bit.ly/1MWu3Q</a> <a href="http://twitter.com/cybercoder/statuses/5336909245" class="aktt_tweet_time">#</a></li>
<li>I get asked a lot what API means, here is a good video that does a great job explaining what an API is&#8230;. <a href="http://bit.ly/1tF60z" rel="nofollow">http://bit.ly/1tF60z</a> <a href="http://twitter.com/cybercoder/statuses/5342954924" class="aktt_tweet_time">#</a></li>
<li>Thanks @Nascar, you have now made the Talladega race totally boring #<a href="http://search.twitter.com/search?q=%23nascar" class="aktt_hashtag">nascar</a> <a href="http://twitter.com/cybercoder/statuses/5344436469" class="aktt_tweet_time">#</a></li>
<li>Facebook | CyberCoder <a href="http://bit.ly/1URY55" rel="nofollow">http://bit.ly/1URY55</a> <a href="http://twitter.com/cybercoder/statuses/5345377145" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/mashable" class="aktt_username">mashable</a> iPhone and Windows 7 Don’t Play Nice, No Fix in Sight <a href="http://bit.ly/6wtjN" rel="nofollow">http://bit.ly/6wtjN</a> <a href="http://twitter.com/cybercoder/statuses/5361860226" class="aktt_tweet_time">#</a></li>
<li>Seems my right brain has taken over this morning, and of course its when I need the the left brain the most! <a href="http://twitter.com/cybercoder/statuses/5365241827" class="aktt_tweet_time">#</a></li>
<li>According to the DM&#39;s, a lot of people made $426.23 online today  with (link removed), just more SPAM <a href="http://twitter.com/cybercoder/statuses/5365425127" class="aktt_tweet_time">#</a></li>
<li>Spending some time with Facebook FBML <a href="http://bit.ly/1URY55" rel="nofollow">http://bit.ly/1URY55</a> <a href="http://twitter.com/cybercoder/statuses/5366461131" class="aktt_tweet_time">#</a></li>
<li>Techmeme vs. Twitter lists? (UPDATE: vs. TechCrunch list) <a href="http://bit.ly/Sa8zC" rel="nofollow">http://bit.ly/Sa8zC</a> <a href="http://twitter.com/cybercoder/statuses/5373797814" class="aktt_tweet_time">#</a></li>
<li>Added my contact form to Facebook custom page, <a href="http://bit.ly/1URY55" rel="nofollow">http://bit.ly/1URY55</a> <a href="http://twitter.com/cybercoder/statuses/5374421961" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/mashable" class="aktt_username">mashable</a> Google Chrome Gets Bookmark Syncing <a href="http://bit.ly/2On2Up" rel="nofollow">http://bit.ly/2On2Up</a> <a href="http://twitter.com/cybercoder/statuses/5380343486" class="aktt_tweet_time">#</a></li>
<li>Spammy scams surfacing on Twitter, Facebook <a href="http://bit.ly/1KBPbU" rel="nofollow">http://bit.ly/1KBPbU</a> <a href="http://twitter.com/cybercoder/statuses/5380707441" class="aktt_tweet_time">#</a></li>
<li>Thanks and Welcome to all the new Fans ! I really appreciate your support. <a href="http://bit.ly/RZPpy" rel="nofollow">http://bit.ly/RZPpy</a> <a href="http://twitter.com/cybercoder/statuses/5380764291" class="aktt_tweet_time">#</a></li>
<li>Twitter Trends Tracker | CyberCoded <a href="http://bit.ly/4ISzn" rel="nofollow">http://bit.ly/4ISzn</a> <a href="http://twitter.com/cybercoder/statuses/5386546558" class="aktt_tweet_time">#</a></li>
<li>New List Widget for your website from Twitter <a href="http://bit.ly/nDeIs" rel="nofollow">http://bit.ly/nDeIs</a> <a href="http://twitter.com/cybercoder/statuses/5390457757" class="aktt_tweet_time">#</a></li>
<li>If you have a business take a lead from some of the larger corporations who are now incorporating all the Social&#8230; <a href="http://bit.ly/2FpQNY" rel="nofollow">http://bit.ly/2FpQNY</a> <a href="http://twitter.com/cybercoder/statuses/5394543536" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/5401455193" class="aktt_tweet_time">#</a></li>
<li>RT @mashable: The Entire Beatles Catalog in an Apple. No, Not That Apple. &#8211; <a href="http://bit.ly/1LHJpk" rel="nofollow">http://bit.ly/1LHJpk</a> <a href="http://twitter.com/cybercoder/statuses/5419590036" class="aktt_tweet_time">#</a></li>
<li>I decided to give Verizon Wireless a shot. <a href="http://bit.ly/bNeA0" rel="nofollow">http://bit.ly/bNeA0</a> <a href="http://twitter.com/cybercoder/statuses/5421173961" class="aktt_tweet_time">#</a></li>
<li>Vanity URL for my Facebook page is now FaceBook.com/CyberCoded <a href="http://bit.ly/2uspQc" rel="nofollow">http://bit.ly/2uspQc</a> <a href="http://twitter.com/cybercoder/statuses/5423136276" class="aktt_tweet_time">#</a></li>
<li>Vanity URL for my Facebook page is now FaceBook.com/CyberCoded <a href="http://bit.ly/1hZPoI" rel="nofollow">http://bit.ly/1hZPoI</a> <a href="http://twitter.com/cybercoder/statuses/5423169287" class="aktt_tweet_time">#</a></li>
<li>Having a little fun reworking my Facebook Web Sites, using only tools available on my Netbook <a href="http://bit.ly/3fKAIV" rel="nofollow">http://bit.ly/3fKAIV</a> <a href="http://twitter.com/cybercoder/statuses/5425404848" class="aktt_tweet_time">#</a></li>
<li>10 Ways You Can Use Twitter Lists <a href="http://bit.ly/chth1" rel="nofollow">http://bit.ly/chth1</a> <a href="http://twitter.com/cybercoder/statuses/5430694373" class="aktt_tweet_time">#</a></li>
<li>Seeing Spam DM&#39;s from accounts I do not believe know they are sending them, and I am responding to let you know. <a href="http://twitter.com/cybercoder/statuses/5432065113" class="aktt_tweet_time">#</a></li>
<li>Google Dashboard: Now You Know What Google Knows About You <a href="http://bit.ly/3MH6bC" rel="nofollow">http://bit.ly/3MH6bC</a> <a href="http://twitter.com/cybercoder/statuses/5449093898" class="aktt_tweet_time">#</a></li>
<li>How to Be Appealing on Twitter «  Bit Rebels <a href="http://bit.ly/3tuVWn" rel="nofollow">http://bit.ly/3tuVWn</a> <a href="http://twitter.com/cybercoder/statuses/5451327276" class="aktt_tweet_time">#</a></li>
<li>Oh Great, now every time I hear 3 Doors Down Let Me Be Myself I see a Geico Caveman <a href="http://bit.ly/2lIPbt" rel="nofollow">http://bit.ly/2lIPbt</a> <a href="http://twitter.com/cybercoder/statuses/5452649632" class="aktt_tweet_time">#</a></li>
<li>Continuing to work and build my Facebook Fan Page, stop by and become a fan ! <a href="http://bit.ly/2uspQc" rel="nofollow">http://bit.ly/2uspQc</a> <a href="http://twitter.com/cybercoder/statuses/5453572015" class="aktt_tweet_time">#</a></li>
<li>Twitter Guide Book – How To, Tips and Instructions by Mashable <a href="http://bit.ly/2XjNd2" rel="nofollow">http://bit.ly/2XjNd2</a> <a href="http://bit.ly/3GwyJ" rel="nofollow">http://bit.ly/3GwyJ</a> <a href="http://twitter.com/cybercoder/statuses/5455125783" class="aktt_tweet_time">#</a></li>
<li>RT @ChristineReaves: Become a fan on my Facebook Fan page. For updates on new listings, prices &amp; status changes. <a href="http://bit.ly/3x5rW7" rel="nofollow">http://bit.ly/3x5rW7</a> <a href="http://twitter.com/cybercoder/statuses/5455177741" class="aktt_tweet_time">#</a></li>
<li>Testing new tweet notifications <a href="http://bit.ly/19lLuL" rel="nofollow">http://bit.ly/19lLuL</a> <a href="http://twitter.com/cybercoder/statuses/5465699679" class="aktt_tweet_time">#</a></li>
<li>Twitter list of local media reporting on the Fort Hood shooting. <a href="http://bit.ly/QZH8j" rel="nofollow">http://bit.ly/QZH8j</a> <a href="http://twitter.com/cybercoder/statuses/5466637857" class="aktt_tweet_time">#</a></li>
<li>Twitter Retweet functionalit is finally rolling out. <a href="http://fb.me/3hCyZK8" rel="nofollow">http://fb.me/3hCyZK8</a> <a href="http://twitter.com/cybercoder/statuses/5467202276" class="aktt_tweet_time">#</a></li>
<li>Verizon&#39;s Droid Launch: Your Complete Guide &#8211; PC World <a href="http://bit.ly/aaQca" rel="nofollow">http://bit.ly/aaQca</a> <a href="http://twitter.com/cybercoder/statuses/5476860159" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> got easier, my cybercoder/FollowFriday List <a href="http://bit.ly/y4Jgk" rel="nofollow">http://bit.ly/y4Jgk</a> <a href="http://twitter.com/cybercoder/statuses/5477886841" class="aktt_tweet_time">#</a></li>
<li>As Facebook Ages, Gen Y Turns to Twitter <a href="http://bit.ly/2FKsra" rel="nofollow">http://bit.ly/2FKsra</a> <a href="http://twitter.com/cybercoder/statuses/5478199042" class="aktt_tweet_time">#</a></li>
<li>More report cards go online <a href="http://bit.ly/1jWxJ9" rel="nofollow">http://bit.ly/1jWxJ9</a> <a href="http://twitter.com/cybercoder/statuses/5478381512" class="aktt_tweet_time">#</a></li>
<li>Windows 7 is performing better than I expected on my HP 311 Netbook. Very quick loading with some really nice&#8230; <a href="http://fb.me/2ZafPaq" rel="nofollow">http://fb.me/2ZafPaq</a> <a href="http://twitter.com/cybercoder/statuses/5483513884" class="aktt_tweet_time">#</a></li>
<li>If you follow me here, come join me on Facebook ! <a href="http://bit.ly/2uspQc" rel="nofollow">http://bit.ly/2uspQc</a> <a href="http://twitter.com/cybercoder/statuses/5484733178" class="aktt_tweet_time">#</a></li>
<li>Twitter List of Orlando News covering #<a href="http://search.twitter.com/search?q=%23orlandoshooting" class="aktt_hashtag">orlandoshooting</a>   <a href="http://bit.ly/1e1Hnf" rel="nofollow">http://bit.ly/1e1Hnf</a> <a href="http://twitter.com/cybercoder/statuses/5485687613" class="aktt_tweet_time">#</a></li>
<li>Spent an hour tracking down one quotation mark appended to some code causing an ugly mess! <a href="http://twitter.com/cybercoder/statuses/5488147291" class="aktt_tweet_time">#</a></li>
<li>Took the night off, now it&#39;s time to get back to work. <a href="http://twitter.com/cybercoder/statuses/5506018053" class="aktt_tweet_time">#</a></li>
<li>Picked up another Antique Stereo Console yesterday. These old tube systems have such a&#8230; <a href="http://bit.ly/1aBxUV" rel="nofollow">http://bit.ly/1aBxUV</a> <a href="http://twitter.com/cybercoder/statuses/5507296060" class="aktt_tweet_time">#</a></li>
<li>Doing a little WordPress work for a client. <a href="http://twitter.com/cybercoder/statuses/5508152070" class="aktt_tweet_time">#</a></li>
<li>With all the Droid hype, really surprised it is not a Trending Topic? Was it a let down? <a href="http://twitter.com/cybercoder/statuses/5531096868" class="aktt_tweet_time">#</a></li>
<li>iPhone 3GS vs Motorola Droid: DogFight, Pt 1 &#8211; PhoneDog Cell Phone Videos  <a href="http://bit.ly/1RKqKE" rel="nofollow">http://bit.ly/1RKqKE</a> <a href="http://twitter.com/cybercoder/statuses/5531485249" class="aktt_tweet_time">#</a></li>
<li>iPhone 3GS vs Motorola Droid: DogFight, Pt 2 &#8211; PhoneDog Cell Phone Videos  <a href="http://bit.ly/1VOreV" rel="nofollow">http://bit.ly/1VOreV</a> <a href="http://twitter.com/cybercoder/statuses/5531511238" class="aktt_tweet_time">#</a></li>
<li>Good article on WordPress Blockquote, Pullquote and Code <a href="http://bit.ly/4EAP1g" rel="nofollow">http://bit.ly/4EAP1g</a> <a href="http://twitter.com/cybercoder/statuses/5533911727" class="aktt_tweet_time">#</a></li>
<li>I have spent the first week working exclusively from an HP Netbook. Not sure I will ever need to go back to a&#8230; <a href="http://fb.me/33nD9yC" rel="nofollow">http://fb.me/33nD9yC</a> <a href="http://twitter.com/cybercoder/statuses/5534285056" class="aktt_tweet_time">#</a></li>
<li>Google Wave has some real potential, but between being too slow and not being able to remove yourself from a Wave&#8230; <a href="http://fb.me/3roZPNf" rel="nofollow">http://fb.me/3roZPNf</a> <a href="http://twitter.com/cybercoder/statuses/5534885255" class="aktt_tweet_time">#</a></li>
<li>Good info from Chris Brogan, First Look- Droid Phone by Motorola <a href="http://bit.ly/1Nez4i" rel="nofollow">http://bit.ly/1Nez4i</a> <a href="http://twitter.com/cybercoder/statuses/5535147410" class="aktt_tweet_time">#</a></li>
<li>I have 5 more invites for Google Wave going to the first 5 Facebook fans to leave a comment here. <a href="http://fb.me/2Zr9CJF" rel="nofollow">http://fb.me/2Zr9CJF</a> <a href="http://twitter.com/cybercoder/statuses/5535415043" class="aktt_tweet_time">#</a></li>
<li>Working with a new system to build a bigger better list, Text List to 6018965289 <a href="http://twitter.com/cybercoder/statuses/5543101171" class="aktt_tweet_time">#</a></li>
<li>I never have like Daylight Savings Time, dark at 5pm just seems wrong <a href="http://twitter.com/cybercoder/statuses/5544164029" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/5545072804" class="aktt_tweet_time">#</a></li>
<li>Hopefully will be able to try out the Nikon D3000 tonight, looks like a great entry level DSLR <a href="http://twitter.com/cybercoder/statuses/5547196290" class="aktt_tweet_time">#</a></li>
<li>I really like this, thinking outside the box with data and art, Twitter List Profile Clouds. <a href="http://bit.ly/4uPf4P" rel="nofollow">http://bit.ly/4uPf4P</a> <a href="http://twitter.com/cybercoder/statuses/5556658874" class="aktt_tweet_time">#</a></li>
<li>I have been doing research into Text messaging auto response keywords  Marketing, I like the restaurants that use it. <a href="http://twitter.com/cybercoder/statuses/5557031030" class="aktt_tweet_time">#</a></li>
<li>Good article, A Small-Business Guide to Text-Message Marketing <a href="http://bit.ly/iGvXX" rel="nofollow">http://bit.ly/iGvXX</a> <a href="http://twitter.com/cybercoder/statuses/5557641642" class="aktt_tweet_time">#</a></li>
<li>How Not To Twitter: The Hall Of Shame | Folk Media <a href="http://bit.ly/2180DV" rel="nofollow">http://bit.ly/2180DV</a> <a href="http://twitter.com/cybercoder/statuses/5559145260" class="aktt_tweet_time">#</a></li>
<li>My Twitter Tools | CyberCoded <a href="http://bit.ly/1lem2t" rel="nofollow">http://bit.ly/1lem2t</a> <a href="http://twitter.com/cybercoder/statuses/5562236965" class="aktt_tweet_time">#</a></li>
<li>Answers to DM&#39;s, no I am NOT in that Video, and I will NOT take that quiz, back to our regularly scheduled Tweets <a href="http://twitter.com/cybercoder/statuses/5563135274" class="aktt_tweet_time">#</a></li>
<li>If you get on Google Wave, and there is no one to Wave to, try the Search  with:public, be prepared for the Tidal Wave <a href="http://twitter.com/cybercoder/statuses/5563393197" class="aktt_tweet_time">#</a></li>
<li>Hungry? In Jackson Area? good list of local restaurants  @jacksonmetro/restaurants  <a href="http://bit.ly/TbOQP" rel="nofollow">http://bit.ly/TbOQP</a> <a href="http://twitter.com/cybercoder/statuses/5564395796" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/TechCrunch" class="aktt_username">TechCrunch</a> Google Acquires AdMob For $750 Million <a href="http://bit.ly/RfTvU" rel="nofollow">http://bit.ly/RfTvU</a> <a href="http://twitter.com/cybercoder/statuses/5564614702" class="aktt_tweet_time">#</a></li>
<li>Had a little time to play with a the new Nikon D3000. First time to use a DSLR, and I loved it. Now I want one! <a href="http://fb.me/3dEcHZe" rel="nofollow">http://fb.me/3dEcHZe</a> <a href="http://twitter.com/cybercoder/statuses/5564783503" class="aktt_tweet_time">#</a></li>
<li>Google&#39;s gift: Free wireless Internet in 47 airports <a href="http://bit.ly/2hXUrz" rel="nofollow">http://bit.ly/2hXUrz</a> <a href="http://twitter.com/cybercoder/statuses/5588152737" class="aktt_tweet_time">#</a></li>
<li>If you follow me here, come join me on Facebook ! <a href="http://bit.ly/2uspQc" rel="nofollow">http://bit.ly/2uspQc</a> <a href="http://twitter.com/cybercoder/statuses/5588780140" class="aktt_tweet_time">#</a></li>
<li>Twitter and LinkedIn to share status updates <a href="http://bit.ly/2NFoDC" rel="nofollow">http://bit.ly/2NFoDC</a> <a href="http://twitter.com/cybercoder/statuses/5589687347" class="aktt_tweet_time">#</a></li>
<li>I have been very happy so far with the Verizon Wireless Netbook, their website is another story. Amazing how high&#8230; <a href="http://fb.me/3CUGjZ7" rel="nofollow">http://fb.me/3CUGjZ7</a> <a href="http://twitter.com/cybercoder/statuses/5592098092" class="aktt_tweet_time">#</a></li>
<li>I got a kick out of this, follow the link and compare the Title to the Permalink <a href="http://bit.ly/2gjzsw" rel="nofollow">http://bit.ly/2gjzsw</a> <a href="http://twitter.com/cybercoder/statuses/5603531265" class="aktt_tweet_time">#</a></li>
<li>Evan Williams | evhead: Why Retweet works the way it does <a href="http://bit.ly/31v7dl" rel="nofollow">http://bit.ly/31v7dl</a> <a href="http://twitter.com/cybercoder/statuses/5618926239" class="aktt_tweet_time">#</a></li>
<li>Saluting all Vets on this Veterans Day for all they do and have done to help keep us a Free Country! <a href="http://fb.me/39vyM57" rel="nofollow">http://fb.me/39vyM57</a> <a href="http://twitter.com/cybercoder/statuses/5619582990" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/mashable" class="aktt_username">mashable</a> GO: Google Launches Its Own Programming Language <a href="http://bit.ly/1Sg3gz" rel="nofollow">http://bit.ly/1Sg3gz</a> <a href="http://twitter.com/cybercoder/statuses/5619711580" class="aktt_tweet_time">#</a></li>
<li>I have a client looking for SEC Championship tickets? Any help would be greatly appreciated. <a href="http://twitter.com/cybercoder/statuses/5620686107" class="aktt_tweet_time">#</a></li>
<li>Just got an email from LinkedIn telling me that the Twitter integration is ready to setup. <a href="http://twitter.com/cybercoder/statuses/5623927312" class="aktt_tweet_time">#</a></li>
<li>The Difference: SMS versus Twitter « The Lunch Pail <a href="http://bit.ly/1Vpvak" rel="nofollow">http://bit.ly/1Vpvak</a> <a href="http://twitter.com/cybercoder/statuses/5625025881" class="aktt_tweet_time">#</a></li>
<li>I think the wife is gonna take me to @<a href="http://twitter.com/eatatKittrells" class="aktt_username">eatatKittrells</a> for my birthday!! Now there is something to look forward to! <a href="http://twitter.com/cybercoder/statuses/5629703686" class="aktt_tweet_time">#</a></li>
<li>5pm, fresh pot of coffee, gearing up for my second wind of programming for the day <a href="http://twitter.com/cybercoder/statuses/5632995443" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/mashable" class="aktt_username">mashable</a> Twitter Retweets Temporarily Disabled <a href="http://bit.ly/21PGS1" rel="nofollow">http://bit.ly/21PGS1</a> <a href="http://twitter.com/cybercoder/statuses/5633709469" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/jacksonmetro" class="aktt_username">jacksonmetro</a> &#8230;Teach your employees to treat customers like their livelihood depends on it. Interact/pay attention. <a href="http://twitter.com/cybercoder/statuses/5649542458" class="aktt_tweet_time">#</a></li>
<li>Here we go, seeing an increase in Cyber Monday deals in the inbox and all over the Social Networks. What was once a&#8230; <a href="http://fb.me/31U8UDO" rel="nofollow">http://fb.me/31U8UDO</a> <a href="http://twitter.com/cybercoder/statuses/5652896769" class="aktt_tweet_time">#</a></li>
<li>Is Facebook the future of micropayments? &#8211; CNN.com <a href="http://bit.ly/30TrVU" rel="nofollow">http://bit.ly/30TrVU</a> <a href="http://twitter.com/cybercoder/statuses/5654574328" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/anthony_wilson" class="aktt_username">anthony_wilson</a> EXPLAINED: A 3 minute introduction to the basics of cloud computing: <a href="http://bit.ly/2bZlaI" rel="nofollow">http://bit.ly/2bZlaI</a> <a href="http://twitter.com/cybercoder/statuses/5655301285" class="aktt_tweet_time">#</a></li>
<li>Tip, successful people do not try to do it all themselves, work with others and let them do what they do best <a href="http://twitter.com/cybercoder/statuses/5680915834" class="aktt_tweet_time">#</a></li>
<li>A New Reason Why Twitter Is Cool | Andrew James Inc <a href="http://bit.ly/COAQm" rel="nofollow">http://bit.ly/COAQm</a> <a href="http://twitter.com/cybercoder/statuses/5681372853" class="aktt_tweet_time">#</a></li>
<li>My #<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> List Updated 11/13/09 @cybercoder/FollowFriday <a href="http://bit.ly/y4Jgk" rel="nofollow">http://bit.ly/y4Jgk</a> <a href="http://twitter.com/cybercoder/statuses/5683250574" class="aktt_tweet_time">#</a></li>
<li>I bought theTargus Chill Mat and really like it, surprised at how quiet it is   <a href="http://bit.ly/uoWSu" rel="nofollow">http://bit.ly/uoWSu</a> <a href="http://twitter.com/cybercoder/statuses/5683881723" class="aktt_tweet_time">#</a></li>
<li>The @<a href="http://twitter.com/NFL" class="aktt_username">NFL</a> mobile site is really good, except for the Standings page, impossible to see the whole league easily. <a href="http://twitter.com/cybercoder/statuses/5684376779" class="aktt_tweet_time">#</a></li>
<li>Just learned a new term, SAHM, I guess that makes me a WAHG! <a href="http://twitter.com/cybercoder/statuses/5685487494" class="aktt_tweet_time">#</a></li>
<li>Charged Netbook to 100%, unplugged power, plugged in Targus Chill Mat, let&#39;s see how long I can work? <a href="http://twitter.com/cybercoder/statuses/5686759446" class="aktt_tweet_time">#</a></li>
<li>also using a new HP USB Optical Wireless Mouse with Micro Receiver on this Netbook test <a href="http://twitter.com/cybercoder/statuses/5686850962" class="aktt_tweet_time">#</a></li>
<li>Netbook power test going well, HP 311, Targus Chill Mat, USB mouse, almost 3 hrs, 33% power remaining, temp is cool <a href="http://twitter.com/cybercoder/statuses/5690941513" class="aktt_tweet_time">#</a></li>
<li>Wifi Breathalyzer that Tweets the results has more potential that a Weight Scale that Tweets <a href="http://twitter.com/cybercoder/statuses/5693070194" class="aktt_tweet_time">#</a></li>
<li>Another fantastic meal @eatatkittrells, worth the drive every time ! <a href="http://twitter.com/cybercoder/statuses/5697401748" class="aktt_tweet_time">#</a></li>
<li>Nothing like being wide awake after 3 hours of sleep, guess that means I should make coffee and start working again <a href="http://twitter.com/cybercoder/statuses/5705863002" class="aktt_tweet_time">#</a></li>
<li>Classic Rock: Music for the Ages | Music Ramble <a href="http://bit.ly/2I9183" rel="nofollow">http://bit.ly/2I9183</a> <a href="http://twitter.com/cybercoder/statuses/5710358892" class="aktt_tweet_time">#</a></li>
<li>Idea: TOP lane on the highway, Talking On Phone, all drivers on phone use that lane only, let em wreck each other <a href="http://twitter.com/cybercoder/statuses/5724842918" class="aktt_tweet_time">#</a></li>
<li>I took the whole day off !! Nice day, went to Church, walked 2 miles with the wife, watched Nascar and Football <a href="http://twitter.com/cybercoder/statuses/5753340627" class="aktt_tweet_time">#</a></li>
<li>Microsoft’s Loss, Google’s Gain. Don Dodge Gets A New Job  <a href="http://bit.ly/UyFNY" rel="nofollow">http://bit.ly/UyFNY</a> <a href="http://twitter.com/cybercoder/statuses/5765247740" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/5765290445" class="aktt_tweet_time">#</a></li>
<li>That day off yesterday seems like a long time ago, lol&#8230; <a href="http://twitter.com/cybercoder/statuses/5767504467" class="aktt_tweet_time">#</a></li>
<li>Twitter Definitely Ditching &quot;Suggested Users List&quot; <a href="http://bit.ly/149tA8" rel="nofollow">http://bit.ly/149tA8</a> <a href="http://twitter.com/cybercoder/statuses/5767626653" class="aktt_tweet_time">#</a></li>
<li>Social Media is an art form, which means there is not just one right way, it is subjective to your goals. <a href="http://twitter.com/cybercoder/statuses/5794349422" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/resultsrev" class="aktt_username">resultsrev</a> Anyone know of a WordPress savvy graphic artist that can creatively customize themes to look amazing? Jackson, MS pref&#8230; <a href="http://twitter.com/cybercoder/statuses/5795058777" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/rww" class="aktt_username">rww</a> Twitter.com Is Still the Most Popular Twitter Client &#8211; TweetDeck a Distant Second <a href="http://bit.ly/48MGLz" rel="nofollow">http://bit.ly/48MGLz</a> <a href="http://twitter.com/cybercoder/statuses/5795918259" class="aktt_tweet_time">#</a></li>
<li>RT @mashable: STUDY: Most Fortune 100 Companies Don&#39;t Get Twitter &#8211; <a href="http://bit.ly/2i6imB" rel="nofollow">http://bit.ly/2i6imB</a> <a href="http://twitter.com/cybercoder/statuses/5796757005" class="aktt_tweet_time">#</a></li>
<li>Congrats Wayne ! Feels good I know. RT @waynejohn: Milestone!  First $100+ day on eBay yesterday, woo hoo! Go! Go! Go! <a href="http://twitter.com/cybercoder/statuses/5801909202" class="aktt_tweet_time">#</a></li>
<li>The new RT button is not showing on the Lists page? <a href="http://twitter.com/cybercoder/statuses/5806630703" class="aktt_tweet_time">#</a></li>
<li>Great little utility for Netbook/Laptop with a Touchpad, freezes pad while typing. <a href="http://bit.ly/4h0e9m" rel="nofollow">http://bit.ly/4h0e9m</a>, <a href="http://twitter.com/cybercoder/statuses/5812694583" class="aktt_tweet_time">#</a></li>
<li>WordPress has gotten so easy to manage it is easy to get complacent. Backup on a regular basis,! <a href="http://twitter.com/cybercoder/statuses/5826121943" class="aktt_tweet_time">#</a></li>
<li>Ok, who set the standard for how long a headphone cord is? Can we get this increased a couple inches? <a href="http://twitter.com/cybercoder/statuses/5828425569" class="aktt_tweet_time">#</a></li>
<li>Need a bounce button for DM, click and send unwanted DM back to user, if user has too many bounces, they are bounced <a href="http://twitter.com/cybercoder/statuses/5833878259" class="aktt_tweet_time">#</a></li>
<li>Great article by Guy Kawasaki, love the &quot;ninety-day wonder” &#8211; Twitter Cluelessness : <a href="http://bit.ly/22ZQo1" rel="nofollow">http://bit.ly/22ZQo1</a> <a href="http://twitter.com/cybercoder/statuses/5835773618" class="aktt_tweet_time">#</a></li>
<li>New Twitter List Widget for your website or social network <a href="http://bit.ly/nDeIs" rel="nofollow">http://bit.ly/nDeIs</a> <a href="http://twitter.com/cybercoder/statuses/5856399478" class="aktt_tweet_time">#</a></li>
<li>Yahoo jumps on Twitter bandwagon to improve search <a href="http://bit.ly/35jj8w" rel="nofollow">http://bit.ly/35jj8w</a> <a href="http://twitter.com/cybercoder/statuses/5876633723" class="aktt_tweet_time">#</a></li>
<li>I love using @<a href="http://twitter.com/NameCheap" class="aktt_username">NameCheap</a> for Domain Registrations, nice clean, quick, interface. <a href="http://bit.ly/1aj7ZL" rel="nofollow">http://bit.ly/1aj7ZL</a> <a href="http://twitter.com/cybercoder/statuses/5890299795" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @EatatKittrells, the food is so good they make me want to move to Lexington Mississippi ! <a href="http://twitter.com/cybercoder/statuses/5891400361" class="aktt_tweet_time">#</a></li>
<li>More and more work requested with Twitter API and Facebook FBML, pretty obvious where small business is moving <a href="http://twitter.com/cybercoder/statuses/5918509241" class="aktt_tweet_time">#</a></li>
<li>Spent some time with Twitter API and new Lists functions, I would expect to see lots of 3rd party work with these <a href="http://twitter.com/cybercoder/statuses/5927711738" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on the Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/5946651601" class="aktt_tweet_time">#</a></li>
<li>Google finally closing down the GrandCentral website as of December 31, 2009. <a href="http://bit.ly/5ZiD8c" rel="nofollow">http://bit.ly/5ZiD8c</a> <a href="http://twitter.com/cybercoder/statuses/5976179980" class="aktt_tweet_time">#</a></li>
<li>Biggest mistake businesses make with Social Media/Networking is forgetting the Social aspect, which is 2 way interaction. <a href="http://twitter.com/cybercoder/statuses/5981102491" class="aktt_tweet_time">#</a></li>
<li>If everybody on Twitter says they dislike Auto DM&#39;s, why do so many people send them? Something does not add up. <a href="http://twitter.com/cybercoder/statuses/5989054152" class="aktt_tweet_time">#</a></li>
<li>I try to give everyone the benefit of the doubt, but @<a href="http://twitter.com/BestBuy" class="aktt_username">BestBuy</a> probably just lost my business, not that they care <a href="http://twitter.com/cybercoder/statuses/5992627524" class="aktt_tweet_time">#</a></li>
<li>Highly Recommend Dynamic Drive (@ddrivegeorge) &#8211; DHTML &amp; JavaScript code library <a href="http://bit.ly/4xorG8" rel="nofollow">http://bit.ly/4xorG8</a> <a href="http://twitter.com/cybercoder/statuses/5999383432" class="aktt_tweet_time">#</a></li>
<li>Google Wave invites are being delivered a little faster, last one sent was received in just a few hours. <a href="http://twitter.com/cybercoder/statuses/6000394933" class="aktt_tweet_time">#</a></li>
<li>Working on Verizon Netbook, and ATT iPhone, so far 3g all the way for Verizon, not so much for the iPhone. <a href="http://twitter.com/cybercoder/statuses/6050109145" class="aktt_tweet_time">#</a></li>
<li>Verizon VZAccess Manager is excellent working from car, and texting on Netbook instead of phone. <a href="http://twitter.com/cybercoder/statuses/6050298020" class="aktt_tweet_time">#</a></li>
<li>Very pleased with @<a href="http://twitter.com/Verizon" class="aktt_username">Verizon</a> coverage on my Netbook, covered 300+ miles today, only lost connectivity for about 3 minutes. <a href="http://twitter.com/cybercoder/statuses/6059276234" class="aktt_tweet_time">#</a></li>
<li>Compared to Verizon Netbook my iPhone has only had AT&amp;T 3g coverage for about 10 minutes during 7+ hours on road today. <a href="http://twitter.com/cybercoder/statuses/6059317959" class="aktt_tweet_time">#</a></li>
<li>I have tried to work from the car at a normal pace today to verify data usage, I have used  a little over 70MB from a 5GB plan <a href="http://twitter.com/cybercoder/statuses/6059401287" class="aktt_tweet_time">#</a></li>
<li>Happy Thanksgiving to all ! <a href="http://twitter.com/cybercoder/statuses/6082577865" class="aktt_tweet_time">#</a></li>
<li>Twitter Inspires More to Go Mobile &#8211; PC World <a href="http://bit.ly/8AJMBw" rel="nofollow">http://bit.ly/8AJMBw</a> <a href="http://twitter.com/cybercoder/statuses/6160857928" class="aktt_tweet_time">#</a></li>
<li>One Bad Twitter ‘Tweet’ Can Cost 30 Customers, Survey Shows  &#8211; Bloomberg.com <a href="http://bit.ly/7b0KJp" rel="nofollow">http://bit.ly/7b0KJp</a> <a href="http://twitter.com/cybercoder/statuses/6161107915" class="aktt_tweet_time">#</a></li>
<li>I wonder how many people camped out to get in line for CyberMonday sales tomorrow, ROFL. <a href="http://twitter.com/cybercoder/statuses/6169693141" class="aktt_tweet_time">#</a></li>
<li>So much data, so little time, RSS, SQL, Pipes, XML, API, it&#39;s like a Data Buffett <a href="http://twitter.com/cybercoder/statuses/6207295931" class="aktt_tweet_time">#</a></li>
<li>Twitter Status &#8211; Responding to high error rate, Lists feature temporarily disabled. <a href="http://bit.ly/6XCyUj" rel="nofollow">http://bit.ly/6XCyUj</a> <a href="http://twitter.com/cybercoder/statuses/6215688705" class="aktt_tweet_time">#</a></li>
<li>Tweetie 2 still not allowing multiple accounts to be used? <a href="http://twitter.com/cybercoder/statuses/6242019178" class="aktt_tweet_time">#</a></li>
<li>To clarify, @<a href="http://twitter.com/christyxcore" class="aktt_username">christyxcore</a> @<a href="http://twitter.com/Stevenirby" class="aktt_username">Stevenirby</a> @<a href="http://twitter.com/techinalberta" class="aktt_username">techinalberta</a> Tweetie 2 on iPhone will not save more than 2 accounts <a href="http://twitter.com/christyxcore/statuses/6242041333" class="aktt_tweet_reply">in reply to christyxcore</a> <a href="http://twitter.com/cybercoder/statuses/6243873660" class="aktt_tweet_time">#</a></li>
<li>This is usually a slow time of year for my work, but not this year. Online economy seems to be very strong. <a href="http://twitter.com/cybercoder/statuses/6244132652" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/6253790850" class="aktt_tweet_time">#</a></li>
<li>I did my Chemotherapy in 1992 at MD Anderson, this is a fantastic Cancer treatment center. <a href="http://bit.ly/8Adk38" rel="nofollow">http://bit.ly/8Adk38</a> <a href="http://twitter.com/cybercoder/statuses/6257198903" class="aktt_tweet_time">#</a></li>
<li>PHP Delete temporary files <a href="http://bit.ly/8v64Ol" rel="nofollow">http://bit.ly/8v64Ol</a> <a href="http://twitter.com/cybercoder/statuses/6279339349" class="aktt_tweet_time">#</a></li>
<li>Been a long day, lots of work done though which is a good thing. <a href="http://twitter.com/cybercoder/statuses/6320043488" class="aktt_tweet_time">#</a></li>
<li>WordPress Trademark Usage «  Weblog Tools Collection <a href="http://bit.ly/85cBkw" rel="nofollow">http://bit.ly/85cBkw</a> <a href="http://twitter.com/cybercoder/statuses/6320161040" class="aktt_tweet_time">#</a></li>
<li>Not surprised to see big increase in request for Social Network programming. WordPress work still strong <a href="http://twitter.com/cybercoder/statuses/6325936484" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> @<a href="http://twitter.com/jacksonmetro" class="aktt_username">jacksonmetro</a> to know what is happening in the Jackson, Mississippi Metro Area <a href="http://twitter.com/cybercoder/statuses/6338399043" class="aktt_tweet_time">#</a></li>
<li>Another one of my favorite places to eat in Jackson Metro area &#8211; Jo&#39;s Diner Brandon, MS <a href="http://bit.ly/4ux2DF" rel="nofollow">http://bit.ly/4ux2DF</a> <a href="http://twitter.com/cybercoder/statuses/6340704306" class="aktt_tweet_time">#</a></li>
<li>New Twitter Mobile site is great, but NO lists on the page? <a href="http://twitter.com/cybercoder/statuses/6386174970" class="aktt_tweet_time">#</a></li>
<li>Easy to see the impact of Google opening up more Invites to Wave, it has slowed to a crawl <a href="http://twitter.com/cybercoder/statuses/6451875294" class="aktt_tweet_time">#</a></li>
<li>My daughter is heartbroken after having her @<a href="http://twitter.com/DaisyRockGuitar" class="aktt_username">DaisyRockGuitar</a> guitar run over by a car while camping <a href="http://bit.ly/5MZtUg" rel="nofollow">http://bit.ly/5MZtUg</a> <a href="http://twitter.com/cybercoder/statuses/6453940767" class="aktt_tweet_time">#</a></li>
<li>John Lennon Remember December 8 | Music Ramble <a href="http://bit.ly/5R49c0" rel="nofollow">http://bit.ly/5R49c0</a> <a href="http://twitter.com/cybercoder/statuses/6464245058" class="aktt_tweet_time">#</a></li>
<li>Is it just me or has the @<a href="http://twitter.com/Mashable" class="aktt_username">Mashable</a> site become tremendously slow, almost unusable? <a href="http://twitter.com/cybercoder/statuses/6467911090" class="aktt_tweet_time">#</a></li>
<li>Another good Mobile Site, NPR <a href="http://bit.ly/5OPECI" rel="nofollow">http://bit.ly/5OPECI</a> <a href="http://twitter.com/cybercoder/statuses/6469176279" class="aktt_tweet_time">#</a></li>
<li>Another good Mobile Site, NPR <a href="http://bit.ly/5OPECI" rel="nofollow">http://bit.ly/5OPECI</a> <a href="http://twitter.com/cybercoder/statuses/6469179263" class="aktt_tweet_time">#</a></li>
<li>There is more than enough content on the Internet, probably too much, the  winner is the one who can aggregate it the best. <a href="http://twitter.com/cybercoder/statuses/6477325227" class="aktt_tweet_time">#</a></li>
<li>Got the remains of my daughters @DaisyRockGuitar, real sad, it was the first one I got her <a href="http://twitter.com/cybercoder/statuses/6482174752" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/6482798405" class="aktt_tweet_time">#</a></li>
<li>Looking forward to this, Twitter to Open Firehose to Developers <a href="http://bit.ly/6KKsRZ" rel="nofollow">http://bit.ly/6KKsRZ</a> <a href="http://twitter.com/cybercoder/statuses/6496048899" class="aktt_tweet_time">#</a></li>
<li>FaceBook Fan Page vanity URL only needs 25 fans. <a href="http://bit.ly/8DJbIT" rel="nofollow">http://bit.ly/8DJbIT</a> <a href="http://twitter.com/cybercoder/statuses/6502312902" class="aktt_tweet_time">#</a></li>
<li>I think my iPhone iPod shuffle function has a real short memory. <a href="http://twitter.com/cybercoder/statuses/6503288580" class="aktt_tweet_time">#</a></li>
<li>Freelance WordPress Job &#8211; WordPress-site for catering company <a href="http://bit.ly/59LPu7" rel="nofollow">http://bit.ly/59LPu7</a> <a href="http://twitter.com/cybercoder/statuses/6507209103" class="aktt_tweet_time">#</a></li>
<li>Businesses have more potential using Social Media than most realize. It is not as instant as some claim, but well&#8230; <a href="http://fb.me/3vZYyjz" rel="nofollow">http://fb.me/3vZYyjz</a> <a href="http://twitter.com/cybercoder/statuses/6531182464" class="aktt_tweet_time">#</a></li>
<li>Ok, who didn&#39;t pay the hosting bill at FaceBook? <a href="http://twitter.com/cybercoder/statuses/6545768658" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> Just updated my #<a href="http://search.twitter.com/search?q=%23FF" class="aktt_hashtag">FF</a> list @cybercoder/FollowFriday <a href="http://bit.ly/y4Jgk" rel="nofollow">http://bit.ly/y4Jgk</a> <a href="http://twitter.com/cybercoder/statuses/6569873649" class="aktt_tweet_time">#</a></li>
<li>That did not take long, starting to see FaceBook links in my Google Alerts from Indexed accounts <a href="http://twitter.com/cybercoder/statuses/6570487627" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23iPhone" class="aktt_hashtag">iPhone</a> fail, tried the Motorola S9 Wireless headphones, can barely hear the music, phone mic fails, and no controls <a href="http://twitter.com/cybercoder/statuses/6577478048" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/6596081802" class="aktt_tweet_time">#</a></li>
<li>Love the new HootSuite: Now in iPhone flavour! #<a href="http://search.twitter.com/search?q=%23HootSuiteiPhone" class="aktt_hashtag">HootSuiteiPhone</a> <a href="http://hootsuite.com/iphone" rel="nofollow">http://hootsuite.com/iphone</a> <a href="http://twitter.com/cybercoder/statuses/6604541780" class="aktt_tweet_time">#</a></li>
<li>What an easy way to compare prices, just scan a barcode and let your iPhone do the rest. <a href="http://fb.me/6nMFACO" rel="nofollow">http://fb.me/6nMFACO</a> <a href="http://twitter.com/cybercoder/statuses/6629672405" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/mashable" class="aktt_username">mashable</a> GPS Navigation on the iPhone Just Got Really Cheap [DEALS] <a href="http://bit.ly/7J2DpO" rel="nofollow">http://bit.ly/7J2DpO</a> <a href="http://twitter.com/cybercoder/statuses/6663441776" class="aktt_tweet_time">#</a></li>
<li>Won my Domain Registration for the day in the @<a href="http://twitter.com/NameCheap" class="aktt_username">NameCheap</a> Contest! <a href="http://bit.ly/4KSuLB" rel="nofollow">http://bit.ly/4KSuLB</a> <a href="http://twitter.com/cybercoder/statuses/6667197465" class="aktt_tweet_time">#</a></li>
<li>Doing some coding with SocialEngine PHP for a client <a href="http://bit.ly/5SQiPl" rel="nofollow">http://bit.ly/5SQiPl</a> <a href="http://twitter.com/cybercoder/statuses/6667329034" class="aktt_tweet_time">#</a></li>
<li>Should be easier to see the Bots playing @<a href="http://twitter.com/namecheap" class="aktt_username">namecheap</a> contest this year, since Twitter now shows &quot;API&quot; as source. <a href="http://twitter.com/cybercoder/statuses/6669340502" class="aktt_tweet_time">#</a></li>
<li>Poinsettia <a href="http://twitter.com/cybercoder/statuses/6673346029" class="aktt_tweet_time">#</a></li>
<li>Twitter is doing a feature test with businesses <a href="http://bit.ly/5CKQSY" rel="nofollow">http://bit.ly/5CKQSY</a> <a href="http://twitter.com/cybercoder/statuses/6680225891" class="aktt_tweet_time">#</a></li>
<li>How Facebook Is Making Friending Obsolete &#8211; WSJ.com <a href="http://bit.ly/50fwYs" rel="nofollow">http://bit.ly/50fwYs</a> <a href="http://twitter.com/cybercoder/statuses/6702807786" class="aktt_tweet_time">#</a></li>
<li>Anyone else notice, @<a href="http://twitter.com/NameCheap" class="aktt_username">NameCheap</a><br />
now has their own official Bot?<br />
<a href="http://bit.ly/5ZcET2" rel="nofollow">http://bit.ly/5ZcET2</a> <a href="http://twitter.com/cybercoder/statuses/6723527257" class="aktt_tweet_time">#</a></li>
<li>Support the Troops by donating<br />
to JoeOnTheMove.com<br />
<a href="http://bit.ly/6Pl6Ql" rel="nofollow">http://bit.ly/6Pl6Ql</a> <a href="http://twitter.com/cybercoder/statuses/6732981014" class="aktt_tweet_time">#</a></li>
<li>An honest no BS post about<br />
Making Money Online from<br />
@<a href="http://twitter.com/WayneJohn" class="aktt_username">WayneJohn</a> <a href="http://bit.ly/7ptYvO" rel="nofollow">http://bit.ly/7ptYvO</a> <a href="http://twitter.com/cybercoder/statuses/6739062346" class="aktt_tweet_time">#</a></li>
<li>Pay Attention, this is important, Connect with Santa. <a href="http://fb.me/3JjKTKC" rel="nofollow">http://fb.me/3JjKTKC</a> <a href="http://twitter.com/cybercoder/statuses/6740639036" class="aktt_tweet_time">#</a></li>
<li>Connecticut is the fastest<br />
growing State on<br />
TwitterStates.com, good job,<br />
<a href="http://bit.ly/WwEhG" rel="nofollow">http://bit.ly/WwEhG</a> <a href="http://twitter.com/cybercoder/statuses/6741666200" class="aktt_tweet_time">#</a></li>
<li>False <a href="http://twitter.com/cybercoder/statuses/6746574585" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/6752782644" class="aktt_tweet_time">#</a></li>
<li>Really enjoy @<a href="http://twitter.com/NameCheap" class="aktt_username">NameCheap</a> Trivia, just wish it did not require playing 24 hours a day to have a chance to win <a href="http://twitter.com/cybercoder/statuses/6769219594" class="aktt_tweet_time">#</a></li>
<li>I think the USB thumb Drive has to be one of my best friends, along with File Sync, saved me again! <a href="http://twitter.com/cybercoder/statuses/6771106961" class="aktt_tweet_time">#</a></li>
<li>One thing I don&#39;t like about Pandora on iPhone is I can not do anything else on the iPhone without turning Pandora off. <a href="http://twitter.com/cybercoder/statuses/6773203693" class="aktt_tweet_time">#</a></li>
<li>Lot&#39;s of suggestions to Jailbreak my iPhone, just not the type of thing I do. <a href="http://twitter.com/cybercoder/statuses/6774941488" class="aktt_tweet_time">#</a></li>
<li>This is a really cool web page,<br />
the visuals are worth a visit.<br />
3M US: Technologies<br />
<a href="http://bit.ly/7sD8gz" rel="nofollow">http://bit.ly/7sD8gz</a> <a href="http://twitter.com/cybercoder/statuses/6779910805" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> My list for today<br />
is  <a href="http://bit.ly/5OEcvY" rel="nofollow">http://bit.ly/5OEcvY</a>, some<br />
new, some old, but all Good! <a href="http://twitter.com/cybercoder/statuses/6803113270" class="aktt_tweet_time">#</a></li>
<li>10 Things You Need to Know About<br />
WordPress 2.9 | Technosailor.com<br />
<a href="http://bit.ly/8xUdvD" rel="nofollow">http://bit.ly/8xUdvD</a> <a href="http://twitter.com/cybercoder/statuses/6829388881" class="aktt_tweet_time">#</a></li>
<li>Upgraded to WordPress 2.9 on<br />
Beta site, great new features,<br />
especially in Media<br />
<a href="http://bit.ly/6k0bst" rel="nofollow">http://bit.ly/6k0bst</a> <a href="http://twitter.com/cybercoder/statuses/6830905233" class="aktt_tweet_time">#</a></li>
<li>GO #<a href="http://search.twitter.com/search?q=%23cowboys" class="aktt_hashtag">cowboys</a> <a href="http://twitter.com/cybercoder/statuses/6845865006" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23cowboys" class="aktt_hashtag">cowboys</a> Touchdown ! Romo to Austin <a href="http://twitter.com/cybercoder/statuses/6845937075" class="aktt_tweet_time">#</a></li>
<li>What a great win for the #<a href="http://search.twitter.com/search?q=%23cowboys" class="aktt_hashtag">cowboys</a> <a href="http://twitter.com/cybercoder/statuses/6850796609" class="aktt_tweet_time">#</a></li>
<li>Some good WordPress Freelance<br />
work available<br />
<a href="http://bit.ly/7NVDse" rel="nofollow">http://bit.ly/7NVDse</a> <a href="http://twitter.com/cybercoder/statuses/6867377804" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/6894175455" class="aktt_tweet_time">#</a></li>
<li>Seeing a lot of Twitter lists showing up in Google searches. <a href="http://twitter.com/cybercoder/statuses/6916542568" class="aktt_tweet_time">#</a></li>
<li>Used Car Database | CyberCoded <a href="http://bit.ly/54bK9W" rel="nofollow">http://bit.ly/54bK9W</a> <a href="http://twitter.com/cybercoder/statuses/6930003726" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/6964309697" class="aktt_tweet_time">#</a></li>
<li>Julian Lennon sings tribute to<br />
Lucy | Music Ramble<br />
<a href="http://bit.ly/4FIEMJ" rel="nofollow">http://bit.ly/4FIEMJ</a> <a href="http://twitter.com/cybercoder/statuses/6984588177" class="aktt_tweet_time">#</a></li>
<li>Microsoft Office may not have the last Word | Daily Rover <a href="http://bit.ly/82CTpm" rel="nofollow">http://bit.ly/82CTpm</a> <a href="http://twitter.com/cybercoder/statuses/6999257291" class="aktt_tweet_time">#</a></li>
<li>Upgrading my Blogs to WordPress 2.9, WP sure has improved over the years, what an easy and smooth process. <a href="http://twitter.com/cybercoder/statuses/7001458724" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/7007093513" class="aktt_tweet_time">#</a></li>
<li>Working on some new Twitter API<br />
issues. <a href="http://twitter.com/cybercoder/statuses/7009793676" class="aktt_tweet_time">#</a></li>
<li>Christmas Eve in Mississippi: Spending the day watching the weather, something like 30 counties under a Tornado.. <a href="http://bit.ly/5304BR" rel="nofollow">http://bit.ly/5304BR</a> <a href="http://twitter.com/cybercoder/statuses/7011229326" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-12-20 <a href="http://bit.ly/63R6Q4" rel="nofollow">http://bit.ly/63R6Q4</a> <a href="http://twitter.com/cybercoder/statuses/7012923673" class="aktt_tweet_time">#</a></li>
<li>Christmas Eve in Mississippi &#8211; Spending the day watching the weather, something like 30 counties under a Tornado Wa&#8230; <a href="http://ow.ly/16dbyU" rel="nofollow">http://ow.ly/16dbyU</a> <a href="http://twitter.com/cybercoder/statuses/7016799338" class="aktt_tweet_time">#</a></li>
<li>Bad weather has passed, just settling into a quite Christmas Eve with the family, Merry Christmas to all ! <a href="http://twitter.com/cybercoder/statuses/7017050739" class="aktt_tweet_time">#</a></li>
<li>Merry Christmas ! <a href="http://twitter.com/cybercoder/statuses/7031045576" class="aktt_tweet_time">#</a></li>
<li>Never fails, Holiday weekend and my brain is in overdrive solving problems I have not even been thinking about, lol. <a href="http://twitter.com/cybercoder/statuses/7060636766" class="aktt_tweet_time">#</a></li>
<li>Having breakfast @<a href="http://twitter.com/josdiner" class="aktt_username">josdiner</a> since they are closing early today. <a href="http://twitter.com/cybercoder/statuses/7064664611" class="aktt_tweet_time">#</a></li>
<li>Took the day off from coding to do some work around the house, now I am really tired and sore! <a href="http://twitter.com/cybercoder/statuses/7078419262" class="aktt_tweet_time">#</a></li>
<li>It is not about what you can do, but, what you can get done, and they are not the same thing. <a href="http://twitter.com/cybercoder/statuses/7131959891" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/7139370932" class="aktt_tweet_time">#</a></li>
<li>Had to block @watchitfreenet, that avatar flashing and the same tweet over and over was really irritating <a href="http://twitter.com/cybercoder/statuses/7144782445" class="aktt_tweet_time">#</a></li>
<li>Set your Facebook Vanity URL for your account or FaceBook Fan Page <a href="http://bit.ly/8DJbIT" rel="nofollow">http://bit.ly/8DJbIT</a> <a href="http://twitter.com/cybercoder/statuses/7198710523" class="aktt_tweet_time">#</a></li>
<li>End2End2010 &#8211; Reading the Bible from End to End in 2010 <a href="http://bit.ly/8jnDGM" rel="nofollow">http://bit.ly/8jnDGM</a> <a href="http://twitter.com/cybercoder/statuses/7202761320" class="aktt_tweet_time">#</a></li>
<li>Convert Static HTML Site to<br />
Wordpress Easily is still one of<br />
my hottest post after almost a<br />
year. <a href="http://bit.ly/8RKj34" rel="nofollow">http://bit.ly/8RKj34</a> <a href="http://twitter.com/cybercoder/statuses/7202930318" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/7226392794" class="aktt_tweet_time">#</a></li>
<li>Several projects working, including converting several static html sites to WordPress. Good start to the year. <a href="http://twitter.com/cybercoder/statuses/7240368553" class="aktt_tweet_time">#</a></li>
<li>Happy New Year ! <a href="http://twitter.com/cybercoder/statuses/7270340075" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2009-12-27 <a href="http://fb.me/46C3eVz" rel="nofollow">http://fb.me/46C3eVz</a> <a href="http://twitter.com/cybercoder/statuses/7271353643" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> My list for today is <a href="http://bit.ly/5OEcvY" rel="nofollow">http://bit.ly/5OEcvY</a>, some new, some old, but all Good! <a href="http://twitter.com/cybercoder/statuses/7276544846" class="aktt_tweet_time">#</a></li>
<li>Facebook | MusicRamble <a href="http://bit.ly/5Btjc5" rel="nofollow">http://bit.ly/5Btjc5</a> <a href="http://twitter.com/cybercoder/statuses/7277572477" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/MusicRamble" class="aktt_username">MusicRamble</a> Classic Rock Legends in 1970 <a href="http://bit.ly/8DeJle" rel="nofollow">http://bit.ly/8DeJle</a> <a href="http://twitter.com/cybercoder/statuses/7306679754" class="aktt_tweet_time">#</a></li>
<li>Had to do a manual install of WordPress on a site, even the manual process is easy these days, sure have come a long way. <a href="http://twitter.com/cybercoder/statuses/7318657762" class="aktt_tweet_time">#</a></li>
<li>World Wide Web from Y2K to Today | Daily Rover <a href="http://bit.ly/5BUx80" rel="nofollow">http://bit.ly/5BUx80</a> <a href="http://twitter.com/cybercoder/statuses/7331854636" class="aktt_tweet_time">#</a></li>
<li>Doing a lot of backend work on client sites. Really appreciate the tools available these days to connect everything together. <a href="http://twitter.com/cybercoder/statuses/7341261357" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/MusicRamble" class="aktt_username">MusicRamble</a> Happy Birthday John Paul Jones <a href="http://bit.ly/7sH4Ax" rel="nofollow">http://bit.ly/7sH4Ax</a> (One of my favorite musicians, CC) <a href="http://twitter.com/cybercoder/statuses/7368691493" class="aktt_tweet_time">#</a></li>
<li>Thanks @WayneJohn, it has been interesting, educating and profitable working together <a href="http://bit.ly/6gMSKU" rel="nofollow">http://bit.ly/6gMSKU</a> <a href="http://twitter.com/cybercoder/statuses/7369449504" class="aktt_tweet_time">#</a></li>
<li>Chromed Bird Google Chrome Extension has a Share button, which is the old RT method, very nice. <a href="http://twitter.com/cybercoder/statuses/7370921146" class="aktt_tweet_time">#</a></li>
<li>Nice simple tutorial, How to use a custom dynamic font for your website, for example as your blog title <a href="http://bit.ly/7xCSru" rel="nofollow">http://bit.ly/7xCSru</a> <a href="http://twitter.com/cybercoder/statuses/7374483496" class="aktt_tweet_time">#</a></li>
<li>7 Things I Wish I Had Known About  Internet Marketing Three Years Ago <a href="http://bit.ly/8z5DEt" rel="nofollow">http://bit.ly/8z5DEt</a> <a href="http://twitter.com/cybercoder/statuses/7377934133" class="aktt_tweet_time">#</a></li>
<li>Some days it feels like I am working 24/7, today is one of those, and it is so cold outside, no need to go out there. <a href="http://twitter.com/cybercoder/statuses/7391801635" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/MusicRamble" class="aktt_username">MusicRamble</a> Happy Birthday Stephen Stills <a href="http://bit.ly/7UI35L" rel="nofollow">http://bit.ly/7UI35L</a>, (the video in this post is excellent!) <a href="http://twitter.com/cybercoder/statuses/7404062667" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/7410089010" class="aktt_tweet_time">#</a></li>
<li>How To Use WordPress | CyberCoded <a href="http://bit.ly/6XH5x7" rel="nofollow">http://bit.ly/6XH5x7</a> <a href="http://twitter.com/cybercoder/statuses/7411479419" class="aktt_tweet_time">#</a></li>
<li>Google Offers New Model for Consumers to Buy a Mobile Phone <a href="http://bit.ly/6dmsc6" rel="nofollow">http://bit.ly/6dmsc6</a> <a href="http://twitter.com/cybercoder/statuses/7412345386" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/shoemoney" class="aktt_username">shoemoney</a> 2009 Sucked For Most SEO’s &#8211; ShoeMoney® <a href="http://bit.ly/5TnDah" rel="nofollow">http://bit.ly/5TnDah</a> <a href="http://twitter.com/cybercoder/statuses/7442298068" class="aktt_tweet_time">#</a></li>
<li>Just a reminder, if you have 25 friends or fans on Facebook get your Vanity URL  <a href="http://bit.ly/6H2Inl" rel="nofollow">http://bit.ly/6H2Inl</a> <a href="http://twitter.com/cybercoder/statuses/7450086354" class="aktt_tweet_time">#</a></li>
<li>Still one of my favorite cars, 1965 Ford Mustang Convertible <a href="http://bit.ly/7GGi1j" rel="nofollow">http://bit.ly/7GGi1j</a> <a href="http://twitter.com/cybercoder/statuses/7487366346" class="aktt_tweet_time">#</a></li>
<li>How to Speed up WordPress <a href="http://bit.ly/62dBMu" rel="nofollow">http://bit.ly/62dBMu</a> <a href="http://twitter.com/cybercoder/statuses/7493991478" class="aktt_tweet_time">#</a></li>
<li>CyberCoder #<a href="http://search.twitter.com/search?q=%23FollowFriday" class="aktt_hashtag">FollowFriday</a> List <a href="http://bit.ly/5OEcvY" rel="nofollow">http://bit.ly/5OEcvY</a> <a href="http://twitter.com/cybercoder/statuses/7521968159" class="aktt_tweet_time">#</a></li>
<li>Breathing this cold air makes my head feel the same way as eating ice cream too fast. <a href="http://twitter.com/cybercoder/statuses/7522739175" class="aktt_tweet_time">#</a></li>
<li>Preparing for road trip, glad I have my Verizon Netbook and a wife you likes to drive! <a href="http://bit.ly/bNeA0" rel="nofollow">http://bit.ly/bNeA0</a> <a href="http://twitter.com/cybercoder/statuses/7563484885" class="aktt_tweet_time">#</a></li>
<li>Tweets “From API” – What Some Twitter Users Say | ploked.com <a href="http://bit.ly/4OfPme" rel="nofollow">http://bit.ly/4OfPme</a> <a href="http://twitter.com/cybercoder/statuses/7569719539" class="aktt_tweet_time">#</a></li>
<li>Really like the Bit.Ly Chrome extension, mouse over any Bitly link shows instant info and destination. <a href="http://twitter.com/cybercoder/statuses/7570254271" class="aktt_tweet_time">#</a></li>
<li>CES YouTube Channel | Daily Rover <a href="http://bit.ly/7eYVHD" rel="nofollow">http://bit.ly/7eYVHD</a>
<p> <a href="http://bit.ly/7eYVHD" rel="nofollow">http://bit.ly/7eYVHD</a> <a href="http://twitter.com/cybercoder/statuses/7571589837" class="aktt_tweet_time">#</a></li>
<li>How To Do Lazy Saturday Morning Keyword Brainstorming <a href="http://bit.ly/92SAiE" rel="nofollow">http://bit.ly/92SAiE</a> <a href="http://twitter.com/cybercoder/statuses/7572116914" class="aktt_tweet_time">#</a></li>
<li>Did you know, not all posts &quot;from API&quot; are automated, and not all posts &quot;from Web&quot; are really from the Web? <a href="http://twitter.com/cybercoder/statuses/7576250719" class="aktt_tweet_time">#</a></li>
<li>How to reset or unfreeze an iPod Nano, iPod Touch, iPod Classic, or iPod Shuffle <a href="http://bit.ly/6jcMHR" rel="nofollow">http://bit.ly/6jcMHR</a> <a href="http://twitter.com/cybercoder/statuses/7577512906" class="aktt_tweet_time">#</a></li>
<li>2010 MusiCares Person of the Year Neil Young <a href="http://bit.ly/6detCn" rel="nofollow">http://bit.ly/6detCn</a> <a href="http://twitter.com/cybercoder/statuses/7578969921" class="aktt_tweet_time">#</a></li>
<li>oh Yeah, How &#39;Bout Them Boys ! <a href="http://bit.ly/5eiCR2" rel="nofollow">http://bit.ly/5eiCR2</a> <a href="http://twitter.com/cybercoder/statuses/7597021488" class="aktt_tweet_time">#</a></li>
<li>On I10 just West of Baton Rouge, Louisiana. Verizon Netbook good signal, iPhone AT&amp;T 3g NOT! <a href="http://twitter.com/cybercoder/statuses/7598239852" class="aktt_tweet_time">#</a></li>
<li>Been in the car 3 hours working on HP Mini 311 Netbook, still have 35% battery remaining. <a href="http://bit.ly/7IWs0t" rel="nofollow">http://bit.ly/7IWs0t</a> <a href="http://twitter.com/cybercoder/statuses/7598498756" class="aktt_tweet_time">#</a></li>
<li><a href="http://twitpic.com/xjhis" rel="nofollow">http://twitpic.com/xjhis</a> &#8211; Traveling to Texas, and I can proudly wear my Dallas Cowboys hat! <a href="http://twitter.com/cybercoder/statuses/7598764327" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/7620394724" class="aktt_tweet_time">#</a></li>
<li>Y Not Ringo Starr | Music Ramble <a href="http://bit.ly/8DKh73" rel="nofollow">http://bit.ly/8DKh73</a> <a href="http://twitter.com/cybercoder/statuses/7668905013" class="aktt_tweet_time">#</a></li>
<li>Updated my profile on Mississippi Twitter Directory at TwitterStates.com <a href="http://bit.ly/14F79L" rel="nofollow">http://bit.ly/14F79L</a> <a href="http://twitter.com/cybercoder/statuses/7732333372" class="aktt_tweet_time">#</a></li>
<li>Spent the last 5 days working through my Dad dying and trying to help my sister who is currently disabled, I am so tired. <a href="http://twitter.com/cybercoder/statuses/7815064703" class="aktt_tweet_time">#</a></li>
<li>Jason Bonham at Winter NAMM 2010 | Music Ramble <a href="http://bit.ly/6EfgnG" rel="nofollow">http://bit.ly/6EfgnG</a> <a href="http://twitter.com/cybercoder/statuses/7822476407" class="aktt_tweet_time">#</a></li>
<li>Voice Over IP Free <a href="http://bit.ly/87GxBn" rel="nofollow">http://bit.ly/87GxBn</a> <a href="http://twitter.com/cybercoder/statuses/7843573087" class="aktt_tweet_time">#</a></li>
<li>Subscribers <a href="http://bit.ly/6DScqH" rel="nofollow">http://bit.ly/6DScqH</a> <a href="http://twitter.com/cybercoder/statuses/7843595618" class="aktt_tweet_time">#</a></li>
<li>DNS <a href="http://bit.ly/4FRyo1" rel="nofollow">http://bit.ly/4FRyo1</a> <a href="http://twitter.com/cybercoder/statuses/7844243774" class="aktt_tweet_time">#</a></li>
<li>SERPS <a href="http://bit.ly/70M2IU" rel="nofollow">http://bit.ly/70M2IU</a> <a href="http://twitter.com/cybercoder/statuses/7851561380" class="aktt_tweet_time">#</a></li>
<li>Google XML Sitemaps <a href="http://bit.ly/8D3J3i" rel="nofollow">http://bit.ly/8D3J3i</a> <a href="http://twitter.com/cybercoder/statuses/7857726792" class="aktt_tweet_time">#</a></li>
<li>ProductReviewsBlog <a href="http://bit.ly/8bsxsn" rel="nofollow">http://bit.ly/8bsxsn</a> <a href="http://twitter.com/cybercoder/statuses/7862040720" class="aktt_tweet_time">#</a></li>
<li>Weekly CyberCoder Tweets for 2010-01-17 <a href="http://bit.ly/5ojsxU" rel="nofollow">http://bit.ly/5ojsxU</a> <a href="http://twitter.com/cybercoder/statuses/7864760053" class="aktt_tweet_time">#</a></li>
<li>Fender Limited Edition 3G Android Phone <a href="http://bit.ly/5zDGWH" rel="nofollow">http://bit.ly/5zDGWH</a> <a href="http://twitter.com/cybercoder/statuses/7866392555" class="aktt_tweet_time">#</a></li>
<li>AJAX <a href="http://bit.ly/6ynP0V" rel="nofollow">http://bit.ly/6ynP0V</a> <a href="http://twitter.com/cybercoder/statuses/7867725239" class="aktt_tweet_time">#</a></li>
<li>The poll results are in, web development it is | Wayne John <a href="http://bit.ly/5bl4BT" rel="nofollow">http://bit.ly/5bl4BT</a> <a href="http://twitter.com/cybercoder/statuses/7867843798" class="aktt_tweet_time">#</a></li>
<li>What Time Is It <a href="http://bit.ly/7LSVeP" rel="nofollow">http://bit.ly/7LSVeP</a> <a href="http://twitter.com/cybercoder/statuses/7874687492" class="aktt_tweet_time">#</a></li>
<li>Thumb Drive <a href="http://bit.ly/8gN9qy" rel="nofollow">http://bit.ly/8gN9qy</a> <a href="http://twitter.com/cybercoder/statuses/7882257316" class="aktt_tweet_time">#</a></li>
<li>Hodgkins Cancer <a href="http://bit.ly/7ciXSB" rel="nofollow">http://bit.ly/7ciXSB</a> <a href="http://twitter.com/cybercoder/statuses/7890740622" class="aktt_tweet_time">#</a></li>
<li>Who&#39;s Amung Us <a href="http://bit.ly/4Zh8fp" rel="nofollow">http://bit.ly/4Zh8fp</a> <a href="http://twitter.com/cybercoder/statuses/7896906986" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/MusicRamble" class="aktt_username">MusicRamble</a> Peter Frampton &amp; Martin Guitars at NAMM 2010 <a href="http://tinyurl.com/y945yxq" rel="nofollow">http://tinyurl.com/y945yxq</a> <a href="http://twitter.com/cybercoder/statuses/7899810390" class="aktt_tweet_time">#</a></li>
<li>PHP Software <a href="http://bit.ly/4mZi7w" rel="nofollow">http://bit.ly/4mZi7w</a> <a href="http://twitter.com/cybercoder/statuses/7901671697" class="aktt_tweet_time">#</a></li>
<li>Five Must-Read Social Media Articles (1/18 Edition) | Folk Media <a href="http://bit.ly/8Bw4Al" rel="nofollow">http://bit.ly/8Bw4Al</a> <a href="http://twitter.com/cybercoder/statuses/7905481449" class="aktt_tweet_time">#</a></li>
<li>WordPress Options <a href="http://bit.ly/4HqHoE" rel="nofollow">http://bit.ly/4HqHoE</a> <a href="http://twitter.com/cybercoder/statuses/7908512668" class="aktt_tweet_time">#</a></li>
<li>Just something I believe in, Attribution <a href="http://bit.ly/4AHoeV" rel="nofollow">http://bit.ly/4AHoeV</a> <a href="http://twitter.com/cybercoder/statuses/7914354014" class="aktt_tweet_time">#</a></li>
<li>Home Network Wireless <a href="http://bit.ly/8o5i3H" rel="nofollow">http://bit.ly/8o5i3H</a> <a href="http://twitter.com/cybercoder/statuses/7916324106" class="aktt_tweet_time">#</a></li>
<li>VOIP <a href="http://bit.ly/5OxQ0J" rel="nofollow">http://bit.ly/5OxQ0J</a> <a href="http://twitter.com/cybercoder/statuses/7924111504" class="aktt_tweet_time">#</a></li>
</ul>
<p><g:plusone></g:plusone>&nbsp;&nbsp;<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="CyberCoder" data-related="DavidCooley">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybercoded.net/cybertweets-2010-01-18/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin versus Custom Programming</title>
		<link>http://www.cybercoded.net/wordpress-plugin-versus-custom-programming/</link>
		<comments>http://www.cybercoded.net/wordpress-plugin-versus-custom-programming/#comments</comments>
		<pubDate>Mon, 11 Feb 2008 21:01:24 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Akismet]]></category>
		<category><![CDATA[All in One SEO Pack]]></category>
		<category><![CDATA[Custom Programming]]></category>
		<category><![CDATA[Custom Query String Reloaded]]></category>
		<category><![CDATA[CyberExcerpt]]></category>
		<category><![CDATA[CyberExcerpt Plugin]]></category>
		<category><![CDATA[Get Recent Comments]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[Google XML Sitemaps]]></category>
		<category><![CDATA[Recommended Tags]]></category>
		<category><![CDATA[Show Top Commentators]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Plugin]]></category>
		<category><![CDATA[WP-ContactForm]]></category>

		<guid isPermaLink="false">http://www.cybercoder.net/wordpress-plugin-versus-custom-programming.html</guid>
		<description><![CDATA[I have not been listening to my own advice again. Why do something that someone else has already done, and especially if it is actually easier to use their program than it is to do it myself? The best example of this is WordPress Plugins. For the longest time I would code everything myself. As [...]]]></description>
			<content:encoded><![CDATA[<p>I have not been listening to <a href="http://www.cybercoder.net/making-mistakes-and-being-open-minded.html" title="Making Mistakes">my own advice</a> again.</p>
<p>Why do something that someone else has already done, and especially if it is actually easier to use their program than it is to do it myself?</p>
<p>The best example of this is WordPress Plugins. For the longest time I would code everything myself. As an example I did my own SEO programming and it worked well, but, I discovered as I moved from blog to blog I had to do a lot of extra work that I would not have to do if I had used a WordPress Plugin. So I started looking to replace all my custom programming with WordPress plugins, and I can not tell you how much easier it is to manage my blogs now.</p>
<p>I also found that in some cases the plugins were better than what I had done myself, ouch. But hey, that is the idea, use the software that gets the job done and is the easiest to maintain. I will say that in some cases I think a particular WordPress plugin can be improved, in that case I try to do one of two things, improve it and send it to the originator, or comment on the originating blog and give them my idea.</p>
<p>Here is a list of my current favorite WordPress plugins I am using on the majority of my blogs.</p>
<p><strong><a href="http://akismet.com/" title="Visit plugin homepage">Akismet</a></strong></p>
<p><strong><a href="http://wp.uberdose.com/2007/03/24/all-in-one-seo-pack/" title="Visit plugin homepage">All in One SEO Pack</a></strong></p>
<p><strong><a href="http://www.transycan.net/" title="Visit plugin homepage">Custom Query String Reloaded</a></strong></p>
<p><strong><a href="http://www.cybercoded.net/wordpress-excerpt-plugin/" title="CyberExcerpt Plugin">CyberExcerpt</a></strong></p>
<p><strong><a href="http://blog.jodies.de/archiv/2004/11/13/recent-comments/" title="Visit plugin homepage">Get Recent Comments</a></strong></p>
<p><strong><a href="http://boakes.org/analytics" title="Visit plugin homepage">Google Analytics</a></strong></p>
<p><strong><a href="http://www.arnebrachhold.de/redir/sitemap-home/" title="Visit plugin homepage">Google XML Sitemaps</a></strong></p>
<p><strong><a href="http://cybernetnews.com/recommended-tags-for-wordpress/" title="Visit plugin homepage">Recommended Tags</a></strong></p>
<p><strong><a href="http://www.pfadvice.com/wordpress-plugins/show-top-commentators/" title="Visit plugin homepage">Show Top Commentators</a></strong></p>
<p><strong><a href="http://www.douglaskarr.com/projects/wp-contactform/" title="Visit plugin homepage">WP-ContactForm</a></strong></p>
<p>Using WordPress Plugins can certainly help you manage your blog better without all the additional work. Just make sure to test each plugin carefully before rolling out in full production. I have found some plugins may cause problems with other plugins and that even the order in which you install them can sometimes cause issues. The best thing to do is setup a sub domain with WordPress that is not indexed in the search engines and use it as a test site.</p>
<p><g:plusone></g:plusone>&nbsp;&nbsp;<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="CyberCoder" data-related="DavidCooley">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybercoded.net/wordpress-plugin-versus-custom-programming/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Make Money Online</title>
		<link>http://www.cybercoded.net/make-money-online/</link>
		<comments>http://www.cybercoded.net/make-money-online/#comments</comments>
		<pubDate>Mon, 06 Aug 2007 08:57:44 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Adsense]]></category>
		<category><![CDATA[Analytics]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Analytics]]></category>
		<category><![CDATA[GSiteCrawler]]></category>
		<category><![CDATA[Income Online Residual]]></category>
		<category><![CDATA[Online Income]]></category>
		<category><![CDATA[Sitemap]]></category>

		<guid isPermaLink="false">http://www.cybercoder.net/make-money-online.html</guid>
		<description><![CDATA[Did that get your attention? Not sure what it says about us, but key that headline into Google and you get 313,000,000 results. Yes, that&#8217;s 313 Million. Everybody says they hate the get rich quick schemes, yet someone is digging for them and trying them. Anyway, if you want to get rich quick, I certainly [...]]]></description>
			<content:encoded><![CDATA[<p>Did that get your attention?</p>
<p>Not sure what it says about us, but key that headline into Google and you get 313,000,000 results. Yes, that&#8217;s 313 Million.</p>
<p>Everybody says they hate the get rich quick schemes, yet someone is digging for them and trying them.</p>
<p>Anyway, if you want to get rich quick, I certainly can not help you, if I could, I would and I would be rich myself. However, I may be able to help you at least pay for your hosting and buy dinner out.</p>
<p>I work on a site for a customer that had these numbers last month.</p>
<p>287 unique visitors, $52 of income.</p>
<p>Now, I realize that is not very much money. However, if you do that twice you can get a check for over $100 every month. And in my book $100 is worth something.</p>
<p>287 visitors is an average of  9 visitors a day, THAT IS ALL, 9.</p>
<p>C&#8217;mon, how hard can that be? And the total size of the site is 14 pages. Oh yeah, static pages, not a blog, just a good ol&#8217; basic 14 page website. We have not changed ANYTHING in over a year.</p>
<p>Here is my punch list for this site.</p>
<ol>
<li>Focused Content &#8211; One subject, very little variance. They call this a &#8220;niche site&#8221; now, we used to call it a &#8220;small vertical market&#8221;.</li>
<li><a title="Adsense" href="https://www.google.com/adsense">Google Adsense</a>. &#8211; 2 Ad Units. One 336&#215;280 above the fold, one 336&#215;280 at the very bottom of the page, right after the last piece of content. The colors used are blended into the site, and each ad title is dark blue. Always use a blue because people still tend to thing a blue underline is a link.</li>
<li>Sitemap. &#8211; Real simple. I use <a title="gSiteCrawler" href="http://gsitecrawler.com/en/download/">GSiteCrawler</a> to build and upload the sitemap. Submitted to Google and Yahoo using their respective web pages.</li>
<li>Analytics. &#8211; I like <a title="Analytics" href="https://www.google.com/analytics">Google Analytics</a>, it&#8217;s simple, web based and I can have all my accounts at my fingertips.</li>
</ol>
<p>Summary:</p>
<p>Always remember the old <a title="KISS Rule" href="http://en.wikipedia.org/wiki/KISS_principle">KISS rule</a>, Keep It Simple, Stupid, or maybe now it should be Keep It Search Simple.</p>
<p><a title="Analytics" href="http://www.cybercoder.net/tags/Analytics/"><br />
</a></p>
<p><g:plusone></g:plusone>&nbsp;&nbsp;<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="CyberCoder" data-related="DavidCooley">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybercoded.net/make-money-online/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>10 Quick Steps to a Blog</title>
		<link>http://www.cybercoded.net/10-quick-steps-to-a-blog/</link>
		<comments>http://www.cybercoded.net/10-quick-steps-to-a-blog/#comments</comments>
		<pubDate>Tue, 19 Jun 2007 15:41:45 +0000</pubDate>
		<dc:creator>David Cooley</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Domain Name]]></category>
		<category><![CDATA[Feedburner]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Permalink]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://www.cybercoder.net/10-quick-steps-to-a-blog.html</guid>
		<description><![CDATA[Here are the first 10 steps I take in setting up a blog. These steps can be accomplished in less than an hour and lead to a succesful launch. Register Domain Setup hosting Install WordPress and change Permalink structure Install Robots.txt file Publish a few posts Setup on Feedburner and place RSS links on page. [...]]]></description>
			<content:encoded><![CDATA[<p>Here are the first 10 steps I take in setting up a blog. These steps can be accomplished in less than an hour and lead to a succesful launch.</p>
<ol>
<li>Register Domain</li>
<li>Setup hosting</li>
<li>Install WordPress and change Permalink structure</li>
<li>Install Robots.txt file</li>
<li>Publish a few posts</li>
<li>Setup on Feedburner and place RSS links on page.</li>
<li>Create and upload Sitemap</li>
<li>Submit to Google Webmaster Central</li>
<li>Submit to Yahoo Site Explorer</li>
<li>Install Google Analytics</li>
</ol>
<p>I will go through each of these steps in individual posts.</p>
<p>The last blog I setup was in the Google Index within 48 hours, and away we go&#8230;&#8230;</p>
<p><a href="http://www.cybercoder.net/tags/RSS/" title="RSS"><br />
</a></p>
<p><g:plusone></g:plusone>&nbsp;&nbsp;<a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="CyberCoder" data-related="DavidCooley">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></p>]]></content:encoded>
			<wfw:commentRss>http://www.cybercoded.net/10-quick-steps-to-a-blog/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

