<?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>Stephen&#039;s Personal Blog &#187; Site Admin</title>
	<atom:link href="http://stephensite.net/WordPressSS/category/site-admin/feed/" rel="self" type="application/rss+xml" />
	<link>http://stephensite.net/WordPressSS</link>
	<description>Everything&#039;s Programming</description>
	<lastBuildDate>Fri, 14 Oct 2011 01:41:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>_GET[&#039;cat&#039;] Doesn&#8217;t Work With Permalinks</title>
		<link>http://stephensite.net/WordPressSS/2009/01/03/_getcat-doesnt-work-with-permalinks/</link>
		<comments>http://stephensite.net/WordPressSS/2009/01/03/_getcat-doesnt-work-with-permalinks/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 17:54:23 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Site Admin]]></category>

		<guid isPermaLink="false">http://stephensite.net/WordPressSS/?p=1178</guid>
		<description><![CDATA[My sidebar shows different content based upon the category that you are viewing at the time.  There are so many links that I want access to that I had to break out the big categories like bicycle and garden into their own subpages.
The other day I switched to using permalinks for the URL.  [...]]]></description>
			<content:encoded><![CDATA[<p>My sidebar shows different content based upon the category that you are viewing at the time.  There are so many links that I want access to that I had to break out the big categories like bicycle and garden into their own subpages.</p>
<p>The other day I switched to using permalinks for the URL.  This replaces the URLs like this:<br />
WordPressSS/?post_id=763<br />
With URLs that look like this:<br />
WordPressSS/2008/12/22/penny-stove/</p>
<p>This caused a big problem with showing different sidebar content based on the category.  The category used to be passed in through the query string and you get it with _GET['cat'].  Permalinks don&#8217;t use query strings.</p>
<p>To restore functionality, you need to replace &#8220;current_cat = $_GET['cat'];&#8221; with<br />
$category = get_the_category();<br />
$current_cat = $category[0]->cat_ID;</p>
<p>It would seem the permalinks can handle multiple categories, because get_the_category() returns an array.  This might be useful for some feature I can&#8217;t image.  Perhaps a sidebar for a tab to show Programming+Computers+Technology content.</p>
]]></content:encoded>
			<wfw:commentRss>http://stephensite.net/WordPressSS/2009/01/03/_getcat-doesnt-work-with-permalinks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changes to the Bike Log</title>
		<link>http://stephensite.net/WordPressSS/2008/12/31/changes-to-the-bike-log/</link>
		<comments>http://stephensite.net/WordPressSS/2008/12/31/changes-to-the-bike-log/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 19:06:25 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Bicycle]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Site Admin]]></category>

		<guid isPermaLink="false">http://stephensite.net/WordPressSS/?p=1134</guid>
		<description><![CDATA[Years ago when I was on the Atkins diet and exercising every day I had a little log book.  This is a surprisingly simple and cheap motivation.  It sucks to look back and see missing entries, I don&#8217;t feel guilty at the time, and I like recording big numbers.  So, when I [...]]]></description>
			<content:encoded><![CDATA[<p>Years ago when I was on the Atkins diet and exercising every day I had a little log book.  This is a surprisingly simple and cheap motivation.  It sucks to look back and see missing entries, I don&#8217;t feel guilty at the time, and I like recording big numbers.  So, when I started training last summer I did the same thing on the blog.  Later, this turned into an exercise log.</p>
<p>Keeping this on the blog is pretty kludgy.  I have to copy and paste the last line then edit it.  Changes to the table structure like adding new columns or colorization takes a massive amount of effort.  It&#8217;s good for one thing, adding one line at a time.</p>
<p>I hoped to fix this with some WordPress plugins like WP_Tables, but these are almost as kludgy and are not easy to add one new row.  If there&#8217;s one thing WordPress does exceptionally bad it&#8217;s table data.  You can&#8217;t just paste in cells from an Excel spreadsheet or quickly mock up a 3 X 4 simple table.  This is really too bad as spreadsheets are one of the little known foundations of the digital age.</p>
<p>The Recent Book list is nearly as bad.  It&#8217;s not a table, but has many common elements and new books are added the same way as the Bike Log.  A while ago I added book covers to the mouse hover event.  This took a couple of hours.</p>
<p>For some reason, I got the idea on Sunday of writing a Windows app to manage the data and spit out a formatted HTML table that I could just paste into the blog.  It took about 6 hours to put together a basic app that would read existing data, write it to a new file format, and spit out an HTML table for the blog.  Editing, adding, and removing entries were still done by editing the text file, but that was about the same as the blog anyway.  The table got an immediate improvement in appearance that was worth the trouble.  Over the past few days I&#8217;ve added other basic features along with a few more columns.</p>
<p>I would like to add a bit of analyzation too; things like weekly, monthly, yearly mileage, comparison to past performance in events, and fancier HTML.  And to address the other annoyance of the Book List.  It would be nice if this were in WordPress as a plugin.  My interest can wane overnight and it&#8217;s better to have a process that works at the end of each improvement session.  PHP, MySQL, WordPress development on a remote box would take too long.</p>
]]></content:encoded>
			<wfw:commentRss>http://stephensite.net/WordPressSS/2008/12/31/changes-to-the-bike-log/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Site Changes</title>
		<link>http://stephensite.net/WordPressSS/2008/10/12/site-changes/</link>
		<comments>http://stephensite.net/WordPressSS/2008/10/12/site-changes/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 03:56:42 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Site Admin]]></category>

		<guid isPermaLink="false">http://stephensite.net/WordPressSS/?p=984</guid>
		<description><![CDATA[I&#8217;ve been upgrading the blog further with plugins and customizations.  This weekend it became more searchable by changing the post URLs from using sequential numbers to words that search engines are interested in.  The recent book list has popups for the book covers now.  Other plugins have yet to be implemented.  [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been upgrading the blog further with plugins and customizations.  This weekend it became more searchable by changing the post URLs from using sequential numbers to words that search engines are interested in.  The recent book list has popups for the book covers now.  Other plugins have yet to be implemented.  Making polls, making tables in posts, and redoing the workout log.</p>
]]></content:encoded>
			<wfw:commentRss>http://stephensite.net/WordPressSS/2008/10/12/site-changes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ideas for the website</title>
		<link>http://stephensite.net/WordPressSS/2008/09/17/ideas-for-the-website/</link>
		<comments>http://stephensite.net/WordPressSS/2008/09/17/ideas-for-the-website/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 01:43:01 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Ideas]]></category>
		<category><![CDATA[Site Admin]]></category>

		<guid isPermaLink="false">http://stephensite.net/WordPressSS/?p=845</guid>
		<description><![CDATA[1.
News based on separate, specific list of RSS feeds, combined to appear as &#8220;one&#8221; hourly, daily newspaper.  A place to go for recent Bicycle news.  Something I could use.  A top 5 snippets on the sidebar.
Mashing Up Feeds Using Yahoo Pipes
2.
News from many feeds filtered based on certain keywords to sort or [...]]]></description>
			<content:encoded><![CDATA[<p>1.<br />
News based on separate, specific list of RSS feeds, combined to appear as &#8220;one&#8221; hourly, daily newspaper.  A place to go for recent Bicycle news.  Something I could use.  A top 5 snippets on the sidebar.</p>
<p><a href="http://www.devlounge.net/articles/script/mashing-up-feeds-using-yahoo-pipes">Mashing Up Feeds Using Yahoo Pipes</a></p>
<p>2.<br />
News from many feeds filtered based on certain keywords to sort or generate a new feed.  A list of keywords shift certain stories to the top.  For example, to get the release notifications, defects, betas, changes, etc.</p>
<p>3.<br />
Making a post, like an essay, stick around longer.  Some content is just commentary or transient, &#8220;look my new MacBook Pro came in&#8221;  But a few articles are longer and well thought out.</p>
<p><a href="http://nettuts.com/working-with-cmss/how-to-make-a-featured-post-carousel-for-wordpress/">How to Make a Featured Post Carousel for WordPress</a></p>
]]></content:encoded>
			<wfw:commentRss>http://stephensite.net/WordPressSS/2008/09/17/ideas-for-the-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog Upgrades</title>
		<link>http://stephensite.net/WordPressSS/2008/09/13/blog-upgrades/</link>
		<comments>http://stephensite.net/WordPressSS/2008/09/13/blog-upgrades/#comments</comments>
		<pubDate>Sat, 13 Sep 2008 18:53:43 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Site Admin]]></category>

		<guid isPermaLink="false">http://stephensite.net/WordPressSS/?p=791</guid>
		<description><![CDATA[This morning I upgraded the blog to WordPress 2.6.2 and I&#8217;m trying to change the appearance to something more suited to my interests.  Currently, all the posts are in one stream.  For persistent items, I make a page on the side.  However, there are getting to be more pages and more pages [...]]]></description>
			<content:encoded><![CDATA[<p>This morning I upgraded the blog to WordPress 2.6.2 and I&#8217;m trying to change the appearance to something more suited to my interests.  Currently, all the posts are in one stream.  For persistent items, I make a page on the side.  However, there are getting to be more pages and more pages that I would like to add that don&#8217;t seem appropriate for the root page of the website.  Pages that would be more suited to a particular topic.</p>
<p>The topics that I want to have are based roughly on the tags; rambling, bicycling, apple/mac, house projects, news, and gardening.  I would like my bicycle items, for example, to stay closer to the top, but the current home page is correct in how it works.  So, if I give them their own space the website can filter and organize them to represent my interests more accurately.</p>
]]></content:encoded>
			<wfw:commentRss>http://stephensite.net/WordPressSS/2008/09/13/blog-upgrades/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Trojan Removed</title>
		<link>http://stephensite.net/WordPressSS/2008/07/02/trojan-removed/</link>
		<comments>http://stephensite.net/WordPressSS/2008/07/02/trojan-removed/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 03:13:06 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Site Admin]]></category>

		<guid isPermaLink="false">http://stephensite.net/WordPressSS/?p=745</guid>
		<description><![CDATA[After pouring over the code the trojan has been removed from the website.  The StephenSite blog can no longer infect Windows computers.
It seems this started on April 9th.  If you looked at this website on a Windows computer, Firefox or IE, since then you should run a virus and malware scanner.
Thanks to FireFox [...]]]></description>
			<content:encoded><![CDATA[<p>After pouring over the code the trojan has been removed from the website.  The StephenSite blog can no longer infect Windows computers.</p>
<p>It seems this started on April 9th.  If you looked at this website on a Windows computer, Firefox or IE, since then you should run a virus and malware scanner.</p>
<p>Thanks to FireFox 3 and the corporate virus scanners for catching this.</p>
]]></content:encoded>
			<wfw:commentRss>http://stephensite.net/WordPressSS/2008/07/02/trojan-removed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog Updates</title>
		<link>http://stephensite.net/WordPressSS/2008/07/02/blog-updates/</link>
		<comments>http://stephensite.net/WordPressSS/2008/07/02/blog-updates/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 14:00:42 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Site Admin]]></category>

		<guid isPermaLink="false">http://stephensite.net/WordPressSS/?p=744</guid>
		<description><![CDATA[There has been a trojan on the Stephen Personal Blog for a month or more.  It only affects Windows computers, which is why I never noticed.  Firefox and IE are vulnerable.  The blog has been upgraded to the latest WP.  However, the malicious code has been placed, it seems, in a [...]]]></description>
			<content:encoded><![CDATA[<p>There has been a trojan on the Stephen Personal Blog for a month or more.  It only affects Windows computers, which is why I never noticed.  Firefox and IE are vulnerable.  The blog has been upgraded to the latest WP.  However, the malicious code has been placed, it seems, in a php file and I have not yet found that.  For now, a broken theme comes up the best, because it crashes before rendering the malicious code.</p>
]]></content:encoded>
			<wfw:commentRss>http://stephensite.net/WordPressSS/2008/07/02/blog-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.5</title>
		<link>http://stephensite.net/WordPressSS/2008/05/08/wordpress-25/</link>
		<comments>http://stephensite.net/WordPressSS/2008/05/08/wordpress-25/#comments</comments>
		<pubDate>Fri, 09 May 2008 03:13:33 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Site Admin]]></category>

		<guid isPermaLink="false">http://stephensite.net/WordPressSS/?p=696</guid>
		<description><![CDATA[I&#8217;ve been using WordPress 2.3 for a while.  The new blog is 2.5 and I got say it rocks.  This is one of the easiest and most customizable pieces of software I have ever used.
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using WordPress 2.3 for a while.  The new blog is 2.5 and I got say it rocks.  This is one of the easiest and most customizable pieces of software I have ever used.</p>
]]></content:encoded>
			<wfw:commentRss>http://stephensite.net/WordPressSS/2008/05/08/wordpress-25/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Garden WebSite Under Construction</title>
		<link>http://stephensite.net/WordPressSS/2008/05/08/garden-website-under-construction/</link>
		<comments>http://stephensite.net/WordPressSS/2008/05/08/garden-website-under-construction/#comments</comments>
		<pubDate>Fri, 09 May 2008 02:11:07 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Site Admin]]></category>

		<guid isPermaLink="false">http://stephensite.net/WordPressSS/?p=695</guid>
		<description><![CDATA[Last year I wrote in a Garden Blog, but I&#8217;m needing more this year.  More permanence for Plant Files, particularly rare varieties, a place for the garden calendar, and a place to journal or blog.  Since Google seems to be keen on picking up things from my blog on topics that kind of [...]]]></description>
			<content:encoded><![CDATA[<p>Last year I wrote in a Garden Blog, but I&#8217;m needing more this year.  More permanence for Plant Files, particularly rare varieties, a place for the garden calendar, and a place to journal or blog.  Since Google seems to be keen on picking up things from my blog on topics that kind of fall in between the cracks, I thought I would make it a sub of my blog.  Hopefully, others find it useful and it can become a hub for many gardening topics.  What I&#8217;m particularly interested in are the topics that are difficult for me to find information; growing things in the Texas Panhandle soil, low water gardens, local suppliers and producers, rare and unusual varieties of plants, info on bugs, etc.</p>
<p>I also want to get a Weather Station that will attach to the computer to automatically log wind, rainfall, temperature, humidity, and pressure.  So, that I can correlate these with plant yields.  The more expensive varieties have many wireless sensors.  This seems excessive until you consider the ability to monitor above the canopy, below the canopy, and several different spots in the yard.  In effect logging the various microclimates.  This would be extremely useful information.  After all, I&#8217;m most interested in the interactions between plants that create such microclimates.</p>
<p>Wordpress is installing now.  I looked for a different Content Management System (CMS), but none of them seem suitable.  I have modified WordPress many times.  Perhaps, I can hammer it into place to fulfill my needs.</p>
<p>None of the themes so far seem to fit the bill.  One will most likely have to be heavily modified.  I don&#8217;t look forward to this.  It&#8217;s very time consuming.  My needs are pretty specific here and a blog isn&#8217;t a good match, but the other choices seem confusing and excessive.</p>
<p>I would like this to be an excellent resource that shows up easily on Google for myself and my fellow dryland, cityfolk gardeners dealing with the thick muck that grows our landscapes and fruits and vegetables.</p>
<p>The link is <a href="http://stephensite.net/WordPressG/">Stephen&#8217;s Garden</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://stephensite.net/WordPressSS/2008/05/08/garden-website-under-construction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP-Cache</title>
		<link>http://stephensite.net/WordPressSS/2008/04/24/wp-cache/</link>
		<comments>http://stephensite.net/WordPressSS/2008/04/24/wp-cache/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 11:42:01 +0000</pubDate>
		<dc:creator>Stephen</dc:creator>
				<category><![CDATA[Site Admin]]></category>

		<guid isPermaLink="false">http://stephensite.net/WordPressSS/?p=676</guid>
		<description><![CDATA[I added WP_Cache to the blog.  It&#8217;s supposed to cache the most commonly hit web pages to make the site faster.  Right now, it&#8217;s running pretty good.  We&#8217;ll see what happens one of these times when the server seems to slow down.  Cross my fingers that the 90 second page loads [...]]]></description>
			<content:encoded><![CDATA[<p>I added <a href="http://mnm.uib.es/gallir/wp-cache-2/">WP_Cache</a> to the blog.  It&#8217;s supposed to cache the most commonly hit web pages to make the site faster.  Right now, it&#8217;s running pretty good.  We&#8217;ll see what happens one of these times when the server seems to slow down.  Cross my fingers that the 90 second page loads are gone.</p>
]]></content:encoded>
			<wfw:commentRss>http://stephensite.net/WordPressSS/2008/04/24/wp-cache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

