<?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>David Wells</title>
	<atom:link href="http://www.davidwells.tv/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.davidwells.tv</link>
	<description>David Wells&#039;s Stie</description>
	<lastBuildDate>Sat, 05 May 2012 03:39:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Awesome WordPress Snippet to Debug and See all Custom Post Meta Elements</title>
		<link>http://www.davidwells.tv/awesome-wordpress-snippet-to-debug-and-see-all-custom-post-meta-elements/</link>
		<comments>http://www.davidwells.tv/awesome-wordpress-snippet-to-debug-and-see-all-custom-post-meta-elements/#comments</comments>
		<pubDate>Sat, 05 May 2012 03:39:43 +0000</pubDate>
		<dc:creator>David Wells</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.davidwells.tv/?p=4314</guid>
		<description><![CDATA[Ran across this script earlier today. It helped be see a huge list of custom post fields aka, wordpress post meta, to use in a WordPress Custom Post template. Place it in the single.php or custom page template loop and you can echo out all of the available post variables. &#60;h3&#62;All Post Meta&#60;/h3&#62; &#60;?php $getPostCustom=get_post_custom(); // Get [...]]]></description>
			<content:encoded><![CDATA[<p>Ran across this script earlier today.</p>
<p>It helped be see a huge list of custom post fields aka, wordpress post meta, to use in a WordPress Custom Post template.</p>
<p>Place it in the single.php or custom page template loop and you can echo out all of the available post variables.</p>
<pre class="brush: php; gutter: true">&lt;h3&gt;All Post Meta&lt;/h3&gt;

&lt;?php $getPostCustom=get_post_custom(); // Get all the data ?&gt;

&lt;?php
    foreach($getPostCustom as $name=&gt;$value) {

        echo &quot;&lt;strong&gt;&quot;.$name.&quot;&lt;/strong&gt;&quot;.&quot;  =&gt;  &quot;;

        foreach($value as $nameAr=&gt;$valueAr) {
                echo &quot;&lt;br /&gt;     &quot;;
                echo $nameAr.&quot;  =&gt;  &quot;;
                echo var_dump($valueAr);
        }

        echo &quot;&lt;br /&gt;&lt;br /&gt;&quot;;

    }
?&gt;</pre>
<p style="text-align: center;"><a href="http://cdn6.davidwells.tv/wp-content/uploads/2012/05/all-variables.png"><img class=" wp-image-4316 aligncenter" title="all variables" src="http://cdn5.davidwells.tv/wp-content/uploads/2012/05/all-variables-1024x768.png" alt="" width="614" height="461" /></a></p>
<p>I highly recommend saving it.</p>
<p>Once you echo out all of your custom post meta you can set up conditional logic like:</p>
<pre class="brush: actionscript3; gutter: true">&lt;?php if (get_post_meta($post-&gt;ID, &#039;landing_page_checkbox&#039;, true) == &quot;&quot;) {
  echo &quot;#menu {display:none;}&quot;; } ?&gt;</pre>
<p>This code above is hiding my sites navigation is the custom meta box is checked.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidwells.tv/awesome-wordpress-snippet-to-debug-and-see-all-custom-post-meta-elements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Seed &amp; Build Facebook Fans for Your Facebook Business Page</title>
		<link>http://www.davidwells.tv/how-to-seed-build-facebook-fans-for-facebook-business-pages/</link>
		<comments>http://www.davidwells.tv/how-to-seed-build-facebook-fans-for-facebook-business-pages/#comments</comments>
		<pubDate>Sat, 07 Apr 2012 03:15:57 +0000</pubDate>
		<dc:creator>David Wells</dc:creator>
				<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.davidwells.tv/?p=4263</guid>
		<description><![CDATA[Growing a Facebook community can be tough. It&#8217;s a long grueling process that takes time, effort, and elbow grease. Most people throw in the towel after months of effort with no reward. I&#8217;ve grown a number of facebook fan pages and I&#8217;m going to give you a quick tip to get the ball rolling. Necessary [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://cdn5.davidwells.tv/wp-content/uploads/2012/04/facebookgrow.png"><img class="size-full wp-image-4268 alignright" title="facebookgrow" src="http://cdn5.davidwells.tv/wp-content/uploads/2012/04/facebookgrow.png" alt="" width="310" height="224" /></a>Growing a Facebook community can be tough. It&#8217;s a long grueling process that takes time, effort, and elbow grease.</p>
<div class="LessonContent">
<div class="LessonSummary">
<p>Most people throw in the towel after months of effort with no reward.</p>
<p>I&#8217;ve grown a number of facebook fan pages and I&#8217;m going to give you a quick tip to get the ball rolling.</p>
</div>
<div class="LessonStep top">
<h2 class="StepTitle">Necessary Ingredients</h2>
<p>To quickly seed fan page growth you will need the following:</p>
<ol>
<li><a href="http://www.mozilla.org/en-US/firefox/fx/" target="_blank">Firefox</a></li>
<li>The <a href="https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/" target="_blank">Greasemonkey extension for Firefox</a></li>
<li>Friends, coworkers, and family. (You have some combination of these hopefully.)</li>
</ol>
</div>
<div class="LessonStep top">
<h2 class="StepTitle">Step 1 &#8211; Install Greasemonkey for Firefox</h2>
<div class="StepImage"><div rel="album" class="sws_image_frame sws_center use-lightbox-1" style="width:585px; height:px;"><a href=""><img rel="" src="http://cdn6.davidwells.tv/wp-content/uploads/2012/04/Step_1_-_Install_Greasemonkey_for_Firefox.png" class="sws_style1" style="border-radius:3px; -moz-border-radius:3px; -webkit-border-radius:3px; max-width:585px; max-height:px;"></a></div></div>
<div class="StepInstructions">
<p>Install the firefox extension greasemonkey. https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/</p>
<p>Greasemonkey is an awesome tool that allows you to add functionality to popular websites via user contributed javascript snippets. In laymans terms, it makes the internet better.</p>
<p>I&#8217;d recommend researching a script before installing it, due to possible <a href="http://www.firefoxfacts.com/2007/07/09/greasemonkey-security-issues/">security issues</a>.</p>
<p>The Facebook: InviteThemAll script works like a charm, I&#8217;ve tested and used it hundreds of times.</p>
</div>
</div>
<div class="LessonStep top">
<h2 class="StepTitle">Step 2 &#8211; Install Facebook Invite Them All</h2>
<div class="StepImage"><div rel="album" class="sws_image_frame sws_center use-lightbox-1" style="width:585px; height:px;"><a href=""><img rel="" src="http://cdn4.davidwells.tv/wp-content/uploads/2012/04/Step_2_-_Install_Facebook_Invite_Them_All.png" class="sws_style1" style="border-radius:3px; -moz-border-radius:3px; -webkit-border-radius:3px; max-width:585px; max-height:px;"></a></div></div>
<div class="StepInstructions">
<p>The greasemonkey script we will be using is called <a href="http://userscripts.org/scripts/show/89653">Facebook: InviteThemAll</a> and it does exactly what it says. Helps you invite all of your friends to like your fan page quickly and easily.</p>
<p>Instead of spending hours (not really but like 10+minutes) clicking every single check box, you can use greasemonkey + the facebook invite them all script to do it for you in 10 seconds.</p>
<p>This is helpful for sanity&#8217;s sake and to <strong>actually get your coworkers to invite their networks as well.</strong></p>
</div>
</div>
<div class="LessonStep top">
<h2 class="StepTitle">Step 3 &#8211; Invite Your Companies Collective Network</h2>
<div class="StepImage"><div rel="album" class="sws_image_frame sws_center use-lightbox-1" style="width:585px; height:px;"><a href=""><img rel="" src="http://cdn6.davidwells.tv/wp-content/uploads/2012/04/Step_3_-_Invite_Your_Companies_Collective_Network.png" class="sws_style1" style="border-radius:3px; -moz-border-radius:3px; -webkit-border-radius:3px; max-width:585px; max-height:px;"></a></div></div>
<div class="StepInstructions">
<p>After you have installed greasemonkey and the Facebook Invite them all script in Firefox, Navigate to your facebook fan page and click on Invite Friends.</p>
</div>
</div>
<div class="LessonStep top">
<h2 class="StepTitle">a. Select Your Entire Network</h2>
<div class="StepImage"><div rel="album" class="sws_image_frame sws_center use-lightbox-1" style="width:585px; height:px;"><a href=""><img rel="" src="http://cdn5.davidwells.tv/wp-content/uploads/2012/04/a._Select_Your_Entire_Network.png" class="sws_style1" style="border-radius:3px; -moz-border-radius:3px; -webkit-border-radius:3px; max-width:585px; max-height:px;"></a></div></div>
<div class="StepInstructions">
<p>Hit the recent interactions dropdown menu and select &#8220;search all friends&#8221;</p>
<p>This will allow you to see your entire network</p>
</div>
</div>
<div class="LessonStep top">
<h2 class="StepTitle">b. Use the added greasemonkey functionality to select all friends with one click</h2>
<div class="StepImage"><div rel="album" class="sws_image_frame sws_center use-lightbox-1" style="width:585px; height:px;"><a href=""><img rel="" src="http://cdn4.davidwells.tv/wp-content/uploads/2012/04/b._Use_the_added_greasemonkey_functionality_to_select_all_friends_with_one_click.png" class="sws_style1" style="border-radius:3px; -moz-border-radius:3px; -webkit-border-radius:3px; max-width:585px; max-height:px;"></a></div></div>
<div class="StepInstructions">
<p>You will also notice the new select from friends option underneath the search box, this is what greasemonkey and the script has dynamically added into the page.</p>
<p>Click select on the new select all bar, wait for it to do it&#8217;s magic. It might take 30 seconds or so and it might also ask you to disable the running</p>
</div>
</div>
<div class="LessonStep top">
<h2 class="StepTitle">c. If asked, continue the script.</h2>
<div class="StepImage"><div rel="album" class="sws_image_frame sws_center use-lightbox-1" style="width:585px; height:px;"><a href=""><img rel="" src="http://cdn5.davidwells.tv/wp-content/uploads/2012/04/c._If_asked__continue_the_script..png" class="sws_style1" style="border-radius:3px; -moz-border-radius:3px; -webkit-border-radius:3px; max-width:585px; max-height:px;"></a></div></div>
<div class="StepInstructions">
<p>Click continue and let the script finish</p>
</div>
</div>
<div class="LessonStep top">
<h2 class="StepTitle">d. Click Submit and Invite your Network to join the conversation on your fan page</h2>
<div class="StepImage"><div rel="album" class="sws_image_frame sws_center use-lightbox-1" style="width:585px; height:px;"><a href=""><img rel="" src="http://cdn6.davidwells.tv/wp-content/uploads/2012/04/d._Click_Submit_and_Invite_your_Network_to_join_the_conversation_on_your_fan_page.png" class="sws_style1" style="border-radius:3px; -moz-border-radius:3px; -webkit-border-radius:3px; max-width:585px; max-height:px;"></a></div></div>
<div class="StepInstructions">
<p>Submit and invite your network to like your Facebook Fan Page. <strong>Boom. Done.</strong></p>
<p>Now that you have quickly invited your network to become a fan of your page, there is no reason to stop here. Pick up your laptop and walk around the office and ask your fellow coworkers to help by having them login quickly and repeating the process.</p>
<p>Most people will be glad to promote the company they work for through to their network. Those who refuse&#8230; fire them immediately (just kidding)</p>
<p>Just clearly explain to your coworkers that you are trying to jump start the growth on the facebook fan page in order to help drive more traffic into the site.</p>
</div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.davidwells.tv/how-to-seed-build-facebook-fans-for-facebook-business-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Recover Your WordPress Site after a Plugin Install Goes Wrong</title>
		<link>http://www.davidwells.tv/how-to-recover-your-wordpress-site-after-a-plugin-install-goes-wrong/</link>
		<comments>http://www.davidwells.tv/how-to-recover-your-wordpress-site-after-a-plugin-install-goes-wrong/#comments</comments>
		<pubDate>Sun, 25 Mar 2012 22:49:04 +0000</pubDate>
		<dc:creator>David Wells</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.davidwells.tv/?p=4219</guid>
		<description><![CDATA[Sometimes shit happens, in all areas of life, and WordPress is not immune from the age old saying. Every time you install a new plugin on your site, especially if it&#8217;s a third party plugin not from the WordPress repository you run the risk of seeing the infamous White Screen of Death and your wordpress [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes <em>shit happens</em>, in all areas of life, and WordPress is not immune from the age old saying.</p>
<div class="LessonContent">
<div class="LessonSummary">
<p>Every time you install a new plugin on your site, especially if it&#8217;s a third party plugin not from the <a href="http://wordpress.org/extend/plugins/" target="_blank">WordPress repository</a> you run the risk of seeing the infamous White Screen of Death and your wordpress installation breaking.</p>
<p>Not to panic though, you can fix this issue quickly and easily in a couple of steps.</p>
</div>
<div class="LessonStep top">
<h3 class="StepTitle">Step 1 &#8211; Log into your FTP client and delete the plugin file or folder from your wp-content/plugins folder.</h3>
<div class="StepImage"><div rel="album" class="sws_image_frame sws_center use-lightbox-1" style="width:585px; height:px;"><a href=""><img rel="" src="http://cdn7.davidwells.tv/wp-content/uploads/2012/03/Step_1_-_Log_into_your_FTP_client_and_delete_the_plugin_file_or_folder_from_your_wp-contentplugins_folder..png" class="sws_style1" style="border-radius:3px; -moz-border-radius:3px; -webkit-border-radius:3px; max-width:585px; max-height:px;"></a></div></div>
<div class="StepInstructions">
<p>I use <a href="http://filezilla-project.org/" target="_blank">Filezilla</a> as my FTP client to connect to my server. Here is a <a href="http://www.youtube.com/watch?v=80rc8Ky__bs" target="_blank">quick video showing you how to connected to your server to manage your wordpress files </a></p>
<p>Once you find and delete the new plugin folder (or file) it will reset the site and automatically deactivate the plugin.</p>
<p><strong>If you are updating an existing plugin and the site breaks,</strong> follow the above procedure by deleting the plugin from your wordpress wp-content/plugins folder and then re-upload the older working version of the plugin you were using.</p>
<p>You can see all the old versions of a wordpress plugin in the <a href="http://wordpress.org/extend/plugins/" target="_blank">wordpress repository</a>.</p>
</div>
</div>
<div class="LessonStep top">
<div class="StepImage"><div rel="album" class="sws_image_frame sws_center use-lightbox-1" style="width:585px; height:px;"><a href=""><img rel="" src="http://cdn6.davidwells.tv/wp-content/uploads/2012/03/media_1332715123808.png" class="sws_style1" style="border-radius:3px; -moz-border-radius:3px; -webkit-border-radius:3px; max-width:585px; max-height:px;"></a></div></div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle">Step 2 &#8211; Download the older version of the plugin and upload it to your wp-content/plugins folder, then activate it</h3>
<div class="StepInstructions">
<p>Once you upload the older version of the plugin back to your site, you can simply head into the plugins settings inside of wordpress and activate the older version.</p>
<p>The plugin will continue to prompt you to upgrade, <strong>DO NOT DO THAT.</strong> (unless you want to go through these steps again)</p>
<p>Until the conflicting plugin/code is fixed, you are going to want to hold off on upgrading it.</p>
<p>Typically plugin updates are done to add features, but <strong>if the update is concerning a security issue</strong>, you will want to consult with a wordpress ninja (or the plugin developer) to get the issue resolved.</p>
</div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle">How to Troubleshoot the issue</h3>
<div class="StepInstructions">
<p><strong>This post is purely meant to get your site back up and running as quickly as possible</strong>.</p>
<p><a href="http://jaredheinrichs.com/how-to-troubleshoot-wordpress-white-screen-of-death.html" target="_blank">To troubleshoot exactly where and what is causing the conflict lies you will want to consult this post</a>.</p>
<p>I also highly recommend you have daily/weekly backups running on your server and via a <a href="http://wordpress.org/extend/plugins/wp-db-backup/" target="_blank">backup plugin</a>,  just in case all hell breaks lose and you completely fry your wordpress installation.</p>
<p>Getting a fresh wordpress installation up and running is a pretty quick and simple process but without a backup of your database and your wp-content folder, you could be in trouble.</p>
<p><strong>So, always have a backup of your wordpress databases and a copy of your wp-content folder. ***** This is important *****</strong></p>
</div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.davidwells.tv/how-to-recover-your-wordpress-site-after-a-plugin-install-goes-wrong/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Quickly Find Sites to Guest Post on with Advanced Search Queries</title>
		<link>http://www.davidwells.tv/how-to-quickly-find-sites-to-guest-post-on-with-advanced-search-queries/</link>
		<comments>http://www.davidwells.tv/how-to-quickly-find-sites-to-guest-post-on-with-advanced-search-queries/#comments</comments>
		<pubDate>Fri, 02 Mar 2012 22:15:35 +0000</pubDate>
		<dc:creator>David Wells</dc:creator>
				<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://www.davidwells.tv/?p=4170</guid>
		<description><![CDATA[Advanced search queries are your friend. Most people don&#8217;t know they exist and this is a travesty. If you are serious about winning at the internet you need to Learn about them. Once you get a grasp of some advanced queries and are able to traverse Google searches with the swiftness of Jeremy Lin, you will be able to do some [...]]]></description>
			<content:encoded><![CDATA[<p>Advanced search queries are your friend. Most people don&#8217;t know they exist and this is a travesty. If you are serious about winning at the internet you need to<strong> <a href="http://mz.cm/Aae4eW" target="_blank">Learn about them</a>.</strong></p>
<p>Once you get a grasp of some advanced queries and are able to traverse Google searches with the swiftness of Jeremy Lin, you will be able to do some advanced SEO and internet marketing research that will blow your mind.</p>
<div class="LessonContent">
<div class="LessonSummary">
<p>A recent advanced query I found while looking for places to contribute guest posts (aka grow inbound linkage &amp; authority) is:</p>
<ul>
<li>
<h2><strong><a href="http://bit.ly/y8MK0z" target="_blank">inpostauthor:&#8221;guest author&#8221; keyword</a></strong></h2>
</li>
</ul>
<p>In a nutshell this query is a quick and easy way to help you find guest blog posts. Replace keyword with an industry specific keyword that works for you.</p>
<p>Why would you want to guest blog? Well it&#8217;s one of the best ways to <a href="http://bit.ly/qPp4Nz">Grow Inbound Links</a> into your site and inbound links are the gold of the internet.</p>
</div>
<div class="LessonStep top">
<h3 class="StepTitle">Finding Guest Posting Opportunities with inpostauthor:&#8221;guest author&#8221; keyword</h3>
<div class="StepImage"><div rel="album" class="sws_image_frame sws_center use-lightbox-1" style="width:585px; height:px;"><a href=""><img rel="" src="http://cdn5.davidwells.tv/wp-content/uploads/2012/03/Finding_guest_posts_with_inpostauthorguest_author_keyword_in_action.png" class="sws_style1" style="border-radius:3px; -moz-border-radius:3px; -webkit-border-radius:3px; max-width:585px; max-height:px;"></a></div></div>
<div class="StepInstructions">
<p>Here is a quick example of me looking for sites to contribute content to that are focused on &#8220;Marketing&#8221;.</p>
<p>Rinse and repeat this method with whatever your industries main keywords are.</p>
<p>You might need to use broader terms if there is no blogs focused on Pneumonoultramicroscopicsilicovolcanoconiosis prevention.</p>
</div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle">Don&#8217;t Waste the Moment &#8211; Optimize Your Links in Guest Posts</h3>
<div class="StepImage"><div rel="album" class="sws_image_frame sws_center use-lightbox-1" style="width:585px; height:px;"><a href=""><img rel="" src="http://cdn4.davidwells.tv/wp-content/uploads/2012/03/Don_t_Waste_the_Moment.png" class="sws_style1" style="border-radius:3px; -moz-border-radius:3px; -webkit-border-radius:3px; max-width:585px; max-height:px;"></a></div></div>
<div class="StepInstructions">
<p>When you are spending your valuable time contributing guest content to another site, DO NOT squander the opportunity to get a keyword specific anchor text link back into your site.</p>
<p>In the above example, Ann Smarty (a super smart SEO that I follow closely and you should too), is contributing a post on Makeuseof.com and in her author bio the anchor text back into her site is &#8220;<a href="http://www.seosmarty.com/">SEO Consultant</a>&#8220;. This is exactly how you would want it.</p>
<p><strong>Good:</strong> <a href="http://www.seosmarty.com/">SEO Consultant</a><br />
<strong>Bad:</strong> <a href="http://www.seosmarty.com/">http://seosmarty.com</a></p>
<p>Techincally both links count in terms of SEO authority passing into her domain but the keyword specific link helps send google a clear message that this page behind the link is associated with the keyword &#8220;SEO Consultant&#8221; and perhaps we should weight her site higher than others for this particular keyword.</p>
<p><strong>There you have it! Go Google like a Pro.</strong></p>
</div>
</div>
</div>
<p>For more handy SEO Search Queries check out: <a href="http://bit.ly/xSvYEK">10000 Search Engine Queries for your Link Building Campaign</a> and my post on other queries I frequently use  to <strong><a href=" http://bit.ly/qPp4Nz">Grow Inbound Links via Guest Blogging Opportunities</a></strong></p>
<div class="div-sws_btn_align_center"><a id="sws-button11" class="sws-button sws_btn_xlarge sws_btn_forestgreen sws_btn_forestgreen_bg sws_btn_align_center sws_btn_glow" target="_blank" href="http://convertsocial.com/apps/twitter-search/"><span>Try out my new twitter search app!</span></a></div>
<script>jQuery(document).ready(function($){sws_button_styles({'sel':'#sws-button11','template':'sws_btn_forestgreen', 'textcolor':'','bgcolor':'','bgcolorhover':''});});</script>
]]></content:encoded>
			<wfw:commentRss>http://www.davidwells.tv/how-to-quickly-find-sites-to-guest-post-on-with-advanced-search-queries/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>3 Ways to Get Even More From Your Buffer App</title>
		<link>http://www.davidwells.tv/3-ways-to-get-more-from-buffer-and-ifttt/</link>
		<comments>http://www.davidwells.tv/3-ways-to-get-more-from-buffer-and-ifttt/#comments</comments>
		<pubDate>Thu, 01 Mar 2012 04:04:31 +0000</pubDate>
		<dc:creator>David Wells</dc:creator>
				<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.davidwells.tv/?p=4145</guid>
		<description><![CDATA[It is no secret, I&#8217;m a huge fan of the service Buffer. I tweet about it constantly and I use it for most of the content I share through twitter. If you aren&#8217;t familiar with Buffer, the service lets you stagger out tweets to go out at specified times rather than whenever you are reading [...]]]></description>
			<content:encoded><![CDATA[<p>It is no secret, I&#8217;m a huge fan of the service <a href="http://bit.ly/zg74p6">Buffer</a>. I tweet about it constantly and I use it for most of the content I share through twitter.</p>
<div class="LessonContent">
<div class="LessonSummary">
<p>If you aren&#8217;t familiar with Buffer, the service lets you stagger out tweets to go out at specified times rather than whenever you are reading the content. I typically do my blog reading in chunks and will have about 5 to 6 different posts I want to share but don&#8217;t want to take the time to schedule them out or I&#8217;m on a mobile device where scheduling tweets is painful.</p>
<p>Buffer was the solution. It lets me reach my audience at peak traffic times and not over-tweet my followers at any one time.</p>
<p>I recently discovered an app called ifttt, that enabled me to supercharge <a href="http://bit.ly/zg74p6">Buffer</a>, amongst other web services, to the next level.</p>
<p>Using <a href="http://bit.ly/zg74p6">Buffer</a> and <a href="http://ifttt.com/">Ifttt</a> together can help you streamline a ton of tedious social media minutia, get shit done, and get back to your day.</p>
<p>Below are the top 3 Recipes I&#8217;ve found to make Ifttt and <a href="http://bit.ly/zg74p6">Buffer</a> a dynamic duo.</p>
</div>
<div class="LessonStep top">
<h3 class="StepTitle">Ifttt Puts the internet and Buffer to work for you</h3>
<div class="StepImage"><div rel="album" class="sws_image_frame sws_center use-lightbox-1" style="width:585px; height:px;"><a href=""><img rel="" src="http://cdn5.davidwells.tv/wp-content/uploads/2012/03/Ifttt_Puts_the_internet_and_Buffer_to_work_for_you1.png" class="sws_style1" style="border-radius:3px; -moz-border-radius:3px; -webkit-border-radius:3px; max-width:585px; max-height:px;"></a></div></div>
<div class="StepInstructions">
<p>Ifttt, short for &#8220;if this then that&#8221;, is a magical web services that allows you to tie together a myriad of web services that you use on a daily basis and puts them to work for you.</p>
<p>You can then mashup a number of web services without having to know anything about code at all via the premade recipes in ifttt.</p>
<p>One of the services, or channels as they call them, that <a href="http://ifttt.com/">ifttt</a> can mashup with is your buffer account. Yipee!</p>
<p>There is a growing number of <a href="http://bit.ly/zg74p6">buffer</a> recipes on ifttt, but I&#8217;m just going to cover the most useful ones that I have found and use on a regular basis.</p>
</div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle">Buffer Recipe # 1 &#8211; Every tweet I favorite gets added to my buffer</h3>
<div class="StepImage"><div rel="album" class="sws_image_frame sws_center use-lightbox-1" style="width:585px; height:px;"><a href=""><img rel="" src="http://cdn5.davidwells.tv/wp-content/uploads/2012/03/Buffer_Recipe___1_-_Every_tweet_I_favorite_gets_added_to_my_buffer1.png" class="sws_style1" style="border-radius:3px; -moz-border-radius:3px; -webkit-border-radius:3px; max-width:585px; max-height:px;"></a></div></div>
<div class="StepInstructions">
<p>This recipe is super handy for quickly and easily adding tweets to my buffer while on the go.</p>
<p>Enabling this recipe means that anytime you favorite a tweet, be it on the web or via any mobile twitter client, it automgaically gets added into your buffer.</p>
<p><a href="http://ifttt.com/recipes/10653">http://ifttt.com/recipes/10653</a></p>
</div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle">Buffer Recipe # 2 &#8211; Feed an RSS through Buffer and Spam less</h3>
<div class="StepImage"><div rel="album" class="sws_image_frame sws_center use-lightbox-1" style="width:585px; height:px;"><a href=""><img rel="" src="http://cdn4.davidwells.tv/wp-content/uploads/2012/03/Buffer_Recipe___2_-_Feed_an_RSS_through_Buffer_and_Spam_less1.png" class="sws_style1" style="border-radius:3px; -moz-border-radius:3px; -webkit-border-radius:3px; max-width:585px; max-height:px;"></a></div></div>
<div class="StepInstructions">
<p>This ifttt recipe will allow you to feed an rss feed through to your <a href="http://bit.ly/zg74p6">buffer</a> account to stagger out the posts to peak times.</p>
<p>I&#8217;ve set this up for blog rss feeds and for a custom yahoo pipe that aggregates a number of sites I read.</p>
<p><a href="http://ifttt.com/recipes/8512">http://ifttt.com/recipes/8512</a></p>
</div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle">Buffer Recipe # 3 &#8211; Feed an RSS through Buffer and Spam less</h3>
<div class="StepImage"><div rel="album" class="sws_image_frame sws_center use-lightbox-1" style="width:585px; height:px;"><a href=""><img rel="" src="http://cdn7.davidwells.tv/wp-content/uploads/2012/03/Buffer_Recipe___3_-_Feed_an_RSS_through_Buffer_and_Spam_less1.png" class="sws_style1" style="border-radius:3px; -moz-border-radius:3px; -webkit-border-radius:3px; max-width:585px; max-height:px;"></a></div></div>
<div class="StepInstructions">
<p>This recipe I made myself (*pat on back*). With it, any tweet that I send out with the hastag #RT will get added to my buffer to be sent out in a couple of days.</p>
<p>Very handy for automatically re-sharing some content (like this post) that I spent time creating at a later date to get the most leverage out of it.</p>
<p>I choose the #RT in the hopes that people would also retweet the post.</p>
<p><strong>The great thing about all of the recipes in ifttt is that you can customize any of the steps, which means you can change the hashtag to whatever you want.</strong></p>
<p><a href="http://ifttt.com/recipes/23065">http://ifttt.com/recipes/23065</a></p>
</div>
</div>
</div>
<h2> Do You Use <a href="http://bufferapp.com/r/8314f">Buffer</a> or <a href="https://ifttt.com/">Ifttt</a>? If not&#8230;. What is stopping you?</h2>
]]></content:encoded>
			<wfw:commentRss>http://www.davidwells.tv/3-ways-to-get-more-from-buffer-and-ifttt/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>The Top 90 Must Follow WordPress Experts on Twitter</title>
		<link>http://www.davidwells.tv/90-must-follow-wordpress-twitter-accounts/</link>
		<comments>http://www.davidwells.tv/90-must-follow-wordpress-twitter-accounts/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 00:29:41 +0000</pubDate>
		<dc:creator>David Wells</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.davidwells.tv/?p=4098</guid>
		<description><![CDATA[In an effort to keep tabs on what is happening in the world of WordPress, I&#8217;ve scoured the interwebs and compiled a huge list of WordPress folks that I follow on twitter. I&#8217;ve been piecing together the list over the last 4 years and I was finally inspired to post it after reading WPMU&#8217;s 100 [...]]]></description>
			<content:encoded><![CDATA[<p>In an effort to keep tabs on what is happening in the world of WordPress, I&#8217;ve scoured the interwebs and compiled a huge list of WordPress folks that I follow on twitter.</p>
<p>I&#8217;ve been piecing together the list over the last 4 years and I was finally inspired to post it after reading <a href="http://bit.ly/w1q0Xx">WPMU&#8217;s 100 – The Top WordPress Related Blogs On The Internet</a>. (read their post)</p>
<p>So if you are interested in learning more about how WordPress works or how to improve your site <strong>you can <a href="https://twitter.com/DavidWells/wordpress">follow the entire list here</a></strong> or pick and choose from the list below.  </p>
<p>I highly recommend you check out their profiles and sites. Killer stuff down there!</p>
<p>If you have other WordPress related twitter accounts that are a must follow, let me know in the comments down below or Tweet at me <a href="http://twitter.com/davidwells">@DavidWells.</a></p>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/catswhocode' target='_blank'><img style='border: 2px solid black;' src="http://cdn6.davidwells.tv/wp-content/uploads/2012/02/twitux_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/catswhocode' target='_blank'>Jean-Baptiste Jung &#8211; <span style='color:#0380d4;'>@catswhocode</a></span></b><br /> Web developer, WordPress user, blogger, entrepreneur, born-again Christian, vegetarian and animal rights supporter.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/catswhocode' class='btn' target='_blank'>Follow @catswhocode</a></p>
<p><a href='http://www.catswhocode.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/dynamicwp' target='_blank'><img style='border: 2px solid black;' src="http://cdn5.davidwells.tv/wp-content/uploads/2012/02/dw-symbol_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/dynamicwp' target='_blank'>DynamicWP &#8211; <span style='color:#0380d4;'>@dynamicwp</a></span></b><br /> Developing beautiful WordPress Themes and Plugins</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/dynamicwp' class='btn' target='_blank'>Follow @dynamicwp</a></p>
<p><a href='http://www.premium.dynamicwp.net' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wpbeginner' target='_blank'><img style='border: 2px solid black;' src="http://cdn4.davidwells.tv/wp-content/uploads/2012/02/wpbeginnertwitterimg_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wpbeginner' target='_blank'>WordPress Beginner &#8211; <span style='color:#0380d4;'>@wpbeginner</a></span></b><br /> WPBeginner offers tips, tools, resources, and suggestions to #WordPress Users. If you are a WordPress User, then you should stay updated with our tweets.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wpbeginner' class='btn' target='_blank'>Follow @wpbeginner</a></p>
<p><a href='http://www.wpbeginner.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wplabzip' target='_blank'><img style='border: 2px solid black;' src="http://cdn7.davidwells.tv/wp-content/uploads/2012/02/LabZip300-logo_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wplabzip' target='_blank'>LabZip &#8211; <span style='color:#0380d4;'>@WPLabZip</a></span></b><br /> Everything WordPress in One Place!</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wplabzip' class='btn' target='_blank'>Follow @wplabzip</a></p>
<p><a href='http://labzip.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/bavotasan' target='_blank'><img style='border: 2px solid black;' src="http://cdn6.davidwells.tv/wp-content/uploads/2012/02/blogo_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/bavotasan' target='_blank'>c.bavota &#8211; <span style='color:#0380d4;'>@bavotasan</a></span></b><br /> c.bavota is a web developer from Montreal. He&#8217;s into this and that.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/bavotasan' class='btn' target='_blank'>Follow @bavotasan</a></p>
<p><a href='http://bavotasan.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/davidwells' target='_blank'><img style='border: 2px solid black;' src="http://cdn7.davidwells.tv/wp-content/uploads/2012/02/twi_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/davidwells' target='_blank'>David Wells &#8211; <span style='color:#0380d4;'>@DavidWells</a></span></b><br /> Founder of ConvertSocial.com | Inbound Marketing Consultant @Hubspot | Host of http://InboundNow.tv | Fanatical WordPress Designer &#038; Developer.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/davidwells' class='btn' target='_blank'>Follow @davidwells</a></p>
<p><a href='http://www.davidgregorywells.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/_mfields' target='_blank'><img style='border: 2px solid black;' src="http://cdn4.davidwells.tv/wp-content/uploads/2012/02/image1326311313_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/_mfields' target='_blank'>Michael Fields &#8211; <span style='color:#0380d4;'>@_mfields</a></span></b><br /> I am a Theme Wrangler at @automattic. Do not click follow unless you totally geek-out on WordPress <img src='http://cdn7.davidwells.tv/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  https://github.com/mfields</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/_mfields' class='btn' target='_blank'>Follow @_mfields</a></p>
<p><a href='http://wordpress.mfields.org/' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/takashiirie' target='_blank'><img style='border: 2px solid black;' src="http://cdn4.davidwells.tv/wp-content/uploads/2012/02/avatar_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/takashiirie' target='_blank'>Takashi Irie &#8211; <span style='color:#0380d4;'>@TakashiIrie</a></span></b><br /> Living in Brighton, UK. I am a Theme Wrangler at Automattic. I love Jackin&#8217; house music as much as WordPress. </p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/takashiirie' class='btn' target='_blank'>Follow @takashiirie</a></p>
<p><a href='http://takashiirie.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/michiecat' target='_blank'><img style='border: 2px solid black;' src="http://cdn7.davidwells.tv/wp-content/uploads/2012/02/image1326872151_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/michiecat' target='_blank'>Michelle &#8211; <span style='color:#0380d4;'>@michiecat</a></span></b><br /> I&#8217;m a Theme Wrangler for Automattic. I love cute animals, singing, astronomy and warm, sunny weather.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/michiecat' class='btn' target='_blank'>Follow @michiecat</a></p>
<p><a href='http://www.michellelangston.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/philip_arthur' target='_blank'><img style='border: 2px solid black;' src="http://cdn7.davidwells.tv/wp-content/uploads/2012/02/image_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/philip_arthur' target='_blank'>Philip Arthur Moore &#8211; <span style='color:#0380d4;'>@philip_arthur</a></span></b><br /> United States-born, Hanoi-based expatriate. WordPress Theme Wrangler at @Automattic. Music lover. Chocoholic.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/philip_arthur' class='btn' target='_blank'>Follow @philip_arthur</a></p>
<p><a href='http://philiparthurmoore.com/' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/simpledream' target='_blank'><img style='border: 2px solid black;' src="http://cdn7.davidwells.tv/wp-content/uploads/2012/02/lance-willett_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/simpledream' target='_blank'>Lance Willett &#8211; <span style='color:#0380d4;'>@simpledream</a></span></b><br /> Outdoorsman, polyglot, second-culture kid, and recovering RVer. WordPress theme developer for Automattic.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/simpledream' class='btn' target='_blank'>Follow @simpledream</a></p>
<p><a href='http://simpledream.net' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/bausero' target='_blank'><img style='border: 2px solid black;' src="http://cdn4.davidwells.tv/wp-content/uploads/2012/02/5527147929_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/bausero' target='_blank'>Matías Ventura &#8211; <span style='color:#0380d4;'>@bausero</a></span></b><br /> I am a designer, student of philosophy and film director. I am a Theme Wrangler at Automattic.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/bausero' class='btn' target='_blank'>Follow @bausero</a></p>
<p><a href='http://matiasventura.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/envatowp' target='_blank'><img style='border: 2px solid black;' src="http://cdn6.davidwells.tv/wp-content/uploads/2012/02/envatowp_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/envatowp' target='_blank'>Envato WP &#8211; <span style='color:#0380d4;'>@EnvatoWP</a></span></b><br /> The world&#8217;s best WordPress tutorials site.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/envatowp' class='btn' target='_blank'>Follow @envatowp</a></p>
<p><a href='http://wp.tutsplus.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wptavern' target='_blank'><img style='border: 2px solid black;' src="http://cdn5.davidwells.tv/wp-content/uploads/2012/02/hybridnewsdefault_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wptavern' target='_blank'>wptavern &#8211; <span style='color:#0380d4;'>@wptavern</a></span></b><br /> Official account for the WPTavern website</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wptavern' class='btn' target='_blank'>Follow @wptavern</a></p>
<p><a href='http://www.wptavern.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/perishable' target='_blank'><img style='border: 2px solid black;' src="http://cdn5.davidwells.tv/wp-content/uploads/2012/02/Jeff-Starr_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/perishable' target='_blank'>Jeff Starr &#8211; <span style='color:#0380d4;'>@perishable</a></span></b><br /> Web developer &#038; graphic designer at Perishable Press and Monzilla Media. Co-Author of Digging into WordPress. WordPress Editor at Smashing Magazine.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/perishable' class='btn' target='_blank'>Follow @perishable</a></p>
<p><a href='http://perishablepress.com/' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/chriscoyier' target='_blank'><img style='border: 2px solid black;' src="http://cdn4.davidwells.tv/wp-content/uploads/2012/02/Gravatar2_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/chriscoyier' target='_blank'>Chris Coyier &#8211; <span style='color:#0380d4;'>@chriscoyier</a></span></b><br /> Lead Hucklebucker. </p>
<p>Master Cascader. </p>
<p>Head Tag Closer. </p>
<p>@Wufoo</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/chriscoyier' class='btn' target='_blank'>Follow @chriscoyier</a></p>
<p><a href='http://css-tricks.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/sixrevisions' target='_blank'><img style='border: 2px solid black;' src="http://cdn7.davidwells.tv/wp-content/uploads/2012/02/new_twitter_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/sixrevisions' target='_blank'>Six Revisions &#8211; <span style='color:#0380d4;'>@sixrevisions</a></span></b><br /> Six Revisions is a website that publishes practical and useful articles for designers and web developers, maintained by Jacob Gube.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/sixrevisions' class='btn' target='_blank'>Follow @sixrevisions</a></p>
<p><a href='http://sixrevisions.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wpzoom' target='_blank'><img style='border: 2px solid black;' src="http://cdn5.davidwells.tv/wp-content/uploads/2012/02/twit_avatar_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wpzoom' target='_blank'>WPZOOM &#8211; <span style='color:#0380d4;'>@wpzoom</a></span></b><br /> We Create Professional &#038; Impressive WordPress Themes That Work. Follow our co-founders: @ciorici &#038; @dumitru</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wpzoom' class='btn' target='_blank'>Follow @wpzoom</a></p>
<p><a href='http://www.wpzoom.com/' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/speckyboy' target='_blank'><img style='border: 2px solid black;' src="http://cdn5.davidwells.tv/wp-content/uploads/2012/02/speckthumb3_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/speckyboy' target='_blank'>Paul Andrew &#8211; <span style='color:#0380d4;'>@speckyboy</a></span></b><br /> Speckyboy Design Magazine is a web and graphic design blog run by Paul Andrew</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/speckyboy' class='btn' target='_blank'>Follow @speckyboy</a></p>
<p><a href='http://speckyboy.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/yoast' target='_blank'><img style='border: 2px solid black;' src="http://cdn7.davidwells.tv/wp-content/uploads/2012/02/Yoast-Avatar_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/yoast' target='_blank'>Joost de Valk &#8211; <span style='color:#0380d4;'>@yoast</a></span></b><br /> I build &#038; tweak websites for performance, SEO and conversion, often using my WordPress plugins. Blogger, speaker &#038; podcaster. Live in NL with wife and 3 kids.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/yoast' class='btn' target='_blank'>Follow @yoast</a></p>
<p><a href='http://yoast.com/twit' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/sareiodata' target='_blank'><img style='border: 2px solid black; width:75px; height:75px;' src="http://cdn7.davidwells.tv/wp-content/uploads/2012/02/christian.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/sareiodata' target='_blank'>Cristian Antohe &#8211; <span style='color:#0380d4;'>@sareiodata</a></span></b><br /> Web-designer working mostly with WordPress. Also I&#8217;m a cofunder of http://reflectionmedia.ro and I curate http://wpmail.me</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/sareiodata' class='btn' target='_blank'>Follow @sareiodata</a></p>
<p><a href='http://www.cozmoslabs.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/managewp' target='_blank'><img style='border: 2px solid black; width:75px; height:75px;' src="http://cdn5.davidwells.tv/wp-content/uploads/2012/02/manawp.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/managewp' target='_blank'>ManageWP &#8211; <span style='color:#0380d4;'>@managewp</a></span></b><br /> Make managing multiple WordPress blogs easier with ManageWP.com. </p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/managewp' class='btn' target='_blank'>Follow @managewp</a></p>
<p><a href='http://managewp.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/solostream' target='_blank'><img style='border: 2px solid black;' src="http://a3.twimg.com/profile_images/628605999/solo-banner-125-1_bigger.gif"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/solostream' target='_blank'>Mike Durkin &#8211; <span style='color:#0380d4;'>@Solostream</a></span></b><br /> Premium WordPress themes for small business and individual bloggers.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/solostream' class='btn' target='_blank'>Follow @solostream</a></p>
<p><a href='http://www.solostream.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/blpro' target='_blank'><img style='border: 2px solid black;' src="http://a1.twimg.com/profile_images/258499536/Picture_21_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/blpro' target='_blank'>BloggingPro &#8211; <span style='color:#0380d4;'>@blpro</a></span></b><br /> BloggingPro is one of the oldest news sites around blogs, WordPress and other blogging platforms</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/blpro' class='btn' target='_blank'>Follow @blpro</a></p>
<p><a href='http://bloggingpro.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/HackWordPress' target='_blank'><img style='border: 2px solid black;' src="http://a2.twimg.com/profile_images/197407540/wphacks_favicon_bigger.gif"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/HackWordPress' target='_blank'>WordPress Hacks &#8211; <span style='color:#0380d4;'>@HackWordPress</a></span></b> </p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/HackWordPress' class='btn' target='_blank'>Follow @HackWordPress</a></p>
<p><a href='' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wplift' target='_blank'><img style='border: 2px solid black;' src="http://a0.twimg.com/profile_images/1123683629/logo_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wplift' target='_blank'>WPLift &#8211; <span style='color:#0380d4;'>@wplift</a></span></b><br /> WPLift is a blog all about WordPress, we cover tips &#038; tutorials, theme &#038; plugin reviews and everything else related to our favourite CMS.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wplift' class='btn' target='_blank'>Follow @wplift</a></p>
<p><a href='http://wplift.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/pingable' target='_blank'><img style='border: 2px solid black;' src="http://a3.twimg.com/profile_images/635656430/grav_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/pingable' target='_blank'>pingable &#8211; <span style='color:#0380d4;'>@pingable</a></span></b><br /> We Blog about everything WordPress</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/pingable' class='btn' target='_blank'>Follow @pingable</a></p>
<p><a href='http://www.pingable.org' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/alexdenning' target='_blank'><img style='border: 2px solid black;' src="http://a0.twimg.com/profile_images/1195917759/gravatar_bigger.jpeg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/alexdenning' target='_blank'>Alex Denning &#8211; <span style='color:#0380d4;'>@AlexDenning</a></span></b><br /> Nerdy music type.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/alexdenning' class='btn' target='_blank'>Follow @alexdenning</a></p>
<p><a href='http://wpshout.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/themeshock' target='_blank'><img style='border: 2px solid black;' src="http://a3.twimg.com/profile_images/1216437493/wts-logo_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/themeshock' target='_blank'>ThemeShock &#8211; <span style='color:#0380d4;'>@themeshock</a></span></b><br /> Super high quality free design resources for wordpress and web professionals.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/themeshock' class='btn' target='_blank'>Follow @themeshock</a></p>
<p><a href='http://www.themeshock.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/ryanhellyer' target='_blank'><img style='border: 2px solid black;' src="http://a2.twimg.com/profile_images/1250797000/cd6f28879081e16114eb923a5d9614ae_1__bigger.jpg_size_200"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/ryanhellyer' target='_blank'>Ryan Hellyer &#8211; <span style='color:#0380d4;'>@ryanhellyer</a></span></b><br /> Web entrepreneur. Founder PixoPoint web development.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/ryanhellyer' class='btn' target='_blank'>Follow @ryanhellyer</a></p>
<p><a href='http://pixopoint.com/' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/devinsays' target='_blank'><img style='border: 2px solid black;' src="http://a2.twimg.com/profile_images/1649568660/7626_148280220613_661190613_3092647_4472843_n_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/devinsays' target='_blank'>Devin Price &#8211; <span style='color:#0380d4;'>@devinsays</a></span></b><br /> Web developer and WordPress aficionado living in Austin, Texas.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/devinsays' class='btn' target='_blank'>Follow @devinsays</a></p>
<p><a href='http://www.wptheming.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/AtDdev' target='_blank'><img style='border: 2px solid black;' src="http://a0.twimg.com/profile_images/1097085896/icon_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/AtDdev' target='_blank'>Spelling and Grammar &#8211; <span style='color:#0380d4;'>@AtDdev</a></span></b><br /> After the Deadline: an open source spelling, grammar, &#038; style checker for WordPress &#038; Firefox. Brought to you by the folks at Automattic.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/AtDdev' class='btn' target='_blank'>Follow @AtDdev</a></p>
<p><a href='http://www.afterthedeadline.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wparena' target='_blank'><img style='border: 2px solid black;' src="http://a3.twimg.com/profile_images/785558939/wpa_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wparena' target='_blank'>Wp Arena &#8211; <span style='color:#0380d4;'>@wparena</a></span></b><br /> WordPress Arena is growing hot spot for WordPress Developers and Designers, free and useful online resources for them.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wparena' class='btn' target='_blank'>Follow @wparena</a></p>
<p><a href='http://wparena.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wpmods' target='_blank'><img style='border: 2px solid black;' src="http://a2.twimg.com/profile_images/766618337/wp_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wpmods' target='_blank'>WP Mods &#8211; <span style='color:#0380d4;'>@WPMods</a></span></b><br /> WPMods is a WordPress blog which focuses on WordPress Themes, Plugins and Modifications. It also features the latest WordPress news and views.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wpmods' class='btn' target='_blank'>Follow @wpmods</a></p>
<p><a href='http://www.wpmods.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/blondishnet' target='_blank'><img style='border: 2px solid black;' src="http://a0.twimg.com/profile_images/265810742/me-wallpaper-iranelection_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/blondishnet' target='_blank'>Nile Flores &#8211; <span style='color:#0380d4;'>@blondishnet</a></span></b><br /> Sassy blonde mom from Illinois. WordPress Web &#038; Graphic Designer. WordCamp Conference speaker (8x.) I also help people rock their sites out at Blondish.net </p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/blondishnet' class='btn' target='_blank'>Follow @blondishnet</a></p>
<p><a href='http://blondish.net' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wpwebhost' target='_blank'><img style='border: 2px solid black;' src="http://a2.twimg.com/profile_images/541413493/wpwebhost-ori-200x200_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wpwebhost' target='_blank'>WPWebHost &#8211; <span style='color:#0380d4;'>@wpwebhost</a></span></b><br /> Best WordPress Hosting Experience with our new Total class=&#8217;span3&#8242; style=&#8217;margin-left: 5px !important;&#8217;d WordPress Hosting Made for WordPress User by WPWebHost.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wpwebhost' class='btn' target='_blank'>Follow @wpwebhost</a></p>
<p><a href='http://www.wpwebhost.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/problogdesign' target='_blank'><img style='border: 2px solid black;' src="http://a2.twimg.com/profile_images/423973421/pbd_avatar_80_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/problogdesign' target='_blank'>Michael Martin &#8211; <span style='color:#0380d4;'>@problogdesign</a></span></b><br /> Web designer, specialising in blog design. Which I blog about. <img src='http://cdn7.davidwells.tv/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/problogdesign' class='btn' target='_blank'>Follow @problogdesign</a></p>
<p><a href='http://www.problogdesign.com/' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/finalwebsites' target='_blank'><img style='border: 2px solid black;' src="http://a2.twimg.com/profile_images/407800824/me2009_150_150_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/finalwebsites' target='_blank'>Olaf Lederer &#8211; <span style='color:#0380d4;'>@finalwebsites</a></span></b><br /> Web developer likes PHP code, blogs, Social Media and Google!</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/finalwebsites' class='btn' target='_blank'>Follow @finalwebsites</a></p>
<p><a href='http://www.finalwebsites.com/' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/TheFrosty' target='_blank'><img style='border: 2px solid black;' src="http://a2.twimg.com/profile_images/1713698004/Austin_Passy-large_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/TheFrosty' target='_blank'>Austin ☃ Passy &#8211; <span style='color:#0380d4;'>@TheFrosty</a></span></b><br /> Los Angeles WordPress developer. Organizer of @WordCampLA, Dodgers season ticket holder, developer of @fxthemes and more..</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/TheFrosty' class='btn' target='_blank'>Follow @TheFrosty</a></p>
<p><a href='http://austinpassy.com/?ref=twitter' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wppodcast' target='_blank'><img style='border: 2px solid black;' src="http://a2.twimg.com/profile_images/685975577/wordpress_podcast_300x300_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wppodcast' target='_blank'>WordPress Podcast &#8211; <span style='color:#0380d4;'>@wppodcast</a></span></b><br /> Exclusive interviews with WordPress developers, topics such as WordPress hosting and SEO, and news on the latest plugins and updates. Hosted by @yoast &#038; @w3edge</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wppodcast' class='btn' target='_blank'>Follow @wppodcast</a></p>
<p><a href='http://wp-community.org/' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wpprobusiness' target='_blank'><img style='border: 2px solid black;' src="http://a3.twimg.com/profile_images/1195733699/wpPro-icon-300x300-whitebg_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wpprobusiness' target='_blank'>Adam W. Warner &#8211; <span style='color:#0380d4;'>@wpprobusiness</a></span></b><br /> Teaching individuals and businesses how to use WordPress and take control of their presence online by creating and managing their own websites or blogs.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wpprobusiness' class='btn' target='_blank'>Follow @wpprobusiness</a></p>
<p><a href='http://wpprobusiness.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/tricksdaddy' target='_blank'><img style='border: 2px solid black;' src="http://a1.twimg.com/profile_images/61820267/downloadzplanet_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/tricksdaddy' target='_blank'>TricksDaddy &#8211; <span style='color:#0380d4;'>@TricksDaddy</a></span></b><br /> I&#8217;m a Freelancer and Full time Blogger from Chandigarh, India.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/tricksdaddy' class='btn' target='_blank'>Follow @tricksdaddy</a></p>
<p><a href='http://www.tricksdaddy.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/themergency' target='_blank'><img style='border: 2px solid black;' src="http://a3.twimg.com/profile_images/959685710/33608316-67b7-42c3-929e-d80e415d2240_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/themergency' target='_blank'>Brad Vincent &#8211; <span style='color:#0380d4;'>@themergency</a></span></b><br /> We love #WordPress and you should too! We are interested in all WordPress plugins and themes, and sometimes write a few ourselves.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/themergency' class='btn' target='_blank'>Follow @themergency</a></p>
<p><a href='http://themergency.com/twitter/' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wpsnipp' target='_blank'><img style='border: 2px solid black;' src="http://a1.twimg.com/profile_images/1253822386/facebook_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wpsnipp' target='_blank'>WPSNIPP &#8211; <span style='color:#0380d4;'>@wpsnipp</a></span></b><br /> We Tweet interesting #snippets of #Wordpress #code everyday, with over 560 unique snippets. </p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wpsnipp' class='btn' target='_blank'>Follow @wpsnipp</a></p>
<p><a href='http://wpsnipp.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/rilwis' target='_blank'><img style='border: 2px solid black;' src="http://a2.twimg.com/profile_images/74374409/avatar_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/rilwis' target='_blank'>Rilwis &#8211; <span style='color:#0380d4;'>@rilwis</a></span></b><br /> Web/WordPress Developer</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/rilwis' class='btn' target='_blank'>Follow @rilwis</a></p>
<p><a href='http://www.deluxeblogtips.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/daclements' target='_blank'><img style='border: 2px solid black;' src="http://a2.twimg.com/profile_images/1426441189/18EA4723-C70B-4B68-AABD-BCDB947B8DF8_bigger"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/daclements' target='_blank'>Dave Clements &#8211; <span style='color:#0380d4;'>@daclements</a></span></b><br /> Editor of Do It With WordPress • Web Designer at The UK Edge • General lover of WordPress • Efficiency nazi • Sushi fan • Husband • Friend • Brit • Geek</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/daclements' class='btn' target='_blank'>Follow @daclements</a></p>
<p><a href='http://about.me/daclements' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/webdesigncom' target='_blank'><img style='border: 2px solid black;' src="http://a1.twimg.com/profile_images/1127592850/WDicon-white_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/webdesigncom' target='_blank'>WebDesign.com &#8211; <span style='color:#0380d4;'>@WebDesignCom</a></span></b><br /> Official WebDesign.com twitter channel. Premium Training for Web Design &#038; Development for WordPress. </p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/webdesigncom' class='btn' target='_blank'>Follow @webdesigncom</a></p>
<p><a href='http://webdesign.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wpsecuritylock' target='_blank'><img style='border: 2px solid black;' src="http://a0.twimg.com/profile_images/1766540643/image1326989053_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wpsecuritylock' target='_blank'>Regina Smola &#8211; <span style='color:#0380d4;'>@WPSecurityLock</a></span></b><br /> #WordPress Security tips for safer blogging &#038; important #security news about #internetsecurity, #socialmedia, #onlinesafety, #cybercrime, #infosec and #hosting.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wpsecuritylock' class='btn' target='_blank'>Follow @wpsecuritylock</a></p>
<p><a href='http://www.WPSecurityLock.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wpblogger' target='_blank'><img style='border: 2px solid black;' src="http://a3.twimg.com/profile_images/252921919/WPblogger-square_bigger.gif"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wpblogger' target='_blank'>Ben Cook &#8211; <span style='color:#0380d4;'>@wpblogger</a></span></b><br /> WordPress Addict</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wpblogger' class='btn' target='_blank'>Follow @wpblogger</a></p>
<p><a href='http://wpblogger.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/pagely' target='_blank'><img style='border: 2px solid black;' src="http://a0.twimg.com/profile_images/1340623798/single-p-white_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/pagely' target='_blank'>Page.ly &#8211; <span style='color:#0380d4;'>@Pagely</a></span></b><br /> WordPress-as-a-Service. class=&#8217;span3&#8242; style=&#8217;margin-left: 5px !important;&#8217;d WordPress Hosting w/ automatic upgrades &#038; backups. Secure like Fort Knox. Powered by Grey Goose.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/pagely' class='btn' target='_blank'>Follow @pagely</a></p>
<p><a href='http://page.ly' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wpdude' target='_blank'><img style='border: 2px solid black;' src="http://a0.twimg.com/profile_images/64887382/neilmatthewsimathome_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wpdude' target='_blank'>Neil Matthews &#8211; <span style='color:#0380d4;'>@wpdude</a></span></b><br /> WPDUDE aka Neil Matthews, please note I am using nmatthews now not wpdude as my twitter moniker</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wpdude' class='btn' target='_blank'>Follow @wpdude</a></p>
<p><a href='http://neil-matthews.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wpmayor' target='_blank'><img style='border: 2px solid black;' src="http://a0.twimg.com/profile_images/1181490082/Logo_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wpmayor' target='_blank'>WP Mayor &#8211; <span style='color:#0380d4;'>@wpmayor</a></span></b><br /> WordPress Hacks, Tutorials, Plugin Reviews and more. We also do WordPress blog/site development.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wpmayor' class='btn' target='_blank'>Follow @wpmayor</a></p>
<p><a href='http://www.wpmayor.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/blogohblog' target='_blank'><img style='border: 2px solid black;' src="http://a2.twimg.com/profile_images/23908852/twitter_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/blogohblog' target='_blank'>BlogOhBlog &#8211; <span style='color:#0380d4;'>@BlogOhBlog</a></span></b><br /> I am the blogger you were looking for!</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/blogohblog' class='btn' target='_blank'>Follow @blogohblog</a></p>
<p><a href='http://www.blogohblog.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/thezippykid' target='_blank'><img style='border: 2px solid black;' src="http://a3.twimg.com/profile_images/1582244026/Avatar1_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/thezippykid' target='_blank'>ZippyKid &#8211; <span style='color:#0380d4;'>@thezippykid</a></span></b><br /> We are the leading provider of Fast, Secure, and Stable WordPress websites. Your WordPress site will load 3X faster if you host with us. Guaranteed. </p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/thezippykid' class='btn' target='_blank'>Follow @thezippykid</a></p>
<p><a href='http://zippykid.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/noeltock' target='_blank'><img style='border: 2px solid black;' src="http://a2.twimg.com/profile_images/1795231530/avatar_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/noeltock' target='_blank'>Noel Tock &#8211; <span style='color:#0380d4;'>@noeltock</a></span></b><br /> Founder of @happytables / WordPress Developer / Passionate about Charities &#038; developing the Swiss WordPress community.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/noeltock' class='btn' target='_blank'>Follow @noeltock</a></p>
<p><a href='http://www.noeltock.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wpcanyon' target='_blank'><img style='border: 2px solid black;' src="http://a0.twimg.com/profile_images/1212202498/avatar2_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wpcanyon' target='_blank'>Boba &#8211; <span style='color:#0380d4;'>@wpcanyon</a></span></b><br /> WordPress developer. Check out the portfolio http://themeforest.net/user/WPScientist/portfolio</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wpcanyon' class='btn' target='_blank'>Follow @wpcanyon</a></p>
<p><a href='http://wpscientist.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/LatestOnWP' target='_blank'><img style='border: 2px solid black;' src="http://a1.twimg.com/profile_images/1138484657/latestwp-tweitter_bigger.gif"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/LatestOnWP' target='_blank'>Latest on WordPress &#8211; <span style='color:#0380d4;'>@LatestOnWP</a></span></b><br /> Find the latest happenings on WordPress&#8217;s Tutorials, Themes, Plugins, and more. LatestWP is your daily WordPress one stop!</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/LatestOnWP' class='btn' target='_blank'>Follow @LatestOnWP</a></p>
<p><a href='http://www.latestwp.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wpkube' target='_blank'><img style='border: 2px solid black;' src="http://a3.twimg.com/profile_images/1102822606/wpkube_image_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wpkube' target='_blank'>WPKube &#8211; <span style='color:#0380d4;'>@wpkube</a></span></b><br /> WPKube  – Primarily focuses on WordPress Tutorials, Hacks, WP Tricks &#038; Tips, Best WordPress themes, plugins and much more.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wpkube' class='btn' target='_blank'>Follow @wpkube</a></p>
<p><a href='http://www.wpkube.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/bobwp' target='_blank'><img style='border: 2px solid black;' src="http://a0.twimg.com/profile_images/1569513709/Bob-Dunn-WordPress-Trainer_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/bobwp' target='_blank'>Bob Dunn &#8211; <span style='color:#0380d4;'>@bobWP</a></span></b><br /> WordPress trainer, social media fanatic, blogger, networker, optimistic fool, Loves Fawlty Towers + LOL comedies. Organizer: Seattle WordPress Meetup &#038; WordCamp</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/bobwp' class='btn' target='_blank'>Follow @bobwp</a></p>
<p><a href='http://www.bobwp.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/themegrounds' target='_blank'><img style='border: 2px solid black;' src="http://a2.twimg.com/profile_images/1163320778/ico_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/themegrounds' target='_blank'>Themegrounds &#8211; <span style='color:#0380d4;'>@Themegrounds</a></span></b><br /> Theme reviews, inspiration, tutorials and more.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/themegrounds' class='btn' target='_blank'>Follow @themegrounds</a></p>
<p><a href='http://www.themegrounds.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/benjaminbradley' target='_blank'><img style='border: 2px solid black;' src="http://a2.twimg.com/profile_images/1792094615/bbimage_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/benjaminbradley' target='_blank'>Benjamin Bradley &#8211; <span style='color:#0380d4;'>@benjaminbradley</a></span></b><br /> WordPress glutton, domain name collector, Libertarian who wants less govt, volunteer firefighter, and the &#8216;professor&#8217; at WebDesign.com</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/benjaminbradley' class='btn' target='_blank'>Follow @benjaminbradley</a></p>
<p><a href='http://www.benjaminbradley.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wproots' target='_blank'><img style='border: 2px solid black;' src="http://a1.twimg.com/profile_images/1593231102/wproots-twitter_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wproots' target='_blank'>WP Roots &#8211; <span style='color:#0380d4;'>@wproots</a></span></b><br /> We enjoy to the finer things in life. That&#8217;s why we create only the finest WordPress Tutorials. </p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wproots' class='btn' target='_blank'>Follow @wproots</a></p>
<p><a href='http://www.wproots.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wprockers' target='_blank'><img style='border: 2px solid black;' src="http://a3.twimg.com/profile_images/1132697397/Screenshot-Wordpress_Rockers__wprockers__on_Twitter_-_Google_Chrome_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wprockers' target='_blank'>WordPress Rockers &#8211; <span style='color:#0380d4;'>@wprockers</a></span></b><br /> Solid WordPress stuffs; nothing else.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wprockers' class='btn' target='_blank'>Follow @wprockers</a></p>
<p><a href='http://wprockers.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/writeclickhost' target='_blank'><img style='border: 2px solid black;' src="http://a1.twimg.com/profile_images/1695239097/wch-logo-bokeh_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/writeclickhost' target='_blank'>Write Click Hosting &#8211; <span style='color:#0380d4;'>@writeclickhost</a></span></b><br /> Websites For The Creative Class. Beautiful. Affordable. Empowering. Founder: @jeremyleejames</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/writeclickhost' class='btn' target='_blank'>Follow @writeclickhost</a></p>
<p><a href='http://writeclickhosting.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wpVoodooPress' target='_blank'><img style='border: 2px solid black;' src="http://a2.twimg.com/profile_images/1255853778/VoodooPressD22aR02dP01ZL_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wpVoodooPress' target='_blank'>VoodooPress &#8211; <span style='color:#0380d4;'>@wpVoodooPress</a></span></b><br /> VoodooPress is The Voodoo Empire&#8217;s site for WordPress fun.  Support, help, hacks, customizing, &#8230;.. we have it all! Follow my personal tweets @RVoodoo as well!</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wpVoodooPress' class='btn' target='_blank'>Follow @wpVoodooPress</a></p>
<p><a href='http://VoodooPress.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wpLifeguard' target='_blank'><img style='border: 2px solid black;' src="http://a3.twimg.com/profile_images/1572571166/wplifeguard-avatar-small_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wpLifeguard' target='_blank'>wpLifeGuard &#8211; <span style='color:#0380d4;'>@wpLifeguard</a></span></b><br /> Learn how to use WordPress through our video tutorials.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wpLifeguard' class='btn' target='_blank'>Follow @wpLifeguard</a></p>
<p><a href='http://wplifeguard.com/' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wpthemesnews' target='_blank'><img style='border: 2px solid black;' src="http://a0.twimg.com/profile_images/231352401/wptn_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wpthemesnews' target='_blank'>WP Themes News &#8211; <span style='color:#0380d4;'>@wpthemesnews</a></span></b><br /> All the buzz about Free and Premium WordPress Themes</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wpthemesnews' class='btn' target='_blank'>Follow @wpthemesnews</a></p>
<p><a href='http://www.wpthemesnews.com/' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wp_tutor' target='_blank'><img style='border: 2px solid black;' src="http://a1.twimg.com/profile_images/1204570960/tv-avatar_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wp_tutor' target='_blank'>WordPress Tutor &#8211; <span style='color:#0380d4;'>@wp_tutor</a></span></b><br /> WordPress tutor and coach. Stop by my site for 100s of WordPress Tutorials and WordPress videos.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wp_tutor' class='btn' target='_blank'>Follow @wp_tutor</a></p>
<p><a href='http://WordPressTutor.TV' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/dhartzler10' target='_blank'><img style='border: 2px solid black;' src="http://a3.twimg.com/profile_images/458289624/DSC07412_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/dhartzler10' target='_blank'>Dustin Hartzler &#8211; <span style='color:#0380d4;'>@dhartzler10</a></span></b><br /> WordPress Web Developer who is obsessed with Apple gadgets and learning through books &#038; podcasts. | I create modern, stylish &#038; engaging website. What do you do?</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/dhartzler10' class='btn' target='_blank'>Follow @dhartzler10</a></p>
<p><a href='http://www.YourWebsiteEngineer.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/totalbounty' target='_blank'><img style='border: 2px solid black;' src="http://a0.twimg.com/profile_images/1667864541/tb-32x32_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/totalbounty' target='_blank'>Total Bounty &#8211; <span style='color:#0380d4;'>@totalbounty</a></span></b><br /> Total Bounty is a digital marketplace for buyers and sellers of HTML templates, WordPress themes and plugins, PSD files, graphics, ebooks, and more!</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/totalbounty' class='btn' target='_blank'>Follow @totalbounty</a></p>
<p><a href='http://www.totalbounty.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wpdezign' target='_blank'><img style='border: 2px solid black;' src="http://a3.twimg.com/profile_images/1357688209/wpdezign_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wpdezign' target='_blank'>WpDezign.com &#8211; <span style='color:#0380d4;'>@wpdezign</a></span></b><br /> The best wordpress news, videos on the web as voted on by the WordPress community. Breaking news on Development, Design, Interviews and more!</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wpdezign' class='btn' target='_blank'>Follow @wpdezign</a></p>
<p><a href='http://www.wpdezign.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wptoy' target='_blank'><img style='border: 2px solid black;' src="http://a1.twimg.com/sticky/default_profile_images/default_profile_6_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wptoy' target='_blank'>WP TOY &#8211; <span style='color:#0380d4;'>@wptoy</a></span></b><br /> WP TOY is a weblog about any WordPress related</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wptoy' class='btn' target='_blank'>Follow @wptoy</a></p>
<p><a href='http://www.wptoy.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/jondbishop' target='_blank'><img style='border: 2px solid black;' src="http://a2.twimg.com/profile_images/1631432947/Jon-Bishop-Web-Developer_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/jondbishop' target='_blank'>Jon Bishop &#8211; <span style='color:#0380d4;'>@JonDBishop</a></span></b><br /> Web Developer at @AMP_Agency in Boston, MA. I love WordPress / my jeep wrangler / my guitar and my awesome gf (@monkelley)</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/jondbishop' class='btn' target='_blank'>Follow @jondbishop</a></p>
<p><a href='http://www.jonbishop.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/jeckman' target='_blank'><img style='border: 2px solid black;' src="http://a3.twimg.com/profile_images/1738003123/profile-image-display_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/jeckman' target='_blank'>John Eckman &#8211; <span style='color:#0380d4;'>@jeckman</a></span></b><br /> Digital Strategist at ISITE Design, WordCamp Boston Organizer, WPBook plugin developer, Drupal advocate, Blogger, Open source evangelist, Vegan.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/jeckman' class='btn' target='_blank'>Follow @jeckman</a></p>
<p><a href='http://www.openparenthesis.org/' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/themitcho' target='_blank'><img style='border: 2px solid black;' src="http://a3.twimg.com/profile_images/1705406896/DSC_7226__5__bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/themitcho' target='_blank'>mitcho &#8211; <span style='color:#0380d4;'>@themitcho</a></span></b><br /> linguist, coder, teacher. MIT Linguistics PhD student, open web fan, @AwesomeBos trustee. Friend of @Mozilla, @Automattic. photo Hrayr Khanjian, bg by @nacin</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/themitcho' class='btn' target='_blank'>Follow @themitcho</a></p>
<p><a href='http://mitcho.com/' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/kurteng' target='_blank'><img style='border: 2px solid black;' src="http://a2.twimg.com/profile_images/653028088/483_0278_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/kurteng' target='_blank'>Kurt Eng &#8211; <span style='color:#0380d4;'>@kurteng</a></span></b><br /> Full-time scientist, part-time tech support, part-time video-gamer, part-time cook, part-time WordPress guy, full-time geek</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/kurteng' class='btn' target='_blank'>Follow @kurteng</a></p>
<p><a href='http://kurteng.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wordpressmotif' target='_blank'><img style='border: 2px solid black; height:75px; width:75px;' src="http://cdn4.davidwells.tv/wp-content/uploads/2012/02/Wordpressmotif.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wordpressmotif' target='_blank'>Free WordPress Sites &#8211; <span style='color:#0380d4;'>@WordpressMotif</a></span></b><br /> Hundreds of Free WordPress Themes. We will help you set up wordpress sites for free. Contact us today! =)</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wordpressmotif' class='btn' target='_blank'>Follow @wordpressmotif</a></p>
<p><a href='http://www.webpagedesigntemplates.net/?utm_source=Twitter&#038;utm_medium=twitter&#038;utm_campaign=twitter' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/FreelanceWP' target='_blank'><img style='border: 2px solid black;' src="http://a3.twimg.com/profile_images/127170843/wordpress-icon-512_bigger.png"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/FreelanceWP' target='_blank'>FreelanceWP.com &#8211; <span style='color:#0380d4;'>@FreelanceWP</a></span></b><br /> Collecting all the best #WordPress Jobs, Links, Themes + Resources for Designers, Developers + Bloggers.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/FreelanceWP' class='btn' target='_blank'>Follow @FreelanceWP</a></p>
<p><a href='http://FreelanceWP.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wpblackbelt' target='_blank'><img style='border: 2px solid black; width:75px; height:75px;' src="http://cdn7.davidwells.tv/wp-content/uploads/2012/02/1_bigger.gif"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wpblackbelt' target='_blank'>WordPress Jedi &#8211; <span style='color:#0380d4;'>@wpblackbelt</a></span></b><br /> Everything WordPress. Best WordPress themes, plugins, and tips</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wpblackbelt' class='btn' target='_blank'>Follow @wpblackbelt</a></p>
<p><a href='http://www.wpjedi.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/dougal' target='_blank'><img style='border: 2px solid black;' src="http://cdn4.davidwells.tv/wp-content/uploads/2012/02/dougal_avatar_2011_07_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/dougal' target='_blank'>Dougal Campbell &#8211; <span style='color:#0380d4;'>@dougal</a></span></b><br /> Web developer, PHP and Perl programmer, WordPress &#8216;Developer Emeritus&#8217;, creator of @twitual, family man, husband of @suzecampbell, and hoopy frood.</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/dougal' class='btn' target='_blank'>Follow @dougal</a></p>
<p><a href='http://dougal.gunters.org/' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class='alert-message'>
<div class='row'>
<div class='span2'><a href='http://twitter.com/wpexplorer' target='_blank'><img style='border: 2px solid black;' src="http://cdn5.davidwells.tv/wp-content/uploads/2012/02/IMG_1296_bigger.jpg"</img></div>
<p></a>
<div class='span5' style='margin-left: 0px;'>
<p><b><a href='http://twitter.com/wpexplorer' target='_blank'>WPExplorer &#8211; <span style='color:#0380d4;'>@WPExplorer</a></span></b><br /> Checkout MY ThemeForest WordPress Themes at: http://www.wpexplorer.com/wpexplorer-tf</p>
<p>And other awesome WordPress themes at:</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/wpexplorer' class='btn' target='_blank'>Follow @wpexplorer</a></p>
<p><a href='http://www.wpexplorer.com' target='_blank' class='btn primary' style='margin-top:10px;'>Visit Thier Site.</a></div>
</div>
</div>
<div class="alert-message">
<div class="row">
<div class="span2"><a href="http://twitter.com/krogsgard" target="_blank"><img style="border: 2px solid black;" src="http://cdn5.davidwells.tv/wp-content/uploads/2012/02/brian_bigger.jpg" ></img></a></div>
<div class="span5" style="margin-left: 0px;">
<p><b><a href="http://twitter.com/krogsgard" target="_blank">Brian Krogsgard &#8211; <span style="color:#0380d4;">@Krogsgard</span></a></b><br /> Be warned, I tweet about WordPress a lot. I write / talk about it at @WPCandy. I&#8217;m the Lead WordPress Developer @infomediadotcom. Personal account is @bkrogs</p>
</div>
<div class='span3' style='margin-left: 5px !important;'><a href='https://twitter.com/rogsgard' class='btn' target='_blank'>Follow @rogsgard</a></p>
<p><a href="http://krogsgard.com" target="_blank" class="btn primary" style="margin-top:10px;">Visit Thier Site.</a></div>
</div>
</div>
<div class="alert-message">
<div class="row">
<div class="span2"><a href="http://twitter.com/wpengine" target="_blank"><img style="border: 2px solid black;" src="http://cdn6.davidwells.tv/wp-content/uploads/2012/02/WPE_Gear_Color_bigger.png" </img></a></div>
<div class="span5" style="margin-left: 0px;">
<p><b><a href="http://twitter.com/wpengine" target="_blank">WP Engine &#8211; <span style="color:#0380d4;">@wpengine</span></a></b><br /> We make WordPress fast, secure, and scalable by hosting your site on our rock solid platform.</p>
</div>
<div class="span3" style="margin-left: 5px !important;"><a href="https://twitter.com/wpengine" class="btn" target="_blank">Follow @wpengine</a></p>
<p><a href="http://www.wpengine.com/special" target="_blank" class="btn primary" style="margin-top:10px;">Visit Thier Site.</a></div>
</div>
</div>
<div class="alert-message">
<div class="row">
<div class="span2"><a href="http://twitter.com/wordpresstv" target="_blank"><img style="border: 2px solid black; width:75px; height:75px;" src="http://cdn5.davidwells.tv/wp-content/uploads/2012/02/wptv-twitter.jpg" </img></a></div>
<div class="span5" style="margin-left: 0px;">
<p><b><a href="http://twitter.com/wordpresstv" target="_blank">WordPressTV &#8211; <span style="color:#0380d4;">@WordPressTV</span></a></b><br /> Keep up to date with the latest WordPress.tv content, or feed us your top tips for future screenings <img src='http://cdn7.davidwells.tv/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
</div>
<div class="span3" style="margin-left: 5px !important;"><a href="https://twitter.com/WordPressTV" class="btn" target="_blank">Follow @WordPressTV</a></p>
<p><a href="http://wordpress.tv/" target="_blank" class="btn primary" style="margin-top:10px;">Visit Thier Site.</a></div>
</div>
</div>
<div class="alert-message">
<div class="row">
<div class="span2"><a href="http://twitter.com/wpcandy" target="_blank"><img style="border: 2px solid black;" src="http://cdn5.davidwells.tv/wp-content/uploads/2012/02/wpcandy.png" </img></a></div>
<div class="span5" style="margin-left: 0px;">
<p><b><a href="http://twitter.com/wpcandy" target="_blank">WPCandy &#8211; <span style="color:#0380d4;">@wpcandy</span></a></b><br /> We&#8217;re a blog about WordPress. Yes, we realize how crazy meta that is.</p>
</div>
<div class="span3" style="margin-left: 5px !important;"><a href="https://twitter.com/wpcandy" class="btn" target="_blank">Follow @WPCandy</a></p>
<p><a href="http://wpcandy.com/" target="_blank" class="btn primary" style="margin-top:10px;">Visit Thier Site.</a></div>
</div>
</div>
<div class="alert-message">
<div class="row">
<div class="span2"><a href="http://twitter.com/wpvibe" target="_blank"><img style="border: 2px solid black; width:75px; height:75px;" src="http://cdn6.davidwells.tv/wp-content/uploads/2012/02/Wlogo.png" </img></a></div>
<div class="span5" style="margin-left: 0px;">
<p><b><a href="http://twitter.com/wpvibe" target="_blank">wpvibe &#8211; <span style="color:#0380d4;">@wpvibe</span></a></b><br /> A WordPress resource by @themezip @imTerryim. Get into the Culture!</p>
</div>
<div class="span3" style="margin-left: 5px !important;"><a href="https://twitter.com/wpvibe" class="btn" target="_blank">Follow @wpvibe</a></p>
<p><a href="http://wpvibe.com/" target="_blank" class="btn primary" style="margin-top:10px;">Visit Thier Site.</a></div>
</div>
</div>
<div class="alert-message">
<div class="row">
<div class="span2"><a href="http://twitter.com/wpsnippets_" target="_blank"><img style="border: 2px solid black; width:75px; height:75px;" src="http://cdn7.davidwells.tv/wp-content/uploads/2012/02/wpsnippets_logo.png" </img></a></div>
<div class="span5" style="margin-left: 0px;">
<p><b><a href="http://twitter.com/wpsnippets_" target="_blank">WP-Snippets &#8211; <span style="color:#0380d4;">@wpsnippets_</span></a></b><br /> WP-Snippets provides useful hack, tips and tutorials to create a better #WordPress theme.</p>
</div>
<div class="span3" style="margin-left: 5px !important;"><a href="https://twitter.com/wpsnippets_" class="btn" target="_blank">Follow @wpsnippets_</a></p>
<p><a href="http://wp-snippets.com/" target="_blank" class="btn primary" style="margin-top:10px;">Visit Thier Site.</a></div>
</div>
</div>
<div class="alert-message">
<div class="row">
<div class="span2"><a href="http://twitter.com/jamescoletti" target="_blank"><img style="border: 2px solid black; width:75px; height:75px;" src="http://cdn4.davidwells.tv/wp-content/uploads/2012/02/jamescol.jpg" </img></a></div>
<div class="span5" style="margin-left: 0px;">
<p><b><a href="http://twitter.com/jamescoletti" target="_blank">James Coletti &#8211; <span style="color:#0380d4;">@jamescoletti</span></a></b><br /> Entrepreneur &#038; Principal at Modal Machine, Boston WordPress Meetup founder, musician and wannabe blogger.</p>
</div>
<div class="span3" style="margin-left: 5px !important;"><a href="https://twitter.com/jamescoletti" class="btn" target="_blank">Follow @jamescoletti</a></p>
<p><a href="http://jamescoletti.com/" target="_blank" class="btn primary" style="margin-top:10px;">Visit Thier Site.</a></div>
</div>
</div>
<div class="alert-message">
<div class="row">
<div class="span2"><a href="http://twitter.com/iandstewart" target="_blank"><img style="border: 2px solid black; width:75px; height:75px;" src="http://cdn4.davidwells.tv/wp-content/uploads/2012/02/ianstewart.png" </img></a></div>
<div class="span5" style="margin-left: 0px;">
<p><b><a href="http://twitter.com/iandstewart" target="_blank">Ian Stewart &#8211; <span style="color:#0380d4;">@iandstewart</span></a></b><br /> I&#8217;m a WordPress.com Theme Wrangler for the ever-awesome Automattic. I&#8217;m probably thinking about WordPress themes right this very minute.</p>
</div>
<div class="span3" style="margin-left: 5px !important;"><a href="https://twitter.com/iandstewart" class="btn" target="_blank">Follow @iandstewart</a></p>
<p><a href="http://iandanielstewart.com/" target="_blank" class="btn primary" style="margin-top:10px;">Visit Thier Site.</a></div>
</div>
</div>
<div class="alert-message">
<div class="row">
<div class="span2"><a href="http://twitter.com/photomatt" target="_blank"><img style="border: 2px solid black; width:75px; height:75px;" src="http://cdn6.davidwells.tv/wp-content/uploads/2012/02/image1329754900.png" </img></a></div>
<div class="span5" style="margin-left: 0px;">
<p><b><a href="http://twitter.com/photomatt" target="_blank">Matt Mullenweg &#8211; <span style="color:#0380d4;">@photomatt</span></a></b><br /> WordPress, Automattic, Akismet, Polldaddy, VaultPress, Gravatar&#8230;</p>
</div>
<div class="span3" style="margin-left: 5px !important;"><a href="https://twitter.com/photomatt" class="btn" target="_blank">Follow @photomatt</a></p>
<p><a href="http://ma.tt/" target="_blank" class="btn primary" style="margin-top:10px;">Visit Thier Site.</a></div>
</div>
</div>
<h2>Have other twitter accounts that are a must follow? Let me know in the comments below!</h2>
]]></content:encoded>
			<wfw:commentRss>http://www.davidwells.tv/90-must-follow-wordpress-twitter-accounts/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>How to Clean out Huge Files from Your Dropbox Quickly and Easily (On Windows)</title>
		<link>http://www.davidwells.tv/how-to-clean-out-huge-files-from-your-dropbox-quickly-and-easily-on-windows/</link>
		<comments>http://www.davidwells.tv/how-to-clean-out-huge-files-from-your-dropbox-quickly-and-easily-on-windows/#comments</comments>
		<pubDate>Sat, 18 Feb 2012 20:54:49 +0000</pubDate>
		<dc:creator>David Wells</dc:creator>
				<category><![CDATA[Apps]]></category>

		<guid isPermaLink="false">http://www.davidwells.tv/?p=4047</guid>
		<description><![CDATA[If you are like me, you are a huge fan of Dropbox for syncing multiple files across computers. You may have even upgraded to the pro version of dropbox (I&#8217;m sitting pretty on a 50GB account) I recently filled up my 50gb account (99.8% full to be exact) and need to either upgrade or do [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-thumbnail wp-image-4066" title="dropbox" src="http://cdn7.davidwells.tv/wp-content/uploads/2012/02/dropbox-150x150.png" alt="" width="150" height="150" />If you are like me, you are a huge fan of <a href="http://db.tt/YG20S45">Dropbox</a> for syncing multiple files across computers. You may have even upgraded to the pro version of dropbox (I&#8217;m sitting pretty on a 50GB account)</p>
<div class="LessonContent">
<div class="LessonSummary">
<p>I recently filled up my 50gb account (99.8% full to be exact) and need to either upgrade or do some house cleaning.</p>
<p>As we all know, shifting through directories for BA (Big Ass) files is not a fun task and can consume valuable time.</p>
<p><strong>Enter <a href="http://windirstat.info/">WinDirStat</a>.</strong></p>
<p>After some googling I managed to find a useful free program called WinDirStat, that allows you to scan and visualize all of your files on your computer.</p>
<p>I will show you in 3 quick steps how to scan your drives, find the big ass files to move/delete, and keep sane in the process.</p>
</div>
<div class="LessonStep top">
<h3 class="StepTitle">1. Scan Your Drives</h3>
<div class="StepImage"><div rel="album" class="sws_image_frame sws_center use-lightbox-1" style="width:585px; height:px;"><a href=""><img rel="" src="http://cdn6.davidwells.tv/wp-content/uploads/2012/02/scan-directories-for-size.png" class="sws_style1" style="border-radius:3px; -moz-border-radius:3px; -webkit-border-radius:3px; max-width:585px; max-height:px;"></a></div></div>
<div class="StepInstructions">
<p>Select which drives you want to scan.</p>
</div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle">2. Visualize the size of Folders &amp; Files</h3>
<div class="StepImage"><div rel="album" class="sws_image_frame sws_center use-lightbox-1" style="width:585px; height:px;"><a href=""><img rel="" src="http://cdn7.davidwells.tv/wp-content/uploads/2012/02/Visualize-the-size-of-Folders-Files.png" class="sws_style1" style="border-radius:3px; -moz-border-radius:3px; -webkit-border-radius:3px; max-width:585px; max-height:px;"></a></div></div>
<div class="StepInstructions">
<p>The cool thing about WinDirStat is it will order the sub folders in your dropbox by size, so you can easily drill down into your different folders and get rid of those massive files or save them locally.</p>
</div>
</div>
<div class="LessonStep top">
<h3 class="StepTitle">3. Delete</h3>
<div class="StepImage"><div rel="album" class="sws_image_frame sws_center use-lightbox-1" style="width:585px; height:px;"><a href=""><img rel="" src="http://cdn5.davidwells.tv/wp-content/uploads/2012/02/delete-dropbox-files-quickly.png" class="sws_style1" style="border-radius:3px; -moz-border-radius:3px; -webkit-border-radius:3px; max-width:585px; max-height:px;"></a></div></div>
<div class="StepInstructions">
<p>This one video of my interview with Steve Garfield was taking up a precious 2.3 GB of my dropbox! We can&#8217;t have that, can we?</p>
<p>In about 8 minutes I manged to get my 50gb full dropbox down to around 32gb of space.</p>
</div>
</div>
</div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidwells.tv/how-to-clean-out-huge-files-from-your-dropbox-quickly-and-easily-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cause of the Week v2 &#8211; One More Generation</title>
		<link>http://www.davidwells.tv/cause-of-the-week-v2-one-more-generation/</link>
		<comments>http://www.davidwells.tv/cause-of-the-week-v2-one-more-generation/#comments</comments>
		<pubDate>Wed, 25 May 2011 11:07:11 +0000</pubDate>
		<dc:creator>David Wells</dc:creator>
				<category><![CDATA[Archives]]></category>

		<guid isPermaLink="false">http://www.socializeyourcause.org/?p=3636</guid>
		<description><![CDATA[This is a guest post from a past cause of the week, One More Generation &#8211; Helping Endangered Species Survive and Thrive &#160; It’s Official, Carter and Olivia have been chosen as finalists in the Oceana “Oceans Hero” Award (CLICK HERE TO CAST YOUR VOTE).  We are so excited and honored.  There were apparently hundreds of nominations from [...]]]></description>
			<content:encoded><![CDATA[<p>This is a guest post from a past cause of the week, <a href="http://www.socializeyourcause.org/one-more-generation/">One More Generation &#8211; Helping Endangered Species Survive and Thrive</a></p>
<p>&nbsp;</p>
<p>It’s Official, Carter and Olivia have been chosen as finalists in the Oceana “Oceans Hero” Award (<a href="http://act.oceana.org/survey/sv-oh-vote" target="_blank"><strong>CLICK HERE TO CAST YOUR VOTE</strong></a>).  We are so excited and honored.  There were apparently hundreds of nominations from all over the country and the judges picked 6 adults and 6-kids as their finalists.</p>
<p>Many of you had submitted your nominations on behalf of Carter and Olivia and we are very grateful for all the support.  Now it’s time to rally all our supporters and ask that everyone consider casting their votes.  All the finalist deserve to win.  Each one is doing amazing work and we are so proud to even be considered as a finalist.</p>
<p>We are asking everyone to take a few seconds and follow this link to the <a href="http://act.oceana.org/survey/sv-oh-vote" target="_blank">voting page</a> and after reading the accomplishments of all the kids and adult groups, that you please cast your vote for your favorite finalist.  You have the ability to vote for your favorite kid and for your favorite adult.  Oceana will announce the winner of each category in early June.  <em><span style="font-size: xx-small;">Overseas supporters wishing to cast a vote for Olivia and Carter should enter the following zip code (30215) since the system does not recognize non-US postal codes.</span></em></p>
<p>Since starting OMG, Olivia and Carter have been actively working towards making a difference with regards to our oceans.  From collecting <a href="http://onemoregeneration.org/2010/09/07/animal-rescue-supplies-delivered/" target="_blank">Animal Rescue Supplies</a> after the Gulf Oil Spill to help save the many sea birds and sea turtles caught-up in the mess, to lobbying for support from our Congressman Lynn Westmoreland for the<a href="http://onemoregeneration.org/2010/10/09/support-h-r-14-federal-ocean-acidification-research-and-monitoring-act-of-2009/" target="_blank"> H.R.-14 Ocean Acidification Act</a>, to raising awareness about the horrible <a href="http://onemoregeneration.org/2010/09/17/save-the-sharks/" target="_blank">Shark Finning</a> which kills an estimated 75-100 million sharks every year, to launching their <a href="http://onemoregeneration.org/2011/03/20/say-no-to-plastic-bags-coalition/" target="_blank">“Say No To Plastic Bags” Coalition</a> in and effort to help America reduce their dependancy on Single-Use Plastic Bags which end up sitting in our landfills for over 500-years and clog our streams and oceans.  Each year an estimated 1-Million Sea birds and over 100,000 Marine Mammals die from ingesting plastic pollution.</p>
<p>Carter and Olivia know that many of these problems will not be solved overnight, but they also know that unless you start, none of these problems will ever go away.  They work hard to make this world a better place for us… and for all of God’s creatures.  We hope you will take the time to vote for your favorite <a href="http://act.oceana.org/survey/sv-oh-vote" target="_blank">Ocean Hero</a> and that you too will help make a difference for the future.</p>
<p>Also, if you have not already done so, please “Follow” us on Twitter (@1moregeneration) and <a href="http://bit.ly/dpXUs1" target="_blank">“Like” us on Facebook</a> so we can keep up with all that you are doing and so you can see what Olivia and Carter are up too as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidwells.tv/cause-of-the-week-v2-one-more-generation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use events to promote your cause</title>
		<link>http://www.davidwells.tv/use-events-to-promote-your-non-profit-organization/</link>
		<comments>http://www.davidwells.tv/use-events-to-promote-your-non-profit-organization/#comments</comments>
		<pubDate>Wed, 02 Mar 2011 20:21:28 +0000</pubDate>
		<dc:creator>Taraneh Guidry</dc:creator>
				<category><![CDATA[Non Profit]]></category>

		<guid isPermaLink="false">http://www.socializeyourcause.org/?p=3617</guid>
		<description><![CDATA[As an event planning professional, I have seen all types of non-profit fundraisers. Some I have produced myself, and others I have helped organize for other groups. There are many things to consider when putting together a non profit fundraising event. Sometimes you can control the situation, and sometimes you can&#8217;t. Some of the biggest [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_3618" class="wp-caption alignnone" style="width: 310px"><a href="http://cdn4.davidwells.tv/wp-content/uploads/2011/03/g12c00000000000000026dfa3886f2ae9a7b1bbbe4273bc5a8ed2781c66.jpg"><img class="size-full wp-image-3618" title="Fundraiser Event" src="http://cdn4.davidwells.tv/wp-content/uploads/2011/03/g12c00000000000000026dfa3886f2ae9a7b1bbbe4273bc5a8ed2781c66.jpg" alt="" width="300" height="207" /></a><p class="wp-caption-text">Photo by ED BLOCHOWIAK</p></div>
<p>As an event planning professional, I have seen all types of non-profit fundraisers. Some I have produced myself, and others I have helped organize for other groups.</p>
<p>There are many things to consider when putting together a non profit fundraising event. Sometimes you can control the situation, and sometimes you can&#8217;t.</p>
<p><strong><span style="text-decoration: underline;">Some of the biggest factors that add to the cost of events are:</span></strong></p>
<p><strong>Venue- </strong>Try to find an offbeat venue that is cheaper. Look for school district facilities such as a gym or hall, universities, and club halls tend to be less expensive than a hotel. A great source for finding a good venue is <a href="http://www.uniquevenues.com/">http://www.uniquevenues.com/</a></p>
<p><strong>Catering-</strong> If you are having a fundraising meal, try to find cheaper alternatives for food. Meat is the most expensive thing that adds to the cost of catering. Choose cheaper options such as pasta or vegetarian dishes, or less meat oriented dishes such as spaghetti or lasagna. Steak and lobster aren&#8217;t necessary for a nice dinner. You can choose chicken instead. Here is a link to a <a href="http://www.openforum.com/idea-hub/topics/money/article/simple-ways-to-save-on-catering-costs-julie-rains">great article</a>, which supports this point.</p>
<p><strong>Time of Day</strong>- Usually dinner is the most expensive time of day to rent a facility, and it&#8217;s also the most expensive to feed people at. If food is expected at the event, perhaps you should make it at an odd time of the day, in between meals. So you are only expected to serve light refreshments. Take the focus off the food, and put it into the actual event such as the 5K Run, or the Guest Speaker for the event.</p>
<p><strong>Seek Donations</strong>- Often you can solicit donations of food to support your event from local bakeries, local farmers, local grocers and so on</p>
<p><strong>Be Green</strong>- Not only is it great for the environment, but being green is a great way to save money as well. You don&#8217;t need to send out paper invites, use technology. <a href="http://eventbrite.com/">Eventbrite</a> and <a href="http://new.evite.com/#home">Evite</a> are great sources to spread the word, (and you can use Social Media to send links) without the extra cost of postage and printing. Nowadays Evite and Eventbrite are linked to your social media accounts.</p>
<p><strong>Scour Online</strong>- <a href="http://www.ebay.com/">Ebay</a> and <a href="http://www.craigslist.org/about/sites">Craigslist</a> are great ways to find gently used tablecloths, vases and decor items. When I was planning my wedding in 2008, for example, I used Craigslist and found some great deals on tablecloths and vases. Then after the wedding, I recouped my money by selling them again!</p>
<p>Just remember, you don&#8217;t need a big budget to have a special event. Use your networking skills to get donations, and find things others may be willing to sell for a discount.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidwells.tv/use-events-to-promote-your-non-profit-organization/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>When disaster strikes support is needed</title>
		<link>http://www.davidwells.tv/when-disaster-strikes-support-is-needed/</link>
		<comments>http://www.davidwells.tv/when-disaster-strikes-support-is-needed/#comments</comments>
		<pubDate>Sun, 27 Feb 2011 13:49:34 +0000</pubDate>
		<dc:creator>Graeme Russell</dc:creator>
				<category><![CDATA[Archives]]></category>

		<guid isPermaLink="false">http://www.socializeyourcause.org/?p=3609</guid>
		<description><![CDATA[On Tuesday 22 February the New Zealand city of Christchurch was hit by a devastating earthquake, 6.3 on the Richter scale; bringing destruction and death by natural disaster the country hasn’t seen in recent memory. New Zealand with a population of about 4.7 million, has been reeling since news of the quake. Christchurch one of [...]]]></description>
			<content:encoded><![CDATA[<p>On Tuesday 22 February the New Zealand city of Christchurch was hit by a devastating earthquake, 6.3 on the <a href="http://en.wikipedia.org/wiki/Richter_magnitude_scale">Richter scale</a>; bringing destruction and death by natural disaster the country hasn’t seen in recent memory.</p>
<p>New Zealand with a population of about 4.7 million, has been reeling since news of the quake. Christchurch one of the main cities, with a population of around 500,000 was getting back to normal after an earthquake on the 4<sup>th</sup> of September 2010.</p>
<p>The earthquake of 22 February struck as people were on their lunch break -12:51pm, and has caused a large section of the central business district to be shut down by cordons as police and rescue workers from across the globe search for survivors.</p>
<p>It’s fairly much acknowledged that there’s only a remote chance that people will now be pulled live from the rubble, but the search goes on. A search being done by New Zealand’s own police and rescue personnel, and with the support from international agencies from Australia, the USA, Japan, China, the UK and other countries.</p>
<p>New Zealand has stepped in and helped with disaster across the globe for years, and the offers of support New Zealand has received at this time have been overwhelming; something the whole country appreciates and is humbled by.</p>
<p>Christchurch, will take years to recover from this disaster, and all of New Zealand are feeling the loss that the city has had, and the losses it will face for years to come.</p>
<p>It has been great to see support coming from both national and international agencies.  Then there’s the support through local, small organisations and communities which is just as great – bake sales, garage sales, items are being posted on local internet trading site <a href="http://www.trademe.co.nz/Browse/SearchResults.aspx?searchString=earthquake&amp;isFromSuggest=true">TradeMe</a>. Retailers are donating the proceeds of sales of goods, and</p>
<p>Community groups the length and breadth of the country are holding events, fundraisers or other activities to raise support and help for the people of Christchurch.</p>
<p>Mums and dads are opening their homes to strangers, offering a bed, meals and other support to people displaced by the quake. People have posted on <a href="http://www.twitter.com/">Twitter</a> that they couldn’t bear the continued aftershocks and just wanted out – which has been met with offers of airfares and accommodations.</p>
<p>Businesses unrelated to Christchurch have been offering to take on work, others have been offering office space – all out of the goodness of their heart.</p>
<p>Social agencies are pulling together to help, people in Christchurch are humbled, and thankful for the support they’ve been offered; money, food, clothing, accommodation.</p>
<p>The local student population have again posted on Facebook for <a href="http://www.facebook.com/StudentVolunteerArmy">volunteers</a> to help with the clean up, with over 15,000 people signing up to help – help such as shovelling silt, helping people move precious belongings; anything that they can help with, they will.</p>
<p><a href="http://www.fundraiseonline.co.nz/">FundraiseOnline</a> a local online fundraising facility has stepped in and helped the <a href="http://www.redcross.org.nz/donate">NZ Red Cross</a> by setting up a fundraising page to help take some of the strain off the Red Cross website, individuals have been using their own resources to tweet and post on their FaceBook pages with the aim to raise support.</p>
<p>Local telephone providers are offering free phone calls so as to allow those in Christchurch to contact loved ones.</p>
<p>People in the nearby area of Rangiora are assisting with the preparation and distribution of food through <a href="http://www.facebook.com/pages/The-Rangiora-Earthquake-Express/153841938005848">Rangiora Express</a> – food is being prepare then sent to where it’s needed by helicopter – this is now facing an uncertain future as funds are desperately needed to keep the helicopters in the air.</p>
<p>Christchurch is a tourist destination, with many tourists from throughout the world caught up in the devastation.</p>
<p>The iconic <a href="http://www.christchurchcathedral.co.nz/">ChristChurch Cathedral</a> which has been devastated is likely to hold the bodies of at least 20 tourists who were inside at the time of the quake.</p>
<p>The international student population hasn’t been left unscathed with students caught in a <a href="http://www.nzherald.co.nz/nz/news/article.cfm?c_id=1&amp;objectid=10708252">collapsed building</a> – some who had only just started classes days before the earthquake. The students are from Japan, China, the Philippines, Korea and other countries.</p>
<p>Through the death and destruction, comes flickers of hope; unity in times of turmoil, when help is needed, hands are held out; Christchurch will need ongoing help from local, national and international agencies over the weeks, months and perhaps years to come.</p>
<p>We as a country are grateful for the support we’ve been receiving from around the globe; and I ask you to please help where and how you can, if you see a collection box, or are able to make a donation through any of your local groups or organisations, please do.</p>
<p>When disaster strikes, no matter where in the world you are, be assured that the connections you have, the friends you have will tap into their resources to help; they will hear you in your time of need and use their networks to help, and where possible New Zealand will be there to help where it can.</p>
<p>We’re a global community and as a community we need to do all we can to offer support. The New Zealand Prime Minister, <a href="http://www.beehive.govt.nz/minister/john-key">John Key</a>, has launched a <a href="http://www.nzherald.co.nz/nz/news/article.cfm?c_id=1&amp;objectid=10709123">global fundraising appeal</a> – the need for help is so great that all avenues are being used to raise awareness and help.</p>
<p>If there’s anything you can do to help, we’d appreciate it, spread the word among your connections. When you need help I’ll be watching to see how I can help.</p>
<p>Image: Courtesy of <a title="User:Mattinbgn" href="http://commons.wikimedia.org/wiki/User:Mattinbgn">mattinbgn</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.davidwells.tv/when-disaster-strikes-support-is-needed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: basic
Database Caching 4/56 queries in 0.024 seconds using disk: basic
Object Caching 1159/1287 objects using disk: basic
Content Delivery Network via Amazon Web Services: CloudFront: cdn4.davidwells.tv

Served from: www.davidwells.tv @ 2012-05-19 04:00:44 -->
