<?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>Kansas City Web Developer - Steven Kohlmeyer &#187; Internet</title>
	<atom:link href="http://stevenkohlmeyer.com/category/internet/feed/" rel="self" type="application/rss+xml" />
	<link>http://stevenkohlmeyer.com</link>
	<description>A Kansas City Web Developer&#039;s Blog for Reference of PHP, Javascript, Software, Web Design, Web Development, Programming, eCommerce Solutions, CMS Solutions, and many other solutions: Zen Cart, OS Commerce, Magento, Wordpress....</description>
	<lastBuildDate>Sat, 14 Apr 2012 02:56:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>WordPress Starter Plugin</title>
		<link>http://stevenkohlmeyer.com/internet/wordpress-starter-plugin/</link>
		<comments>http://stevenkohlmeyer.com/internet/wordpress-starter-plugin/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 15:58:02 +0000</pubDate>
		<dc:creator>SteveK</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[techblog]]></category>
		<category><![CDATA[Web Development & Administration]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://StevenKohlmeyer.com/?p=329</guid>
		<description><![CDATA[Select box Plugin option is: fourEverything you need to write your own plugin. This is the starter solution. It shows how to plugin with your own class to wordpress, already set up custom functions. This is version 1 of this empty plugin. The admin menu (with a submenu), a settings page, another settings page. You [...]]]></description>
			<content:encoded><![CDATA[<p style="color: #777;border:1px dashed #999; padding: 6px;">Select box Plugin option is: four</p><p>Everything you  need to write your own plugin.  This is the starter solution.  It shows how to plugin with your own class to wordpress, already set up custom functions.  This is version 1 of this empty plugin.  The admin menu (with a submenu), a settings page, another settings page.  You can do just about anything your heart desires with wordpress, and plugging into it is pretty easy.  Check this out:</p>
<pre class="brush:php">/////////////////////////////////////////////////////////////////
/*
Plugin Name: Steve's Starter Plugin
Plugin URI: http://stevesplugin.StevenKohlmeyer.com/
Version: v1.00
Author: <a href="http://www.StevenKohlmeyer.com/">Steven Kohlmeyer</a>
Description: A starter Plugin to write any plugins from.
Copyright 2010  Steven Kohlmeyer  (email : StevenKohlmeyer [a t ] g m ail DOT com)
*/

/*  Copyright 2010
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
*/

if( !class_exists('MY_Plugin') )
{
	class MY_Plugin
	{
		var $thispluginurl = '';
		var $thispluginpath = '';
		var $adminOptionsName = "MY_Options";  

		function MY_Plugin()
		{
			//constructor
		}
		function init()
        {
            $this-&gt;getAdminOptions();
        }
		function getAdminOptions()
        {
			$MYPluginOptions = array(
                'abc' =&gt; '',
                'def' =&gt; '',
                'ghi' =&gt; '',
				'jkl' =&gt; '',
				'mno' =&gt; '',
				'pqr' =&gt; '',
				'stu' =&gt; '');
			$MYOptions = get_option($this-&gt;adminOptionsName);
			if (!empty($MYOptions))
            {
                foreach ($MYOptions as $key =&gt; $option)
                {
                    $MYPluginOptions[$key] = $option;
                }
            }
            update_option($this-&gt;adminOptionsName, $MYPluginOptions);
            return $MYPluginOptions;
		}
		function printAdminPage()
		{
			global $wpdb;
			$MYOptions = $this-&gt;getAdminOptions();

			//Print Admin Settings Page Here

			echo "Admin Page Settings. . . . . . . .
n";
		}
		function printImportPage()
		{
			global $wpdb;
			$MYOptions = $this-&gt;getAdminOptions();

			//Print Admin Settings Page Here

			echo "Import Page . . . . . . . .
n";
		}

	}
}

if (class_exists("MY_Plugin"))
{
    $MY = new MY_Plugin();
}
if (!function_exists("MY_admin"))
{
    function MY_admin_menu()
	{
		global $MY;
		if (!isset($MY))
        {
            return;
        }
		if (function_exists('add_menu_page'))
        {
			//add_menu_page('Page title', 'Top-level menu title', 'manage_options', 'my-top-level-handle', 'my_magic_function');
            add_menu_page( 'MY Settings', 'MY', 'install_plugins', basename(__FILE__), array(&amp;$MY, 'printAdminPage'), 'icon.jpg', 1 );
			//add_menu_page( $page_title, $menu_title, $capability, $menu_slug, $function, $icon_url, $position );

		}
		if (function_exists('add_submenu_page'))
		{
			add_submenu_page( basename(__FILE__), 'MY Settings', 'Settings', 'install_plugins', basename(__FILE__), array(&amp;$MY, 'printAdminPage'));
			add_submenu_page( basename(__FILE__), 'MY Import', 'Import', 'install_plugins', 'MY_import.php', array(&amp;$MY, 'printImportPage'));
			//add_submenu_page( 'my-top-level-handle', 'Page title', 'Sub-menu title', 'manage_options', 'my-submenu-handle', 'my_magic_function');

		}

	}
}

if (isset($MY))
{
	//Actions here
	add_action('admin_menu', 'MY_admin_menu');

	//Filters here

}</pre>
]]></content:encoded>
			<wfw:commentRss>http://stevenkohlmeyer.com/internet/wordpress-starter-plugin/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress custom menu disappear on home page when using custom post types and/or taxonomies.</title>
		<link>http://stevenkohlmeyer.com/internet/wordpress-custom-menu-disappear-on-home-page-when-using-custom-post-types-or-taxonomies/</link>
		<comments>http://stevenkohlmeyer.com/internet/wordpress-custom-menu-disappear-on-home-page-when-using-custom-post-types-or-taxonomies/#comments</comments>
		<pubDate>Wed, 18 Aug 2010 17:54:52 +0000</pubDate>
		<dc:creator>SteveK</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[techblog]]></category>
		<category><![CDATA[Web Development & Administration]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://StevenKohlmeyer.com/?p=302</guid>
		<description><![CDATA[Select box Plugin option is: four As you&#8217;re developing a theme, you try one of WordPress&#8217;s newer options: Custom Post Types.  Searching the internet you stumble upon Justin Tadlock&#8217;s blog.  You try his way of showing custom post types on your home page of your wordpress blog.  Then boom. You&#8217;re custom menu is not showing [...]]]></description>
			<content:encoded><![CDATA[<p style="color: #777;border:1px dashed #999; padding: 6px;">Select box Plugin option is: four</p><div>
<div style="clear: both; display: block;">
<div style="display: block; float: left; width: 305px;"><img class="alignnone size-full wp-image-303" title="justin-tadlock-menu-disappear" src="http://StevenKohlmeyer.com/wp-content/uploads/2010/08/justin-tadlock-menu-disappear.jpg" alt="Wordpress custom menu disappears on home page." width="300" height="300" /></div>
<p>As you&#8217;re developing a theme, you try one of WordPress&#8217;s newer options: Custom Post Types.  Searching the internet you stumble upon Justin Tadlock&#8217;s blog.  You try his way of showing custom post types on your home page of your wordpress blog.  Then boom. You&#8217;re custom menu is not showing on your homepage.  Now what do you do.</p>
<p>I spent about a week going back and forth with my custom taxonomies, and WordPress 3.0&#8242;s new custom menu editor trying to figure out why the hell my home page isn&#8217;t showing my custom menu.  It shows all on my other pages.</p>
<p>Out of all the code, from all over the internet, that I used.  I had put the following code in my functions.php hoping to show my custom post types.</p>
<pre class="brush:php">add_filter( 'pre_get_posts', 'my_get_posts' );

function my_get_posts( $query )
{
    if ( is_home() )
    {
        $query-&gt;set( 'post_type', array( 'any' ) );
        //$query-&gt;set( 'post_type', array( 'post', 'products', 'downloads' ) );
        return $query;
    }
}

add_filter( 'pre_get_posts', 'my_get_posts' );

function my_get_posts( $query )
{
    if ( is_home() )
    {
        $query-&gt;set( 'post_type', array( 'products' ) );
	  //$query-&gt;set( 'post_type', array('post', '{CUSTOM-POST-TYPE-NAME}') );
        return $query;
    }
}</pre>
<p>This code works, unless you&#8217;re using a custom menu you&#8217;ve made in the back end of wordpress.  This will for whatever reason (to which I have not investigated) make your custom menu&#8217;s disappear from your home page faster than a rabbit can crap.  So I&#8217;ve spent a whole week investigating my custom taxonomies, and wordpress&#8217;s custom menu editor, when the only thing I messed up was using Justin Tadlock&#8217;s code.</p>
<p>Here is what you do instead of putting that jargon of a excuse for code into your functions.php:</p>
<p>Pick any of your template files that show your posts or pages: pages, loop, home, index, or whatever single-{taxonomy name}.php you want to edit and add your custom post types to and add the following code above the loop:</p>
<pre class="brush:php">query_posts( 'post_type=products&amp;posts_per_page=20');</pre>
<p>or whatever you needs may be:</p>
<pre class="brush:php">query_posts( 'post_type={custom_post_types_name}');</pre>
<p>Happy coding, and careful who&#8217;s blog you read <img src='http://stevenkohlmeyer.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Thanks JustinTadlock I was stuck on that crap for a week.</p>
<p>~Steven Kohlmeyer</p>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://stevenkohlmeyer.com/internet/wordpress-custom-menu-disappear-on-home-page-when-using-custom-post-types-or-taxonomies/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Fun with Web Browsers</title>
		<link>http://stevenkohlmeyer.com/development/fun-with-web-browsers/</link>
		<comments>http://stevenkohlmeyer.com/development/fun-with-web-browsers/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 21:16:24 +0000</pubDate>
		<dc:creator>SteveK</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web Browsers]]></category>

		<guid isPermaLink="false">http://StevenKohlmeyer.com/?p=260</guid>
		<description><![CDATA[Select box Plugin option is: fourFor those of you who care to mess with someone.. or anyone. Just load a web page up (or their web page if they have one) and run this command in the URL: javascript: document.body.contentEditable= "true"; document.designMode= "on"; void 0 You can mess with about anybody, enjoy.]]></description>
			<content:encoded><![CDATA[<p style="color: #777;border:1px dashed #999; padding: 6px;">Select box Plugin option is: four</p><p>For those of you who care to mess with someone.. or anyone.  Just load a web page up (or their web page if they have one) and run this command in the URL:</p>
<pre><code>
javascript: document.body.contentEditable= "true";
document.designMode= "on"; void 0
</code></pre>
<p>You can mess with about anybody, enjoy.</p>
]]></content:encoded>
			<wfw:commentRss>http://stevenkohlmeyer.com/development/fun-with-web-browsers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My dot com is live!</title>
		<link>http://stevenkohlmeyer.com/internet/my-dot-com-is-live/</link>
		<comments>http://stevenkohlmeyer.com/internet/my-dot-com-is-live/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 18:01:00 +0000</pubDate>
		<dc:creator>SteveK</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[in motion hosting]]></category>
		<category><![CDATA[inmotionhosting]]></category>
		<category><![CDATA[new site]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://StevenKohlmeyer.com/2009/12/08/my-dot-com-is-live/</guid>
		<description><![CDATA[Select box Plugin option is: fourFinally. Steven Kohlmeyer .com is live. &#160;I now have a blog on there. I&#8217;ll keep this blog active with new posts, but the majority of my posts will be at http://StevenKohlmeyer.com.]]></description>
			<content:encoded><![CDATA[<p style="color: #777;border:1px dashed #999; padding: 6px;">Select box Plugin option is: four</p><p>Finally.<a href="http://stevenkohlmeyer.com/"> Steven Kohlmeyer .com</a> is live. &nbsp;I now have a blog on there. I&#8217;ll keep this blog active with new posts, but the majority of my posts will be at <a href="http://stevenkohlmeyer.com/">http://StevenKohlmeyer.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://stevenkohlmeyer.com/internet/my-dot-com-is-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kansas City Chiefs vs Denver Broncos</title>
		<link>http://stevenkohlmeyer.com/internet/kansas-city-chiefs-vs-denver-broncos/</link>
		<comments>http://stevenkohlmeyer.com/internet/kansas-city-chiefs-vs-denver-broncos/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 19:25:00 +0000</pubDate>
		<dc:creator>SteveK</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Broncos]]></category>
		<category><![CDATA[chiefs]]></category>
		<category><![CDATA[denver]]></category>
		<category><![CDATA[football]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[kansas city]]></category>

		<guid isPermaLink="false">http://StevenKohlmeyer.com/2009/12/05/kansas-city-chiefs-vs-denver-broncos/</guid>
		<description><![CDATA[Select box Plugin option is: fourThis is going to be a great game. &#160;Me living in Kansas City and being a Denver Broncos fan. &#160;I cannot lose this game. &#160;Either way I win. &#160;I can&#8217;t wait until the game tomorrow. &#160;Who else is gonna be there?]]></description>
			<content:encoded><![CDATA[<p style="color: #777;border:1px dashed #999; padding: 6px;">Select box Plugin option is: four</p><p>This is going to be a great game. &nbsp;Me living in Kansas City and being a Denver Broncos fan. &nbsp;I cannot lose this game. &nbsp;Either way I win. &nbsp;I can&#8217;t wait until the game tomorrow. &nbsp;Who else is gonna be there?</p>
]]></content:encoded>
			<wfw:commentRss>http://stevenkohlmeyer.com/internet/kansas-city-chiefs-vs-denver-broncos/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Virtual Private Server Hosting</title>
		<link>http://stevenkohlmeyer.com/internet/virtual-private-server-hosting/</link>
		<comments>http://stevenkohlmeyer.com/internet/virtual-private-server-hosting/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 18:03:00 +0000</pubDate>
		<dc:creator>SteveK</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[hosting plans]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web host]]></category>
		<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[web servers]]></category>
		<category><![CDATA[webhost]]></category>

		<guid isPermaLink="false">http://StevenKohlmeyer.com/2009/11/23/virtual-private-server-hosting/</guid>
		<description><![CDATA[Select box Plugin option is: fourSo I&#8217;m looking at current hosting plans for a new Virtual Private Server (VPS). I&#8217;ve found 3 websites with comparable hosting packages. http://www.hostican.com/hosting/cpanel-vps.php http://www.inmotionhosting.com/vps_hosting.html http://www.ixwebhosting.com/index.php/v2/pages.vpsHosting I&#8217;m liking the ixwebhosting.com&#8217;s packages. Fair price and the best quality of servers and system resources. Information I could find about IXWebhosting.com Domain created: Feb [...]]]></description>
			<content:encoded><![CDATA[<p style="color: #777;border:1px dashed #999; padding: 6px;">Select box Plugin option is: four</p><p>So I&#8217;m looking at current <a href="http://www.webhostingsearch.com/virtual-private-server.php">hosting plans for a new Virtual Private Server (VPS)</a>.  I&#8217;ve found 3 websites with  comparable hosting packages.</p>
<p><a href="http://www.hostican.com/hosting/cpanel-vps.php">http://www.hostican.com/hosting/cpanel-vps.php</a></p>
<div><a title="In Motion Hosting Virtual Private Server Servers" href="https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=Skohlmeyer&amp;page=8">http://www.inmotionhosting.com/vps_hosting.html</a></div>
<div><a href="http://www.ixwebhosting.com/index.php/v2/pages.vpsHosting">http://www.ixwebhosting.com/index.php/v2/pages.vpsHosting</a></div>
<div>I&#8217;m liking the ixwebhosting.com&#8217;s packages.  Fair price and the best quality of servers and system resources.</div>
<div>Information I could find about IXWebhosting.com</div>
<div>Domain created: Feb 15, 2003</div>
<div><span style="font-family: monospace; font-size: 12px; color: #333333; white-space: pre;"><span style="color: #000000; font-family: Georgia, serif; font-size: 16px; white-space: normal;">Domain Expires: Feb 15, 2017</span></span></div>
<div>Company is based out of Columbus, Ohio.   Owned by Ecommerce.com.</div>
<div>Reviews of this host are not great, atleast 3 people have posted &#8220;Avoid them like the plague&#8221; and hundreds of customers are <span style="font-family: arial, sans-serif; font-size: 17px; border-collapse: collapse; white-space: pre; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px;">infuriated with the way they handle security, spam, backups, downtime, support tickets and customer service.</span></div>
<div><span style="font-family: arial, sans-serif; font-size: 180%;"><span style="border-collapse: collapse; font-size: 17px; white-space: pre; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px;"><br />
</span></span></div>
<div><span style="font-family: arial, sans-serif; font-size: 180%;"><span style="border-collapse: collapse; white-space: pre; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px;">Next host on the list: </span><span style="border-collapse: collapse; font-size: 17px; white-space: pre; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px;"><a title="In Motion Hosting" href="https://secure1.inmotionhosting.com/cgi-bin/gby/clickthru.cgi?id=Skohlmeyer&amp;page=1">Inmotionhosting.com</a></span></span></div>
<div><span style="font-family: arial, sans-serif; font-size: 180%;"><span style="border-collapse: collapse; font-size: 17px; white-space: pre; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px;">So far out of about 100 reviews i&#8217;ve read, I&#8217;ve only found about 3 or 4 negative reviews.  They seem to be the more secure solution to my hosting needs.  I read further into the reviews&#8230;</span></span></div>
<div><span style="font-family: arial, sans-serif; font-size: 180%;"><span style="border-collapse: collapse; font-size: 17px; white-space: pre; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px;">A couple hundred reviews in and I&#8217;m satisfied, inmotionhosting will be the one.</span></span></div>
<div><span style="font-family: arial, sans-serif; font-size: 180%;"><span style="border-collapse: collapse; font-size: 17px; white-space: pre; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px;"><br />
</span></span></div>
<div><span style="font-family: arial, sans-serif; font-size: 180%;"><span style="border-collapse: collapse; font-size: 17px; white-space: pre; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px;">~Fastmover</span></span></div>
]]></content:encoded>
			<wfw:commentRss>http://stevenkohlmeyer.com/internet/virtual-private-server-hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making My Way</title>
		<link>http://stevenkohlmeyer.com/internet/making-my-way/</link>
		<comments>http://stevenkohlmeyer.com/internet/making-my-way/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 06:16:00 +0000</pubDate>
		<dc:creator>SteveK</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[baseball]]></category>
		<category><![CDATA[basketball]]></category>
		<category><![CDATA[football]]></category>
		<category><![CDATA[internet marketing]]></category>
		<category><![CDATA[miller cards]]></category>
		<category><![CDATA[roof repair]]></category>
		<category><![CDATA[roofers]]></category>
		<category><![CDATA[roofing]]></category>
		<category><![CDATA[search engine]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[sports cards]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://StevenKohlmeyer.com/2009/11/23/making-my-way/</guid>
		<description><![CDATA[Select box Plugin option is: fourToday I realized i really needed a blog account. So Here I am on blog spot. I see so many links to this site and so many searches result in blogs I might as well contribute. I&#8217;m managing my way into website SEO ( Search Engine Optimization ) as well [...]]]></description>
			<content:encoded><![CDATA[<p style="color: #777;border:1px dashed #999; padding: 6px;">Select box Plugin option is: four</p><p>Today I realized i really needed a blog account.   So Here I am on blog spot.  I see so many links to this site and so many searches result in blogs I might as well contribute.  I&#8217;m managing my way into website SEO ( Search Engine Optimization ) as well as freelance webdesign and PHP ( PHP: Hypertext Preprocessor ).</p>
<div>From my readings on SEO it&#8217;s clear to me now i need more content as well as more sites.   I currently have a gaming website for personal use and manage a few others.  My gaming website is: <a href="http://www.ibaclan.com/">http://www.IBAClan.com</a> and is currently being redesigned.  I&#8217;m a big Counter-Strike fan and a fan of First Person Shooter (FPS) games.  I&#8217;ve had this website since I turned 18, and my love for the game has never faded.  I ran a Counter-Strike Server from 2001 until 2004.  The I*B*A Clan is still alive, just taken a long vacation.</div>
<div>I&#8217;ve tweak and helped put online, an excellent sports cards website.  <a href="http://millercards.net/">http://MillerCards.net</a> was custom designed and built by Derek Miller.  His love of Football Cards, Baseball Cards, and Basketball Cards has definitely sparked a creative side of Mr Miller.  Miller Cards has some very cool features, to those who love the hobby, check his site out.  You&#8217;ll find monthly if not weekly and sometimes daily updates.  For all those who love sports and sports cards, check out Miller Cards.</div>
<div>I&#8217;m currently updating <a href="http://www.carlsonroofingdoneright.com/">http://www.CarlsonRoofingDoneRight.com</a> with a few tweaks to the website and new content.  If you need roof repair, a roof inspection, or just want a new roof, Carlson Roofing Done Right is the company for you.  Roofers that give you Free Estimates and a quality job done right. Serving the Greater Kansas City Area and based out of Independence, Mo.</div>
<div>Well it&#8217;s very late and I do have to work in the morning.  Until my next blog.</div>
<div>~Fastmover</div>
]]></content:encoded>
			<wfw:commentRss>http://stevenkohlmeyer.com/internet/making-my-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

