<?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>botsko &#187; Software</title>
	<atom:link href="http://www.botsko.net/blog/category/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.botsko.net/blog</link>
	<description>continuing education</description>
	<lastBuildDate>Sat, 24 Jul 2010 21:42:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Announcing Peregrine &#8211; a PHP Security Class</title>
		<link>http://www.botsko.net/blog/2009/12/30/announcing-peregrine-a-php-security-class/</link>
		<comments>http://www.botsko.net/blog/2009/12/30/announcing-peregrine-a-php-security-class/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 01:15:19 +0000</pubDate>
		<dc:creator>Michael Botsko</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.botsko.net/blog/?p=506</guid>
		<description><![CDATA[Today I release a new php caging class for improved security &#8211; Peregrine. I&#8217;ve always been impressed by the idea of a &#8220;variable cage&#8221; in programming. It&#8217;s an additional method of protecting your incoming variables and making sure that you only accept what you&#8217;re expecting. If you&#8217;re not familiar with a cage, think of it [...]]]></description>
			<content:encoded><![CDATA[<p>Today I release a new php caging class for improved security &#8211; <a href="http://github.com/botskonet/Peregrine">Peregrine</a>.</p>
<p>I&#8217;ve always been impressed by the idea of a &#8220;variable cage&#8221; in programming. It&#8217;s an additional method of protecting your incoming variables and making sure that you only accept what you&#8217;re expecting.</p>
<p>If you&#8217;re not familiar with a cage, think of it as a class that copies any (usually incoming) data into an object while destroying the original &#8220;unclean&#8221; data. At this point you must access this data through the &#8220;cage&#8221;, which provides a whole bunch of ways to filter out what you don&#8217;t want.</p>
<p>So an incoming variable (through a GET/POST request for example) may only need to be a integer. You may use a method that returns or checks for integers, and either removes non-integer characters or returns false.</p>
<p>This provides an excellent wall against any malicious attackers, and really helps you define data validation more accurately within your projects.</p>
<p>There are some others out there, and some are very good. However, none worked as well or were as cleanly coded as I would have liked, so I&#8217;ve been working on <strong>Peregrine</strong>.</p>
<p>It&#8217;s hosted at github so you&#8217;re welcome to fork it and contribute back any fixes or feature requests you would like. </p>
<p>To learn how to use it, please read the documentation provided with the code and look through the class itself.</p>
<p><a href="http://github.com/botskonet/Peregrine">http://github.com/botskonet/Peregrine</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.botsko.net/blog/2009/12/30/announcing-peregrine-a-php-security-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Correcting CGI Perl Module for Bugzilla 3.4.2</title>
		<link>http://www.botsko.net/blog/2009/12/30/correcting-cgi-perl-module-for-bugzilla-3-4-2/</link>
		<comments>http://www.botsko.net/blog/2009/12/30/correcting-cgi-perl-module-for-bugzilla-3-4-2/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 00:27:07 +0000</pubDate>
		<dc:creator>Michael Botsko</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.botsko.net/blog/?p=474</guid>
		<description><![CDATA[I was recently installing Bugzilla on a new server and ran into problems with the CGI perl module from CPAN being too recent. Apparently, version 3.47 has some issues, so I had to downgrade to 3.45. Bugzilla recommends that you use their installer when the checksetup.pl script spits out missing modules. However, if you encounter [...]]]></description>
			<content:encoded><![CDATA[<p>I was recently installing Bugzilla on a new server and ran into problems with the CGI perl module from CPAN being too <em>recent</em>. Apparently, version 3.47 has some issues, so I had to downgrade to 3.45.</p>
<p>Bugzilla recommends that you use their installer when the checksetup.pl script spits out missing modules. However, if you encounter problems or need older version, this won&#8217;t work.</p>
<p>However, their own script makes a copy of the CGI.pm file inside of the bugzilla libs/ directory.</p>
<p>In order to solve the issue, you need download and install the proper version, but then copy of the file to the bugzilla libs folder.</p>
<p><code><br />
$ wget http://search.cpan.org/CPAN/authors/id/L/LD/LDS/CGI.pm-3.45.tar.gz<br />
$ tar -xzvf CGI.pm-3.45.tar.gz<br />
$ cd CGI*<br />
$ perl Makefile.PL<br />
$ make<br />
$ make install<br />
$ cp /usr/lib/perl5/5.8.8/CGI.pm /var/www/vhosts/trellisdev.com/subdomains/bugs/httpdocs/lib/CGI.pm<br />
</code></p>
<p>Then, continue with your checksetup.pl process as usual.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.botsko.net/blog/2009/12/30/correcting-cgi-perl-module-for-bugzilla-3-4-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bugzilla 3.4 localtime issue on CentOS</title>
		<link>http://www.botsko.net/blog/2009/09/24/bugzilla-3-4-localtime-issue-on-centos/</link>
		<comments>http://www.botsko.net/blog/2009/09/24/bugzilla-3-4-localtime-issue-on-centos/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 22:37:43 +0000</pubDate>
		<dc:creator>Michael Botsko</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Systems]]></category>

		<guid isPermaLink="false">http://www.botsko.net/blog/?p=477</guid>
		<description><![CDATA[While recently upgrading and moving Bugzilla to 3.4.2 I ran into an issue on a CentOS 5 server that was giving the following error any time I tried to access a buglist: undef error &#8211; Cannot determine local time zone After some searching I finally discovered that the issue was with Bugzilla looking for the [...]]]></description>
			<content:encoded><![CDATA[<p>While recently upgrading and moving Bugzilla to 3.4.2 I ran into an issue on a CentOS 5 server that was giving the following error any time I tried to access a buglist:</p>
<p><em>undef error &#8211; Cannot determine local time zone</em></p>
<p>After some searching I finally discovered that the issue was with Bugzilla looking for the timezone information in /etc/localtime, while CentOS had not updated that file since it&#8217;s original installation.</p>
<p>The solution is to change /etc/localtime to a symlink that leads to the correct timezone file for you:</p>
<p><code>ln -sf /usr/share/zoneinfo/America/Los_Angeles /etc/localtime</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.botsko.net/blog/2009/09/24/bugzilla-3-4-localtime-issue-on-centos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Integrating QuickBooks for Mac-based Users</title>
		<link>http://www.botsko.net/blog/2009/07/31/integrating-quickbooks-for-mac-based-users/</link>
		<comments>http://www.botsko.net/blog/2009/07/31/integrating-quickbooks-for-mac-based-users/#comments</comments>
		<pubDate>Sat, 01 Aug 2009 02:57:57 +0000</pubDate>
		<dc:creator>Michael Botsko</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.botsko.net/blog/?p=346</guid>
		<description><![CDATA[During development of a recent point-of-sale / e-commerce package, I started researching ways of exporting data from a web-based application into QuickBooks. A decent tool called Web Connector allows QB to connect with a web source and share information, and there&#8217;s even what appears to be a very thorough PHP class for interfacing. However, Web [...]]]></description>
			<content:encoded><![CDATA[<p>During development of a recent point-of-sale / e-commerce package, I started researching ways of exporting data from a web-based application into QuickBooks. A decent tool called Web Connector allows QB to connect with a web source and share information, and there&#8217;s even what appears to be a <a href="https://idnforums.intuit.com/messageview.aspx?catid=56&amp;threadid=9164">very thorough PHP class</a> for interfacing.</p>
<p>However, Web Connector is Windows-only. My client runs a Mac.</p>
<p>Disclaimer: Prepare to be disappointed.</p>
<p><span id="more-346"></span></p>
<p>My next choice was to use the Intuit-Interchange Format (IIF) files that QuickBooks has supported for importing/exporting data for years. It&#8217;s drawbacks include the need to manually export the files, reduced stability/security that comes with using text-based files, and the need to manually link various transactions once inside QB.</p>
<p>Having so many drawbacks isn&#8217;t a good start, and when I thought about how much manual work would be involved for the client if they wanted shipping, payments, sales, and customers all connected, I decided it would not be a good solution.</p>
<p>As expected, I found <em>thousands</em> of forum posts of people looking for some solution in PHP with IIF. To my surprise, there seemed to be absolutely <em>no</em> class, package, tutorial, or any proof that anyone had ever used PHP to generate IIF. I know folks have done it, but no one shared their code.</p>
<p>If I were to generate IIF, I&#8217;d have write the class from scratch.</p>
<p>Seeking some solution, any solution, I posted my own <a href="http://stackoverflow.com/questions/1168758/quickbooks-on-mac-php5-no-web-connector">question on Stack Overflow</a>, and even <a href="http://twitter.com/botsko/status/2786986615">Twitter</a>, and got exactly what I feared. More <a href="http://twitter.com/QuickBooksMac/status/2820210799">IIF</a>, and more advice to <a href="http://stackoverflow.com/questions/1168758/quickbooks-on-mac-php5-no-web-connector#answer-1168784">avoid it</a>. Intuit even recommends avoiding IIF because of how poor it is.</p>
<p>I have been unable to find any solution that works well. I&#8217;ve had to advise the client that the best option is to move to QuickBooks on Windows &#8211; running Windows in BootCamp/Virtualization mode on Mac. I&#8217;m not sure how this will turn out, because that&#8217;s an extra expense of Windows, and maybe a new QB license.</p>
<p>Intuit has released no information regarding porting web connector to Mac. QB was always a Windows-first-then-port type software package, so it&#8217;s not surprising.</p>
<p>If anyone has a solution, <a href="http://www.botsko.net/Contact-Us">let me know</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.botsko.net/blog/2009/07/31/integrating-quickbooks-for-mac-based-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Studio 7</title>
		<link>http://www.botsko.net/blog/2009/06/24/zend-studio-7-beta/</link>
		<comments>http://www.botsko.net/blog/2009/06/24/zend-studio-7-beta/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 20:22:27 +0000</pubDate>
		<dc:creator>Michael Botsko</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.botsko.net/blog/?p=321</guid>
		<description><![CDATA[Recently, version 7 of Zend Studio was released. Very unhappy with version 6, but previously satisfied with Zend 5.5, I decided to give it another chance to see if they had any luck improving the user experience. Zend charges you $399 per year to use this software. They&#8217;ve got a standard toolkit for every php [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, version 7 of Zend Studio was released. <a href="http://www.botsko.net/blog/2009/03/php-ide-complaints-ie-zend-studio-6-is-crap/">Very unhappy with version 6</a>, but previously satisfied with Zend 5.5, I decided to give it another chance to see if they had any luck improving the user experience.</p>
<p>Zend charges you $399 per year to use this software. They&#8217;ve got a standard toolkit for every php developer from phpunit support, documentation support, subversion support, code galleries, etc. These would be very useful if Zend had not gotten the user experience part all wrong. For $399 per year, they better have some great advantage over FREE competitors like NetBeans IDE.</p>
<p><span id="more-321"></span><br />
Many of the problems that plagued the last version are problems with the base software (Eclipse), and will remain as long as they continue building upon this platform. Whoever decided to stray from the decent platform in version 5.5 and build 6 on Eclipse needs to explain their decision to their user community.</p>
<p>Eclipse is bulky, over-complicated, and most importantly it has horrible user experience for anyone other than Linux geeks. Building a professional, cross-platform product that costs several hundred per year on this platform was an awful mistake, which is clear in the titles you get when you search for &#8220;zend studio 6&#8243;.</p>
<p>The user interface has been cleaned up in version 7 so it feels more consistent with other programs. It&#8217;s download size is a massive 358MB, while NetBeans for PHP was roughly 25MB. Zend has improved the performance both in start up times and in memory usage.</p>
<p>The &#8220;clunkiness&#8221; of the application is better hidden, but the usability still suffers from almost every single complaint I had about version six. It seems that little has changed besides some the toolbar cleanup, code editing improvements, and performance.</p>
<p>This almost seems to be like Vista was to XP. Folks at Zend (and Microsoft) need to understand that you can&#8217;t make something this bad and convince people that it&#8217;s worth $399 per year. Not even $399 as a single, one-time price.</p>
<p>What&#8217;s worse is that with each new version, Zend adds more support for Zend products. I&#8217;m glad they support everything Zend &#8211; but what if users equally avoid/dislike other zend products? Why does Zend Studio only have built-in support for Zend Framework &#8211; what about cakephp, codeigniter, and others?</p>
<p>For those considering using Zend Studio, I would recommend against it unless you&#8217;re deeply tied to other Zend products (server, framework, etc).</p>
<p>NetBeans is completely free, and works just as well. While it has a few items I could complain about, it&#8217;s much better for my business.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.botsko.net/blog/2009/06/24/zend-studio-7-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetBeans 6.7RC1 Crashes on Mac OS X 10.5.7</title>
		<link>http://www.botsko.net/blog/2009/06/03/netbeans-67rc1-crashes-on-mac-os-x-1057/</link>
		<comments>http://www.botsko.net/blog/2009/06/03/netbeans-67rc1-crashes-on-mac-os-x-1057/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 23:48:43 +0000</pubDate>
		<dc:creator>Michael Botsko</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.botsko.net/blog/?p=313</guid>
		<description><![CDATA[After an hour of searching, I found that the problem for me was that java 1.5 on mac was forcing netbeans to run in 64bit mode which was causing it to crash before it even opened. By following the instructions (reposted with more info) at http://blogs.sun.com/yakshaving/entry/netbeans_will_not_start_on) I was able to get things resolved. As far [...]]]></description>
			<content:encoded><![CDATA[<p>After an hour of searching, I found that the problem for me was that java 1.5 on mac was forcing netbeans to run in 64bit mode which was causing it to crash before it even opened.</p>
<p>By following the instructions (reposted with more info) at <a href="http://blogs.sun.com/yakshaving/entry/netbeans_will_not_start_on">http://blogs.sun.com/yakshaving/entry/netbeans_will_not_start_on</a>) I was able to get things resolved. As far as I can tell, I have not affected anything else I have.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.botsko.net/blog/2009/06/03/netbeans-67rc1-crashes-on-mac-os-x-1057/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Habari Project 0.5.1 Review</title>
		<link>http://www.botsko.net/blog/2008/10/07/habari-project-051-review/</link>
		<comments>http://www.botsko.net/blog/2008/10/07/habari-project-051-review/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 02:16:44 +0000</pubDate>
		<dc:creator>Michael Botsko</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.botsko.net/blog/?p=243</guid>
		<description><![CDATA[I&#8217;ve been looking at the Habari Project, a new blogging tool developed specifically for the current state of the web and is supposed to become a WordPress killer. (I&#8217;m using wordpress 2.5 for this blog). The first issue I encountered was the requirement that the mbstring php extension be installed. This extension is not enabled [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been looking at the Habari Project, a new blogging tool developed specifically for the current state of the web and is supposed to become a WordPress killer. (I&#8217;m using wordpress 2.5 for this blog).</p>
<p>The first issue I encountered was the requirement that the mbstring php extension be installed. This extension is not enabled by default, although most web server companies enable it for you in their installation. It was not the greatest experience having to recompile php to enable this, but since it won&#8217;t affect most users, I don&#8217;t see a large issue with it. However, I&#8217;m curious as to how the project will change when PHP6 is released, with improved Unicode support.</p>
<p>The second issue was that the system required me to use an SQLite database during the install which runs on files written by the web server to the file system. I usually don&#8217;t like use flat file system for personal reasons. The documentation lists MySQL as an option, but it wasn&#8217;t available as a choice during the install.</p>
<p>I&#8217;ve also noticed that the software is extremely slow on a CentOS machine. I&#8217;ve been using a pentium three with 256mb of ram for application development for months, and no private or public application takes as long as this application to run. Portions of the install process even take up to twenty seconds to load.</p>
<p>By default, the output format of the blog is HTML Transitional. I&#8217;ve read in their documentation that it was <a href="http://wiki.habariproject.org/en/XHTML_vs_HTML">decision that was debated</a>, but I cannot agree with their reasoning on why they chose HTML versus XHTML, and even beyond that why they would choose Transitional over Strict. My development partners and I are very strong supporters of using xhtml strict in every project and we&#8217;ve found that it&#8217;s provided the best results in accessibility, user interface development, and integration with server languages. </p>
<p>The user interface is very clean and a welcome relief over the wordpress administration tool. However, I can see the UI becoming cluttered as the application grows and, like WordPress, the navigation may loose it&#8217;s current usefulness.</p>
<p>The speed of the application itself ran as expected, and I did not experience any slowness.</p>
<p>Overall I feel that it&#8217;s decent blogging application and would be a joy to use for custom development for clients. Unlike WordPress it was developed only for PHP5 and by my quick glances at the templates and the API, I feel like it&#8217;s got a better quality and more robust codebase.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.botsko.net/blog/2008/10/07/habari-project-051-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All Code Editors &amp; IDEs Are Just OK</title>
		<link>http://www.botsko.net/blog/2008/07/24/no-editors-ides-are-good/</link>
		<comments>http://www.botsko.net/blog/2008/07/24/no-editors-ides-are-good/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 23:37:57 +0000</pubDate>
		<dc:creator>Michael Botsko</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.botsko.net/blog/?p=237</guid>
		<description><![CDATA[Over the last seven years I&#8217;ve tried out almost every single tool available for my code editing work. I&#8217;ve tried open source tools, free tools, commercial applications, and they none of them meet my expectations. I wanted to quickly mention the top three I&#8217;ve been able to use the longest and still document why they&#8217;re [...]]]></description>
			<content:encoded><![CDATA[<p>Over the last seven years I&#8217;ve tried out almost every single tool available for my code editing work. I&#8217;ve tried open source tools, free tools, commercial applications, and they none of them meet my expectations.</p>
<p>I wanted to quickly mention the top three I&#8217;ve been able to use the longest and still document why they&#8217;re not what I want them to be.</p>
<p><strong>Coda</strong></p>
<p>I&#8217;ve tried out the excellent editor from Panic &#8211; it has two killer features: ftp upload buttons next to filenames that are stored locally and sharing via bonjour over the network. Coda is pretty basic and lightweight, but for hardcore php developer it lacks tools I find helpful.</p>
<p>I&#8217;ve heard that Coda is working on subversion integration which will be nice, but what I really need is improved php support. If they wanted to give me better code analysis, php variable/function exploring functions, syntax error highlighting, etc, I would enjoy it much more. </p>
<p>Coda is unlikely to every meet all of those expectations because it&#8217;s more of an everything editor and will probably never have specific language features like that.</p>
<p><strong>Zend Studio 5</strong></p>
<p>I&#8217;ve used this tool the most but there are a few items it lacks that I really would like to have. First off, while it can edit files over ftp directly, I would like it to have an ftp upload like Coda does. Zend 5 has no subversion support. I&#8217;m really driven crazy by some basic file quirks on Mac that I&#8217;ve been unable to resolve.</p>
<p>Zend 6 has a lot more features that would be very useful but unfortunately, it&#8217;s a worse program for me than Zend 5.</p>
<p><strong>Zend 6</strong></p>
<p>Immediately I&#8217;m shown how awful and clunky the new project/file management system is. There are too many ways to create and store projects. Many of the default ways now store my code somewhere I don&#8217;t want it, and confused the heck out of me when trying to edit files.</p>
<p>It also decided to keep all of these hidden files in my folders which had I left them would have been checked into my subversion repo. I immediately dismisses Komodo from Aptana because of this same issue &#8211; my project files were being stored in with my code.</p>
<p>I&#8217;m having similar problems with zend 6 on mac &#8211; files will not open properly when I just double click on them or right click and select &#8220;open with&#8221;. </p>
<p>Also, the preferences are a thousand times more confusing &#8211; I can change syntax colors in two or three different places for the same code type. </p>
<p>Why can&#8217;t anyone fix these issues? Who would release a tool that can&#8217;t properly open files? Why does Zend have to make a product that&#8217;s actually worse than it&#8217;s predecessor? I&#8217;ve tried a thousand others but I&#8217;ll keep looking. Any suggestions?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.botsko.net/blog/2008/07/24/no-editors-ides-are-good/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bugzilla Changelog&#8230; Open Source</title>
		<link>http://www.botsko.net/blog/2007/10/24/bugzilla-changelog-open-source/</link>
		<comments>http://www.botsko.net/blog/2007/10/24/bugzilla-changelog-open-source/#comments</comments>
		<pubDate>Thu, 25 Oct 2007 03:30:32 +0000</pubDate>
		<dc:creator>Michael Botsko</dc:creator>
				<category><![CDATA[Bugzilla Changelog]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.botsko.net/blog/2007/10/24/bugzilla-changelog-open-source/</guid>
		<description><![CDATA[It&#8217;s been a few years since I&#8217;ve released the first version of Bugzilla Changelog, and over those years many folks have been asking if I ever intend on making it open source. While essentially open anyway as it was a Perl script, I&#8217;m now accepting patches and new work from anyone else interested. Those of [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a few years since I&#8217;ve released the first version of Bugzilla Changelog, and over those years many folks have been asking if I ever intend on making it open source. While essentially open anyway as it was a Perl script, I&#8217;m now accepting patches and new work from anyone else interested.</p>
<p>Those of you who have submitted patches over the years should be pretty excited. I&#8217;ll be tracking project updates, requests, fixes, etc, through sourceforge.</p>
<p><a href="https://sourceforge.net/projects/bugzillachnglog/">View Bugzilla Changelog at SourceForge.net</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.botsko.net/blog/2007/10/24/bugzilla-changelog-open-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic Flex Development Example</title>
		<link>http://www.botsko.net/blog/2007/10/23/basic-flex-development-example/</link>
		<comments>http://www.botsko.net/blog/2007/10/23/basic-flex-development-example/#comments</comments>
		<pubDate>Tue, 23 Oct 2007 23:33:38 +0000</pubDate>
		<dc:creator>Michael Botsko</dc:creator>
				<category><![CDATA[Flex/Flash]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.botsko.net/blog/2007/10/23/basic-flex-development-example/</guid>
		<description><![CDATA[I see huge potential for Flex and Air applications with some of my core clients, as well as a way to attract new clients. As time goes on I&#8217;ll be discussing new applications we&#8217;ve got going in Flex, but I wanted to start with a very basic application. This basic application displays a chart with [...]]]></description>
			<content:encoded><![CDATA[<p>I see huge potential for Flex and Air applications with some of my core clients, as well as a way to attract new clients. As time goes on I&#8217;ll be discussing new applications we&#8217;ve got going in Flex, but I wanted to start with a very basic application.</p>
<p>This basic application displays a chart with download statistics for applications I&#8217;ve released over the years on Botsko.net. I&#8217;ll be adding on to this basic example so that I have a better showcase of flex work. For example, I plan on adding some advanced data parameters including changing the year, seeing data points on the chart, and some improved visuals.</p>
<p>This application totals about 300k including the php code that produces the xml for the data. That number can be reduced further with optimizations, and by removing some extra support-related files. </p>
<p>While Flex can be used to build some amazing applications, it&#8217;s also going to be extremely handy when used within an existing web page. I&#8217;m excited to see where we end up when using Flex.</p>
<p>Take a look:</p>
<p><a href="http://experiments.botsko.net/tests/flex/chart2/">http://experiments.botsko.net/tests/flex/chart2/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.botsko.net/blog/2007/10/23/basic-flex-development-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
