<?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; Ajax</title>
	<atom:link href="http://cpradio.org/categories/code/ajax/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>Local Printer Support via RDP (Remote Desktop)</title>
		<link>http://cpradio.org/personal/local-printer-support-via-rdp-remote-desktop/</link>
		<comments>http://cpradio.org/personal/local-printer-support-via-rdp-remote-desktop/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 00:39:27 +0000</pubDate>
		<dc:creator>cpradio</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Kubuntu]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[printer]]></category>
		<category><![CDATA[rdesktop]]></category>

		<guid isPermaLink="false">http://cpradio.org/?p=165</guid>
		<description><![CDATA[For those wanting to support a local printer connected to their Linux system via RDP (Remote Desktop) connecting to a Windows server, here is a quick how-to.

First look up the Printer Name on your Linux box, it is best if it is a single word and under 20 characters.  You can typically find this [...]]]></description>
			<content:encoded><![CDATA[<p>For those wanting to support a local printer connected to their Linux system via RDP (Remote Desktop) connecting to a Windows server, here is a quick how-to.</p>
<ol>
<li>First look up the Printer Name on your Linux box, it is best if it is a single word and under 20 characters.  You can typically find this by opening a document, selecting Print and it should be the name in the drop down.</li>
<li>Next you will have a script that call rdesktop like so:<br />
<code>rdesktop -r printer:&lt;YOUR PRINTER NAME ON LINUX&gt;="WINDOWS DRIVER NAME AS IT APPEARS IN ADD PRINTER" &lt;YOUR SERVER IP ADDRESS&gt;</code></li>
<li>Run the rdesktop script and login</li>
<li>Go to Printers and Faxes</li>
<li>Right-click on the Printer that matches your Linux printer&#8217;s name and choose Properties</li>
<li>Print a test page!</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/personal/local-printer-support-via-rdp-remote-desktop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JSON versus XML</title>
		<link>http://cpradio.org/work/json-versus-xml/</link>
		<comments>http://cpradio.org/work/json-versus-xml/#comments</comments>
		<pubDate>Wed, 26 Sep 2007 00:01:00 +0000</pubDate>
		<dc:creator>cpradio</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://cpradio.org/work/json-versus-xml/</guid>
		<description><![CDATA[There has been much debate on using XML or JSON with your AJAX, but in my mind, the debate is pointless.  Both are nice, one is quicker, one is slower.  However, when it comes to development pick what you know best and what you can implement/maintain easiest.
If you do this, you are guaranteed [...]]]></description>
			<content:encoded><![CDATA[<p>There has been much debate on using XML or JSON with your AJAX, but in my mind, the debate is pointless.  Both are nice, one is quicker, one is slower.  However, when it comes to development pick what you know best and what you can implement/maintain easiest.</p>
<p>If you do this, you are guaranteed the following:</p>
<ol>
<li>It is easy to maintain and understand the code you wrote months later</li>
<li>Chances are your application will not be the quickest in response</li>
<li>You will make use of techniques you fully understand than trying to adapt ones that you are unfamiliar with and may implement wrong</li>
</ol>
<p>So how does JSON differ from returning XML in your AJAX requests?  Lets first look at the advantages of XML.</p>
<ol>
<li>Standardized and easily serialized into via .NET</li>
<li>The XML is easy to read all within itself</li>
<li>You can make use of XSLT, DTDs, etc</li>
</ol>
<p>How about disadvantages of XML?</p>
<ol>
<li>It is slow in comparison to JSON</li>
<li>It can be clumsy when not designed properly</li>
</ol>
<p>Now for the advantages of JSON:</p>
<ol>
<li>It is faster than XML to parse in JavaScript</li>
<li>There are addin&#8217;s you can install in .NET or a library in PHP to serialize a JSON string from an object</li>
<li>It is hard to make this clumsy as it is based on the Object Design</li>
</ol>
<p>And the disadvantages of JSON:</p>
<ol>
<li>It is harder to read the serialized output</li>
<li>You can&#8217;t use XSLT, DTDs, or something of the sort to validate or style the request</li>
</ol>
<p>As for myself, I am a JSON person.  I didn&#8217;t used to be though.  My original AJAX applications were focused around XML primarily because I could make use of an XSLT and I always validated against a schema.  However, JSON has won me over due to speed.  JSON&#8217;s speed is just ridiculously fast and it showed when I converted a major application over to it.  I saved nearly a third of the time it took to do a fairly simple task.</p>
<p>However, pick the poison that you understand most, otherwise, it could have detrimental affects.</p>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/work/json-versus-xml/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>Ajax versus Socket Connections</title>
		<link>http://cpradio.org/code/javascript/ajax-versus-socket-connections/</link>
		<comments>http://cpradio.org/code/javascript/ajax-versus-socket-connections/#comments</comments>
		<pubDate>Wed, 15 Aug 2007 23:55:02 +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[Rails]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://cpradio.org/code/javascript/ajax-versus-socket-connections/</guid>
		<description><![CDATA[Ever have to argue Ajax versus Socket Connections?  Me either.  Today, I had the chance to talk about the differences, their advantages and their disadvantages.
Ajax has many advantages.  You do not have to parse content/page headers, you can parse XML, you can build objects out of JSON serializations, and above all there [...]]]></description>
			<content:encoded><![CDATA[<p>Ever have to argue Ajax versus Socket Connections?  Me either.  Today, I had the chance to talk about the differences, their advantages and their disadvantages.</p>
<p>Ajax has many advantages.  You do not have to parse content/page headers, you can parse XML, you can build objects out of JSON serializations, and above all there are a lot of frameworks that are cross-browser friendly so you do not have to worry about writing the framework yourself.</p>
<p>A Socket Connections&#8217; advantages are much smaller in my opinion.  There is no browser limitations, which is a major advantage, keeping it browser independent.  It can support any type of response content, JSON serializations, XML, HTML, strings, etc.</p>
<p>So what about the disadvantages?  Ajax has the complications of cross-browser friendliness, but that has been removed by frameworks doing all that hard work for us.  Ajax&#8217;s biggest disadvantage is probably the lack of JavaScript standards being followed by each browser.  Though this is removed by using popular frameworks, it matters for the rest of your JavaScript code to setup the Ajax event.</p>
<p>So how about Socket Connections?  Socket Connection have the complication of trying to figure out where the response data starts and where the response headers end.  Secondly, they are language dependent.  Not all languages support sockets and some may make it very complicated to use them though, whereas, Ajax is getting easier and easier to use.</p>
<p>What are your thoughts?</p>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/code/javascript/ajax-versus-socket-connections/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>Ajax Search</title>
		<link>http://cpradio.org/personal/ajax-search/</link>
		<comments>http://cpradio.org/personal/ajax-search/#comments</comments>
		<pubDate>Fri, 26 Jan 2007 02:11:26 +0000</pubDate>
		<dc:creator>cpradio</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://cpradio.org/personal/ajax-search/</guid>
		<description><![CDATA[I am searching for a good ajax library to use in several of my applications.  I have heard about Prototype, Mootools, Dojo, etc but which one does the trick and does it well?  I tried Dojo a while back and never really got the hang of its layout.  Connecting events to the [...]]]></description>
			<content:encoded><![CDATA[<p>I am searching for a good ajax library to use in several of my applications.  I have heard about Prototype, Mootools, Dojo, etc but which one does the trick and does it well?  I tried Dojo a while back and never really got the hang of its layout.  Connecting events to the controls felt awkward and not very clear.  I have seem demos of Prototype and Mootools, and though they look cool, I have not had any experience with them.</p>
<p>At work, I write my own Ajax utilities.  Primarily because we run .NET v1.1, and it is just FREAKIN&#8217; easy to serialize a class straight into XML than write methods to output JSON.  So, if you didn&#8217;t figure it out yet, I wrote prototypes in JavaScript to read the XML and make useable objects in JavaScript that could easily be handled.  This process seems to be a bit slow, and though its effective, its costly to wait 5 seconds for the process to finish.</p>
<p>So why don&#8217;t I just write my own for my upcoming applications?  Well the difference is, the upcoming applications are in PHP.  PHP does not have nice ways of serializing directly into XML, so that is less of a reason for continuing my current approach.  Plus, with it taking 5 seconds to run, it kinda seems like its slow.  I visit many sites whose Ajax runs much quicker than that.</p>
<p>So let&#8217;s hear it!  Tell me which Ajax framework works best for you, what are its&#8217; strengths, its&#8217; weaknesses?  Leave nothing to the imagination.</p>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/personal/ajax-search/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top Secret Project</title>
		<link>http://cpradio.org/personal/top-secret-project/</link>
		<comments>http://cpradio.org/personal/top-secret-project/#comments</comments>
		<pubDate>Tue, 21 Nov 2006 03:04:40 +0000</pubDate>
		<dc:creator>cpradio</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://cpradio.org/2006/11/20/top-secret-project/</guid>
		<description><![CDATA[So, I have been working on a new project lately, and it is looking promising.Â  Of course, all I have done is 92% of the Table Schematics, 92% of the base classes, and 92% of the base class XML schema&#8217;s, (if you didn&#8217;t realize, that means 22 of the 24 tables are design, 22 of [...]]]></description>
			<content:encoded><![CDATA[<p>So, I have been working on a new project lately, and it is looking promising.Â  Of course, all I have done is 92% of the Table Schematics, 92% of the base classes, and 92% of the base class XML schema&#8217;s, (if you didn&#8217;t realize, that means 22 of the 24 tables are design, 22 of those 24 tables have their classes defined [just variables and constructors at this point], and 22 of those 24 tables have their database schema written in an XML file).</p>
<p>I am not going to go into a lot of detail over what the project is about or its purpose, but lets just say it will <strong><em>ROCK!</em></strong>Â  I have been working on the schematics for the past 16 days, and with only two tables away, I am looking to get a few developers who may wish to contribute.</p>
<p>If the need is there, I will setup a SVN repository on this site.</p>
<p>To give you an idea on what type of help I will be needing, here are a few specs of the application so far:</p>
<ol>
<li>Entirely Object-Oriented</li>
<li>Database interaction is inherited by all of the other classes</li>
<li>The Database class inherits the Error handling class, to ensure all error handling is done in the same fashion.</li>
<li>Design templates to direct the output of the pages is a REQUIREMENT, whether that templating will follow the footsteps of cpCommerce or go a different direction is still up in the air.</li>
</ol>
<p>So basically, I am looking for several programmers with OO experience in PHP, though any OO experience in any language is likely to be beneficial.Â  I will be looking for a few Graphic designers to design templates for the system.Â  Looking for something sleek and fast loading.Â  Knowledge of CSS and XHTML is preferred.</p>
<p>If you are interested, leave a comment.Â  I will be checking it from time to time and when enough leave a remark, I will setup the repository and get in contact with each person.</p>
<p>Oh, and the name is &#8220;kiosk&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://cpradio.org/personal/top-secret-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

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