click the image for the full report (in pdf form)
osmoothie stats for june 2009
01-Jul-09WordPress 2.8 released
11-Jun-09The Featured column on osmoothie has been fixed so that I can manage its content from WordPress itself- as opposed to hard-coding each entry in the sidebar. I have been avoiding this thinking it would take too much time, but have found that it’s actually very easy to do using the “Custom Fields” functionality.
First create a category that we will assign all our Featured posts to. The category number will be used as a condition to query our featured posts.
Next we need to create custom fields. Custom fields allow you to add additional data to your posts that can be retrieved from anywhere on the site. In this case I needed a field for an image thumbnail, alt text for the thumbnail, and a short description of the post.
Edit the posts that you want to be featured and add them to the category you created earlier.
Additionally, for each post expand the “Custom Fields” box and add a new entry for the following fields: featured_img, featured_text, and featured_alt.
Enter in desired values for the custom fields.
I use the most relevant image in my post (the 150×150 thumbnail version that WordPress generates happens to fit my sidebar best), for the value of my featured_img field. Make sure the value of your featured_img field is the full path of the image, for example:
http://osmoothie.com/wp-content/uploads/2009/03/geithner_stressed-150x150.jpg
For the featured_alt name, use the text you want to appear when someone mouse’s over the featured_img.
For the featured_text I simply extracted the most descriptive line from the post so readers can get an idea of what the post is about before clicking on it.
Next we need to add some code to our template. Using a loop we can call up post data, such as with any recent topics plugin, along with our custom fields.
Find the best place for the implementation of your list. On the sidebar of my template I added the following code:
<?php
$featured_posts = get_posts('numberposts=4&category=3149');
foreach( $featured_posts as $post ) {
$featured_image = get_post_custom_values('featured_image', $post->ID);
$featured_text = get_post_custom_values('featured_text', $post->ID);
$featured_alt = get_post_custom_values('featured_alt', $post->ID); ?>
<table width="100%" cellpadding="2" cellspacing="2" style="background-color:#F6F7F8; padding:5px;"><tr><td style="text-align:left;"><strong><a href="<?php echo get_permalink($post->ID); ?>"><?php echo $post->post_title; ?></a></strong>
<br />
<img src='<?php echo $featured_image[0]; ?>' width='100' align='right' title='<?php echo $featured_alt[0]; ?>' style="border: 3px solid #FFFFFF; margin:4px; padding:0;"><?php echo $featured_text[0]; ?>
</tr></td></table>
<br />
<?php
}
?>
Be sure to change line 1, where it says &category=3149 to the identification number of the category you created earlier (you can get this from the url of the category when editing it). You may also change the numberposts param to a desired value.
Notice that when we output our declared custom field variables we must use a [0], this is because the get_post_custom_values grabs an array of the data and our value only consists of one record.
Piece of cake!
I came across a handy WordPress plugin, WPtouch, that provides a friendlier page for iPhone and iPod Touch users. Instead of seeing a full version of the site, which requires zooming to and panning to read the latest news, mobile Apple users will be presented with the following layout:

Now you can stay on top of the news from wherever you are!
osmoothie stats for may 2009
01-Jun-09Using the plugin Search Unleashed.

Using the plugin SI CAPTCHA.

osmoothie has a new home
09-May-09osmoothie has been migrated over to a new hosting company, Media Temple.

SiteGround — my previous host, which I normally had had no trouble with, placed me on notice for suspension because of a spike in traffic on May 6 (due to the post: “Governor Brian Schweitzer signs revolutionary new gun law in Montana“). osmoothie is PHP heavy and consumes a lot of processing power (even though it uses WP Super Cache). Under SiteGround’s ToS, a certain number of CPU cycles cannot be consumed within an hour — else other clients on the same shared hosting plan could suffer. My site exceeded these limits and, as it has grown, will exceed them again in the future. This was my reasoning behind moving to a Grid Server solution at Media Temple.
So far I am very pleased with their Control Panel and Customer Service. All of the little issues that come with hosting migration have been resolved with their Tech Support in a timely manner. They even have 24/7 phone support with 2 minute waiting or less. Their hosting plans offer great solutions for larger websites at affordable rates. Check them out if you’ve been looking for a more robust solution.
Before the DNS servers propagated, you may have noticed the site down, or unresponsive. The process is now complete and there should not be any more difficulties accessing the site. Sorry for the inconvenience.
osmoothie stats for april 2009
02-May-09Messed around with the osmoothie layout again. Finally settled on a header style I like. Also added a list of “Resources” that I look at every day for content, see the list at the bottom of the sidebar.

Galco’s F.E.D. Paddle Lined Holster
09-Apr-09When looking for a casual open-carry holster for a Glock 26, I checked out several different brands including Blackhawk (the SERPA release holsters), Fobus, Bianchi, and Galco. Most of the holsters offered by these companies are on back order and have limited supplies for south-pawed shooters like myself. I passed over the cheaper polymer form-fitted holsters (which I have heard work fine) for a higher quality and more expensive leather.
Galco’s F.E.D. Paddle Lined Holster looked great, it had a left-handed model in stock and was made of quality leather. The paddle also clips on to your waistband and hooks underneath your belt, allowing for on/off usage of the holster without having to remove your belt. The paddle is not only comfortable but secure. So secure in fact that it can be a challenge to remove from your waist. As expected the leather is a little stiff and holstering the firearm is not as smooth as it will be after breaking in. I look forward to field-testing this holster, and am so far impressed with Galco’s speed of delivery and craftsmanship. If you are looking for an open-carry holster, take a look at the F.E.D., it is available for a number of different handguns.

adjustments made to the osmoothie layout
09-Apr-09Changes have been made to the osmoothie layout. You will notice new fonts, more width, and a new header, take a look.



