<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Kevin deLeon | Web Design and Development | Wilmington, NC</title>
	
	<link>http://www.kevin-deleon.com</link>
	<description />
	<lastBuildDate>Sun, 25 Jul 2010 18:32:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/kevin-deleon-web-design" /><feedburner:info uri="kevin-deleon-web-design" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>kevin-deleon-web-design</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Tutorial: Installing Bugzilla on Fedora 11 &amp; CentOS 5</title>
		<link>http://feedproxy.google.com/~r/kevin-deleon-web-design/~3/nXjn3fMtaFE/</link>
		<comments>http://www.kevin-deleon.com/2010/07/tutorial-installing-bugzilla-on-fedora-11-centos-5/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 18:31:09 +0000</pubDate>
		<dc:creator>Kevin deLeon</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.kevin-deleon.com/?p=111</guid>
		<description><![CDATA[So a buddy of mine (Charlie Glisan) was having issues installing Bugzilla on Fedora 11, and CentOS 5 a while back, and decided after hours of strife, and finally getting the software up and running, that he would write detailed instructions on how to do so. He doesn&#8217;t have a blog himself, and thought that [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.kevin-deleon.com/wp-content/uploads/2010/07/bugzilla-fly1.jpg" alt="Installing Bugzilla" /></p>
<p>So a buddy of mine (<a href="http://www.linkedin.com/pub/charles-glisan/">Charlie Glisan</a>) was having issues installing Bugzilla on Fedora 11, and CentOS 5 a while back, and decided after hours of strife, and finally getting the software up and running, that he would write detailed instructions on how to do so.  He doesn&#8217;t have a blog himself, and thought that it might be helpful to some others out there that are trying to accomplish the same goal. So, he asked if I would like to post the instructions on my blog. <span id="more-111"></span> I am always a fan of finding helpful information out on the interwebs, so I am posting his instructions, verbatim, in hopes that they are helpful to a few struggling souls.  If you have any questions, or find errors, please post them in the comments below, and we will try to get to them as quickly as possible.</p>
<h3>Installing Bugzilla on Fedora 11 &#038; CentOS 5</h3>
<p>Log in as root or su:</p>
<pre><code>
$ su
(enter root password)
</code></pre>
<p>For CentOS only, add the EPEL repository (which contains Bugzilla):</p>
<pre><code>
$ rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-3.noarch.rpm
</code></pre>
<p>Install Bugzilla:</p>
<pre><code>
$ yum install bugzilla
</code></pre>
<p>Install MySQL:</p>
<pre><code>
$ yum install mysql-server
</code></pre>
<p>Install Apache:</p>
<pre><code>
$ yum install httpd
</code></pre>
<p>Start the the MySQL service:</p>
<pre><code>
$ /etc/init.d/mysqld start
</code></pre>
<p>Set password for the root user in MySQL:</p>
<pre><code>
$ mysqladmin -u root password {password}
</code></pre>
<p>Log into MySQL:</p>
<pre><code>
$ mysql -u root -p
</code></pre>
<p>Create &#8216;bugs&#8217; user in MySQL:</p>
<pre><code>
mysql> CREATE USER 'bugs'@'localhost' IDENTIFIED BY '{password}';
</code></pre>
<p>Create &#8216;bugs&#8217; database in MySQL:</p>
<pre><code>
mysql> CREATE DATABASE bugs;
</code></pre>
<p>Grant privileges to &#8216;bugs&#8217; user:</p>
<pre><code>
mysql> GRANT ALL ON bugs.* TO 'bugs'@'localhost';
</code></pre>
<p>Run checksetup.pl to check modules and to create a new copy of localconfig:</p>
<pre><code>
$ /usr/share/bugzilla/./checksetup.pl
</code></pre>
<p>Edit your copy of localconfg &#8211; change $db_pass to the password you entered for the MySQL user &#8216;bugs&#8217; earlier:</p>
<pre><code>
$ gedit /etc/bugzilla/localconfig
</code></pre>
<p>$db_pass = &#8216;{password}&#8217;;</p>
<p>Run checksetup.pl again to finish setting up Bugzilla:</p>
<pre><code>
$ /usr/share/bugzilla/./checksetup.pl
</code></pre>
<p>When prompted to do so specify the Bugzilla administrator&#8217;s email address, name, and password.</p>
<p>Start apache:</p>
<pre><code>
$ /etc/init.d/httpd start
</code></pre>
<p>Go to http://localhost/bugzilla/ in a browser and behold.</p>
<p>If, upon a reboot, mysqld and/or httpd are not running, you can add them to the list of services that run at startup:</p>
<pre><code>
$ ntsysv (Or $ /usr/sbin/ntsysv on CentOS)
</code></pre>
<p>Arrow up or down to find mysqld and/or httpd.  Hit the space key to select/deselect the service.  When done, hit Tab to get to the Ok or Cancel buttons.</p>
<img src="http://feeds.feedburner.com/~r/kevin-deleon-web-design/~4/nXjn3fMtaFE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kevin-deleon.com/2010/07/tutorial-installing-bugzilla-on-fedora-11-centos-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kevin-deleon.com/2010/07/tutorial-installing-bugzilla-on-fedora-11-centos-5/</feedburner:origLink></item>
		<item>
		<title>Review: VirtualHostX 2.0</title>
		<link>http://feedproxy.google.com/~r/kevin-deleon-web-design/~3/ho2kEC3Ec64/</link>
		<comments>http://www.kevin-deleon.com/2010/03/review-virtualhostx-2-0/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 19:16:31 +0000</pubDate>
		<dc:creator>Kevin deLeon</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[reviews]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.kevin-deleon.com/?p=103</guid>
		<description><![CDATA[Now I am not a software reviewer by any stretch of the imagination, but I still feel the need every now and then, when I run across something I feel is useful, to sing it&#8217;s praises, or at least describe why I feel it is useful. I am definitely singing the praises of VirtualHostX, developed [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.kevin-deleon.com/wp-content/uploads/2010/03/virtualhostx2.jpg" alt="VirtualHostX - Mac Virtual Hosting Made Easy" /></p>
<p>Now I am not a software reviewer by any stretch of the imagination, but I still feel the need every now and then, when I run across something I feel is useful, to sing it&#8217;s praises, or at least describe why I feel it is useful.  I am definitely singing the praises of <a href="http://clickontyler.com/virtualhostx/" target="_blank">VirtualHostX</a>, developed by <a href="http://clickontyler.com/" target="_blank">Tyler Hall</a>. <span id="more-103"></span></p>
<p>VirtualHostX is a GUI solution that allows Mac based web designers/developers to virtually host multiple websites on their development machines.  I won&#8217;t get into a long description of what virtual hosts are, if you aren&#8217;t familiar, you can find <a href="http://httpd.apache.org/docs/1.3/vhosts/" target="_blank">more information</a> by Googling &#8220;Apache Virtual Hosts.&#8221;  Basically virtual hosts allow you to host multiple website URLs (testsite1.site, testsite2.site, testsite3.site, etc&#8230;) from a single machine (in this case, most likely your development/design machine) and single IP address (more than likely you are using 127.0.0.1).</p>
<p>I love using v-hosts (that&#8217;s what they call them in the biz&#8230;) with my development environment (I prefer to use <a href="http://www.mamp.info/en/index.html" target="_blank">MAMP</a>).  Using v-hosts is so much nicer than having to constantly nest folders, or re-arrange my root folder while I am working on multiple projects.  However, I always hated having to constantly edit <code>hosts</code> files and <code>httpd.conf</code> files.  VirtualHostX makes all of the tedious configuration file editing and web server restarting a thing of the past.</p>
<p>Here is a quick run-down of features from the ClickOnTyler website that VirtualHostX provides:</p>
<ul class="indented-list">
<li>Automatically configures your Mac&#8217;s web server settings</li>
<li>Works with <a href="http://www.mamp.info/en/index.html">MAMP</a>,  XAMPP, and <a href="http://lunatic.web.id/webdev/native-web-development-apache-php-and-mysql-on-mac-osx-leopard/">Apple&#8217;s  built-in web server</a></li>
<li>Share your hosts with other users on the same local network</li>
<li>Supports custom Apache directives</li>
<li>Backup and Restore your web server settings</li>
<li><a href="http://seansperte.com/entry/Setting_Up_a_Killer_Local_Web_Development_Environment_on_a_Mac_with_MAMP_an/">Create  a complete web development environment on your Mac</a></li>
</ul>
<p>Installation is a breeze, and in case you do have problems, there is plenty of support on the <a href="http://getsatisfaction.com/clickontyler/products" target="_blank">ClickOnTyler Customer Support Forum</a>.  The installation walks the user through all the background changes that need to be made, and gives you the opportunity to back-up your configuration files.  Basically by answering a few questions and entering your password, you are up, running and ready to create some v-hosts in just a few clicks.</p>
<p>There are a few screen shots available on the ClickOnTyler website, and I have to say the GUI is very easy to use.  I had no problems setting up my MAMP server environment to work with VirtualHostX, and I literally had the whole thing running with three v-hosts in less than five minutes.  Adding and removing v-hosts is quite simple, and basically just includes clicking the add button, naming your virtual URL and locating the directory of the project you are working on.  It&#8217;s just that simple.</p>
<p>One of the main features I like about VirtualHostX is the seamless flow of setting up v-hosts.   All necessary files are edited by the software itself, and there is no manual restarting of the web server needed.</p>
<p>You can download VirtualHostX for free if you only need to host three projects at a time, or just want to try it out before you buy it.  However, if you would like to host more than three projects at a time, you will need to buy a license for $19.95.  I personally have been using VirtualHostX for a little over three weeks, and feel that the $19.95 price tag has already saved me three times that amount in config file editing time alone.  If you are a command-line geek (which I do fancy myself as) this software may not be for you.  However, I find that the GUI is quite nice, and saves me quite a bit of time.</p>
<p>VirtualHostX&#8217;s ease of installation and simplicity in operation make it a  great value at quite a reasonable price.  I would highly recommend this software to any web designer/developer who would like to get some v-hosting going in their Mac/Apple based development environment.</p>
<p><a href="http://clickontyler.com/virtualhostx/" target="_blank">Buy/Download VirtualHostX</a> from <a href="http://clickontyler.com/" target="_blank">ClickOnTyler</a></p>
<img src="http://feeds.feedburner.com/~r/kevin-deleon-web-design/~4/ho2kEC3Ec64" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kevin-deleon.com/2010/03/review-virtualhostx-2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kevin-deleon.com/2010/03/review-virtualhostx-2-0/</feedburner:origLink></item>
		<item>
		<title>Building A Better robots.txt For A WordPress Blog</title>
		<link>http://feedproxy.google.com/~r/kevin-deleon-web-design/~3/8nWmAEtvfMk/</link>
		<comments>http://www.kevin-deleon.com/2010/03/building-a-better-robots-txt-for-a-wordpress-blog/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 18:14:45 +0000</pubDate>
		<dc:creator>Kevin deLeon</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.kevin-deleon.com/?p=100</guid>
		<description><![CDATA[So I have been designing websites for quite a while now. I realize the importance of a robots.txt file, and the implications it holds for search engine optimization (SEO) and preventing duplicate content. However, for some reason, I have never bothered looking into building a better robots.txt file for my personal blog/WordPress powered portfolio. Weird, [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.kevin-deleon.com/wp-content/uploads/2010/03/robot.jpg" alt="robot" /></p>
<p>So I have been designing websites for quite a while now.  I realize the importance of a <code>robots.txt</code> file, and the implications it holds for search engine optimization (SEO) and preventing duplicate content.  However, for some reason, I have never bothered looking into building a better <code>robots.txt</code> file for my personal blog/WordPress powered portfolio.  Weird, right?  Honestly, what made me realize I needed to do something better was <a href="http://www.google.com/webmasters" target="_blank">Google&#8217;s Webmaster</a> tools, which I started using since re-launching my website this month.  After looking through a few weeks of data in my account, I quickly realized that I would be running into duplicate content issues at the very least.  So, I started re-searching best practices for writing <code>robots.txt</code> files for WordPress installations. <span id="more-100"></span></p>
<p>My first stop of course was the <a href="http://codex.wordpress.org/Search_Engine_Optimization_for_WordPress" target="_blank">WordPress Codex</a>.  Suffice it to say, I wasn&#8217;t disappointed.  They have a VERY good example of a <code>robots.txt</code> file written specifically for a base WordPress install.</p>
<pre><code>
User-agent: *
Disallow: /cgi-bin
Disallow: /wp-admin
Disallow: /wp-includes
Disallow: /wp-content/plugins
Disallow: /wp-content/cache
Disallow: /wp-content/themes
Disallow: /trackback
Disallow: /feed
Disallow: /comments
Disallow: /category/*/*
Disallow: */trackback
Disallow: */feed
Disallow: */comments
Disallow: /*?*
Disallow: /*?
Allow: /wp-content/uploads

# Google Image
User-agent: Googlebot-Image
Disallow:
Allow: /*

# Google AdSense
User-agent: Mediapartners-Google*
Disallow:
Allow: /*

# digg mirror
User-agent: duggmirror
Disallow: /

Sitemap: http://www.example.com/sitemap.xml
</code>
</pre>
<p>Most of this is quite useful just the way it is.  It solves almost all duplicate content problems (comments, categories, query strings (?)), and keeps the robots out of unnecessary/private directories such as the &#8216;wp-&#8217; group of folders (wp-content, wp-admin, etc&#8230;).  It allows a few important bots into all directories, such as the Google Image bot, and the Google AdSense bot (if you are displaying AdWords ads).</p>
<p>An interesting, and I feel, important item is that they are blocking &#8216;duggmirror.&#8217;  DuggMirror is a site that mirrors content from other sites that have been dugg (see <a href="http://www.digg.com" target="_blank">digg</a>).  DuggMirror can be a duplicate content nightmare, and can cause Google to index THEIR site instead of YOUR site or value their content more highly.  So, what does that mean for you?  That means say &#8220;bye-bye&#8221; to that traffic that you have earned and deserve.  Blocking DuggMirror solves that problem.</p>
<p>So, for the most part, I have decided to keep this <code>robots.txt</code> file in-tact. However, I did make a few changes, and my <code>robots.txt</code> file is below in its entirety, along with an explanation of the changes I made.</p>
<pre><code>
User-agent: *
Disallow: /cgi-bin
Disallow: /wp-*
Disallow: /trackback
Disallow: /feed
Disallow: /archives
Disallow: /comments
Disallow: /category/*/*
Disallow: */trackback
Disallow: */feed
Disallow: */comments
Disallow: /*?*
Disallow: /*?
Allow: /wp-content/uploads

# Google Image
User-agent: Googlebot-Image
Disallow:
Allow: /*

# digg mirror
User-agent: duggmirror
Disallow: /

Sitemap: http://www.kevin-deleon.com/sitemap.xml.gz
</code>
</pre>
<p>For starters I got rid of most of the &#8216;wp-&#8217; directives and shortened them to the one <code>'Disallow: wp-*'</code> directive using the <code>robots.txt</code> wildcard character.  The wildcard character allows you to match one or more characters in a URL.  Historically there was a bit of controversy over using wildcards in <code>robots.txt</code> files because early on they lacked support.  However, most (and all of the engines that I really care about) now support the use of wildcards.  You do need to be safe when using wildcards though, because if you don&#8217;t, you may <a href="http://www.seobook.com/archives/002361.shtml" target="_blank">cause yourself some unwanted headaches</a>.</p>
<p>I also got rid of the directives that were in reference to Google AdSense bot.  I don&#8217;t use Google AdSense, and I doubt I ever will, so having it in there serves no purpose.</p>
<p>So there you have it.  That is my strategy so far with my <code>robots.txt</code> file when it comes to my WordPress powered website.  It&#8217;s definitely a work in progress that I will have to continually monitor to make sure I am getting the results that I want.  Thankfully Google Webmaster tools makes that pretty simple.</p>
<img src="http://feeds.feedburner.com/~r/kevin-deleon-web-design/~4/8nWmAEtvfMk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kevin-deleon.com/2010/03/building-a-better-robots-txt-for-a-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kevin-deleon.com/2010/03/building-a-better-robots-txt-for-a-wordpress-blog/</feedburner:origLink></item>
		<item>
		<title>Re-design and re-launch</title>
		<link>http://feedproxy.google.com/~r/kevin-deleon-web-design/~3/C599czl6gMY/</link>
		<comments>http://www.kevin-deleon.com/2010/03/re-design-and-re-launch/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 20:23:15 +0000</pubDate>
		<dc:creator>kevindeleon</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://localhost/?p=95</guid>
		<description><![CDATA[So for the last 6 years or so, my website/portfolio/blog has been hosted under the domain mydesigncouldbeatupyourdesign.com. I really liked the domain name, but as you can imagine, I had some problems communicating it to others verbally. So, after some thought and some re-designing, I have re-launched under the domain kevin-deleon.com The site is a [...]]]></description>
			<content:encoded><![CDATA[<p>So for the last 6 years or so, my website/portfolio/blog has been hosted under the domain mydesigncouldbeatupyourdesign.com.  I really liked the domain name, but as you can imagine, I had some problems communicating it to others verbally.  So, after some thought and some re-designing, I have re-launched under the domain kevin-deleon.com</p>
<p>The site is a lot more streamlined, and in my opinion quite a bit easier on the eyes.  Let me know what you think, and if there is anything that you feel could be changed for the better, shoot me an email, or leave me a comment (who knows&#8230;I may just use your idea).</p>
<img src="http://feeds.feedburner.com/~r/kevin-deleon-web-design/~4/C599czl6gMY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kevin-deleon.com/2010/03/re-design-and-re-launch/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.kevin-deleon.com/2010/03/re-design-and-re-launch/</feedburner:origLink></item>
		<item>
		<title>All-Spec Industries Re-design</title>
		<link>http://feedproxy.google.com/~r/kevin-deleon-web-design/~3/pB3vjYj24_I/</link>
		<comments>http://www.kevin-deleon.com/2008/12/another-test-post/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 17:59:38 +0000</pubDate>
		<dc:creator>kevindeleon</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://localhost/?p=6</guid>
		<description><![CDATA[I have been working for a company based in Wilmington, NC, All-Spec Industries, and my goal for last 3 months has been to completely re-design the e-commerce website. It has been a huge undertaking, and with the help of another developer, we are actually nearing the finish line. I plan on writing a few blog [...]]]></description>
			<content:encoded><![CDATA[<p>I have been working for a company based in Wilmington, NC, All-Spec Industries, and my goal for last 3 months has been to completely re-design the e-commerce website.</p>
<p>It has been a huge undertaking, and with the help of another developer, we are actually nearing the finish line.</p>
<p>I plan on writing a few blog posts discussing the ups and downs of the process, along with screenshots of the new and old sites.</p>
<p>Keep your fingers crossed!</p>
<img src="http://feeds.feedburner.com/~r/kevin-deleon-web-design/~4/pB3vjYj24_I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kevin-deleon.com/2008/12/another-test-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kevin-deleon.com/2008/12/another-test-post/</feedburner:origLink></item>
		<item>
		<title>Twitter-iffic?</title>
		<link>http://feedproxy.google.com/~r/kevin-deleon-web-design/~3/c10oh8JOfKU/</link>
		<comments>http://www.kevin-deleon.com/2008/02/twitter-iffic/#comments</comments>
		<pubDate>Fri, 08 Feb 2008 16:32:32 +0000</pubDate>
		<dc:creator>Kevin deLeon</dc:creator>
				<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.kevin-deleon.com/?p=99</guid>
		<description><![CDATA[Well. I joined Twitter, and so far I like it. It’s actually quite an interesting concept really. At first, Twitter seemed like another lame 2.0 app that to me really had no reason to exist. I mean who in their right mind wants everyone to know what they are doing at any given second, and [...]]]></description>
			<content:encoded><![CDATA[<p>Well. I joined <a href="http://twitter.com/kevindeleon">Twitter</a>, and so far I like it. It’s actually quite an interesting concept really.</p>
<p>At first, Twitter seemed like another lame 2.0 app that to me really had no reason to exist. I mean who in their right mind wants everyone to know what they are doing at any given second, and on top of that, you actually have to be narcissistic enough to think anyone actually cares. Well, I was right, but I was also very wrong.<span id="more-99"></span></p>
<p>Twitter is quite the growing phenomenon, and it’s hard to explain. I guess it really isn’t any different than IM’ng, blogging, or social networking when you get down to it, but Twitter is quicker. It allows you to jot down a quick note, and everyone you are friends with can see it at the same time, almost instantly…And that’s what we are all looking for in this Web 2.0 world right? Instant information. Twitter forces you to be concise (140 characters or less), and for some, including myself, that can be hard to do.</p>
<p>As for features, Twitter is pretty streamline, and to the point. Phone, and IM integration is very nice, and the ability to make things private (for friends only) or public is also nice for those who are a bit protective about their goings on. A bit of advice…If you don’t have unlimited texting on your phone…just say “NO!!” to the Phone option.</p>
<p>As for uses, there are more and more springing up all the time. Businesses are using it to keep up with what their employees are doing, news agencies are using it, etc… As for me, I just use it as a quicker form of IM’ing, mini-blogging, link passing, and for comic relief. The people I tend to follow are wise asses ;)</p>
<p>Twitter also seems to be quite the ‘Equalizer,’ so to speak. What I mean by that is, I am following quite a few people I highly respect in the industry, and while I have never met these people, I feel like if we meet in person, I won’t feel like I have never met them. Odd really…but true. <a href="http://www.w3conversions.com">Stephanie Sullivan of W3Conversions</a>, does a better job of explaining this than I do <a href="http://communitymx.com/blog/index.cfm?newsid=902&#038;blogger=15">over at her blog</a>, and also has a pretty cool new users tutorial that goes along with it.</p>
<p>Well, that’s about it really. While I don’t think Twitter is a huge Godsend of an application…it is pretty cool. I definitely will continue using it, and if you want to follow me (I have no idea why…but I am pretty damn funny!), http://twitter.com/kdeleon</p>
<p>Happy Twittering…(That’s for <a href="http://abraham.dizandat.com/">Abraham</a>&#8230;he HATES it when I turn things into verbs).</p>
<img src="http://feeds.feedburner.com/~r/kevin-deleon-web-design/~4/c10oh8JOfKU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.kevin-deleon.com/2008/02/twitter-iffic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.kevin-deleon.com/2008/02/twitter-iffic/</feedburner:origLink></item>
	</channel>
</rss>
