<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.6" -->
<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/"
	>

<channel>
	<title>Tim's (Mostly) Tech Tidbits</title>
	<link>http://www.sunflowerroad.com/blog/timstidbits</link>
	<description>PHP Stuff, Technical Stuff and Interesting Stuff</description>
	<pubDate>Fri, 13 Jun 2008 11:25:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.6</generator>
	<language>en</language>
			<item>
		<title>Printing from Windows Vista to Windows XP</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2007/03/18/printing-from-windows-vista-to-windows-xp/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2007/03/18/printing-from-windows-vista-to-windows-xp/#comments</comments>
		<pubDate>Sun, 18 Mar 2007 15:25:10 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject><dc:subject>printing</dc:subject><dc:subject>troubleshooting</dc:subject><dc:subject>vista</dc:subject><dc:subject>windows</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/2007/03/18/printing-from-windows-vista-to-windows-xp/</guid>
		<description><![CDATA[

I just bought a laptop that is running Windows Vista.  I wanted to print to my HP LaserJet 4L connected to my desktop running Windows XP. Problem: I kept getting an Access Denied error.  Keep reading to find out how I was able to work around this.
I ended up finding several tutorials that [...]]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2007/03/18/printing-from-windows-vista-to-windows-xp/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WordPress Plugin Activation Code</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2007/02/07/wordpress-plugin-activation-code/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2007/02/07/wordpress-plugin-activation-code/#comments</comments>
		<pubDate>Wed, 07 Feb 2007 17:19:09 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject><dc:subject>code</dc:subject><dc:subject>PHP</dc:subject><dc:subject>Plugin</dc:subject><dc:subject>WordPress</dc:subject><dc:subject>WordPress Plugin</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/2007/02/07/wordpress-plugin-activation-code/</guid>
		<description><![CDATA[

I just had to look this up from my own comment to a support question on the WordPress codex so I&#8217;m posting it here for my future reference.  However, this pattern is a good pattern to use when needing to add an activate function call for your plugin.



$activateFunction = 'activateMyPlugin'; // change this;
add_action( 'activate_' [...]]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2007/02/07/wordpress-plugin-activation-code/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WordPress Plugins</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2007/01/15/wordpress-plugins/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2007/01/15/wordpress-plugins/#comments</comments>
		<pubDate>Tue, 16 Jan 2007 01:02:05 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject><dc:subject>PHP</dc:subject><dc:subject>Plugin</dc:subject><dc:subject>programming</dc:subject><dc:subject>WordPress</dc:subject><dc:subject>WordPress Plugin</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/2007/01/15/wordpress-plugins/</guid>
		<description><![CDATA[

Here is a little tidbit that has helped me when programming WordPress plugins.

Use a single setting&#8230;
Example

&#60;?php

$options = get_option( 'pluginShortNameSettings' );

echo $options['settingA'];
echo $options['settingB'];
echo $options['settingC'];
echo $options['settingD'];
?&#62;

This simplifies the code necessary to load all the settings for your plugin - it reduces it to a single line.
Further, when coding plugins, I separate the code for displaying the options [...]]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2007/01/15/wordpress-plugins/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Quick Solution to Vexing HTTP POST Problem</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2006/11/30/quick-solution-to-vexing-http-post-problem/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2006/11/30/quick-solution-to-vexing-http-post-problem/#comments</comments>
		<pubDate>Thu, 30 Nov 2006 18:21:47 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject><dc:subject>apache</dc:subject><dc:subject>htaccess</dc:subject><dc:subject>http</dc:subject><dc:subject>multipart form data</dc:subject><dc:subject>PHP</dc:subject><dc:subject>programming tools</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/2006/11/30/quick-solution-to-vexing-http-post-problem/</guid>
		<description><![CDATA[

I recently added a new tool to my www.ThePhpPro.com web site.
This tool is a PHP Code Beautifier program.
There has been just one problem.  Sometimes when I pasted a huge amount of text into the box, I would get an HTTP error message stating &#8220;FORBIDDEN.&#8221;

This was extremely vexing, and I banged my head against the [...]]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2006/11/30/quick-solution-to-vexing-http-post-problem/feed/</wfw:commentRss>
		</item>
		<item>
		<title>BumpTop - New Windows Desktop Interface</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2006/11/19/bumptop/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2006/11/19/bumptop/#comments</comments>
		<pubDate>Mon, 20 Nov 2006 04:34:08 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject>
	<dc:subject>Interesting Tidbits</dc:subject><dc:subject>Operating Systems</dc:subject><dc:subject>Prototype</dc:subject><dc:subject>Research</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/2006/11/19/bumptop/</guid>
		<description><![CDATA[

A new metaphor for working on a computer &#8220;desktop&#8221; has come to my attention.

BumpTop aims to enrich the desktop metaphor with expressive, lightweight techniques found in the real world. 
BumpTop is a research project at this point, but I would love to be able to play with an actual implementation which seems to be somewhat [...]]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2006/11/19/bumptop/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New PHP Article</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2006/11/19/new-php-article/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2006/11/19/new-php-article/#comments</comments>
		<pubDate>Mon, 20 Nov 2006 04:29:38 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject><dc:subject>PHP</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/2006/11/19/new-php-article/</guid>
		<description><![CDATA[

Last week I posted a new article to my professional web site.  It talks about PHP templates and my approach to this thorny issue.  Many people have different opinions about templates - in the article I present what I believe to be a &#8220;Best Practice&#8221; approach.
You can read the article.

PHP]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2006/11/19/new-php-article/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Products Available</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2006/11/01/new-products-available/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2006/11/01/new-products-available/#comments</comments>
		<pubDate>Wed, 01 Nov 2006 20:39:07 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject><dc:subject>ajax</dc:subject><dc:subject>captcha</dc:subject><dc:subject>PHP</dc:subject><dc:subject>scripts</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/2006/11/01/new-products-available/</guid>
		<description><![CDATA[

I have launched 3 new products on my professional website: www.ThePhpPro.com
I have an ASCII - read keyboard art - CAPTCHA that requires no image libraries for PHP.  In fact, it is so backwards compatible, it should work on PHP version 3 with perhaps only a minor change (opening and reading files) needed.
It&#8217;s quite clever, [...]]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2006/11/01/new-products-available/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Online Backup!!!</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2006/07/05/online-backup/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2006/07/05/online-backup/#comments</comments>
		<pubDate>Wed, 05 Jul 2006 19:45:18 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject>
	<dc:subject>Interesting Tidbits</dc:subject>
	<dc:subject>Life Tidbits</dc:subject><dc:subject>backup</dc:subject><dc:subject>software</dc:subject><dc:subject>windows</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/2006/07/05/online-backup/</guid>
		<description><![CDATA[

Hello!
I&#8217;ve recently signed up, and have been using, for about a week, an online backup product.  If you&#8217;ve been a reader of my blog in the past, you&#8217;ll know I&#8217;ve been looking for an inexpensive online backup solution for quite some time.
I have a subscription to PC Magazine, and in the April issue, they [...]]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2006/07/05/online-backup/feed/</wfw:commentRss>
		</item>
		<item>
		<title>DVD Copier</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2006/06/30/dvd-copier/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2006/06/30/dvd-copier/#comments</comments>
		<pubDate>Fri, 30 Jun 2006 18:13:17 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject>
	<dc:subject>Interesting Tidbits</dc:subject>
	<dc:subject>Life Tidbits</dc:subject><dc:subject>dvd</dc:subject><dc:subject>software</dc:subject><dc:subject>windows</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/2006/06/30/dvd-copier/</guid>
		<description><![CDATA[

I&#8217;ve been looking around for an inexpensive DVD copying program, and have finally found one!
I purchased this recently and love it!  It&#8217;s very easy to use and very fast to copy!
You can get more info about it here

dvd, software, windows]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2006/06/30/dvd-copier/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CSS Wonderment (Vertical Centering with Divs)</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2006/06/13/css-vertical-centering/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2006/06/13/css-vertical-centering/#comments</comments>
		<pubDate>Tue, 13 Jun 2006 05:24:27 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject><dc:subject>css</dc:subject><dc:subject>design</dc:subject><dc:subject>html</dc:subject><dc:subject>website</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/2006/06/13/css-vertical-centering/</guid>
		<description><![CDATA[

I recently had a need to do some vertical centering using divs and css exclusively.
I ran into a tutorial on how to accomplish this, which is both interesting and simple.

Check it out here

css, design, html, website]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2006/06/13/css-vertical-centering/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Regular Expressions Galore</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2006/03/02/regular-expressions-galore/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2006/03/02/regular-expressions-galore/#comments</comments>
		<pubDate>Thu, 02 Mar 2006 23:57:42 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject><dc:subject>programming</dc:subject><dc:subject>programming tools</dc:subject><dc:subject>regex</dc:subject><dc:subject>regular expressions</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/2006/03/02/regular-expressions-galore/</guid>
		<description><![CDATA[

I recently have been working with regular expressions on a programming job for a Wordpress plugin.
I paid a guy to write some regular expression code for me ($25), but then I found this program.
Regex Buddy
While they don&#8217;t have a free trial or downloadable demo on their website, I have arranged to have a downloadable demo [...]]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2006/03/02/regular-expressions-galore/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Arlice</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/10/10/arlice/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/10/10/arlice/#comments</comments>
		<pubDate>Tue, 11 Oct 2005 00:46:37 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Interesting Tidbits</dc:subject><dc:subject>furniture</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/2005/10/10/arlice/</guid>
		<description><![CDATA[

My mother is a couch.

www.furnature.com/arlice.html

furniture]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/10/10/arlice/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Microsoft Max</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/09/14/microsoft-max/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/09/14/microsoft-max/#comments</comments>
		<pubDate>Thu, 15 Sep 2005 03:54:57 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/2005/09/14/microsoft-max/</guid>
		<description><![CDATA[

This program looks pretty slick.
Warning:
You&#8217;ll need a fast modern computer and video card to run this.
&#8220;Microsoft® Codename Max is not like any other product. That&#8217;s because it&#8217;s not a product—it&#8217;s your opportunity to try an exciting new user experience from Microsoft&#8230;&#8221;
www.microsoft.com/max/

]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/09/14/microsoft-max/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Online Backup Systems</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/08/28/online-backup-systems/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/08/28/online-backup-systems/#comments</comments>
		<pubDate>Mon, 29 Aug 2005 03:18:46 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=59</guid>
		<description><![CDATA[

I&#8217;m really becoming interested in Online (read Internet) backup.
I have many pictures that I would hate to lose, and documents, tax stuff, etc.
I&#8217;m looking for a system that would cost around $50 a year for around 20 Gigabytes.
If you know of anything like this, please leave a comment.
Here is one I found.
www.sparebackup.com

]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/08/28/online-backup-systems/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How many writing errors have you been guilty of?</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/08/28/how-many-writing-errors-have-you-been-guilty-of/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/08/28/how-many-writing-errors-have-you-been-guilty-of/#comments</comments>
		<pubDate>Sun, 28 Aug 2005 17:30:50 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject>
	<dc:subject>Interesting Tidbits</dc:subject>
	<dc:subject>Life Tidbits</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/2005/08/28/how-many-writing-errors-have-you-been-guilty-of/</guid>
		<description><![CDATA[

Or should that have been, &#8220;Of how many writing errors have you been guilty?&#8221;
HA!
I love this site:
I especially like this:
&#8220;I found a word you criticized in the dictionary!
You will find certain words or phrases criticized here listed in dictionaries. Note carefully labels like dial. (dialectical), nonstandard, and obsolete before assuming that the dictionary is endorsing [...]]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/08/28/how-many-writing-errors-have-you-been-guilty-of/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dottie Mae&#8217;s</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/08/27/dottie-maes/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/08/27/dottie-maes/#comments</comments>
		<pubDate>Sun, 28 Aug 2005 03:52:27 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Interesting Tidbits</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/2005/08/27/dottie-maes/</guid>
		<description><![CDATA[

I love the superman.
www.dottiemaes.com/costumes_work.htm

]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/08/27/dottie-maes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tetris Living Room</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/08/15/tetris-living-room/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/08/15/tetris-living-room/#comments</comments>
		<pubDate>Mon, 15 Aug 2005 19:49:45 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Life Tidbits</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/2005/08/15/tetris-living-room/</guid>
		<description><![CDATA[

An interesting approach to storage shelves.
&#8220;&#8230; Just think, you can recreate your own gigantic Tetris game in your living room only without the bottom row disappearing every time you align things properly!&#8221;
Read the entire article.

]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/08/15/tetris-living-room/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Overclocked Pentium 4 running at 7.132GHz</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/08/13/overclocked-pentium-4-running-at-7132ghz/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/08/13/overclocked-pentium-4-running-at-7132ghz/#comments</comments>
		<pubDate>Sat, 13 Aug 2005 23:29:09 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=57</guid>
		<description><![CDATA[

&#8220;This Japanese guy overclocked a Pentium 4 to 7.132GHz!!&#8221;
Read Slashdot

]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/08/13/overclocked-pentium-4-running-at-7132ghz/feed/</wfw:commentRss>
		</item>
		<item>
		<title>THE ROBOTS ARE COMING!!!</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/08/02/the-robots-are-coming/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/08/02/the-robots-are-coming/#comments</comments>
		<pubDate>Wed, 03 Aug 2005 03:24:15 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject>
	<dc:subject>Interesting Tidbits</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=38</guid>
		<description><![CDATA[

This is really cool.
http://www.geology.smu.edu/~dpa-www/myrobots.html

]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/08/02/the-robots-are-coming/feed/</wfw:commentRss>
		</item>
		<item>
		<title>405: The Movie</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/07/23/405-the-movie/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/07/23/405-the-movie/#comments</comments>
		<pubDate>Sun, 24 Jul 2005 03:55:10 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Interesting Tidbits</dc:subject><dc:subject>video</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=37</guid>
		<description><![CDATA[

This is really well done.
Watch it before reading about it. ( It&#8217;s all good )
405themovie.com

video]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/07/23/405-the-movie/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Free download: Download Visual Web Developer 2005 Express Edition Beta 2 Today</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/07/21/free-download-download-visual-web-developer-2005-express-edition-beta-2-today/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/07/21/free-download-download-visual-web-developer-2005-express-edition-beta-2-today/#comments</comments>
		<pubDate>Fri, 22 Jul 2005 03:28:16 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=36</guid>
		<description><![CDATA[

I have just downloaded, but not tried this. It is a free beta.
This is how I first tried Microsoft Frontpage, which served me well for several years.
ASP.NET : Download Visual Web Developer 2005 Express Edition Beta 2 Today

]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/07/21/free-download-download-visual-web-developer-2005-express-edition-beta-2-today/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tools</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/07/19/tools/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/07/19/tools/#comments</comments>
		<pubDate>Wed, 20 Jul 2005 02:30:59 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=35</guid>
		<description><![CDATA[

System Rescue CD Image (linux based)
http://www.partition-saving.com/

]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/07/19/tools/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bill Mallonee Cover</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/07/17/bill-mallonee-cover/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/07/17/bill-mallonee-cover/#comments</comments>
		<pubDate>Sun, 17 Jul 2005 15:22:04 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Interesting Tidbits</dc:subject>
	<dc:subject>Life Tidbits</dc:subject><dc:subject>Bill Mallonee</dc:subject><dc:subject>mp3</dc:subject><dc:subject>music</dc:subject><dc:subject>vol</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=34</guid>
		<description><![CDATA[

At the bottom of this page is a link to an Mp3 of this guy, Tim Helmen, doing a cover of &#8220;Skin&#8221; by Bill Mallonee (and Vol). It&#8217;s actually well done.
It&#8217;s an interesting take on one of my favorite VOL songs.
http://www.timhelmen.com/pages/music.htm

Bill Mallonee, mp3, music, vol]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/07/17/bill-mallonee-cover/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Completely ridiculous tweaking of a low-end dvd player</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/07/03/completely-ridiculous-tweaking-of-a-low-end-dvd-player/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/07/03/completely-ridiculous-tweaking-of-a-low-end-dvd-player/#comments</comments>
		<pubDate>Sun, 03 Jul 2005 17:28:21 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Interesting Tidbits</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=33</guid>
		<description><![CDATA[

Even though I can hear you say, &#8220;That&#8217;s stupid.&#8221; I still want to do this.
Tweaks for Geeks - DVD Players
Yes, this was shamelessly reposted from slashdot.

]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/07/03/completely-ridiculous-tweaking-of-a-low-end-dvd-player/feed/</wfw:commentRss>
		</item>
		<item>
		<title>javascript coolness</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/07/03/javascript-coolness/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/07/03/javascript-coolness/#comments</comments>
		<pubDate>Sun, 03 Jul 2005 17:16:20 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject><dc:subject>javascript</dc:subject><dc:subject>programming</dc:subject><dc:subject>website</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=32</guid>
		<description><![CDATA[

This guy has a ton of cool javascript code.
amazing stuff.
http://www.walterzorn.com/

javascript, programming, website]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/07/03/javascript-coolness/feed/</wfw:commentRss>
		</item>
		<item>
		<title>DHTML JavaScript Tooltips</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/07/03/dhtml-javascript-tooltips/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/07/03/dhtml-javascript-tooltips/#comments</comments>
		<pubDate>Sun, 03 Jul 2005 16:19:17 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject><dc:subject>css</dc:subject><dc:subject>dhtml</dc:subject><dc:subject>html</dc:subject><dc:subject>javascript</dc:subject><dc:subject>website design</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=31</guid>
		<description><![CDATA[

DHTML JavaScript Tooltips

css, dhtml, html, javascript, website design]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/07/03/dhtml-javascript-tooltips/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CSS Drive- Tableless forms using CSS</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/06/26/css-drive-tableless-forms-using-css/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/06/26/css-drive-tableless-forms-using-css/#comments</comments>
		<pubDate>Sun, 26 Jun 2005 19:51:51 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject><dc:subject>css</dc:subject><dc:subject>design</dc:subject><dc:subject>website design</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=30</guid>
		<description><![CDATA[

CSS Drive- Tableless forms using CSS

css, design, website design]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/06/26/css-drive-tableless-forms-using-css/feed/</wfw:commentRss>
		</item>
		<item>
		<title>i want to program a cad system</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/06/23/i-want-to-program-a-cad-system/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/06/23/i-want-to-program-a-cad-system/#comments</comments>
		<pubDate>Fri, 24 Jun 2005 04:09:42 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=29</guid>
		<description><![CDATA[

http://homepages.borland.com/efg2lab/Library/Delphi/Graphics/Math.htm#Arcs
http://www.google.com/search?biw=800&#038;hl=en&#038;q=drawing+components+vcl+circle+arc&#038;btnG=Google+Search
http://sourceforge.net/projects/svl

]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/06/23/i-want-to-program-a-cad-system/feed/</wfw:commentRss>
		</item>
		<item>
		<title>GruntvillE.com Case Modding, Overclocking</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/06/10/gruntvillecom-case-modding-overclocking/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/06/10/gruntvillecom-case-modding-overclocking/#comments</comments>
		<pubDate>Sat, 11 Jun 2005 02:26:16 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=27</guid>
		<description><![CDATA[

This looks interesting.
GruntvillE.com Case Modding, Overclocking, Reviews &#038; Games
Cool Case Mod Projects

]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/06/10/gruntvillecom-case-modding-overclocking/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CSS coolness</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/06/09/css-coolness/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/06/09/css-coolness/#comments</comments>
		<pubDate>Fri, 10 Jun 2005 00:14:20 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject><dc:subject>code</dc:subject><dc:subject>design</dc:subject><dc:subject>website design</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=26</guid>
		<description><![CDATA[


input:focus, textarea:focus, select:focus, input:hover
  { background : #ffd;
    color : black; }
input[type="submit"]:hover { border-color: #900;
                             background: #ffd;
       [...]]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/06/09/css-coolness/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Borland C++ Builder Linker error tip</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/06/05/borland-c-builder-linker-error-tip/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/06/05/borland-c-builder-linker-error-tip/#comments</comments>
		<pubDate>Sun, 05 Jun 2005 23:35:42 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject><dc:subject>borland</dc:subject><dc:subject>c++</dc:subject><dc:subject>programming</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=28</guid>
		<description><![CDATA[

Borland C++ Builder Tip:
If you are getting a linker error when compiling, and everything makes sense, try this.
Recently I was compiling after adding a new unit. I was package exporting the unit
i.e.
class PACKAGE TMyClass;
and when I would remove the package export, it would link up just fine.
The problem turned out to be a missing #pragma [...]]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/06/05/borland-c-builder-linker-error-tip/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Problems with extra vertical space after forms</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/06/02/problems-with-extra-vertical-space-after-forms/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/06/02/problems-with-extra-vertical-space-after-forms/#comments</comments>
		<pubDate>Fri, 03 Jun 2005 03:53:47 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject><dc:subject>css</dc:subject><dc:subject>website design</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=25</guid>
		<description><![CDATA[

Hi-ya!
( that&#8217;s my code-fu)
This problem plagued me for months.
Here&#8217;s the solution:
Problems with extra vertical space after forms

css, website design]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/06/02/problems-with-extra-vertical-space-after-forms/feed/</wfw:commentRss>
		</item>
		<item>
		<title>HTML / CSS</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/06/01/html-css/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/06/01/html-css/#comments</comments>
		<pubDate>Thu, 02 Jun 2005 00:24:35 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject><dc:subject>css</dc:subject><dc:subject>html</dc:subject><dc:subject>website design</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=23</guid>
		<description><![CDATA[

Listamatic: one list, many options - Using CSS and a simple list to create radically different list options
whatever:hover cssmenu

css, html, website design]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/06/01/html-css/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CHIP: Code Highlighting in PHP</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/05/31/chip-code-highlighting-in-php/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/05/31/chip-code-highlighting-in-php/#comments</comments>
		<pubDate>Wed, 01 Jun 2005 02:39:32 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject><dc:subject>PHP</dc:subject><dc:subject>programming</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=22</guid>
		<description><![CDATA[

I&#8217;ve been looking for something similar to this. While this is not the complete solution I need, it&#8217;s close enough that I may create a CLI interface, or advanced web interface to this program.
Update: I was unable to get this working on php files under windows.
CHIP: Code Highlighting in PHP

PHP, programming]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/05/31/chip-code-highlighting-in-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bill Mallonee Official Site</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/05/30/bill-mallonee-official-site/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/05/30/bill-mallonee-official-site/#comments</comments>
		<pubDate>Tue, 31 May 2005 03:28:43 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject>
	<dc:subject>Interesting Tidbits</dc:subject>
	<dc:subject>Life Tidbits</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=21</guid>
		<description><![CDATA[

Geeks and art?
Sure.
One of my favorite bands.
Bill Mallonee Official Site

]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/05/30/bill-mallonee-official-site/feed/</wfw:commentRss>
		</item>
		<item>
		<title>All The Cool Open Source Apps are in PHP</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/05/30/all-the-cool-open-source-apps-are-in-php-timothyfisherjavadevelopersjournalcom/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/05/30/all-the-cool-open-source-apps-are-in-php-timothyfisherjavadevelopersjournalcom/#comments</comments>
		<pubDate>Tue, 31 May 2005 02:45:53 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject><dc:subject>open source</dc:subject><dc:subject>PHP</dc:subject><dc:subject>programming</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=20</guid>
		<description><![CDATA[

All The Cool Open Source Apps are in PHP
(timothyfisher.javadevelopersjournal.com)

open source, PHP, programming]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/05/30/all-the-cool-open-source-apps-are-in-php-timothyfisherjavadevelopersjournalcom/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Rich man&#8217;s son kidnapped riddle (true story)</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/05/30/rich-mans-son-kidnapped-riddle-true-story/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/05/30/rich-mans-son-kidnapped-riddle-true-story/#comments</comments>
		<pubDate>Tue, 31 May 2005 02:44:44 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Interesting Tidbits</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=19</guid>
		<description><![CDATA[

this is both humorous and interesting.
HumorShack&#8217;s Riddles Archive

]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/05/30/rich-mans-son-kidnapped-riddle-true-story/feed/</wfw:commentRss>
		</item>
		<item>
		<title>javascript and or ajax and or html</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/05/27/javascript-and-or-ajax-and-or-html/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/05/27/javascript-and-or-ajax-and-or-html/#comments</comments>
		<pubDate>Sat, 28 May 2005 03:30:27 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject><dc:subject>ajax</dc:subject><dc:subject>javascript</dc:subject><dc:subject>programming tools</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=18</guid>
		<description><![CDATA[

Javascript Tools
JSMIN, The JavaScript Minifier
Ajax Links
XML.com: Very Dynamic Web Interfaces
Curiosity is bliss: &#8220;XMLHttpRequest Tracing&#8221; for AJAX debugging

ajax, javascript, programming tools]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/05/27/javascript-and-or-ajax-and-or-html/feed/</wfw:commentRss>
		</item>
		<item>
		<title>BKHoliday</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/05/25/bkholiday/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/05/25/bkholiday/#comments</comments>
		<pubDate>Wed, 25 May 2005 18:08:46 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Interesting Tidbits</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=17</guid>
		<description><![CDATA[

I haven&#8217;t had a chance to listen to this, but I&#8217;m already snickering.
This is largely due to the fact that my co-worker (Jere) is at his desk whistling this song. I told him, &#8220;Quit whistling christmas songs.&#8221;
To which he replied (singing the ding part), &#8220;I&#8217;m not, &#8216;Ding, fries are done, Ding fries are done&#8217;&#8221;
My reply, [...]]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/05/25/bkholiday/feed/</wfw:commentRss>
		</item>
		<item>
		<title>the THIRD way!</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/05/25/the-third-way/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/05/25/the-third-way/#comments</comments>
		<pubDate>Wed, 25 May 2005 17:49:58 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=16</guid>
		<description><![CDATA[

This excites me in ways I can only describe as geeky.
:: phpPatterns() - XUL: rendering GUIs with PHP
mmm&#8230;. tastey!

]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/05/25/the-third-way/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ajax and weblogs (kottke.org)</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/05/24/ajax-and-weblogs-kottkeorg/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/05/24/ajax-and-weblogs-kottkeorg/#comments</comments>
		<pubDate>Wed, 25 May 2005 03:29:53 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject><dc:subject>ajax</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=15</guid>
		<description><![CDATA[

Ajax is cool.
I&#8217;m not talking about the cleaning agent.
I&#8217;m thinking about writing my recipe website using Ajax technology.
Jason has a simple intro to it and some interesting things to say.
Read this: Ajax and weblogs (kottke.org)

ajax]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/05/24/ajax-and-weblogs-kottkeorg/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Password Safe</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/05/24/password-safe/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/05/24/password-safe/#comments</comments>
		<pubDate>Wed, 25 May 2005 02:04:25 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=14</guid>
		<description><![CDATA[

Rex pointed out to me the other day that Password Safe is now opensource. What was once a closed source product by Counterpane Labs is now a Sourceforge-hosted Open Source project.
Check it out.
Password Safe

]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/05/24/password-safe/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Nanoweb - The PHP Web Server</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/05/23/nanoweb-the-php-web-server/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/05/23/nanoweb-the-php-web-server/#comments</comments>
		<pubDate>Tue, 24 May 2005 04:13:38 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject><dc:subject>PHP</dc:subject><dc:subject>webserver</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=12</guid>
		<description><![CDATA[

A webserver built in php (with a single caveat)! This should make building desktop php applications that use a browser feasible. Think about the difference between installing a huge install of Apache, PHP and MySql when one could use PHP and SQLite. I&#8217;m going to keep my eye on this project!
Nanoweb - The PHP Web [...]]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/05/23/nanoweb-the-php-web-server/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PRADO Component Framework for PHP5</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/05/23/prado-component-framework-for-php5/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/05/23/prado-component-framework-for-php5/#comments</comments>
		<pubDate>Tue, 24 May 2005 03:56:38 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject><dc:subject>framework</dc:subject><dc:subject>PHP</dc:subject><dc:subject>php5</dc:subject><dc:subject>programming</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=11</guid>
		<description><![CDATA[

Oh what I would give if this were available for Php4
This project intrigues me to the point of insanity! I wish I could spend the time getting to know how to use this toolkit. Check it out, maybe you&#8217;ll have the time I don&#8217;t.  
I&#8217;m going to try to get the time next winter [...]]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/05/23/prado-component-framework-for-php5/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PHP: FormHandler</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/05/23/php-formhandler/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/05/23/php-formhandler/#comments</comments>
		<pubDate>Tue, 24 May 2005 02:42:28 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject><dc:subject>PHP</dc:subject><dc:subject>programming</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=10</guid>
		<description><![CDATA[

This is similar (perhaps better executed too) to one of my current personal projects. I may either start using this, or modify my system to be object oriented instead of array definitions.
FormHandler - Home

PHP, programming]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/05/23/php-formhandler/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Working on Free Software</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/05/23/working-on-free-software/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/05/23/working-on-free-software/#comments</comments>
		<pubDate>Tue, 24 May 2005 01:03:28 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject><dc:subject>opensource</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=9</guid>
		<description><![CDATA[

Here is an interesting article about contributing to opensource/free software projects.
Working on Free Software

opensource]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/05/23/working-on-free-software/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Learn to Dance with Napoleon Dynamite</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/05/21/learn-to-dance-with-napoleon-dynamite/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/05/21/learn-to-dance-with-napoleon-dynamite/#comments</comments>
		<pubDate>Sun, 22 May 2005 04:38:47 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Interesting Tidbits</dc:subject><dc:subject>napoleon dynamite</dc:subject><dc:subject>video</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=7</guid>
		<description><![CDATA[

HA

Albino Blacksheep - Flash / Learn to Dance with Napoleon Dynamite

napoleon dynamite, video]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/05/21/learn-to-dance-with-napoleon-dynamite/feed/</wfw:commentRss>
		</item>
		<item>
		<title>KeePass - The Open-Source Password Safe</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/05/21/keepass-the-open-source-password-safe/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/05/21/keepass-the-open-source-password-safe/#comments</comments>
		<pubDate>Sun, 22 May 2005 04:36:28 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=8</guid>
		<description><![CDATA[

I ran across this the other day and it looks like a very sophisticated high-encryption password safe application.
Check it out
KeePass - The Open-Source Password Safe
Books on Encryption

]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/05/21/keepass-the-open-source-password-safe/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Roach Robot</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/05/21/roach-robot/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/05/21/roach-robot/#comments</comments>
		<pubDate>Sun, 22 May 2005 03:49:34 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject><dc:subject>insect</dc:subject><dc:subject>robot</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=6</guid>
		<description><![CDATA[

Shameless reposting of slashdotted article.
From the article, &#8220;Control and Communication in the Animal and the Machine&#8221; is a cockroach-controlled mobile robot system. The system uses a living Madagascan hissing cockroach atop a modified trackball to control the three-wheeled robot. Infrared sensors also provide navigation feedback to create a semi-intelligent system, with the cockroach as the [...]]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/05/21/roach-robot/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Veggie Tales</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/05/21/veggie-tales-2/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/05/21/veggie-tales-2/#comments</comments>
		<pubDate>Sun, 22 May 2005 03:18:34 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=4</guid>
		<description><![CDATA[

I was at Best Buy tonight using my $32 store credit &#8220;gift card&#8221; I received when I replaced my XBox on a &#8220;Product Replacement Plan&#8221; I had purchased for $20 two years ago.  I had paid $180 for my XBox and they are now $150 so I got the difference in the form of [...]]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/05/21/veggie-tales-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ultimate++</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/05/20/ultimate/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/05/20/ultimate/#comments</comments>
		<pubDate>Sat, 21 May 2005 01:40:31 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=3</guid>
		<description><![CDATA[

I program using Borland C++ Builder Enterprise every day at work. Ultimate++ looks like it is a similar (not compatible) approach to RAD.This system looks pretty slick and definately looks like something to keep an eye on.
Borland CBuilder
Ultimate++

]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/05/20/ultimate/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google Groups : comp.ai.alife</title>
		<link>http://www.sunflowerroad.com/blog/timstidbits/2005/05/20/google-groups-compaialife/</link>
		<comments>http://www.sunflowerroad.com/blog/timstidbits/2005/05/20/google-groups-compaialife/#comments</comments>
		<pubDate>Fri, 20 May 2005 23:31:25 +0000</pubDate>
		<dc:creator>Tim</dc:creator>
		
	<dc:subject>Tech Tidbits</dc:subject>
		<guid isPermaLink="false">http://www.sunflowerroad.com/blog/timstidbits/?p=2</guid>
		<description><![CDATA[

Found an interesting application of artificial life (I just finished reading Michael Crichton&#8217;s Prey - an intriguing read, buy it)and the application of AI to computer programming.
Google Groups : comp.ai.alife

]]></description>
		<wfw:commentRss>http://www.sunflowerroad.com/blog/timstidbits/2005/05/20/google-groups-compaialife/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
