<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/1.5.1.1" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
	<title>Open AJAX</title>
	<link>http://www.openajax.net/wordpress</link>
	<description>Make the Web Cool Again!</description>
	<pubDate>Tue, 25 Jul 2006 22:52:08 +0000</pubDate>
	<generator>http://wordpress.org/?v=1.5.1.1</generator>
	<language>en</language>

		<item>
		<title>JSLint and JSMin</title>
		<link>http://www.openajax.net/wordpress/2006/07/25/jslint-and-jsmin/</link>
		<comments>http://www.openajax.net/wordpress/2006/07/25/jslint-and-jsmin/#comments</comments>
		<pubDate>Tue, 25 Jul 2006 22:52:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<category>Home</category>
		<guid>http://www.openajax.net/wordpress/2006/07/25/jslint-and-jsmin/</guid>
		<description><![CDATA[	It recently came to our attention that not everyone knows about two critical free tools for any type of AJAX development.
	http://www.jslint.com/lint.html

	http://www.crockford.com/javascript/jsmin.html
	JSMin is a tool for compressing Javascript.  It will strip your white-space and comments so that all that is left is code&#8230;.you know, the good stuff.  It does not obfuscate the code, just [...]]]></description>
			<content:encoded><![CDATA[	<p>It recently came to our attention that not everyone knows about two <strong>critical</strong> free tools for any type of AJAX development.</p>
	<li><a href="http://www.jslint.com/lint.html">http://www.jslint.com/lint.html</a>
</li>
	<li><a href="http://www.crockford.com/javascript/jsmin.html">http://www.crockford.com/javascript/jsmin.html</a>
	<p>JSMin is a tool for compressing Javascript.  It will strip your white-space and comments so that all that is left is code&#8230;.you know, the good stuff.  It does not <a href="http://en.wikipedia.org/wiki/Obfuscated_code">obfuscate</a> the code, just shrinks it.</p>
	<p>JSLint will check your  Javascript for basic coding issues.  You gotta try them both!  </li>
]]></content:encoded>
			<wfw:commentRSS>http://www.openajax.net/wordpress/2006/07/25/jslint-and-jsmin/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>AJAX Frameworks</title>
		<link>http://www.openajax.net/wordpress/2006/07/25/ajax-frameworks/</link>
		<comments>http://www.openajax.net/wordpress/2006/07/25/ajax-frameworks/#comments</comments>
		<pubDate>Tue, 25 Jul 2006 20:30:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<category>Home</category>
		<guid>http://www.openajax.net/wordpress/2006/07/25/ajax-frameworks/</guid>
		<description><![CDATA[	ajaxpatterns.org has a nice listing of AJAX frameworks; everythign from .Net to Coldfusion, from Java to Smalltalk and C++.
	http://ajaxpatterns.org/Ajax_Frameworks
	There is even the beginnings of a Comparison Matrix.

]]></description>
			<content:encoded><![CDATA[	<p>ajaxpatterns.org has a nice listing of AJAX frameworks; everythign from .Net to Coldfusion, from Java to Smalltalk and C++.</p>
	<p><a href="http://ajaxpatterns.org/Ajax_Frameworks">http://ajaxpatterns.org/Ajax_Frameworks</a></p>
	<p>There is even the beginnings of a <a href="http://ajaxpatterns.org/Frameworks_Matrix">Comparison Matrix</a>.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.openajax.net/wordpress/2006/07/25/ajax-frameworks/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Standard AJAX, VB, and Windows 3.1</title>
		<link>http://www.openajax.net/wordpress/2006/07/25/standard-ajax-vb-and-windows-31/</link>
		<comments>http://www.openajax.net/wordpress/2006/07/25/standard-ajax-vb-and-windows-31/#comments</comments>
		<pubDate>Tue, 25 Jul 2006 18:35:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<category>Home</category>
		<guid>http://www.openajax.net/wordpress/2006/07/25/standard-ajax-vb-and-windows-31/</guid>
		<description><![CDATA[	Years ago, Adam Bosworth coined the term DHTML - as in Dynamic HTML.  Jesse James Garrett re-labeled DHTML as &#8220;AJAX&#8221;  If you have not seen this clip - you should.  Watch it and pay close attention to what is said, as well as what is not said.  Notice that AJAX is [...]]]></description>
			<content:encoded><![CDATA[	<p>Years ago, Adam Bosworth coined the term DHTML - as in Dynamic HTML.  Jesse James Garrett re-labeled DHTML as &#8220;AJAX&#8221;  If you have not seen <a href="http://web2journal.com/read/214082.htm">this clip</a> - you should.  Watch it and pay close attention to what is said, as well as what is not said.  Notice that AJAX is not just about Email, or Maps, or Calendars; it is in fact about providing a rich user experience when it is<strong> needed</strong>.  Everyone knows this already or at least they should.  </p>
	<p>The GWT (Google Web Toolkit) is essentially VB for AJAX.  The first version is nice, but the next version will be more realistically usable.  There will come a point in time when writing AJAX guts like XMLHttpRequest will be like writing Assembly code.  You&#8217;ll be able to do it, but you will probably want to use a GWT-like library and some type of AJAX library aware IDE.</p>
	<p>The browser, is a platform in and of itself.  In some ways it is kind of like Windows 3.1 on top of DOS.  The browser is windows and the logic and file-access is all DOS.  So at some point it&#8217;s possible we&#8217;ll see a better integration between the UI and the back-end.  Right now, the best tool for this is probably GWT, however, it&#8217;s not perfect and it doesn&#8217;t let you use Java 5 yet.  The whole key to GWT is the compiler.  It essentially translates code into separate pieces that allow you to break the app into two pieces the server side and of course the client side.  (Feels like the early 90&#8217;s all over again). </p>
	<p>The single thing that is going to make AJAX frameworks/toolkits/libraries great is when the client-side runtime is standardized.  This means, at some point the framework code that runs in the client (events, rendering, code-management, et al) will need to be unified so that it won&#8217;t matter so much what the back-end is.  Ideally anyways.  The other added benefit of this is that you should be able to have the same experience regardless of the host platform (Operating System) and regardless of the browser.  That being said, their will probably be two: one for Microsoft and one for everyone else.  Which is kind of a necessary evil for Microsoft to preserve their platform.  The irony of this is that as Microsoft keeps building their product pyramid and enhancing their platform, they inadvertently create a platform to compete against which is the obviously named “non-MS platform”.  Oh – it has other names like “Open Source”.</p>
	<p>Please share your thoughts.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.openajax.net/wordpress/2006/07/25/standard-ajax-vb-and-windows-31/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>XML11 vs GWT</title>
		<link>http://www.openajax.net/wordpress/2006/06/28/xml11-vs-gwt/</link>
		<comments>http://www.openajax.net/wordpress/2006/06/28/xml11-vs-gwt/#comments</comments>
		<pubDate>Wed, 28 Jun 2006 20:25:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<category>Home</category>
	<category>AJAX</category>
	<category>Client Side</category>
	<category>Server Side</category>
		<guid>http://www.openajax.net/wordpress/2006/06/28/xml11-vs-gwt/</guid>
		<description><![CDATA[	Check out
this talk on Google Video for an introdocution to XML11.

]]></description>
			<content:encoded><![CDATA[	<p>Check out<br />
<a href="http://video.google.com/videoplay?docid=-3171582187051229467">this talk on Google Video</a> for an introdocution to <a href="http://www.xml11.org/">XML11</a>.
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.openajax.net/wordpress/2006/06/28/xml11-vs-gwt/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Buttonator</title>
		<link>http://www.openajax.net/wordpress/2006/05/19/buttonator/</link>
		<comments>http://www.openajax.net/wordpress/2006/05/19/buttonator/#comments</comments>
		<pubDate>Fri, 19 May 2006 16:03:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<category>Home</category>
		<guid>http://www.openajax.net/wordpress/2006/05/19/buttonator/</guid>
		<description><![CDATA[	Buttonator is a cool AJAX app, here&#8217;s a blurb from the folks at Buttonator.com:
	
The Buttonator is a 90&#8217;s idea with 00&#8217;s twist - professional looking buttons in seconds. It utilises the latest Rails 1.1.2 release and the RMagick image processing library. A big thanks goes out to Rails team for an awesome framework and the [...]]]></description>
			<content:encoded><![CDATA[	<p>Buttonator is a cool AJAX app, here&#8217;s a blurb from the folks at Buttonator.com:</p>
	<blockquote><p>
The Buttonator is a 90&#8217;s idea with 00&#8217;s twist - professional looking buttons in seconds. It utilises the latest Rails 1.1.2 release and the RMagick image processing library. A big thanks goes out to Rails team for an awesome framework and the RubyForge RMagick forum for their assistance.</p>
	<p>Following plenty of positive feedback regarding version 1, we plan to release a 2nd version with additional functionality such as:</p>
	<p>   * Creating you own button styles via a personal account<br />
   * More configurable generation parameters<br />
   * More free styles</p>
	<p>In addition to Buttonator, we at Lopini (lopini.com currently under construction) intend to release several web applications in the coming months including an online virtual office (coming very soon) and a web developers collaborative chat system.</p>
	<p>Thanks</p>
	<p>buttonator-dev@buttonator.com
</p></blockquote>
]]></content:encoded>
			<wfw:commentRSS>http://www.openajax.net/wordpress/2006/05/19/buttonator/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>&#8220;Global Mosaic&#8221;, a massively multiplayer Web 2.0 application</title>
		<link>http://www.openajax.net/wordpress/2006/04/28/global-mosaic-a-massively-multiplayer-web-20-application/</link>
		<comments>http://www.openajax.net/wordpress/2006/04/28/global-mosaic-a-massively-multiplayer-web-20-application/#comments</comments>
		<pubDate>Fri, 28 Apr 2006 16:42:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<category>Home</category>
		<guid>http://www.openajax.net/wordpress/2006/04/28/global-mosaic-a-massively-multiplayer-web-20-application/</guid>
		<description><![CDATA[	My name is Amanda White, from the team behind  http://www.TheBroth.com, &#8220;the Global Mosaic&#8221;, a massively multiplayer Web 2.0 application based on Ajax, Php and Mysql.
	The Global Mosaic is made of 1,000 colorful tiles that are shared by everyone. When someone moves a tile, others can instantly see it move on their screens!
	Here&#8217;s our press [...]]]></description>
			<content:encoded><![CDATA[	<p>My name is Amanda White, from the team behind <a href="http://www.TheBroth.com"> http://www.TheBroth.com</a>, &#8220;the Global Mosaic&#8221;, a massively multiplayer Web 2.0 application based on Ajax, Php and Mysql.</p>
	<p>The Global Mosaic is made of 1,000 colorful tiles that are shared by everyone. When someone moves a tile, others can instantly see it move on their screens!</p>
	<p>Here&#8217;s our press release: <a href="http://www.thebroth.com/press.html">http://www.thebroth.com/press.html</a></p>
	<p>Open Ajax and its associated community may be especially interested in our developer blog, where we share what we&#8217;ve learned while making TheBroth, revealing Ajax, Php, Mysql and JavaScript tips, tricks and techniques!</p>
	<p>A review of TheBroth and perhaps discussion of the techniques and tutorials is very welcome. We also have our support forum that includes a developer section.</p>
	<p>Kind regards,</p>
	<p>Amanda White<br />
http://www.thebroth.com
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.openajax.net/wordpress/2006/04/28/global-mosaic-a-massively-multiplayer-web-20-application/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Google Calendar - Right on Time!</title>
		<link>http://www.openajax.net/wordpress/2006/04/13/google-calendar-finally/</link>
		<comments>http://www.openajax.net/wordpress/2006/04/13/google-calendar-finally/#comments</comments>
		<pubDate>Thu, 13 Apr 2006 06:50:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<category>Home</category>
		<guid>http://www.openajax.net/wordpress/2006/04/13/google-calendar-finally/</guid>
		<description><![CDATA[	In a posting at C&#166;Net, Google has formally entered the world of calendars and scheduling.  The interface is nice, smooth, lots and lots and lots of AJAX code, combining all major patterns and techniques.  Check it out!
	
Product Manager Carl Sjogreen, formely of BEA and WebLogic Workshop, has done a great job.  Go [...]]]></description>
			<content:encoded><![CDATA[	<p>In a <a href="http://news.com.com/2100-1032_3-6060741.html?part=rss&#038;tag=6060741&#038;subj=news">posting</a> at C|Net, Google has formally entered the world of calendars and scheduling.  The interface is nice, smooth, lots and lots and lots of AJAX code, combining all major patterns and techniques.  Check it out!</p>
	<p>
Product Manager Carl Sjogreen, formely of BEA and WebLogic Workshop, has done a great job.  Go Carl!</p>
	<p>
Some things to check out: sharing events with others that aren&#8217;t Google Calendar users (easy!), searching (duh!), quick add (awesome!)
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.openajax.net/wordpress/2006/04/13/google-calendar-finally/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Office for Firefox and Google Pages</title>
		<link>http://www.openajax.net/wordpress/2006/03/23/office-for-firefox-and-google-pages/</link>
		<comments>http://www.openajax.net/wordpress/2006/03/23/office-for-firefox-and-google-pages/#comments</comments>
		<pubDate>Thu, 23 Mar 2006 17:50:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<category>Home</category>
		<guid>http://www.openajax.net/wordpress/2006/03/23/office-for-firefox-and-google-pages/</guid>
		<description><![CDATA[	Firefox-only Word Processor (http://ajaxwrite.com/) is available for testing.  Looks nice, but there are still some bugs.  Definitely worth checking out!
	
Additionally, GooglePages has gone to Beta.  There is an interesting screenshot here  You can view the live site of the screenshot here.
]]></description>
			<content:encoded><![CDATA[	<p><a href="http://ajaxwrite.com/">Firefox-only Word Processor</a> (http://ajaxwrite.com/) is available for testing.  Looks nice, but there are still some bugs.  Definitely worth checking out!</p>
	<p>
Additionally, <a href="http://www.googlepages.com/">GooglePages</a> has gone to Beta.  There is an interesting screenshot <a href="http://www.desktoplinux.com/news/NS2909568909.html">here</a>  You can view the live site of the screenshot <a href="http://editingwhiz.googlepages.com/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.openajax.net/wordpress/2006/03/23/office-for-firefox-and-google-pages/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Google Finance</title>
		<link>http://www.openajax.net/wordpress/2006/03/21/google-finance/</link>
		<comments>http://www.openajax.net/wordpress/2006/03/21/google-finance/#comments</comments>
		<pubDate>Tue, 21 Mar 2006 19:03:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<category>Home</category>
		<guid>http://www.openajax.net/wordpress/2006/03/21/google-finance/</guid>
		<description><![CDATA[	So if you havent, please check out http://finance.google.com/.  There is a lot of flash and AJAX running this service.  Note how when you add/remove items from your portfolion, the page doesn&#8217;t reload completely, just the data sections that display your data.  This is how traditional apps work, however, without AJAX, this would [...]]]></description>
			<content:encoded><![CDATA[	<p>So if you havent, please check out <a href="http://finance.google.com/finance">http://finance.google.com/</a>.  There is a lot of flash and AJAX running this service.  Note how when you add/remove items from your portfolion, the page doesn&#8217;t reload completely, just the data sections that display <em>your</em> data.  This is how traditional apps work, however, without AJAX, this would be near impossible to achieve.  Great job again Google on leveraging the buzz and buzzing the leverage.</p>
	<p>
In a side note, Bill Gates <a href="http://news.com.com/2061-11729_3-6052018.html?part=rss&#038;tag=6052018&#038;subj=news">taunts Google</a>.</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.openajax.net/wordpress/2006/03/21/google-finance/feed/</wfw:commentRSS>
	</item>
		<item>
		<title>Feel Like Gabbing!?</title>
		<link>http://www.openajax.net/wordpress/2006/03/14/feel-like-gabbing/</link>
		<comments>http://www.openajax.net/wordpress/2006/03/14/feel-like-gabbing/#comments</comments>
		<pubDate>Tue, 14 Mar 2006 05:37:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
	<category>Home</category>
		<guid>http://www.openajax.net/wordpress/2006/03/14/feel-like-gabbing/</guid>
		<description><![CDATA[	Gab on OpenAJAX.net - This is really a marvelous idea.  Great job people!

]]></description>
			<content:encoded><![CDATA[	<p><a href="http://gabbly.com/www.openajax.net">Gab on OpenAJAX.net</a> - This is really a marvelous idea.  Great job people!
</p>
]]></content:encoded>
			<wfw:commentRSS>http://www.openajax.net/wordpress/2006/03/14/feel-like-gabbing/feed/</wfw:commentRSS>
	</item>
	</channel>
</rss>
