<?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>Adam Tootle</title>
	<atom:link href="http://www.adamtootle.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.adamtootle.com</link>
	<description>Savannah-based web developer, musician, and Christian</description>
	<lastBuildDate>Fri, 25 Jun 2010 20:39:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Kohana Hello World</title>
		<link>http://www.adamtootle.com/2010/06/kohana-hello-world/</link>
		<comments>http://www.adamtootle.com/2010/06/kohana-hello-world/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 16:13:09 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[hello world]]></category>
		<category><![CDATA[kohana]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.adamtootle.com/?p=92</guid>
		<description><![CDATA[Kohana is quite and amazing tool to use in PHP application development. It&#8217;s an awesome MVC framework and can make development time way faster. I&#8217;m not getting into framework comparisons, as I mainly work in Kohana (when I&#8217;m not working in WordPress). This is a quick tutorial on a simple &#8216;hello world&#8217; application (because every [...]]]></description>
			<content:encoded><![CDATA[<p>Kohana is quite and amazing tool to use in PHP application development. It&#8217;s an awesome MVC framework and can make development time way faster. I&#8217;m not getting into framework comparisons, as I mainly work in Kohana (when I&#8217;m not working in WordPress). This is a quick tutorial on a simple &#8216;hello world&#8217; application (because every first time developer should always write a hello world app, it&#8217;s the rules).</p>
<p>Before we get started, go ahead and grab the latest version of Kohana <a href="http://kohanaframework.org/download" target="_blank">here</a>. I&#8217;ll be using v2.3.4.</p>
<h3>1) Install Kohana</h3>
<p>Which really means just copy the Kohana files into the directory you are going to be working in. For the sake of this tutorial, let&#8217;s put it in a directory name /helloworld/. Let the install.php script execute and tell you everything is good to go. I&#8217;m not addressing server errors in this tutorial (but I am assuming you&#8217;re on Apache). After everything is cleared, you can either rename the install.php or delete it.</p>
<h3>2) Setup .htaccess</h3>
<p>I usually go ahead and setup the .htaccess file. This way I don&#8217;t have to worry about troubleshooting this later. Kohana provides an example.htaccess file. Grab the contents of this and paste it into our .htaccess file in the root directory of the application (helloworld/). The only thing we are going to change is the line that reads &#8216;RewriteBase /kohana/&#8217;. We need this to say &#8216;RewriteBase /helloworld/&#8217; (no quotes). This just tells the server what we will be running our application from the helloworld/ directory.</p>
<h3>3) Create Our Controller</h3>
<p>Kohana follows a strict naming convention for certain files in our application. For our &#8216;hello world&#8217; application, we are just going to create a &#8216;hello&#8217; controller. Create a file named hello.php in our /application/controllers/ directory. This is going to be the main controller for this application.</p>
<h3>4) Start coding</h3>
<p>Let&#8217;s jump in and start writing code and I will explain it as we go along.</p>
<p>First, add this line to the top of the hello.php (after our opening &lt;?php tag, of course):</p>
<div class="codesnip-container" >
<div class="php codesnip" style="font-family:monospace;">
<ol>
<li class="li1">
<div class="de1"><a href="http://www.php.net/defined"><span class="kw3">defined</span></a><span class="br0">&#40;</span><span class="st_h">&#8216;SYSPATH&#8217;</span><span class="br0">&#41;</span> OR <a href="http://www.php.net/die"><span class="kw3">die</span></a><span class="br0">&#40;</span><span class="st_h">&#8216;No direct access allowed.&#8217;</span><span class="br0">&#41;</span><span class="sy0">;</span></div>
</li>
</ol>
</div>
</div>
<p>This prevents the files from accessing itself. You should always add this to each of your controllers.</p>
<p>Next, let&#8217;s go ahead and declare our class:</p>
<div class="codesnip-container" >
<div class="php codesnip" style="font-family:monospace;">
<ol>
<li class="li1">
<div class="de1"><span class="kw2">class</span> Hello_Controller <span class="kw2">extends</span> Controller<span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
</ol>
</div>
</div>
<p>This is where the naming convention can really be seen. Because we are declaring a controller for hello, the file name <span style="text-decoration: underline;">must be</span> lower case. Also, the class declaration <span style="text-decoration: underline;">must</span> match the filename, be capital case, and end in _Controller. Our class also extends the Controller class, which gives us access to all of Kohana&#8217;s core features for this class.</p>
<p>Example: a blog controller would have the filename &#8216;blog.php&#8217;, be declared as Blog_Controller, and extend Controller.</p>
<h3>5) Add Index Function</h3>
<p>Let&#8217;s go a head and add an index function to our Hello_Controller class.</p>
<div class="codesnip-container" >
<div class="php codesnip" style="font-family:monospace;">
<ol>
<li class="li1">
<div class="de1"><span class="kw2">class</span> Hello_Controller <span class="kw2">extends</span> Controller<span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">function</span> index<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">echo</span> <span class="st_h">&#8216;hello world!&#8217;</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
</ol>
</div>
</div>
<p>I&#8217;ll cover this a little more in the next step.</p>
<h3>6) Test It</h3>
<p>At this point you should be able to access your controller. First, let&#8217;s look at how Kohana reads the url structure. This is an example of a basic call to a controller:</p>
<p>(application root)/controllerName/functionName</p>
<p>Therefore, we should be able to call our hello controller by accessing (your domain)/helloworld/hello/index. This calls the index function of our hello controller.</p>
<p>*hint* &#8211; you do not have to specify index in the url. If a function name is not given in the url, Kohana will look for the index function.</p>
<p>Accessing this function should give you our &#8216;hello world!&#8217; output from step 5.</p>
<h3>7) That&#8217;s it</h3>
<p>This was a quick and easy example of how to get a simple application up and running. I&#8217;ll cover using views and models soon.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.adamtootle.com/2010/06/kohana-hello-world/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Kohana+Hello+World+-+http://b2l.me/2877y&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.adamtootle.com/2010/06/kohana-hello-world/&amp;t=Kohana+Hello+World" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.adamtootle.com/2010/06/kohana-hello-world/&amp;title=Kohana+Hello+World" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.adamtootle.com/2010/06/kohana-hello-world/&amp;title=Kohana+Hello+World" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.adamtootle.com/2010/06/kohana-hello-world/&amp;title=Kohana+Hello+World&amp;desc=Kohana%20is%20quite%20and%20amazing%20tool%20to%20use%20in%20PHP%20application%20development.%20It%27s%20an%20awesome%20MVC%20framework%20and%20can%20make%20development%20time%20way%20faster.%20I%27m%20not%20getting%20into%20framework%20comparisons%2C%20as%20I%20mainly%20work%20in%20Kohana%20%28when%20I%27m%20not%20working%20in%20Wordpress%29.%20This%20is%20a%20quick%20tutorial%20on%20a%20simple%20%27hello%20worl" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.adamtootle.com/2010/06/kohana-hello-world/&amp;title=Kohana+Hello+World" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.adamtootle.com/2010/06/kohana-hello-world/&amp;title=Kohana+Hello+World" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.adamtootle.com/2010/06/kohana-hello-world/&amp;title=Kohana+Hello+World" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.adamtootle.com/2010/06/kohana-hello-world/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Kohana+Hello+World&amp;body=Link: http://www.adamtootle.com/2010/06/kohana-hello-world/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Kohana%20is%20quite%20and%20amazing%20tool%20to%20use%20in%20PHP%20application%20development.%20It%27s%20an%20awesome%20MVC%20framework%20and%20can%20make%20development%20time%20way%20faster.%20I%27m%20not%20getting%20into%20framework%20comparisons%2C%20as%20I%20mainly%20work%20in%20Kohana%20%28when%20I%27m%20not%20working%20in%20Wordpress%29.%20This%20is%20a%20quick%20tutorial%20on%20a%20simple%20%27hello%20worl" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.adamtootle.com/2010/06/kohana-hello-world/&amp;title=Kohana+Hello+World&amp;summary=Kohana%20is%20quite%20and%20amazing%20tool%20to%20use%20in%20PHP%20application%20development.%20It%27s%20an%20awesome%20MVC%20framework%20and%20can%20make%20development%20time%20way%20faster.%20I%27m%20not%20getting%20into%20framework%20comparisons%2C%20as%20I%20mainly%20work%20in%20Kohana%20%28when%20I%27m%20not%20working%20in%20Wordpress%29.%20This%20is%20a%20quick%20tutorial%20on%20a%20simple%20%27hello%20worl&amp;source=Adam Tootle" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.adamtootle.com%2F2010%2F06%2Fkohana-hello-world%2F&amp;t=Kohana+Hello+World" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.adamtootle.com/2010/06/kohana-hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Archive Index Page (with pagination)</title>
		<link>http://www.adamtootle.com/2010/05/custom-archive-index-page-with-pagination/</link>
		<comments>http://www.adamtootle.com/2010/05/custom-archive-index-page-with-pagination/#comments</comments>
		<pubDate>Thu, 27 May 2010 18:59:05 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.adamtootle.com/?p=69</guid>
		<description><![CDATA[Ok, so here&#8217;s something I had a little trouble with a couple of days ago. I just could not get it to work, although the answer was pretty obvious. I was working on creating a custom archive index page on a site and could not get the template the paginate. Here&#8217;s what i found to [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, so here&#8217;s something I had a little trouble with a couple of days ago. I just could not get it to work, although the answer was pretty obvious. I was working on creating a custom archive index page on a site and could not get the template the paginate. Here&#8217;s what i found to the quickest way to do it with query_posts():</p>
<div class="codesnip-container" >
<div class="php codesnip" style="font-family:monospace;">
<ol>
<li class="li1">
<div class="de1">query_posts<span class="br0">&#40;</span><span class="st_h">&#8216;cat=3&amp;amp;paged=&#8217;</span> <span class="sy0">.</span> get_query_var<span class="br0">&#40;</span> <span class="st_h">&#8216;paged&#8217;</span> <span class="br0">&#41;</span><span class="br0">&#41;</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">if</span> <span class="br0">&#40;</span> have_posts<span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="br0">&#41;</span> <span class="sy0">:</span> <span class="kw1">while</span> <span class="br0">&#40;</span> have_posts<span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="br0">&#41;</span> <span class="sy0">:</span> the_post<span class="br0">&#40;</span><span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="co1">// do your thing here</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">endwhile</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw1">endif</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">wp_reset_query<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">;</span></div>
</li>
</ol>
</div>
</div>
<p>You have to make sure you pass the paged parameter to query_posts(), using get_query_var(&#8216;page&#8217;). This is all I was forgetting. You could set this to something like &#8217;3&#8242;, which would only display the posts that would normally show on page 3 of your paginated archive. Or you could make it dynamic by using get_query_var( &#8216;paged&#8217; ). This will set it to whatever page you might be on at the time, with the URL containing something like /page/2.</p>
<p>And I always reset the query. Often times I am calling on the post ID in the sidebar, so not resetting the query will mess me up. It&#8217;s a good habit to get into when using query_posts().</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.adamtootle.com/2010/05/custom-archive-index-page-with-pagination/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Custom+Archive+Index+Page+%28with+pagination%29+-+http://b2l.me/yccjs&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.adamtootle.com/2010/05/custom-archive-index-page-with-pagination/&amp;t=Custom+Archive+Index+Page+%28with+pagination%29" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.adamtootle.com/2010/05/custom-archive-index-page-with-pagination/&amp;title=Custom+Archive+Index+Page+%28with+pagination%29" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.adamtootle.com/2010/05/custom-archive-index-page-with-pagination/&amp;title=Custom+Archive+Index+Page+%28with+pagination%29" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.adamtootle.com/2010/05/custom-archive-index-page-with-pagination/&amp;title=Custom+Archive+Index+Page+%28with+pagination%29&amp;desc=Ok%2C%20so%20here%27s%20something%20I%20had%20a%20little%20trouble%20with%20a%20couple%20of%20days%20ago.%20I%20just%20could%20not%20get%20it%20to%20work%2C%20although%20the%20answer%20was%20pretty%20obvious.%20I%20was%20working%20on%20creating%20a%20custom%20archive%20index%20page%20on%20a%20site%20and%20could%20not%20get%20the%20template%20the%20paginate.%20Here%27s%20what%20i%20found%20to%20the%20quickest%20way%20to%20d" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.adamtootle.com/2010/05/custom-archive-index-page-with-pagination/&amp;title=Custom+Archive+Index+Page+%28with+pagination%29" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.adamtootle.com/2010/05/custom-archive-index-page-with-pagination/&amp;title=Custom+Archive+Index+Page+%28with+pagination%29" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.adamtootle.com/2010/05/custom-archive-index-page-with-pagination/&amp;title=Custom+Archive+Index+Page+%28with+pagination%29" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.adamtootle.com/2010/05/custom-archive-index-page-with-pagination/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Custom+Archive+Index+Page+%28with+pagination%29&amp;body=Link: http://www.adamtootle.com/2010/05/custom-archive-index-page-with-pagination/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Ok%2C%20so%20here%27s%20something%20I%20had%20a%20little%20trouble%20with%20a%20couple%20of%20days%20ago.%20I%20just%20could%20not%20get%20it%20to%20work%2C%20although%20the%20answer%20was%20pretty%20obvious.%20I%20was%20working%20on%20creating%20a%20custom%20archive%20index%20page%20on%20a%20site%20and%20could%20not%20get%20the%20template%20the%20paginate.%20Here%27s%20what%20i%20found%20to%20the%20quickest%20way%20to%20d" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.adamtootle.com/2010/05/custom-archive-index-page-with-pagination/&amp;title=Custom+Archive+Index+Page+%28with+pagination%29&amp;summary=Ok%2C%20so%20here%27s%20something%20I%20had%20a%20little%20trouble%20with%20a%20couple%20of%20days%20ago.%20I%20just%20could%20not%20get%20it%20to%20work%2C%20although%20the%20answer%20was%20pretty%20obvious.%20I%20was%20working%20on%20creating%20a%20custom%20archive%20index%20page%20on%20a%20site%20and%20could%20not%20get%20the%20template%20the%20paginate.%20Here%27s%20what%20i%20found%20to%20the%20quickest%20way%20to%20d&amp;source=Adam Tootle" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.adamtootle.com%2F2010%2F05%2Fcustom-archive-index-page-with-pagination%2F&amp;t=Custom+Archive+Index+Page+%28with+pagination%29" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.adamtootle.com/2010/05/custom-archive-index-page-with-pagination/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m moving</title>
		<link>http://www.adamtootle.com/2010/05/im-moving/</link>
		<comments>http://www.adamtootle.com/2010/05/im-moving/#comments</comments>
		<pubDate>Tue, 25 May 2010 15:53:19 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://www.adamtootle.com/?p=61</guid>
		<description><![CDATA[After much prayer and consideration I will be moving to Tennessee within the next 2-3 weeks. I have absolutely loved living in Savannah. Living here has given me an awesome start in full time web development. I will continue doing what I&#8217;m doing in TN. I&#8217;ll be working from home a lot more again, so [...]]]></description>
			<content:encoded><![CDATA[<p>After much prayer and consideration I will be moving to Tennessee within the next 2-3 weeks. I have absolutely loved living in Savannah. Living here has given me an awesome start in full time web development. I will continue doing what I&#8217;m doing in TN. I&#8217;ll be working from home a lot more again, so I&#8217;m really hoping to try and get on top of this blog once and for all. It&#8217;s bittersweet, but time to move on.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.adamtootle.com/2010/05/im-moving/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=I%27m+moving+-+http://b2l.me/ydybr&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.adamtootle.com/2010/05/im-moving/&amp;t=I%27m+moving" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.adamtootle.com/2010/05/im-moving/&amp;title=I%27m+moving" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.adamtootle.com/2010/05/im-moving/&amp;title=I%27m+moving" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.adamtootle.com/2010/05/im-moving/&amp;title=I%27m+moving&amp;desc=After%20much%20prayer%20and%20consideration%20I%20will%20be%20moving%20to%20Tennessee%20within%20the%20next%202-3%20weeks.%20I%20have%20absolutely%20loved%20living%20in%20Savannah.%20Living%20here%20has%20given%20me%20an%20awesome%20start%20in%20full%20time%20web%20development.%20I%20will%20continue%20doing%20what%20I%27m%20doing%20in%20TN.%20I%27ll%20be%20working%20from%20home%20a%20lot%20more%20again%2C%20so%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.adamtootle.com/2010/05/im-moving/&amp;title=I%27m+moving" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.adamtootle.com/2010/05/im-moving/&amp;title=I%27m+moving" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.adamtootle.com/2010/05/im-moving/&amp;title=I%27m+moving" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.adamtootle.com/2010/05/im-moving/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=I%27m+moving&amp;body=Link: http://www.adamtootle.com/2010/05/im-moving/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A After%20much%20prayer%20and%20consideration%20I%20will%20be%20moving%20to%20Tennessee%20within%20the%20next%202-3%20weeks.%20I%20have%20absolutely%20loved%20living%20in%20Savannah.%20Living%20here%20has%20given%20me%20an%20awesome%20start%20in%20full%20time%20web%20development.%20I%20will%20continue%20doing%20what%20I%27m%20doing%20in%20TN.%20I%27ll%20be%20working%20from%20home%20a%20lot%20more%20again%2C%20so%20" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.adamtootle.com/2010/05/im-moving/&amp;title=I%27m+moving&amp;summary=After%20much%20prayer%20and%20consideration%20I%20will%20be%20moving%20to%20Tennessee%20within%20the%20next%202-3%20weeks.%20I%20have%20absolutely%20loved%20living%20in%20Savannah.%20Living%20here%20has%20given%20me%20an%20awesome%20start%20in%20full%20time%20web%20development.%20I%20will%20continue%20doing%20what%20I%27m%20doing%20in%20TN.%20I%27ll%20be%20working%20from%20home%20a%20lot%20more%20again%2C%20so%20&amp;source=Adam Tootle" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.adamtootle.com%2F2010%2F05%2Fim-moving%2F&amp;t=I%27m+moving" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.adamtootle.com/2010/05/im-moving/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Few Security Measures with WordPress</title>
		<link>http://www.adamtootle.com/2010/05/a-few-security-measures-with-wordpress/</link>
		<comments>http://www.adamtootle.com/2010/05/a-few-security-measures-with-wordpress/#comments</comments>
		<pubDate>Mon, 03 May 2010 23:47:58 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.adamtootle.com/?p=54</guid>
		<description><![CDATA[Again, trying to get a handle on posting regular on here (yeah this is the 4th post in a few months, I&#8217;m really trying!). Here are a few security mearsures I always take when setting up a new WordPress install. Some of these have come from other people as I have come across them. If [...]]]></description>
			<content:encoded><![CDATA[<p>Again, trying to get a handle on posting regular on here (yeah this is the 4th post in a few months, I&#8217;m really trying!). Here are a few security mearsures I always take when setting up a new WordPress install. Some of these have come from other people as I have come across them. If you see anything here that you&#8217;ve seen somewhere else please don&#8217;t think I&#8217;m trying to steal anyone&#8217;s content, I just have no idea where I read some of this stuff, so I have no idea who to credit. That being said, here we go:</p>
<p>1) Change the default table prefix.</p>
<p style="padding-left: 30px;">I always make it a point to change the default table prefix for the database. Anything other than &#8216;wp_&#8217; helps database security. Although I would not recommend using the full site name, something like that would be too easy to guess.</p>
<p>2) Change the default &#8216;admin&#8217; user.</p>
<p style="padding-left: 30px;">You can&#8217;t do this from the admin section of WordPress, so you&#8217;ll have to edit the database using something like phpMyAdmin. Changing the default username to something not easy to guess also helps prevent any potential security breach.</p>
<p>3) Make sure your /wp-content directory and sub-directories each have an index.php file in them.</p>
<p style="padding-left: 30px;">I know this is a standard feature with WordPress now, but I still come across sites from time to time that don&#8217;t have these files (for whatever reason). But having an index.php (even if it&#8217;s blank) will cause someone trying to access something like you&#8217;re plugins directory to call the index file, thus not revealing the file structure and any plugins you may be using. The 3 directories that really need this are /wp-content, /wp-content/plugins, and /wp-content/themes.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.adamtootle.com/2010/05/a-few-security-measures-with-wordpress/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=A+Few+Security+Measures+with+Wordpress+-+http://b2l.me/yfp4j&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.adamtootle.com/2010/05/a-few-security-measures-with-wordpress/&amp;t=A+Few+Security+Measures+with+Wordpress" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.adamtootle.com/2010/05/a-few-security-measures-with-wordpress/&amp;title=A+Few+Security+Measures+with+Wordpress" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.adamtootle.com/2010/05/a-few-security-measures-with-wordpress/&amp;title=A+Few+Security+Measures+with+Wordpress" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.adamtootle.com/2010/05/a-few-security-measures-with-wordpress/&amp;title=A+Few+Security+Measures+with+Wordpress&amp;desc=Again%2C%20trying%20to%20get%20a%20handle%20on%20posting%20regular%20on%20here%20%28yeah%20this%20is%20the%204th%20post%20in%20a%20few%20months%2C%20I%27m%20really%20trying%21%29.%20Here%20are%20a%20few%20security%20mearsures%20I%20always%20take%20when%20setting%20up%20a%20new%20Wordpress%20install.%20Some%20of%20these%20have%20come%20from%20other%20people%20as%20I%20have%20come%20across%20them.%20If%20you%20see%20anything" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.adamtootle.com/2010/05/a-few-security-measures-with-wordpress/&amp;title=A+Few+Security+Measures+with+Wordpress" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.adamtootle.com/2010/05/a-few-security-measures-with-wordpress/&amp;title=A+Few+Security+Measures+with+Wordpress" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.adamtootle.com/2010/05/a-few-security-measures-with-wordpress/&amp;title=A+Few+Security+Measures+with+Wordpress" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.adamtootle.com/2010/05/a-few-security-measures-with-wordpress/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=A+Few+Security+Measures+with+Wordpress&amp;body=Link: http://www.adamtootle.com/2010/05/a-few-security-measures-with-wordpress/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Again%2C%20trying%20to%20get%20a%20handle%20on%20posting%20regular%20on%20here%20%28yeah%20this%20is%20the%204th%20post%20in%20a%20few%20months%2C%20I%27m%20really%20trying%21%29.%20Here%20are%20a%20few%20security%20mearsures%20I%20always%20take%20when%20setting%20up%20a%20new%20Wordpress%20install.%20Some%20of%20these%20have%20come%20from%20other%20people%20as%20I%20have%20come%20across%20them.%20If%20you%20see%20anything" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.adamtootle.com/2010/05/a-few-security-measures-with-wordpress/&amp;title=A+Few+Security+Measures+with+Wordpress&amp;summary=Again%2C%20trying%20to%20get%20a%20handle%20on%20posting%20regular%20on%20here%20%28yeah%20this%20is%20the%204th%20post%20in%20a%20few%20months%2C%20I%27m%20really%20trying%21%29.%20Here%20are%20a%20few%20security%20mearsures%20I%20always%20take%20when%20setting%20up%20a%20new%20Wordpress%20install.%20Some%20of%20these%20have%20come%20from%20other%20people%20as%20I%20have%20come%20across%20them.%20If%20you%20see%20anything&amp;source=Adam Tootle" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.adamtootle.com%2F2010%2F05%2Fa-few-security-measures-with-wordpress%2F&amp;t=A+Few+Security+Measures+with+Wordpress" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.adamtootle.com/2010/05/a-few-security-measures-with-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple way to setup excerpts on your WordPress index page</title>
		<link>http://www.adamtootle.com/2010/02/simple-way-to-setup-excerpts-on-your-wordpress-index-page/</link>
		<comments>http://www.adamtootle.com/2010/02/simple-way-to-setup-excerpts-on-your-wordpress-index-page/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 23:29:49 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[excerpt]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.adamtootle.com/?p=27</guid>
		<description><![CDATA[This is something I&#8217;ve had to do several times. I&#8217;m pretty sure there are a few plugins to handle this, but changing one line of code is much better than having to load a whole plugin file and execute it. This is an easy way to setup an auto-excerpt for each post on you WordPress [...]]]></description>
			<content:encoded><![CDATA[<p>This is something I&#8217;ve had to do several times. I&#8217;m pretty sure there are a few plugins to handle this, but changing one line of code is much better than having to load a whole plugin file and execute it. This is an easy way to setup an auto-excerpt for each post on you WordPress index (front page of you blog). This way will take a certain length off the front of your posts and display it. If you look into the index.php file of most themes, somewhere in the file you will find a line of php that calls the WordPress function the_content(). This will display the whole post by default. What I normally do is comment this out (remember, never delete anything!) by adding two backslashes before this particular part, like so:</p>
<div class="codesnip-container" >
<div class="php codesnip" style="font-family:monospace;">
<ol>
<li class="li1">
<div class="de1"><span class="co1">// the_content();</span></div>
</li>
</ol>
</div>
</div>
<p>The next thing to do is call php&#8217;s native substr() method. This will take a given string and strip out a sub-string, given the starting position and length of the sub-string. I use the WordPress function get_the_content() to return the post&#8217;s content, rather than printing it. This is an example of how I&#8217;m using this method on this site:</p>
<div class="codesnip-container" >
<div class="php codesnip" style="font-family:monospace;">
<ol>
<li class="li1">
<div class="de1"><span class="kw1">echo</span> <a href="http://www.php.net/substr"><span class="kw3">substr</span></a><span class="br0">&#40;</span>get_the_content<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="sy0">,</span> <span class="nu0">0</span><span class="sy0">,</span> <span class="nu0">160</span><span class="br0">&#41;</span> <span class="sy0">.</span> <span class="st0">&quot;&#8230;&quot;</span><span class="sy0">;</span></div>
</li>
</ol>
</div>
</div>
<p>This basically takes the first 160 characters of a post (starting at position 0), echoes (or prints) it to the browser, and then adds three continuous periods (&#8230;), just to signal that there is more to the post. This is usually enough to get the first sentence or two. This will help keep the length on your index page down and you don&#8217;t have to remember to write an excerpt for every post. You can see this in use of the front page of this site &#8211; <a href="http://www.adamtootle.com">here</a>.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.adamtootle.com/2010/02/simple-way-to-setup-excerpts-on-your-wordpress-index-page/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Simple+way+to+setup+excerpts+on+your+Wordpress+index+page+-+http://b2l.me/yfp4k&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.adamtootle.com/2010/02/simple-way-to-setup-excerpts-on-your-wordpress-index-page/&amp;t=Simple+way+to+setup+excerpts+on+your+Wordpress+index+page" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.adamtootle.com/2010/02/simple-way-to-setup-excerpts-on-your-wordpress-index-page/&amp;title=Simple+way+to+setup+excerpts+on+your+Wordpress+index+page" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.adamtootle.com/2010/02/simple-way-to-setup-excerpts-on-your-wordpress-index-page/&amp;title=Simple+way+to+setup+excerpts+on+your+Wordpress+index+page" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.adamtootle.com/2010/02/simple-way-to-setup-excerpts-on-your-wordpress-index-page/&amp;title=Simple+way+to+setup+excerpts+on+your+Wordpress+index+page&amp;desc=This%20is%20something%20I%27ve%20had%20to%20do%20several%20times.%20I%27m%20pretty%20sure%20there%20are%20a%20few%20plugins%20to%20handle%20this%2C%20but%20changing%20one%20line%20of%20code%20is%20much%20better%20than%20having%20to%20load%20a%20whole%20plugin%20file%20and%20execute%20it.%20This%20is%20an%20easy%20way%20to%20setup%20an%20auto-excerpt%20for%20each%20post%20on%20you%20Wordpress%20index%20%28front%20page%20o" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.adamtootle.com/2010/02/simple-way-to-setup-excerpts-on-your-wordpress-index-page/&amp;title=Simple+way+to+setup+excerpts+on+your+Wordpress+index+page" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.adamtootle.com/2010/02/simple-way-to-setup-excerpts-on-your-wordpress-index-page/&amp;title=Simple+way+to+setup+excerpts+on+your+Wordpress+index+page" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.adamtootle.com/2010/02/simple-way-to-setup-excerpts-on-your-wordpress-index-page/&amp;title=Simple+way+to+setup+excerpts+on+your+Wordpress+index+page" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.adamtootle.com/2010/02/simple-way-to-setup-excerpts-on-your-wordpress-index-page/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Simple+way+to+setup+excerpts+on+your+Wordpress+index+page&amp;body=Link: http://www.adamtootle.com/2010/02/simple-way-to-setup-excerpts-on-your-wordpress-index-page/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A This%20is%20something%20I%27ve%20had%20to%20do%20several%20times.%20I%27m%20pretty%20sure%20there%20are%20a%20few%20plugins%20to%20handle%20this%2C%20but%20changing%20one%20line%20of%20code%20is%20much%20better%20than%20having%20to%20load%20a%20whole%20plugin%20file%20and%20execute%20it.%20This%20is%20an%20easy%20way%20to%20setup%20an%20auto-excerpt%20for%20each%20post%20on%20you%20Wordpress%20index%20%28front%20page%20o" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.adamtootle.com/2010/02/simple-way-to-setup-excerpts-on-your-wordpress-index-page/&amp;title=Simple+way+to+setup+excerpts+on+your+Wordpress+index+page&amp;summary=This%20is%20something%20I%27ve%20had%20to%20do%20several%20times.%20I%27m%20pretty%20sure%20there%20are%20a%20few%20plugins%20to%20handle%20this%2C%20but%20changing%20one%20line%20of%20code%20is%20much%20better%20than%20having%20to%20load%20a%20whole%20plugin%20file%20and%20execute%20it.%20This%20is%20an%20easy%20way%20to%20setup%20an%20auto-excerpt%20for%20each%20post%20on%20you%20Wordpress%20index%20%28front%20page%20o&amp;source=Adam Tootle" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.adamtootle.com%2F2010%2F02%2Fsimple-way-to-setup-excerpts-on-your-wordpress-index-page%2F&amp;t=Simple+way+to+setup+excerpts+on+your+Wordpress+index+page" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.adamtootle.com/2010/02/simple-way-to-setup-excerpts-on-your-wordpress-index-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Since I&#8217;m so on top of this</title>
		<link>http://www.adamtootle.com/2010/02/since-im-so-on-top-of-this/</link>
		<comments>http://www.adamtootle.com/2010/02/since-im-so-on-top-of-this/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 14:01:22 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.adamtootle.com/?p=14</guid>
		<description><![CDATA[This is my first post on adamtootle.com. Yeah, I know I only made one post on wordpress.com before moving it, big deal. Now I have more incentive to keep up with this. I&#8217;m already working on some posts for programming that I hope people will enjoy (even though nobody really knows about this site at [...]]]></description>
			<content:encoded><![CDATA[<p>This is my first post on adamtootle.com. Yeah, I know I only made one post on wordpress.com before moving it, big deal. Now I have more incentive to keep up with this. I&#8217;m already working on some posts for programming that I hope people will enjoy (even though nobody really knows about this site at the time I&#8217;m writing this particular post). I&#8217;m interested in seeing what kind of stuff people can learn from this site, and also what I can learn from different people through this site.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.adamtootle.com/2010/02/since-im-so-on-top-of-this/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Since+I%27m+so+on+top+of+this+-+http://b2l.me/yfp4m&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.adamtootle.com/2010/02/since-im-so-on-top-of-this/&amp;t=Since+I%27m+so+on+top+of+this" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.adamtootle.com/2010/02/since-im-so-on-top-of-this/&amp;title=Since+I%27m+so+on+top+of+this" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.adamtootle.com/2010/02/since-im-so-on-top-of-this/&amp;title=Since+I%27m+so+on+top+of+this" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.adamtootle.com/2010/02/since-im-so-on-top-of-this/&amp;title=Since+I%27m+so+on+top+of+this&amp;desc=This%20is%20my%20first%20post%20on%20adamtootle.com.%20Yeah%2C%20I%20know%20I%20only%20made%20one%20post%20on%20wordpress.com%20before%20moving%20it%2C%20big%20deal.%20Now%20I%20have%20more%20incentive%20to%20keep%20up%20with%20this.%20I%27m%20already%20working%20on%20some%20posts%20for%20programming%20that%20I%20hope%20people%20will%20enjoy%20%28even%20though%20nobody%20really%20knows%20about%20this%20site%20at%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.adamtootle.com/2010/02/since-im-so-on-top-of-this/&amp;title=Since+I%27m+so+on+top+of+this" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.adamtootle.com/2010/02/since-im-so-on-top-of-this/&amp;title=Since+I%27m+so+on+top+of+this" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.adamtootle.com/2010/02/since-im-so-on-top-of-this/&amp;title=Since+I%27m+so+on+top+of+this" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.adamtootle.com/2010/02/since-im-so-on-top-of-this/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Since+I%27m+so+on+top+of+this&amp;body=Link: http://www.adamtootle.com/2010/02/since-im-so-on-top-of-this/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A This%20is%20my%20first%20post%20on%20adamtootle.com.%20Yeah%2C%20I%20know%20I%20only%20made%20one%20post%20on%20wordpress.com%20before%20moving%20it%2C%20big%20deal.%20Now%20I%20have%20more%20incentive%20to%20keep%20up%20with%20this.%20I%27m%20already%20working%20on%20some%20posts%20for%20programming%20that%20I%20hope%20people%20will%20enjoy%20%28even%20though%20nobody%20really%20knows%20about%20this%20site%20at%20" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.adamtootle.com/2010/02/since-im-so-on-top-of-this/&amp;title=Since+I%27m+so+on+top+of+this&amp;summary=This%20is%20my%20first%20post%20on%20adamtootle.com.%20Yeah%2C%20I%20know%20I%20only%20made%20one%20post%20on%20wordpress.com%20before%20moving%20it%2C%20big%20deal.%20Now%20I%20have%20more%20incentive%20to%20keep%20up%20with%20this.%20I%27m%20already%20working%20on%20some%20posts%20for%20programming%20that%20I%20hope%20people%20will%20enjoy%20%28even%20though%20nobody%20really%20knows%20about%20this%20site%20at%20&amp;source=Adam Tootle" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.adamtootle.com%2F2010%2F02%2Fsince-im-so-on-top-of-this%2F&amp;t=Since+I%27m+so+on+top+of+this" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.adamtootle.com/2010/02/since-im-so-on-top-of-this/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Blog</title>
		<link>http://www.adamtootle.com/2009/11/new-blog/</link>
		<comments>http://www.adamtootle.com/2009/11/new-blog/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 22:43:45 +0000</pubDate>
		<dc:creator>adam</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://adamtootle.wordpress.com/?p=5</guid>
		<description><![CDATA[Ok, so I broke down and finally set up a blog. I&#8217;ll host it for a little while on wordpress.com before moving it to a self-hosted site. Hopefully I can stay on top of it enough to be able to do that in a few weeks. This blog is brand new, as am I to [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, so I broke down and finally set up a blog. I&#8217;ll host it for a little while on wordpress.com before moving it to a self-hosted site. Hopefully I can stay on top of it enough to be able to do that in a few weeks.</p>
<p>This blog is brand new, as am I to the whole blogging thing. Not that I don&#8217;t understand or now how to use it, I&#8217;ve even built a few. I just never sat down and actually started one for myself. I didn&#8217;t start it so I could say &#8220;Hey! Look at me! I&#8217;m a blogger! And I&#8217;m cool because I&#8217;m doing it!&#8221; It&#8217;s not going to be like that. I&#8217;ll be talking about all kinds of stuff. From web/programming to music to ministry/religion. This will be my personal outlet, but then again I guess most blogs are just that. Anyway, I appreciate anyone who will take the time to read what I&#8217;m writing. Hey, maybe I can even stir up some discussions along the way <img src='http://www.adamtootle.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Until then, later.<br />
Adam</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-enjoy">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.adamtootle.com/2009/11/new-blog/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=New+Blog+-+http://b2l.me/yfp4n&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.adamtootle.com/2009/11/new-blog/&amp;t=New+Blog" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.adamtootle.com/2009/11/new-blog/&amp;title=New+Blog" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.adamtootle.com/2009/11/new-blog/&amp;title=New+Blog" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.adamtootle.com/2009/11/new-blog/&amp;title=New+Blog&amp;desc=Ok%2C%20so%20I%20broke%20down%20and%20finally%20set%20up%20a%20blog.%20I%27ll%20host%20it%20for%20a%20little%20while%20on%20wordpress.com%20before%20moving%20it%20to%20a%20self-hosted%20site.%20Hopefully%20I%20can%20stay%20on%20top%20of%20it%20enough%20to%20be%20able%20to%20do%20that%20in%20a%20few%20weeks.%0A%0AThis%20blog%20is%20brand%20new%2C%20as%20am%20I%20to%20the%20whole%20blogging%20thing.%20Not%20that%20I%20don%27t%20unders" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.adamtootle.com/2009/11/new-blog/&amp;title=New+Blog" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.adamtootle.com/2009/11/new-blog/&amp;title=New+Blog" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.adamtootle.com/2009/11/new-blog/&amp;title=New+Blog" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.adamtootle.com/2009/11/new-blog/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=New+Blog&amp;body=Link: http://www.adamtootle.com/2009/11/new-blog/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Ok%2C%20so%20I%20broke%20down%20and%20finally%20set%20up%20a%20blog.%20I%27ll%20host%20it%20for%20a%20little%20while%20on%20wordpress.com%20before%20moving%20it%20to%20a%20self-hosted%20site.%20Hopefully%20I%20can%20stay%20on%20top%20of%20it%20enough%20to%20be%20able%20to%20do%20that%20in%20a%20few%20weeks.%0A%0AThis%20blog%20is%20brand%20new%2C%20as%20am%20I%20to%20the%20whole%20blogging%20thing.%20Not%20that%20I%20don%27t%20unders" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.adamtootle.com/2009/11/new-blog/&amp;title=New+Blog&amp;summary=Ok%2C%20so%20I%20broke%20down%20and%20finally%20set%20up%20a%20blog.%20I%27ll%20host%20it%20for%20a%20little%20while%20on%20wordpress.com%20before%20moving%20it%20to%20a%20self-hosted%20site.%20Hopefully%20I%20can%20stay%20on%20top%20of%20it%20enough%20to%20be%20able%20to%20do%20that%20in%20a%20few%20weeks.%0A%0AThis%20blog%20is%20brand%20new%2C%20as%20am%20I%20to%20the%20whole%20blogging%20thing.%20Not%20that%20I%20don%27t%20unders&amp;source=Adam Tootle" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.adamtootle.com%2F2009%2F11%2Fnew-blog%2F&amp;t=New+Blog" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.adamtootle.com/2009/11/new-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
