<?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>cpradio's tidbits of information &#187; Projects</title>
	<atom:link href="http://cpradio.org/categories/projects/feed/" rel="self" type="application/rss+xml" />
	<link>http://cpradio.org</link>
	<description>my life experience and information that may help others find what they need</description>
	<lastBuildDate>Sat, 05 Sep 2009 12:38:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Flex and Flex Builder 3</title>
		<link>http://cpradio.org/personal/flex-and-flex-builder-3/</link>
		<comments>http://cpradio.org/personal/flex-and-flex-builder-3/#comments</comments>
		<pubDate>Sun, 09 Mar 2008 00:39:42 +0000</pubDate>
		<dc:creator>cpradio</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://cpradio.org/personal/flex-and-flex-builder-3/</guid>
		<description><![CDATA[I just have to tell everyone how cool Flex really is!  When I did flash work several years ago it was a real pain developing an entire site in Flash especially if you wanted to incorporate any backend to it.  This is definitely not the case with Flex and I have to give [...]]]></description>
			<content:encoded><![CDATA[<p>I just have to tell everyone how cool Flex really is!  When I did flash work several years ago it was a real pain developing an entire site in Flash especially if you wanted to incorporate any backend to it.  This is definitely not the case with Flex and I have to give Adobe its&#8217; props on this.</p>
<p>However, let me state, that I do want to see Flex Builder 3 ported to Linux.  I could then ditch my Windows Virtual Machine and run things natively, but that is my only complaint at this moment.</p>
<p><strong>So why do I love Flex?</strong><br />
Flex is just easy to use, the components built it are amazing and you have the ability to build components on your own too!  Much like Server Controls in .NET, .NET gives you a TON to begin with and you can create your own as well.  However, this is for Flash!  That is extremely important to acknowledge, as I do not have to have Macromedia Flash MX or whatever the latest version is on my PC to build a Flash application now.</p>
<p>Not only do I love being able to build a Flash application without Macromedia Flash, but I also love how it can work with an infinite number of backends without a lot of effort.  Got a web service you want to plugin to?  No problem, how about an RSS feed?  Again, No problem.  Well how about just a plain HTTP stream with a custom format?  No Problem!  I mean literally, you can plugin to any service that can send back a response.  If it is a custom type of response, then you can write a routine to read your custom format.  However, if you are using a Web Service, be in written in .NET and it returns an XML stream, then you literally have to do nothing!  It will read it without any custom code from you, the developer.  And that my friends is the &#8220;cream of the crop&#8221;.</p>
<p><strong>So where do we go from here?</strong><br />
I am going to be doing a lot of things with Flex fromt his point on.  I was just totally amazed by the simplicity and yet the complexity you can have within it.  I still have a lot to test.  Updating the grid&#8217;s data when it has changed, and similar events.  But time will tell and so far Adobe has bought me back with this wonderful technology.  Just bring it to Linux and I will move right next to your head-quarters Adobe!</p>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/personal/flex-and-flex-builder-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Refactoring &#8211; What a time-saver</title>
		<link>http://cpradio.org/work/refactoring-saves-you-time-in-many-ways/</link>
		<comments>http://cpradio.org/work/refactoring-saves-you-time-in-many-ways/#comments</comments>
		<pubDate>Mon, 17 Sep 2007 02:52:52 +0000</pubDate>
		<dc:creator>cpradio</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[kiosk]]></category>

		<guid isPermaLink="false">http://cpradio.org/work/refactoring-saves-you-time-in-many-ways/</guid>
		<description><![CDATA[This weekend has been a nice relaxing weekend for me and so when I got back home this afternoon (on Sunday the 16th), I was in a great mood to refactor some of my kiosk code base.  Now, I should start by saying, I decided to refactor code instead of write new code tonight [...]]]></description>
			<content:encoded><![CDATA[<p>This weekend has been a nice relaxing weekend for me and so when I got back home this afternoon (on Sunday the 16th), I was in a great mood to refactor some of my kiosk code base.  Now, I should start by saying, I decided to refactor code instead of write new code tonight because I wanted to lessen the number of files that needed to load in the Ajax functionality.</p>
<p>Kiosk, uses Ajax in interesting ways to provide a better experience, but with that, the Ajax applications were built as each page was assembled.  This caused functionality across pages to get a bit messy or functionality shared across pages to get thrown into individual files.  Well the problem with individual files, is that is yet another file for the browser to download.</p>
<p>So before I get any further, let me discuss refactoring and how it can solve many performance binds your application may be experiencing.</p>
<p>To start off, refactoring is taking common code, or code that is used across pages or frequently and moving it to a more global location so it can be called easier and the code only has to be written once.</p>
<p>So where can this help?</p>
<ul>
<li>First of all, by refactoring code into a single global file, you can limit the number of HTTP requests if that file is accessible via the web.  Since your common code is in a single file, the browser only has to fetch that code once, and will then likely cache that file for each page after, giving you even better performance.</li>
<li>Secondly, by placing the common code in a global method/function, you are writing less code.  As now when you need to call that code on your second page, it is already written, so just call the function.  Otherwise, you would need to write the code all over again.</li>
<li>Thirdly, less code equals smaller files.  By refactoring your code, you can have smaller file sizes and in turn that is quicker to download, quicker to parse, and quicker to execute.</li>
</ul>
<p>Now in my situation, I took about 4 JavaScript files and combined them into a single file adequately named &#8220;general.js&#8221;.  The file contained code to automatically log the user out after a set amount of inactivity in the UI (User Interface).  Secondly, it contained the version checking mechanism calls that see if they are running the latest version of the software.  Unfortunately, those are the only two things it does right now, but as the project progresses, I am sure more utilities will get added in this file.</p>
<p>My next task is to refactor the Data Grid functionality so it is 1) XHTML, 2) easy to build complex columns with complex rows, 3) customizable by identifying StyleSheet classes for the columns and rows.  Hopefully, I can get my head around this idea and get it working with little trouble to the programmer.</p>
<p>So what can you think of that you need to refactor?  What performance gains do you suspect you will achieve with the refactoring you do?  Any performance markers?</p>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/work/refactoring-saves-you-time-in-many-ways/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fun with Kiosk</title>
		<link>http://cpradio.org/code/ajax/fun-with-kiosk/</link>
		<comments>http://cpradio.org/code/ajax/fun-with-kiosk/#comments</comments>
		<pubDate>Sat, 10 Feb 2007 17:20:20 +0000</pubDate>
		<dc:creator>cpradio</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[kiosk]]></category>

		<guid isPermaLink="false">http://cpradio.org/code/ajax/fun-with-kiosk/</guid>
		<description><![CDATA[I am having a blast writing some of the things in kiosk.  I have put in a few things, I am fairly certain no one has done before.  The use of AJAX is completely written throughout the application and it has allowed the application to be placed on a level like no other.
For [...]]]></description>
			<content:encoded><![CDATA[<p>I am having a blast writing some of the things in <a href="http://kiosk.cpradio.org/">kiosk</a>.  I have put in a few things, I am fairly certain no one has done before.  The use of AJAX is completely written throughout the application and it has allowed the application to be placed on a level like no other.</p>
<p>For example, imagine having the ability to upload 1000 images for all of your products using <a href="http://cpcommerce.cpradio.org/">cpCommerce</a> or a different cart variant.  You would have to upload them individually.  Now, take a look at how <a href="http://kiosk.cpradio.org/">kiosk</a> handles it.</p>
<div><a href="http://cpradio.org/images/kiosk_image_area.jpg"><img src="http://cpradio.org/images/th_kiosk_image_area.jpg" alt="Kiosk Image Area" title="Kiosk Image Area" style="border: 1px solid #000000; margin-right: 10px;" align="left" width="300" height="199" /></a> Let&#8217;s take a look at the Kiosk Image Area located in the Administration Area.  This area has many options, but look at the intriguing &#8220;Find FTP&#8217;d Images&#8221;.  Now that is what I am talking about!</div>
<p><br clear="both" /></p>
<div><img src="http://cpradio.org/images/kiosk_image_folder.jpg" alt="Kiosk Image Folder" title="Kiosk Image Folder" style="border: 1px solid #000000; margin-left: 10px;" align="right" width="300" height="199" /> Now, this is the folder where the images are stored in Kiosk.  Look carefully, and you will see a folder named &#8220;FTP&#8221;.  This is the folder where your 1000 images should be uploaded to.</div>
<p><br clear="both" /></p>
<div><a href="http://cpradio.org/images/kiosk_image_folder_with_images.jpg"><img src="http://cpradio.org/images/th_kiosk_image_folder_with_images.jpg" alt="Kiosk Image Folder With Images" title="Kiosk Image Folder With Images" style="border: 1px solid #000000; margin-right: 10px;" align="left" width="300" height="199" /></a> To show you that this works, I have placed over 600 images in the folder!  I realize that isn&#8217;t exactly 1000, but it should be enough to prove it will work with 1000 as well.  Now, that I have the images placed, I need to head back to the Administration Area to complete this process.</div>
<p><br clear="both" /></p>
<div><a href="http://cpradio.org/images/kiosk_image_inserting_images.jpg"><img src="http://cpradio.org/images/th_kiosk_image_inserting_images.jpg" alt="Kiosk Image Inserting the Images" title="Kiosk Image Inserting the Images" style="border: 1px solid #000000; margin-left: 10px;" align="right" width="300" height="199" /></a> Back in the Images Administration Area, I clicked on the &#8220;Find FTP&#8217;d Images&#8221; and this is what you will be presented with!  <em>Now realize, only one process of this is able to run at a time.  So if you have 4 people updating the store, when one person runs this command, it will prevent the other 3 from running it too.</em>  With that said, the process also checks to see where in the process it is.  For example, it checks every few seconds to see if it is finished inserting the images, or if it is still running.  Now, I know what you are thinking.  What about the Time Out Limit in PHP?  How do you get around that?  Well that is my secret and you can&#8217;t figure it out unless you pull down the <a href="http://kiosk.cpradio.org/kiosksvn/">Source Code from the SVN Repository</a>.</div>
<p><br clear="both" /></p>
<div><a href="http://cpradio.org/images/kiosk_image_inserting_images_complete.jpg"><img src="http://cpradio.org/images/th_kiosk_image_inserting_images_complete.jpg" alt="Kiosk Image Inserting the Images Complete" title="Kiosk Image Inserting the Images Complete" style="border: 1px solid #000000; margin-right: 10px;" align="left" width="300" height="199" /></a> Finally, when it is all said and done, you the user are prompted with this final screen.  The process is complete. </div>
<p><br clear="both" /></p>
<div><a href="http://cpradio.org/images/kiosk_image_listing.jpg"><img src="http://cpradio.org/images/th_kiosk_image_listing.jpg" alt="Kiosk Image Listing" title="Kiosk Image Listing" style="border: 1px solid #000000; margin-left: 10px;" align="right" width="300" height="199" /></a> Upon clicking on &#8220;Close&#8221; it will reload the page to show all of your images now listed within the application.  That&#8217;s it!  It doesn&#8217;t get any easier than that!  Feel free to comment and leave your remarks, as this is going to make <a href="http://kiosk.cpradio.org/">kiosk</a> stand out from Joe Smoe and you got my word on that!</div>
<p><br clear="both" /></p>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/code/ajax/fun-with-kiosk/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>kiosk Development</title>
		<link>http://cpradio.org/code/javascript/kiosk-development/</link>
		<comments>http://cpradio.org/code/javascript/kiosk-development/#comments</comments>
		<pubDate>Thu, 01 Feb 2007 11:52:08 +0000</pubDate>
		<dc:creator>cpradio</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[kiosk]]></category>

		<guid isPermaLink="false">http://cpradio.org/code/javascript/kiosk-development/</guid>
		<description><![CDATA[kiosk is progressing very well.  I have started the programming some of the more significant portions of the project, such as, uploading Image, and creating Categories.  Unlike cpCommerce images will not be handled during the Category, Product, Manufacturer, etc. creation.  Instead, it is its&#8217; own section.  Why?  This way you [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://kiosk.cpradio.org/">kiosk</a> is progressing very well.  I have started the programming some of the more significant portions of the project, such as, uploading Image, and creating Categories.  Unlike <a href="http://cpcommerce.cpradio.org/">cpCommerce</a> images will not be handled during the Category, Product, Manufacturer, etc. creation.  Instead, it is its&#8217; own section.  Why?  This way you can upload all of your images via FTP, click a nice little link stating &#8220;Find Uploaded Images&#8221; and it will insert them into your database for you.  Then all you have to do is assign them to a Product, Category, Manufacturer, or Both, or All Three!</p>
<p>Images are entirely reusable.  So if you want to show a Product&#8217;s Image as the Category Image too, YOU CAN!  And you can do it without uploading another file!  I like to think <a href="http://kiosk.cpradio.org/">kiosk</a> is taking what <a href="http://cpcommerce.cpradio.org/">cpCommerce</a> started and taking it to a whole new level learning from its&#8217; mistakes, and hopefully you all agree.</p>
<p>Well that is enough on that for now, I will update everyone once again, when I have these sections entirely done.  Then you can pull it from the <a href="http://kiosk.cpradio.org/kiosksvn/">kiosk subversion repository</a> and give it a try yourself.</p>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/code/javascript/kiosk-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ajax Search is Over</title>
		<link>http://cpradio.org/code/javascript/ajax-search-is-over/</link>
		<comments>http://cpradio.org/code/javascript/ajax-search-is-over/#comments</comments>
		<pubDate>Sun, 28 Jan 2007 03:36:08 +0000</pubDate>
		<dc:creator>cpradio</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[kiosk]]></category>

		<guid isPermaLink="false">http://cpradio.org/code/javascript/ajax-search-is-over/</guid>
		<description><![CDATA[I have settled on ASP.NET AJAX 1.0.  Why you ask?  Well for many reasons!  One, it is written well.  Lacks all the visual effects, but seriously, who needs those?  It is fast, as it uses JSON, and that is a MAJOR surprise, as I figured M$ would be all over [...]]]></description>
			<content:encoded><![CDATA[<p>I have settled on <a href="http://weblogs.asp.net/scottgu/archive/2007/01/23/asp-net-ajax-1-0-released.aspx">ASP.NET AJAX 1.0</a>.  Why you ask?  Well for many reasons!  One, it is written well.  Lacks all the visual effects, but seriously, who needs those?  It is fast, as it uses JSON, and that is a MAJOR surprise, as I figured M$ would be all over using XML.  Secondly, if you pair it up with <a href="http://codeplex.com/phpmsajax">PHP for Microsoft AJAX</a> it just flat out works nicely and costs little effort to write scripts for!</p>
<p>I wrote a few sample scripts using it in less than 5 minutes!  5 minutes!!  I cannot stress that enough.  I was amazed at the type of complexity I could write in just a few minutes of using it.  Now, I am not a &#8220;big&#8221; M$ fan, but I am willing to give credit when due, and they deserve credit for this.  I am truly pleased with the fact it works in Firefox, it works in IE, and it probably works in Opera (though I haven&#8217;t tested it).  It has files for all languages, to handle currencies, dates, etc.  Totally amazing.</p>
<p>I have so many plans on how to use this to perform more advance functionality in several of my applications and best of all, I didn&#8217;t have to write my own XmlHttpRequest methods.</p>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/code/javascript/ajax-search-is-over/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Experimenting&#8230;</title>
		<link>http://cpradio.org/personal/experimenting/</link>
		<comments>http://cpradio.org/personal/experimenting/#comments</comments>
		<pubDate>Wed, 24 Jan 2007 12:17:00 +0000</pubDate>
		<dc:creator>cpradio</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://cpradio.org/personal/experimenting/</guid>
		<description><![CDATA[I am experimenting with my new theme, trying to get pieces of it just right, so if you have troubles reading it, please take a screenshot of it and link to it in a Comment.  The header rotates between 5 different images at random, so you may see a different one every so often.
A [...]]]></description>
			<content:encoded><![CDATA[<p>I am experimenting with my new theme, trying to get pieces of it just right, so if you have troubles reading it, please take a screenshot of it and link to it in a Comment.  The header rotates between 5 different images at random, so you may see a different one every so often.</p>
<p><strong>A little about the theme&#8230;</strong><br />
I built the theme based a bit off of K2, in that I included the code for the Sidebar Widgets.  Other than that, it does not have anything else related to K2.  Some of the plugins it uses are &#8220;Collapseable Categories&#8221;, &#8220;Bunny Tags&#8221;, &#8220;IG Syntax Hilite&#8221;, and &#8220;Sociable&#8221;.  There are a few more Admin related plugins, but those have nothing to do with the theme.</p>
<p>Depending on my satisfaction with the remaining pieces I need to work out, I may allow the theme to be downloaded, but for now, its just going to sit here until I know all is well.</p>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/personal/experimenting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Talk about accomplishing a lot&#8230;</title>
		<link>http://cpradio.org/personal/talk-about-accomplishing-a-lot/</link>
		<comments>http://cpradio.org/personal/talk-about-accomplishing-a-lot/#comments</comments>
		<pubDate>Sun, 07 Jan 2007 22:29:50 +0000</pubDate>
		<dc:creator>cpradio</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[cpCommerce]]></category>
		<category><![CDATA[kiosk]]></category>

		<guid isPermaLink="false">http://cpradio.org/2007/01/07/talk-about-accomplishing-a-lot/</guid>
		<description><![CDATA[cpCommerce
I am not sure what put me in such a great mood Friday evening, but Friday evening I completed 10 known bugs in cpCommerce plus added a new feature.  Then to top it off further, I modified my shell script that builds the SVN repository every Sunday morning so it would also build a [...]]]></description>
			<content:encoded><![CDATA[<p><b>cpCommerce</b><br />
I am not sure what put me in such a great mood Friday evening, but Friday evening I completed 10 known bugs in <a href="http://cpcommerce.cpradio.org/">cpCommerce</a> plus added a new feature.  Then to top it off further, I modified my shell script that builds the SVN repository every Sunday morning so it would also build a &#8220;diff.patch&#8221; file describing the difference between the previous version and the newer version.  Then on Sunday it was discovered that a bug dealing with the &#8220;discount&#8221; feature existed in always providing every customer with a 20% discount on their purchase.  Within a few hours, that was fixed and the release file was rebuilt manually so everyone could download the new ZIP file.</p>
<p><b>kiosk</b><br />
I also accomplished a lot in <a href="http://kiosk.cpradio.org">kiosk</a> over the weekend too.  Finalized some of the installation processes, and started working heavily on the modules in the Administration Control Panel.  I also refined major parts of the framework to fit better with the overall goal of being a &#8220;plug-n-play template system.&#8221;</p>
<p><b>Linux</b><br />
Finally, I have been spending my weekend trying to get my media center PC up and running again after a Ubuntu upgrade.  Not sure what caused the FREAKIN&#8217; issue, but I am not very appreciative about it.  Overall, this is the first day I have tried to fix it since I discovered it being down on Saturday morning, so it might not really be a &#8220;major&#8221; issue.</p>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/personal/talk-about-accomplishing-a-lot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Busy Week</title>
		<link>http://cpradio.org/personal/busy-week/</link>
		<comments>http://cpradio.org/personal/busy-week/#comments</comments>
		<pubDate>Sun, 17 Dec 2006 03:34:49 +0000</pubDate>
		<dc:creator>cpradio</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[cpCommerce]]></category>

		<guid isPermaLink="false">http://cpradio.org/2006/12/16/busy-week/</guid>
		<description><![CDATA[This week was really busy for me, I had a lot of tasks to get done this week  at work and just added another big one I would like to have completed before  I go on Vacation next Friday.
Aside from that though, I also had a lot of things going on at home. [...]]]></description>
			<content:encoded><![CDATA[<p>This week was really busy for me, I had a lot of tasks to get done this week  at work and just added another big one I would like to have completed before  I go on Vacation next Friday.</p>
<p>Aside from that though, I also had a lot of things going on at home.  I have  been prolonging fixing my main system as it continuously frustrated me, but  today I decided to give it another try and to get the second power supply to  properly control my hard drives, while my main power supply powered the  motherboard and video card.  FINALLY today it worked!  Now my main system  finally has all its hard drives running which is sitting at a total of 5  right now, in a while, I will be adding more, but 5 is good.</p>
<p>I also got my secondary system (used for development/testing of Linux updates  before preforming them on my main machine) up and running today with a major  overhaul.  I also have two 120 GB drives in there for storage as well and I  am thinking I will mirror them and use it for backups, but that will be  decided later.  Right now, I have it installing Feisty  (<a href="https://wiki.kubuntu.org/FeistyFawn/Herd1/Kubuntu">https://wiki.kubuntu.org/FeistyFawn/Herd1/Kubuntu</a>) as I want to see what eye  candy comes out of it and see if I want it on my main machine.</p>
<p>Also, cpCommerce released v1.0.4 this week!  I re-added the MySQLi support.   It also has several fixes by other members who spent countless hours learning  how to use SVN and contribute to fixing the bugs.</p>
<p>Well, I really do not have anything more to add at this moment.  I am looking  forward to a 4 day work week and then I will be gone for 8 days as I am going  down to TN for Christmas (I may even take Kami &#8211; my wife along&#8230; hehe).</p>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/personal/busy-week/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>kiosk Progress</title>
		<link>http://cpradio.org/personal/kiosk-progress/</link>
		<comments>http://cpradio.org/personal/kiosk-progress/#comments</comments>
		<pubDate>Sat, 02 Dec 2006 03:11:28 +0000</pubDate>
		<dc:creator>cpradio</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[kiosk]]></category>

		<guid isPermaLink="false">http://cpradio.org/2006/12/01/kiosk-progress/</guid>
		<description><![CDATA[I couldn&#8217;t be more pleased with how well my new project is going.  kiosk is  advancing nicely and it seems to be getting better each day I work on it.   For the most part, almost all of the tables are setup (I am now at  approximately 43 tables).  All [...]]]></description>
			<content:encoded><![CDATA[<p>I couldn&#8217;t be more pleased with how well my new project is going.  kiosk is  advancing nicely and it seems to be getting better each day I work on it.   For the most part, almost all of the tables are setup (I am now at  approximately 43 tables).  All of the base classes are written and their  private variables defined, however, the methods/functions still need written  for almost all of them.</p>
<p>The installation process is what I am most proud of.  So far, it works like a  charm.  All I have left for the Installer is the &#8220;Configuration&#8221; section.  It  will be a while before that section is complete, as I have a feeling, as I  write the rest of the application, more settings will be needed.<br />
To help feed your thirst on what kiosk looks like and the tables it consists  of, enjoy the screenshots below.<br />
<!--Mime Type of File is image/png --></p>
<div><a onclick="window.open('http://cpradio.org/wp-photos/20061201-191126-1.jpg','full_size_image','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,height=896,width=1276');return false;" href="http://cpradio.org/wp-photos/20061201-191126-1.jpg"><img class="postie-image" style="border: 1px solid #000000" title="kiosk01.png" alt="kiosk01.png" src="http://cpradio.org/wp-photos/thumb.20061201-191126-1.jpg" /></a></div>
<p><!--Mime Type of File is image/png --></p>
<div><a onclick="window.open('http://cpradio.org/wp-photos/20061201-191126-2.jpg','full_size_image','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,height=896,width=1276');return false;" href="http://cpradio.org/wp-photos/20061201-191126-2.jpg"><img class="postie-image" style="border: 1px solid #000000" title="kiosk05.png" alt="kiosk05.png" src="http://cpradio.org/wp-photos/thumb.20061201-191126-2.jpg" /></a></div>
<p><!--Mime Type of File is image/png --></p>
<div><a onclick="window.open('http://cpradio.org/wp-photos/20061201-191126-3.jpg','full_size_image','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,height=896,width=1276');return false;" href="http://cpradio.org/wp-photos/20061201-191126-3.jpg"><img class="postie-image" style="border: 1px solid #000000" title="kiosk06.png" alt="kiosk06.png" src="http://cpradio.org/wp-photos/thumb.20061201-191126-3.jpg" /></a></div>
<p><!--Mime Type of File is image/png --></p>
<div><a onclick="window.open('http://cpradio.org/wp-photos/20061201-191127-4.jpg','full_size_image','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,height=896,width=1292');return false;" href="http://cpradio.org/wp-photos/20061201-191127-4.jpg"><img class="postie-image" style="border: 1px solid #000000" title="kiosk07.png" alt="kiosk07.png" src="http://cpradio.org/wp-photos/thumb.20061201-191127-4.jpg" /></a></div>
<p><!--Mime Type of File is image/png --></p>
<div><a onclick="window.open('http://cpradio.org/wp-photos/20061201-191127-5.jpg','full_size_image','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,height=896,width=1292');return false;" href="http://cpradio.org/wp-photos/20061201-191127-5.jpg"><img class="postie-image" style="border: 1px solid #000000" title="kiosk08.png" alt="kiosk08.png" src="http://cpradio.org/wp-photos/thumb.20061201-191127-5.jpg" /></a></div>
<p><!--Mime Type of File is image/png --></p>
<div><a onclick="window.open('http://cpradio.org/wp-photos/20061201-191127-6.jpg','full_size_image','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,height=896,width=1292');return false;" href="http://cpradio.org/wp-photos/20061201-191127-6.jpg"><img class="postie-image" style="border: 1px solid #000000" title="kiosk09.png" alt="kiosk09.png" src="http://cpradio.org/wp-photos/thumb.20061201-191127-6.jpg" /></a></div>
<p><!--Mime Type of File is image/png --></p>
<div><a onclick="window.open('http://cpradio.org/wp-photos/20061201-191127-7.jpg','full_size_image','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,height=896,width=1276');return false;" href="http://cpradio.org/wp-photos/20061201-191127-7.jpg"><img class="postie-image" style="border: 1px solid #000000" title="kiosk02.png" alt="kiosk02.png" src="http://cpradio.org/wp-photos/thumb.20061201-191127-7.jpg" /></a></div>
<p><!--Mime Type of File is image/png --></p>
<div><a onclick="window.open('http://cpradio.org/wp-photos/20061201-191127-8.jpg','full_size_image','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,height=896,width=1276');return false;" href="http://cpradio.org/wp-photos/20061201-191127-8.jpg"><img class="postie-image" style="border: 1px solid #000000" title="kiosk03.png" alt="kiosk03.png" src="http://cpradio.org/wp-photos/thumb.20061201-191127-8.jpg" /></a></div>
<p><!--Mime Type of File is image/png --></p>
<div><a onclick="window.open('http://cpradio.org/wp-photos/20061201-191127-9.jpg','full_size_image','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,height=896,width=1276');return false;" href="http://cpradio.org/wp-photos/20061201-191127-9.jpg"><img class="postie-image" style="border: 1px solid #000000" title="kiosk04.png" alt="kiosk04.png" src="http://cpradio.org/wp-photos/thumb.20061201-191127-9.jpg" /></a></div>
<p>Now, you didn&#8217;t think I would show you my &#8220;real&#8221; email address did you?  Oh,  and here are the screenshots if you were to revisit the prior installation  pages:<br />
<!--Mime Type of File is image/png --></p>
<div><a onclick="window.open('http://cpradio.org/wp-photos/20061201-191128-10.jpg','full_size_image','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,height=867,width=1292');return false;" href="http://cpradio.org/wp-photos/20061201-191128-10.jpg"><img class="postie-image" style="border: 1px solid #000000" title="kiosk12.png" alt="kiosk12.png" src="http://cpradio.org/wp-photos/thumb.20061201-191128-10.jpg" /></a></div>
<p><!--Mime Type of File is image/png --></p>
<div><a onclick="window.open('http://cpradio.org/wp-photos/20061201-191128-11.jpg','full_size_image','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,height=867,width=1276');return false;" href="http://cpradio.org/wp-photos/20061201-191128-11.jpg"><img class="postie-image" style="border: 1px solid #000000" title="kiosk11.png" alt="kiosk11.png" src="http://cpradio.org/wp-photos/thumb.20061201-191128-11.jpg" /></a></div>
<p><!--Mime Type of File is image/png --></p>
<div><a onclick="window.open('http://cpradio.org/wp-photos/20061201-191128-12.jpg','full_size_image','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=1,height=867,width=1276');return false;" href="http://cpradio.org/wp-photos/20061201-191128-12.jpg"><img class="postie-image" style="border: 1px solid #000000" title="kiosk10.png" alt="kiosk10.png" src="http://cpradio.org/wp-photos/thumb.20061201-191128-12.jpg" /></a></div>
<p>Hope you enjoyed those!</p>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/personal/kiosk-progress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding Time is a Hard Thing To Do</title>
		<link>http://cpradio.org/personal/finding-time-is-a-hard-thing-to-do/</link>
		<comments>http://cpradio.org/personal/finding-time-is-a-hard-thing-to-do/#comments</comments>
		<pubDate>Tue, 13 Sep 2005 10:58:24 +0000</pubDate>
		<dc:creator>cpradio</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[cpCommerce]]></category>

		<guid isPermaLink="false">http://cpradio.net/index.php/2005/09/13/finding-time-is-a-hard-thing-to-do/</guid>
		<description><![CDATA[It&#8217;s been quite a while since I last put a posting on here, primarily because finding the time to do it, has been very hard.  Work is going great, I have been pulled from my primary project to help resolve issues with another, and we are finally at the stage of resolving the &#8220;major&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been quite a while since I last put a posting on here, primarily because finding the time to do it, has been very hard.  Work is going great, I have been pulled from my primary project to help resolve issues with another, and we are finally at the stage of resolving the &#8220;major&#8221; issues.  Thus, I get to go back to my primary project this week and I am looking forward to it.</p>
<p>cpCommerce had the PayPal IPN Gateway Implementation put into the build about a week ago and it seems to be holding out, that or no one else has had a lot of time to do any testing.  I feel it is getting close to lose 0.06 all together now and allow for a much cleaner version to take its place.  Right now there are not a lot of new features in the works, in fact, with me being so busy, a lot of the work is on hold until I can find someone to take my spot or help alleviate all the things I do for cpCommerce.  Who knows, time will tell, as I may eventually find more time to do these things.</p>
<p>As for me, I am doing fairly well.  I am about to add 16 DVDs to my collection from signing up with Columbia House and then inviting a friend.  In the end the 16 DVDs will cost just a little under $70.  Now that is what I call a GREAT STEAL&#8230;err&#8230;I mean&#8230;DEAL!</p>
<p>Plans for upgrading my computers are always being thought out, and hopefully one of these days will come true.  I know what I want to get, but the new question is: &#8220;What do you really need?&#8221; and I am struggling with that one, as honestly, right now, I don&#8217;t need an upgrade.</p>
<p>Well, that seems to be everything in a nut shell over the recent weeks.  I hope all of you are enjoying your jobs, school, or whatever ventures you are currently involved in.</p>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/personal/finding-time-is-a-hard-thing-to-do/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.282 seconds -->
