<?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>cdevroe.com &#187; plugins</title>
	<atom:link href="http://cdevroe.com/tag/plugins/feed/" rel="self" type="application/rss+xml" />
	<link>http://cdevroe.com</link>
	<description>by Colin Devroe</description>
	<lastBuildDate>Fri, 25 May 2012 16:03:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>	<atom:link rel='hub' href='http://cdevroe.com/?pushpress=hub'/>
<cloud domain='cdevroe.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
		<item>
		<title>How to test a WordPress Dashboard Widget</title>
		<link>http://cdevroe.com/notes/howto-test-wp-dash-widget/</link>
		<comments>http://cdevroe.com/notes/howto-test-wp-dash-widget/#comments</comments>
		<pubDate>Wed, 29 Dec 2010 05:23:48 +0000</pubDate>
		<dc:creator>Colin Devroe</dc:creator>
				<category><![CDATA[Notes]]></category>
		<category><![CDATA[dashboard widget]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[viddler]]></category>
		<category><![CDATA[viddler wordpress plugin]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://cdevroe.com/?p=4509</guid>
		<description><![CDATA[I&#8217;m working on a relatively big update to Viddler&#8217;s WordPress plugin and something that doesn&#8217;t seem to be documented anywhere is how to test a Dashboard Widget if your plugin supports one. It is fairly easy to add just a bit of code to make it pretty simple to test your widget. First, rather than [...]]]></description>
			<content:encoded><![CDATA[<p></p>
<p>I&#8217;m working on a relatively big update to <a href="http://wordpress.org/extend/plugins/the-viddler-wordpress-plugin/">Viddler&#8217;s WordPress plugin</a> and something that doesn&#8217;t seem to be documented anywhere is how to test a Dashboard Widget if your plugin supports one.</p>
<p>It is fairly easy to add just a bit of code to make it pretty simple to test your widget. First, rather than only loading your WordPress Admin URL (ie. yoursite.com/wp-admin) you simply prepend the appropriate information to the end of the URL. Like this: yousite.com/wp-admin/index.php?page=viddler&#038;noheader.</p>
<p>Then, somewhere within your plugin&#8217;s code, you add something like the following:<br />
<code>function viddler_page() {<br />
	if ( isset( $_GET['noheader'] ) )<br />
		return viddler_dashboard_content();<br />
}</code></p>
<p>Obviously viddler_dashboard_content() is the function that I use to build the HTML for the Dashboard Widget. This will return the HTML you&#8217;re creating for your WordPress Admin Dashboard Widget sans JavaScript and CSS. But at least you&#8217;re able to test your output.</p>
]]></content:encoded>
			<wfw:commentRss>http://cdevroe.com/notes/howto-test-wp-dash-widget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress.com supports geotagging &#8211; Where is the plugin?</title>
		<link>http://cdevroe.com/links/wpcom-geotagging-plugin/</link>
		<comments>http://cdevroe.com/links/wpcom-geotagging-plugin/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 19:50:58 +0000</pubDate>
		<dc:creator>Colin Devroe</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[geotagging]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://cdevroe.com/?p=3100</guid>
		<description><![CDATA[WordPress.com now supports geotagging for both the blog itself on WordPress.com and each individual post. Although there have been a few plugins that support this for the self-hosted WordPress none look as promising as the one running on WordPress.com now. So, where is the plugin?]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.support.wordpress.com/geotagging/">WordPress.com now supports geotagging</a> for both the blog itself on WordPress.com and each individual post. Although there have been a few plugins that support this for the <a href="http://wordpress.org/">self-hosted WordPress</a> none look as promising as the one running on WordPress.com now. So, where is the plugin?</p>
]]></content:encoded>
			<wfw:commentRss>http://cdevroe.com/links/wpcom-geotagging-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPAPI.org &#8211; A stats API for WordPress.org hosted plugins and themes</title>
		<link>http://cdevroe.com/links/wpapi-org/</link>
		<comments>http://cdevroe.com/links/wpapi-org/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 01:01:55 +0000</pubDate>
		<dc:creator>Colin Devroe</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[dean robinson]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[stats]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress.org]]></category>

		<guid isPermaLink="false">http://cdevroe.com/?p=2907</guid>
		<description><![CDATA[WPAPI.org, the brain-child of Dean Robinson (who has been mentioned a few times here on First Initial, Last Name), is an easy to use stats API for plugins and themes hosted on WordPress.org. Simple idea, perfectly executed.]]></description>
			<content:encoded><![CDATA[<p><a href="http://wpapi.org/">WPAPI.org</a>, the brain-child of <a href="http://deanjrobinson.com/">Dean Robinson</a> (who has been <a href="http://cdevroe.com/?s=dean+robinson">mentioned a few times here on First Initial, Last Name</a>), is an easy to use stats API for plugins and themes hosted on WordPress.org. Simple idea, perfectly executed.</p>
]]></content:encoded>
			<wfw:commentRss>http://cdevroe.com/links/wpapi-org/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Help Twitter! Use &#8220;server friendly&#8221; tools.</title>
		<link>http://cdevroe.com/notes/help-twitter-alist-apps/</link>
		<comments>http://cdevroe.com/notes/help-twitter-alist-apps/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 14:58:04 +0000</pubDate>
		<dc:creator>Colin Devroe</dc:creator>
				<category><![CDATA[Notes]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[help twitter]]></category>
		<category><![CDATA[mw latest tweet]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[twhirl]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[twitterrific]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://cdevroe.com/?p=747</guid>
		<description><![CDATA[A list of applications that, if set properly, can help Twitter with their scaling problem rather than pummel their servers with requests.]]></description>
			<content:encoded><![CDATA[<p>I admit it. I&#8217;m as guilty as anyone. Â When <a href="http://twitter.com/">Twitter</a> goes down I throw up my arms in disgust and shake a fist at the west (cuz that is where Twitter HQ is in relation to me).</p>
<p>But I think it is time to stop complaining and start helping. Â How? Â  What if we created a list of &#8220;well built&#8221; applications that use the Twitter API? Â By that I mean applications, tools, widgets, etc. that do a good job of not pummeling Twitter&#8217;s servers with requests.</p>
<h3>The A-list of Twitter apps</h3>
<p>I&#8217;m not foremost expert on scalability &#8211; but I know a well-built application from a bad one. Â Any application, widget, or tool that does not use even the simplest form of caching, for example, will not make this list.</p>
<p><strong style="font-weight: bold;"><em style="font-style: italic;">I will need your help.</em></strong> Â So please comment below with any applications or tools I have not yet linked to, I&#8217;ll vet them a little, and add them to the list if it makes the cut. Â If you are a developer &#8211; please include <em style="font-style: italic;">what you do to help Twitter</em> with your link.</p>
<ul>
<li><a href="http://meyerweb.com/eric/tools/wordpress/mw_latest_tweet.html"><strong style="font-weight: bold;">MW Latest Tweet</strong></a>Â - by <a href="http://meyerweb.com/eric/">Eric Meyer</a> &#8211; A WordPress plugin that shows your latest Twitter status anywhere on your WordPress-powered site. Â In order to make sure that I am also helping Twitter, I&#8217;ve installed this here on my site. Â You can see it on the sidebar of <a href="http://cdevroe.com">my front page</a>.</li>
<li><a href="http://iconfactory.com/software/twitterrific/"><strong style="font-weight: bold;">Twitterrific</strong></a> &#8211; by The IconFactory &#8211; A Mac OS X application that allows you to view your friends timeline and post to Twitter. Â Twitterric only requests the Twitter API on a set interval (customizable, and I have mine set to every 15 minutes now).</li>
<li><a href="http://www.twhirl.org/"><strong style="font-weight: bold;">Twhirl</strong></a> &#8211; byÂ Marco Kaiser and now owned by <a href="http://www.seesmic.com/">Seesmic</a> &#8211; An <a href="http://www.adobe.com/products/air/">Adobe AIR</a> application, which means it runs on both Macintosh and Windows platforms, that lets you follow Twitter, <a href="http://friendfeed.com/">FriendFeed</a>, <a href="http://pownce.com/">Pownce</a>, and others. Â The highlight of how this application helps Twitter is that it has a requests-per-hour-slider. Â I&#8217;ve got mine set to 10 (but I only have it check for new statuses every 15 minutes).</li>
</ul>
<p>Do you have any applications you think should be added to this list? Â Why? Â Leave them in the comments. Â As I update this, I&#8217;ll notify people through <a href="http://twitter.com/cdevroe/">Twitter</a>, <a href="http://friendfeed.com/cdevroe/">FriendFeed</a>, and <a href="http://pownce.com/cdevroe/">Pownce</a>. Â &#8221;Follow&#8221; me if you dare.</p>
<h3>Miscellaneous tips</h3>
<p>A few tips and tricks to helping Twitter out, regardless of the tools you choose to use.</p>
<p>Â </p>
<ul>
<li><strong style="font-weight: bold;">Decrease number of requests.</strong> Â No matter what applications you use, increase the interval (or decrease the number of requests per hour) between requests to Twitter for updates. Â The common &#8220;side effect&#8221; of doing this is actually being <em style="font-style: italic;">more productive</em>. Â Give it a try!</li>
<li><strong style="font-weight: bold;">Don&#8217;t manually refresh after update. </strong>I&#8217;ve noticed myself doing this too. Â When you send in a new status, don&#8217;t manually update. Â Chances are it will take a few moments for your latest status to appear in whatever application you are using. Â Send in the new status, if there isn&#8217;t an error, wait for the next scheduled request. I can&#8217;t imagine how many requests this could potential get rid of.</li>
</ul>
<div>Have any other tips? Send them in by leaving a comment below.</div>
<p>Â </p>
]]></content:encoded>
			<wfw:commentRss>http://cdevroe.com/notes/help-twitter-alist-apps/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Now optimized for the iPhone and iPod touch</title>
		<link>http://cdevroe.com/notes/mobile-optimization/</link>
		<comments>http://cdevroe.com/notes/mobile-optimization/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 16:22:53 +0000</pubDate>
		<dc:creator>Colin Devroe</dc:creator>
				<category><![CDATA[Notes]]></category>
		<category><![CDATA[cdevroe.com]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[ipod-touch]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://cdevroe.com/notes/mobile-optimization/</guid>
		<description><![CDATA[I've taken a few steps towards bringing it all together and made it much easier to read this site using your iPhone and/or iPod touch thanks to a few free plugins.]]></description>
			<content:encoded><![CDATA[<p><span class="firstletter">N</span>ow you may navigate this site using your iPhone and/or iPod touch easier than ever before.  Using <a href="http://iwphone.contentrobot.com/2007/07/04/iwphone-wordpress-plugin-and-theme">the iwPhone plugin and theme</a>, this site will now automatically display in an easy to use format when navigating the site using your iPhone and/or iPod touch.  A few of this site&#8217;s features are missing, of course, but the benefits far outweigh the drawbacks.  The site loads faster, is easier to navigate, and is readable now on these mobile devices.</p>
<p>But that isn&#8217;t all, I can now post to this site using my iPhone (which I&#8217;ve <a href="http://cdevroe.com/mobile/notes/wp-iphone-admin/">tested once so far</a>), using <a href="http://wordpress.org/extend/plugins/mobileadmin/">the mobile admin plugin</a>.  Although a little slow, even on Wifi, the interface works really well on the iPhone to write up quick mobile notes.</p>
<p>I&#8217;m really happy with these two solutions so far.  Now I just need to get WordPress to recognize the iPhone&#8217;s email attachments (photos) and I&#8217;ll be well on my way to <a href="http://cdevroe.com/notes/bringing-it-together/">bringing it all together</a>.</p>
<p><strong>Update March 20, 2008:</strong>  After using this mobile interface, I&#8217;m finding it <em>way too slow</em> even on Wifi on the iPhone.  I&#8217;ve now begun searching for a simple, mobile interface that is optimized for working on slower bandwidth connections.  Any suggestions?</p>
]]></content:encoded>
			<wfw:commentRss>http://cdevroe.com/notes/mobile-optimization/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>In a way, we&#8217;re all related</title>
		<link>http://cdevroe.com/notes/related-posts-links/</link>
		<comments>http://cdevroe.com/notes/related-posts-links/#comments</comments>
		<pubDate>Fri, 27 Jul 2007 19:31:31 +0000</pubDate>
		<dc:creator>Colin Devroe</dc:creator>
				<category><![CDATA[Notes]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[bookmarks]]></category>
		<category><![CDATA[ma.gnolia]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[ultimate-tag-warrior]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://cdevroe.com/notes/related-posts-links/</guid>
		<description><![CDATA[I've added a little somethin', somethin' to the end of each post which should show a little somethin', somethin' related to the post.  Sweet!]]></description>
			<content:encoded><![CDATA[<p>I have a <em>huge</em> list of things I&#8217;d like to have on <a href="http://cdevroe.com/">my personal site</a> but can rarely find the time or energy to implement many of them.  Recently though I was able to scrape together enough of both to add two very subtle things that I&#8217;ve wanted to see on the site for a very long time.</p>
<p>The first is &#8220;related posts&#8221;.  There are countless related posts plugins out there and all of them work fairly well but since I already use <a href="http://www.neato.co.nz/ultimate-tag-warrior">the Ultimate Tag Warrior plugin</a> for my tagging efforts, and it has a function for related posts, I&#8217;m using a slightly tweaked version of that.  When <a href="http://wordpress.org/">WordPress</a> 2.3 is released, and tags are included by default along with a way to import all of my <abbr title="Ultimate Tag Warrior">UTW</abbr> tags, I may need to adjust the way I handle related posts. Until then, these seem to work well enough.</p>
<p>The second was I&#8217;ve always wanted to utilized <a href="http://ma.gnolia.com/people/cdevroe/">my Ma.gnolia bookmarks</a> better.  Bookmarks seem to come and go and rarely are they ever used as a really valueable resource.  I think the way I am using them now will add a lot of value to bookmarks that I&#8217;ve stored on Ma.gnolia, even if I had saved them there a very long time ago*.  What&#8217;s more is that I&#8217;m adding value to my posts too!</p>
<p>The way I am using my bookmarks is through &#8220;related links&#8221; which can be found just to the right of the related posts on the bottom of every post on my site.  I&#8217;m using <a href="http://wiki.ma.gnolia.com/Ma.gnolia_API">Ma.gnolia&#8217;s API</a> to search my Ma.gnolia account for bookmarks tagged with the same tags as the current post and constructing a list of the latest five of those.  I&#8217;ll be working on extending this somehow to show <em>every</em> applicable bookmark but I&#8217;ve found that five should provide enough of a resource in most cases.</p>
<p>So <a href="http://cdevroe.com/">come to the site</a>, take a look, and let me know what you think.  I&#8217;ll be releasing this new &#8220;Ma.gnolia Related&#8221; plugin after I&#8217;ve let it run on my site for a little while and I&#8217;m able to clean up the code a little.  Oh, and it uses an as yet unreleased method argument of Ma.gnolia&#8217;s API &#8211; so I may need to wait until the next version of their API is officially released.  (And to those that will probably wonder, yes I&#8217;m caching requests.  Expertly, I may add. <img src='http://cdevroe.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )</p>
]]></content:encoded>
			<wfw:commentRss>http://cdevroe.com/notes/related-posts-links/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>A long overdue revamp of my site</title>
		<link>http://cdevroe.com/notes/cdevroe-v0207/</link>
		<comments>http://cdevroe.com/notes/cdevroe-v0207/#comments</comments>
		<pubDate>Tue, 06 Feb 2007 17:13:58 +0000</pubDate>
		<dc:creator>Colin Devroe</dc:creator>
				<category><![CDATA[Notes]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[bdp-rss-aggregator]]></category>
		<category><![CDATA[cdevroe.com]]></category>
		<category><![CDATA[chancecube]]></category>
		<category><![CDATA[cutline]]></category>
		<category><![CDATA[feedburner]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[flickrrss]]></category>
		<category><![CDATA[gravatar]]></category>
		<category><![CDATA[happypals]]></category>
		<category><![CDATA[justin-blanton]]></category>
		<category><![CDATA[mike-stickel]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[recent-comments]]></category>
		<category><![CDATA[redesign]]></category>
		<category><![CDATA[shaun-inman]]></category>
		<category><![CDATA[simple-countdown]]></category>
		<category><![CDATA[slugger]]></category>
		<category><![CDATA[smart-archives]]></category>
		<category><![CDATA[steve-smith]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[theubergeeks]]></category>
		<category><![CDATA[ultimate-tag-warrior]]></category>
		<category><![CDATA[viddler]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://cdevroe.com/notes/cdevroe-v0207/</guid>
		<description><![CDATA[My site has been long overdue for a refresh, so I decided to get something "open" and modify it for me.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve finally had the chance (over this past weekend) to update my site a little.  After <a href="http://cdevroe.com/notes/fiddlin/">fiddling with a few ideas</a> that I had I got to thinking that I&#8217;d just grabbing a free theme and that working off of it would help save me some time, effort, and a whole lotta headaches.  It turned out I was right and I&#8217;m pretty satisfied with the result.  Here is a general overview of how I went about this specific version of <a href="http://cdevroe.com/">cdevroe.com</a>.</p>
<p>First, I grabbed <a href="http://themes.wordpress.net/columns/3-columns/1477/cutline-3c-100/">a modified version of Cutline</a> and made my own little tweaks (which I&#8217;m not quite finished with yet).  Obviously I changed the way the headers work and brought back my featured headings in order to highlight certain posts randomly.  I&#8217;ll be adding many more banners over time, since there are ton of posts that should be highlighted.  I&#8217;ll be doing a little more of this by creating a &#8220;random note&#8221; area in my right-most sidebar soon.</p>
<p>I also edited the way that the sidebars work.  I wanted a 3-column layout to allow me to pull in <a href="http://flickr.com/photos/cdevroe/">my flickr photos</a>, some posts from <a href="http://viddler.com/">Viddler</a>, <a href="http://chancecube.com/">ChanceCube</a>, and <a href="http://theubergeeks.net/">The uber geeks</a>, as well as a place that I will soon be putting various other collections.  However, I wanted to have only 2-columns on my single entry pages because I like having the width for things like <a href="http://cdevroe.com/index.php?tag=photos">photos</a>.  Also, some of the pages (like <a href="http://cdevroe.com/the-diet/">the new diet page</a>), have 3-columns, while some only have 2-columns.</p>
<p>On <a href="http://cdevroe.com/">the frontpage</a> you will notice the latest posts from the other sites that I write on (mentioned above).  This section is powered by <a href="http://www.ozpolitics.info/blog/?p=87">BDP RSS Aggregator</a>.  Obviously I could have built this type of functionality myself but after seeing how well thought out this <a href="http://wordpress.org/">WordPress</a> plugin was &#8211; it made the decision to use it very easy.  BDP RSS Aggregator does far more than what I am using it for, and if you are looking to syndicate some feeds on your WordPress powered site, I highly recommend you looking into it.</p>
<p>My most recent Flickr photos, on the frontpage, is powered by <a href="http://eightface.com/wordpress/flickrrss/">FlickrRSS</a>.  Since BDP RSS Aggregator has so many options, I could have technically used it and ended up with the same result, but I chose to use something that was specifically built for grabbing my photos from Flickr.  Obviously <a href="http://flickr.com/services/api/">Flickr&#8217;s API</a> could have been used for such a task, but all I really wanted was a cached list of my 4 most-recent photos, and using the API would seem like a little overkill.  FlickrRSS does an excellent job, is easy to configure, and has just the right number of options.  Another plugin that I highly recommend.</p>
<p>For my recent comments I&#8217;m using a <em>highly</em> modified version of <a href="http://dev.wp-plugins.org/browser/recent-comments/">the recent comments plugin</a>.  I&#8217;ve added support for <a href="http://gravatar.com/">Gravatars</a> and a few other options that it didn&#8217;t have out of the box.  Once I clean up the code I hacked to get it done I may submit the changes, but since it is reliant on someone using <a href="http://www.gravatar.com/implement.php#section_2_2">the Gravatar WordPress Plugin</a> (site currently under repair as of today) too, I may not.  If you want this, just give me a shout.</p>
<p>For my archives I&#8217;m using <a href="http://justinblanton.com/projects/smartarchives/">Justin Blanton&#8217;s Smart Archives</a> plugin.  I like my archives simple, and this plugin allows me to have just that.  I see now that its been updated recently, so I may have to get me a fresh copy.</p>
<p>For my keyword tagging I can&#8217;t do without <a href="http://www.neato.co.nz/ultimate-tag-warrior/">the Ultimate Tag Warrior</a> plugin &#8211; which in my mind is the best keyword tagging plugin for WordPress.  It allows me to use <a href="http://ranchero.com/marsedit/">MarsEdit</a> to write my posts and put my keywords inline &#8211; which has increased the accuracy and ease of searching quite a bit too.  There are many benefits to using this plugin.</p>
<p>I&#8217;m using <a href="http://www.shauninman.com/archive/2006/08/22/widont_wordpress_plugin">Shaun Inman&#8217;s Widon&#8217;t plugin</a> to help clean up the straggling words on my post titles.  This layout doesn&#8217;t succumb to these problems as much as the last one did, but this plugin is handy nonetheless.  Plugins that work completely behind the scenes and yet make such big differences in your site should really be applauded.</p>
<p>My feed is being delivered through <a href="http://feedburner.com/">Feedburner</a> via the <a href="http://orderedlist.com/wordpress-plugins/feedburner-plugin/">Feedburner WordPress plugin</a> by my friend <a href="http://orderedlist.com/" rel="friend">Steve Smith</a>.  It is all transparent to you on your end, but to me it adds a nice little layer that allows me to pull some nice stats on how many people and who are subscribed to my site&#8217;s feed.  If you are using Feedburner and WordPress, this plugin is a must have.</p>
<p>Obviously I&#8217;m using <a href="http://chancecube.com/">ChanceCube</a>&#8216;s <a href="http://chancecube.com/products/slugger/">Slugger</a> plugin to help me never to see WordPress&#8217; administrative area as well as <a href="http://chancecube.com/products/happypals/">HappyPals</a> to take advantage of my <a href="http://gmpg.org/xfn/">XFN</a> relationships in my links.  I also have <a href="http://screenflicker.com/mike/" rel="friend met">Mike Stickel</a>&#8216;s <a href="http://chancecube.com/products/simple-countdown/">Simple Countdown plugin</a> installed and activated, but you&#8217;ll have to wait till the weekend to see why.  These three plugins have become indispensable for me in how I publish, Slugger the greatest of these.  I could never stand using WordPress&#8217; admin (or any administrative area that I&#8217;ve seen) to write my blog posts.  I&#8217;m happy I don&#8217;t have to anymore.</p>
<p>I think I covered pretty much everything.  Poke around, if you see anything outta whack just let me know.  Other slight tweaks will have to wait till the weekend as I have a fairly busy week this week.</p>
<p><strong>Oh!</strong>  For those of you on <a href="http://cdevroe.com/the-diet/">the diet</a> that have recently been contacted by me (which most of you have, and if you have not then it probably means you&#8217;ve been fairly active in the dieting area over the last few months) &#8211; I&#8217;ll be updating everyone today or tomorrow but suffice to say that Tuesday begins another 20-week (minimum) run of updates.  More soon.</p>
<p>[tags]cdevroe.com, redesign, shaun inman, wordpress, plugins, chancecube, mike stickel, slugger, happypals, simple countdown, ultimate tag warrior, justin blanton, smart archives, flickrrss, gravatar, recent comments, bdp rss aggregator, viddler, theubergeeks, cutline, theme, steve smith, feedburner, flickr, api[/tags]<br />
[slug]cdevroe-v0207[/slug]</p>
]]></content:encoded>
			<wfw:commentRss>http://cdevroe.com/notes/cdevroe-v0207/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Simple Countdown</title>
		<link>http://cdevroe.com/notes/simple-countdown/</link>
		<comments>http://cdevroe.com/notes/simple-countdown/#comments</comments>
		<pubDate>Tue, 24 Oct 2006 17:49:43 +0000</pubDate>
		<dc:creator>Colin Devroe</dc:creator>
				<category><![CDATA[Notes]]></category>
		<category><![CDATA[chancecube]]></category>
		<category><![CDATA[countdown]]></category>
		<category><![CDATA[mike-stickel]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[simple-countdown]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://cdevroe.com/notes/simple-countdown/</guid>
		<description><![CDATA[Another WordPress plugin from your heros at ChanceCube.]]></description>
			<content:encoded><![CDATA[<p>We just can&#8217;t stop giving away free stuff I guess.  <a rel="friend met" href="http://screenflicker.com/mike/">Mike</a> has been slaving over a hot G4 for the last few days tweaking and getting the options just right to launch <a href="http://chancecube.com/archives/2006/10/24/introducing-simple-countdown/">Simple Countdown version 1.0</a>.</p>
<p>I begged and pleaded that <a rel="me" href="http://chancecube.com/products/simple-countdown/">Simple Countdown</a> would be able to do simple, easy, in-post countdowns and boy did Mike deliver.  Check this out.</p>
<p>I will turn 27 on September 30th, 2007 which is in <!--cc_countdown:september 30 2007-->.  How cool is that?</p>
<p>Go grab a copy, and let Mike know what you think.</p>
]]></content:encoded>
			<wfw:commentRss>http://cdevroe.com/notes/simple-countdown/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

