<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.1.3" -->
<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>Plangarden Garden Design &#038; Planning Software</title>
	<link>http://plangarden.stahltrek.com</link>
	<description>Insights to creating Plangarden.com vegetable garden software</description>
	<pubDate>Tue, 02 Sep 2008 22:02:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.3</generator>
	<language>en</language>
			<item>
		<title>Google Chrome Beta with Bugs - First Impressions</title>
		<link>http://plangarden.stahltrek.com/2008/09/02/google-chrome-beta-with-bugs/</link>
		<comments>http://plangarden.stahltrek.com/2008/09/02/google-chrome-beta-with-bugs/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 21:53:49 +0000</pubDate>
		<dc:creator>roystahl</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://plangarden.stahltrek.com/2008/09/02/google-chrome-beta-with-bugs/</guid>
		<description><![CDATA[Google released Chrome on September 2nd 2008.  A new browser to add to the browser war (honestly a two horse race if ever there was one)
Can Google add a third competent browser to this list?  Answer: Not if it thinks this beta is close to being ready for Prime time.
First impressions:

Fast download (not a mega file [...]]]></description>
			<content:encoded><![CDATA[<p>Google released Chrome on September 2nd 2008.  A new browser to add to the browser war (honestly a two horse race if ever there was one)</p>
<p>Can Google add a third competent browser to this list?  Answer: Not if it thinks this beta is close to being ready for Prime time.</p>
<p>First impressions:</p>
<ul>
<li>Fast download (not a mega file like IE8 is suppose to be. (No I am not interested in IE8 until it is released. Too many MS betas crash machines.))</li>
<li>Fast rendering first pages.</li>
<li>Handle some applications that are VERY Javascript heavy that can bring IE or Firefox to a crawl. It did well with a real live application that I wrote that lives inside a firewall.</li>
</ul>
<p>Second Impressions:</p>
<ul>
<li>Had the same bug as Safari for passing information to a Flash application for my vegetable garden software</li>
<li>During the install process it seemed to have created a bug where I couldn&#8217;t resize ANY application window until I rebooted. (That was strange, but hard to confirm 100% that is was Chrome that did it.)</li>
<li>A page that correctly dynamically adds a table ROW in IE and Firefox didn&#8217;t work right. It added a new COLUMN and a new ROW to the middle of the table. Again, this has been working with IE6, IE7 and multiple versions of Firefox. (never tested with Safari - remember that I consider the world to be a two horse race for browsers)</li>
<li>Finally a page that has worked on ALL browsers it was ever tested with displayed RAW HTML instead of the page layout. At first I thought I accidently clicked on view source, but I double checked and Google&#8217;s Chrome displayed HTML as HTML code. This has been tested with IE, Firefox, Safari and others as it is an appliation that lives outside a firewall on the web.</li>
<li>Favicons don&#8217;t seem to work. Kind of sad it has a problem with them. Not a show stopper, but embarrasing for modern browsers</li>
</ul>
<p>I have had Chrome only since 11:50 am September 2, 2008 and even with an hour meeting and an hour lunch I found all these problems before 3pm.</p>
<p>Good luck Google, you have your work cut out for you!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://plangarden.stahltrek.com/2008/09/02/google-chrome-beta-with-bugs/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AS2 looks silly compared to AS3</title>
		<link>http://plangarden.stahltrek.com/2008/08/26/as2-looks-silly-compared-to-as3/</link>
		<comments>http://plangarden.stahltrek.com/2008/08/26/as2-looks-silly-compared-to-as3/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 04:11:53 +0000</pubDate>
		<dc:creator>roystahl</dc:creator>
		
		<category><![CDATA[ActionScript 3]]></category>

		<guid isPermaLink="false">http://plangarden.stahltrek.com/2008/08/26/as2-looks-silly-compared-to-as3/</guid>
		<description><![CDATA[First, lets get clear what this rant is and what it is not.
I have written an entire RIA application in AS2 and then re-written the same application in AS3, so I have seen the good the bad and ugly of both.
When I look at style and performance, I am not interested in getting into benchmarking [...]]]></description>
			<content:encoded><![CDATA[<p>First, lets get clear what this rant is and what it is not.</p>
<p>I have written an entire RIA application in AS2 and then re-written the same application in AS3, so I have seen the good the bad and ugly of both.<br />
When I look at style and performance, I am not interested in getting into benchmarking the two against each other. There are enough differences in my code and dependancies on the web fetches to make such comparisons worthless.<br />
I don&#8217;t have time to be be exhaustive. This is just my rant.</p>
<p>From the very start I could see the AS3 had matured and was much more robust than AS2 was. To make AS2 work the way I wanted I had several ugly hacks. I started writting in AS3 wait for some deficiancy or bug to cause me to create the same ugly hacks. As of this point of being 90% done there is only one that really stands out and this is when looking for the parent of text object you need to go up two levels instead of one. There is some invisible object that may need to be there, but it is not documented and doesn&#8217;t really make any sense.</p>
<p>The next thing I notices is how much more compact the applicaiton was. Part of this is because Adobe left out components that I needed so I had to write my own windowing and <a href="http://plangarden.stahltrek.com/2008/02/11/actionscript-3-datechooser-created/" title="DateChooser">DateChooser</a> (which I now offer for free to anyone that emails me) These are definately smaller than the old Adobe AS2 components, but still I have added more features and code to this version and it is still over 30% smaller.</p>
<p>Speed.  Everything is faster!! Drawing on the screen, interacting with the database and saving data are all faster. Adobe claims 4-10x faster code and I think my application is in the 6-8 range. Just a feeling, but it is more than 4x and doesn&#8217;t feel like a magnitude overall (although some individual things feel 10x faster.)</p>
<p>And as I put in my last post <a href="http://plangarden.stahltrek.com/2008/08/20/plangarden-looks-at-browser-wars/" title="Browser Wars">Browser Wars</a> most people have migrated to Flash 9+. This makes me feel much better about releasing this new software on the world.</p>
<p>Of course all this has meant that I needed to rethink the application and not just recompile it was a serious rethink of the code and structure to make AS3 work, but it is so much cleaner that I can not  go back to AS2.</p>
]]></content:encoded>
			<wfw:commentRss>http://plangarden.stahltrek.com/2008/08/26/as2-looks-silly-compared-to-as3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Plangarden looks at browser wars</title>
		<link>http://plangarden.stahltrek.com/2008/08/20/plangarden-looks-at-browser-wars/</link>
		<comments>http://plangarden.stahltrek.com/2008/08/20/plangarden-looks-at-browser-wars/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 16:43:29 +0000</pubDate>
		<dc:creator>roystahl</dc:creator>
		
		<category><![CDATA[Vegetable Software News]]></category>

		<guid isPermaLink="false">http://plangarden.stahltrek.com/2008/08/20/plangarden-looks-at-browser-wars/</guid>
		<description><![CDATA[It is always interesting to see how an advanced technology website designed for vegetable gardening, a low technology hobby does in the browser wars.
Plangarden.com is a website to help vegetable gardeners plan and manage a vegetable garden. But behind this is the most advanced web site and application.
First the browsers:
Just two short years ago IE [...]]]></description>
			<content:encoded><![CDATA[<p>It is always interesting to see how an advanced technology website designed for vegetable gardening, a low technology hobby does in the browser wars.</p>
<p>Plangarden.com is a website to help vegetable gardeners plan and manage a vegetable garden. But behind this is the most advanced web site and application.</p>
<p>First the browsers:<br />
Just two short years ago IE had the lead with 82% of the web viewers while Firefox was just under 14%. Today that has changed to 66% for IE and 28% for Firefox and Safari has posted real numbers at 5%. Apparently IE7 which was released in late 2006 only showed the world what browsing &#8216;could be&#8217; as it was implementing features that Firefox already. While I am not an advocate of one over the other, it has been interesting to watch the trends over the year. It has gone from &#8220;Nothing can stop Netscape&#8221; to &#8220;Netscape is dead&#8221; to &#8220;Wow, I didn&#8217;t think Firefox would make a dent in market share any more&#8221;. Not only has Firefox made a dent, but Safari is posting some pretty impressive numbers for Plangarden considering what Apple&#8217;s overall market share is.</p>
<p>Flash:<br />
Back in 2006 Flash 9 was only 9% of the Plangarden users. At the time over 14% of the vegetable gardeners where clinging to version 7. In the course of just one year that all changed. By August 2007 the numbers had changed to only 10% of the people using 8 or below. Still as I started working on a version that would only work on Flash 9 players I was a bit concerned that 10% of the people would have to upgrade or not be able to use the application. But since it has taken a year to get the whole application migrated the number are now tipped so that only a percent or two are on a version below Flash 9.</p>
<p>Finally OS:<br />
All you have to do is watch the silly Apple commercials to know what is going on in the PC vs Apple war. While Apple is still a LONG ways from being a serious threat to Microsoft&#8217;s dominance, they have taken a considerable amount of market share as Vista deals with many hiccups in the new OS. Plangarden has seen a huge up tick on Macs as well. In 2006 only 3% of the gardeners where using Mac now it is up to 9%.  A sizable jump for a two year period. I am now looking at getting my first Mac just to make sure everything runs smoothly.</p>
<p>Again, I am not here to pass judgment on IE vs Firefox or PC vs Mac. I am simply reporting on trends of vegetable gardeners. And while vegetable gardening may be a low technology activity, the vegetable gardeners themselves are fairly high tech and seem to follow trends of high tech and are more on the leading edge then the trailing edge of technology.</p>
<p>Go Veggy Gardeners!!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://plangarden.stahltrek.com/2008/08/20/plangarden-looks-at-browser-wars/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Plangarden vegetable site get facelift and blog</title>
		<link>http://plangarden.stahltrek.com/2008/08/01/plangarden-vegetable-site-get-facelift-and-blog/</link>
		<comments>http://plangarden.stahltrek.com/2008/08/01/plangarden-vegetable-site-get-facelift-and-blog/#comments</comments>
		<pubDate>Fri, 01 Aug 2008 20:28:35 +0000</pubDate>
		<dc:creator>roystahl</dc:creator>
		
		<category><![CDATA[Vegetable Software News]]></category>

		<guid isPermaLink="false">http://plangarden.stahltrek.com/2008/08/01/plangarden-vegetable-site-get-facelift-and-blog/</guid>
		<description><![CDATA[The vegetable gardening site update has been up for a few weeks now and all looks good. The new style seems to have worked out fine and the blog that was put up a month ago, but was hidden is now out in full view.
Once I get back from vacation I will be doing some [...]]]></description>
			<content:encoded><![CDATA[<p>The vegetable gardening site update has been up for a few weeks now and all looks good. The new style seems to have worked out fine and the blog that was put up a month ago, but was hidden is now out in full view.</p>
<p>Once I get back from vacation I will be doing some final polishing to the site, then finish up the long overdue version 2.0 of the applicaiton.</p>
<p>On the garden front I am in full harvest and replanting as the season has been great this year. The Brandywine tomatoes are a success, and since they have to grow in a coldframe that is a big deal for me. It means that I can grow real tomatoes and get real results.</p>
<p>Strawberries have been late this year, but have come on strong.</p>
<p>Corn is there, but it is still to early to know if it is going to succeed or not. It is always an iffy vegetable to grow in the fog.</p>
<p>The garden is done and ready for a week with only one scheduled water. It should be fine.</p>
]]></content:encoded>
			<wfw:commentRss>http://plangarden.stahltrek.com/2008/08/01/plangarden-vegetable-site-get-facelift-and-blog/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Meeting Bay Area Rock Star of Vegetable Gardening Pam Peirce</title>
		<link>http://plangarden.stahltrek.com/2008/07/04/meeting-bay-area-rock-star-of-vegetable-gardening-pam-peirce/</link>
		<comments>http://plangarden.stahltrek.com/2008/07/04/meeting-bay-area-rock-star-of-vegetable-gardening-pam-peirce/#comments</comments>
		<pubDate>Fri, 04 Jul 2008 23:30:38 +0000</pubDate>
		<dc:creator>roystahl</dc:creator>
		
		<category><![CDATA[Vegetable Software News]]></category>

		<guid isPermaLink="false">http://plangarden.stahltrek.com/2008/07/04/meeting-bay-area-rock-star-of-vegetable-gardening-pam-peirce/</guid>
		<description><![CDATA[I have read many gardening books, but the one that I became the most fond of was Golden Gate Gardening by Pam Peirce. Pam took the time to write a vegetable gardening book that was customized for vegetable gardeners in the San Francisco Bay Area.
Having moved around and been involved in gardening since I was [...]]]></description>
			<content:encoded><![CDATA[<p>I have read many gardening books, but the one that I became the most fond of was Golden Gate Gardening by Pam Peirce. Pam took the time to write a vegetable gardening book that was customized for vegetable gardeners in the San Francisco Bay Area.</p>
<p>Having moved around and been involved in gardening since I was a child, I knew that when I got to Half Moon Bay that I was going to be challenged in vegetable gardening.  All the lessons that I had learned in the midwest and Arizona and Southern California where not going to work in the Bay Area.  After a few miserable failures, I searched for books and was lucky enough to find Pam Peirce&#8217;s book.</p>
<p>I read to book in bed, I took it out with me to the garden. I would use it to answer my wife&#8217;s questions.  My respect for Pam had grown to the point where see was a Rock Star of Gardening in my eyes.</p>
<p>Last weekend the local edible gardening club had invited her to speak at a meeting. I jumped at the opportunity and took my worn, dirt covered book in tow and sat listening to her wonderful talk. Afterwards I took my book up and had her sign it. Also because I know how authors get paid by publishers, I purchased her second book and had her sign that too.</p>
<p>I was also glad to see that I was not the only one that appreciated Pam&#8217;s work as nearly 50 people showed up and most lined up to get her signature as well.</p>
<p>It was also nice to sit down and talk with Pam about some of the oddities of this years growing season and share gardening stories. She matched the person that I had envisioned in my mind and was very pleasant to talk with. Vegetable gardening is clearly her passion and her years of experience it self evident.</p>
<p>If you vegetable garden in the Bay Area, you need to read her book. If you want to know what she is up or her views on the current climate and vegetable plantings, you can follow her blog at <a href="http://goldengategarden.typepad.com/golden_gate_gardener_/">Golden Gate Gardener</a> or if you are more old fashion you can follow her columns in the San Francisco Chronicle.</p>
]]></content:encoded>
			<wfw:commentRss>http://plangarden.stahltrek.com/2008/07/04/meeting-bay-area-rock-star-of-vegetable-gardening-pam-peirce/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
