<?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"
	>

<channel>
	<title>Adventures In Programming</title>
	<atom:link href="http://www.adventuresinprogramming.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.adventuresinprogramming.com</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Tue, 08 Jan 2008 10:38:12 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Building a .com in 24 hours</title>
		<link>http://www.adventuresinprogramming.com/2008/01/08/building-a-com-in-24-hours/</link>
		<comments>http://www.adventuresinprogramming.com/2008/01/08/building-a-com-in-24-hours/#comments</comments>
		<pubDate>Tue, 08 Jan 2008 10:37:29 +0000</pubDate>
		<dc:creator>Kodewulf</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[.com]]></category>

		<category><![CDATA[web startup]]></category>

		<guid isPermaLink="false">http://www.adventuresinprogramming.com/2008/01/08/building-a-com-in-24-hours/</guid>
		<description><![CDATA[Over at Dominiek.com I found this interesting article: Building a .com in 24 hours
This is about how I spend 24 concentrated hours spread out over 4 days during Holidays to build the online service Wigitize.com. It is part of my ongoing learning process on how to run a successful web startup.
]]></description>
			<content:encoded><![CDATA[<p>Over at <a href="http://dominiek.com/" title="Dominiek.com" target="_blank">Dominiek.com</a> I found this interesting article: <a href="http://dominiek.com/articles/2008/1/6/building-a-com-in-24-hours" title="Building a .com in 24 hours" target="_blank">Building a .com in 24 hours</a></p>
<blockquote><p>This is about how I spend 24 concentrated hours spread out over 4 days during Holidays to build the online service <a href="http://wigitize.com/">Wigitize.com</a>. It is part of my ongoing learning process on how to run a successful web startup.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.adventuresinprogramming.com/2008/01/08/building-a-com-in-24-hours/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Rails 2.0.2: Some new defaults and a few fixes</title>
		<link>http://www.adventuresinprogramming.com/2007/12/19/rails-202-some-new-defaults-and-a-few-fixes/</link>
		<comments>http://www.adventuresinprogramming.com/2007/12/19/rails-202-some-new-defaults-and-a-few-fixes/#comments</comments>
		<pubDate>Wed, 19 Dec 2007 13:29:14 +0000</pubDate>
		<dc:creator>Kodewulf</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[Frameworks]]></category>

		<category><![CDATA[Libraries]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[rails]]></category>

		<category><![CDATA[ruby]]></category>

		<category><![CDATA[ruby on rails]]></category>

		<guid isPermaLink="false">http://www.adventuresinprogramming.com/2007/12/19/rails-202-some-new-defaults-and-a-few-fixes/</guid>
		<description><![CDATA[ Recently Rails has been updated to version 2.0. On December 17 2007 a minor revision was released taking it to 2.0.2.
From the website:
 Rails 2.0.2 is a drop-in replacement for Rails 2.0
To upgrade, just do “gem install rails” (if the gems are still not propagated, use—source http://gems.rubyonrails.org) or use the new rel_2-0-2 tag.
The rest [...]]]></description>
			<content:encoded><![CDATA[<p> Recently Rails has been updated to version 2.0. On December 17 2007 a minor revision was released taking it to 2.0.2.</p>
<p>From the website:</p>
<blockquote><p> <strong>Rails 2.0.2 is a drop-in replacement for Rails 2.0</strong><br />
To upgrade, just do “gem install rails” (if the gems are still not propagated, use—source http://gems.rubyonrails.org) or use the new <a href="http://dev.rubyonrails.org/svn/rails/tags/rel_2-0-2/">rel_2-0-2 tag</a>.</p>
<p>The rest of the changes are as follows:</p>
<p><strong>Action Pack</strong></p>
<ul>
<li>Added delete_via_redirect and put_via_redirect to integration testing #10497 [philodespotos]</li>
</ul>
<ul>
<li>Allow headers[‘Accept’] to be set by hand when calling xml_http_request #10461 [BMorearty]</li>
</ul>
<ul>
<li>Added <span class="caps">OPTIONS</span> to list of default accepted <span class="caps">HTTP</span> methods #10449 [holoway]</li>
</ul>
<ul>
<li>Added option to pass proc to ActionController::Base.asset_host for maximum configurability #10521 [chuyeow]. Example:ActionController::Base.asset_host = Proc.new { |source|   if source.starts_with?(’/images’)     “http://images.example.com”    else     “http://assets.example.com”    end }</li>
</ul>
<ul>
<li>Fixed that ActionView#file_exists? would be incorrect if @first_render is set #10569 [dbussink]</li>
</ul>
<ul>
<li>Added that Array#to_param calls to_param on all it’s elements #10473 [brandon]</li>
</ul>
<ul>
<li>Ensure asset cache directories are automatically created.  #10337 [Josh Peek, Cheah Chu Yeow]</li>
</ul>
<ul>
<li>render :xml and :json preserve custom content types.  #10388 [jmettraux, Cheah Chu Yeow]</li>
</ul>
<ul>
<li>Refactor Action View template handlers.  #10437, #10455 [Josh Peek]</li>
</ul>
<ul>
<li>Fix DoubleRenderError message and leave out mention of returning false from filters.  Closes #10380 [Frederick Cheung]</li>
</ul>
<ul>
<li>Clean up some cruft around ActionController::Base#head.  Closes #10417 [ssoroka]</li>
</ul>
<p><strong>Active Record</strong></p>
<ul>
<li>Ensure optimistic locking handles nil #lock_version values properly.  Closes #10510 [rick]</li>
</ul>
<ul>
<li>Make the Fixtures Test::Unit enhancements more supporting for double-loaded test cases.  Closes #10379 [brynary]</li>
</ul>
<ul>
<li>Fix that validates_acceptance_of still works for non-existent tables (useful for bootstrapping new databases). Closes #10474 [hasmanyjosh]</li>
</ul>
<ul>
<li>Ensure that the :uniq option for has_many :through associations retains the order.  #10463 [remvee]</li>
</ul>
<ul>
<li>Base.exists? doesn’t rescue exceptions to avoid hiding <span class="caps">SQL</span> errors.  #10458 [Michael Klishin]</li>
</ul>
<ul>
<li>Documentation: Active Record exceptions, destroy_all and delete_all.  #10444, #10447 [Michael Klishin]</li>
</ul>
<p><strong>Active Resource</strong></p>
<ul>
<li>Added more specific exceptions for 400, 401, and 403 (all descending from ClientError so existing rescues will work) #10326 [trek]</li>
</ul>
<ul>
<li>Correct empty response handling.  #10445 [seangeo]</li>
</ul>
<p><strong>Active Support</strong></p>
<ul>
<li>Ruby 1.9 compatibility.  #1689, #10466, #10468 [Cheah Chu Yeow, Pratik Naik, Jeremy Kemper]</li>
</ul>
<ul>
<li>TimeZone#to_s uses <span class="caps">UTC</span> rather than <span class="caps">GMT</span>.  #1689 [Cheah Chu Yeow]</li>
</ul>
<ul>
<li>Refactor of Hash#symbolize_keys! to use Hash#replace.  Closes #10420 [ReinH]</li>
</ul>
<ul>
<li>Fix HashWithIndifferentAccess#to_options! so it doesn’t clear the options hash.  Closes #10419 [ReinH]</li>
</ul>
<p><strong>Rails</strong></p>
<ul>
<li>Changed the default database from mysql to sqlite3, so now running “rails myapp” will have a config/database.yml that’s setup for SQLite3 (which in <span class="caps">OS X</span> Leopard is installed by default, so is the gem, so everything Just Works with no database configuration at all). To get a Rails application preconfigured for MySQL, just run “rails -d mysql myapp” [DHH]</li>
</ul>
<ul>
<li>Turned on ActionView::Base.cache_template_loading by default in config/environments/production.rb to prevent file system stat calls for every template loading to see if it changed (this means that you have to restart the application to see template changes in production mode) [DHH]</li>
</ul>
<ul>
<li>Introduce `rake secret` to output a crytographically secure secret key for use with cookie sessions #10363 [revans]</li>
</ul>
<ul>
<li>Fixed that local database creation should consider 127.0.0.1 local #9026 [parcelbrat]</li>
</ul>
<ul>
<li>Fixed that functional tests generated for scaffolds should use fixture calls instead of hard-coded IDs #10435 [boone]</li>
</ul>
<ul>
<li>Added db:migrate:redo and db:migrate:reset for rerunning existing migrations #10431, #10432  [matt]</li>
</ul>
<ul>
<li><span class="caps">RAILS</span>_GEM_VERSION may be double-quoted also.  #10443 [James Cox]</li>
</ul>
<ul>
<li>Update rails:freeze:gems to work with RubyGems 0.9.5.  [Jeremy Kemper]</li>
</ul>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.adventuresinprogramming.com/2007/12/19/rails-202-some-new-defaults-and-a-few-fixes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PRADO 3.1.0 Beta</title>
		<link>http://www.adventuresinprogramming.com/2007/04/22/prado-310-beta/</link>
		<comments>http://www.adventuresinprogramming.com/2007/04/22/prado-310-beta/#comments</comments>
		<pubDate>Sun, 22 Apr 2007 16:47:10 +0000</pubDate>
		<dc:creator>Kodewulf</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[Frameworks]]></category>

		<category><![CDATA[Libraries]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[framework]]></category>

		<category><![CDATA[library]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[prado]]></category>

		<guid isPermaLink="false">http://adventuresinprogramming.com.s22377.gridserver.com/2007/04/22/prado-310-beta/</guid>
		<description><![CDATA[Version 3.1.0 of the PRADO PHP framework has gone into beta.  PRADO is a component-based and event-driven programming framework for developing Web applications in PHP 5. The beta, as well as support forums and documentation can be found at the official PRADO website.
We are proud to announce the BETA release of PRADO 3.1.0. This [...]]]></description>
			<content:encoded><![CDATA[<p>Version 3.1.0 of the PRADO PHP framework has gone into beta.  PRADO is a component-based and event-driven programming framework for developing Web applications in PHP 5. The beta, as well as support forums and documentation can be found at the official <a href="http://www.pradosoft.com" title="PRADO">PRADO</a> website.</p>
<blockquote><p>We are proud to announce the BETA release of PRADO 3.1.0. This is the result of nearly one year of hard work from the PRADO Group and represents a major milestone in the PRADO development. We hereby thank all PRADO developers and supporters. Please note, since this is a beta release, part of the code (especially those related with new features) may not be stable and are subject to change. Be very cautious if you intend to use this release in a production environment.</p>
<p>WHAT&#8217;S NEW IN THIS RELEASE<br />
- DB access: added three layers of database support, including PDO-based data access, Active Record and SqlMap.<br />
- Active controls: a list of AJAX-enabled Web controls.<br />
- Web services: added SOAP and JSON services.<br />
- TOutputCache: a control that caches selective parts of rendered HTML pages and can improve performance significantly.<br />
- TShellApplication: the base class for PRADO command line application<br />
- TDbCache: a generic cache module using database as persistent storage<br />
- TDbUserManager: a database-driven user manager module<br />
- TClientScriptLoader: a control for loading JavaScript libraries<br />
- Added five new demos, including chat, currency-converter, soap, sqlmap and time-tracker.<br />
- Many minor feature enhancements and bug fixes.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.adventuresinprogramming.com/2007/04/22/prado-310-beta/feed/</wfw:commentRss>
		</item>
		<item>
		<title>xPDO</title>
		<link>http://www.adventuresinprogramming.com/2007/03/26/xpdo/</link>
		<comments>http://www.adventuresinprogramming.com/2007/03/26/xpdo/#comments</comments>
		<pubDate>Tue, 27 Mar 2007 05:18:50 +0000</pubDate>
		<dc:creator>Kodewulf</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[Frameworks]]></category>

		<category><![CDATA[Libraries]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[cmf]]></category>

		<category><![CDATA[data access]]></category>

		<category><![CDATA[modx]]></category>

		<category><![CDATA[object-relational bridge]]></category>

		<category><![CDATA[openexpedio]]></category>

		<category><![CDATA[orb]]></category>

		<category><![CDATA[pdo]]></category>

		<category><![CDATA[xpdo]]></category>

		<guid isPermaLink="false">http://adventuresinprogramming.com.s22377.gridserver.com/2007/03/26/xpdo/</guid>
		<description><![CDATA[For those interested in data access libraries for PHP, the OpenExpedio project is well worth a look at.  It will be part of the core for the upcoming release of MODx CMF. I haven&#8217;t had a chance to delve into the code to deeply, so any comments about your experiences with this library will [...]]]></description>
			<content:encoded><![CDATA[<p>For those interested in data access libraries for PHP, the <a href="http://xpdo.org/" title="OpenExpedio">OpenExpedio</a> project is well worth a look at.  It will be part of the core for the upcoming release of <a href="http://modxcms.com/" title="MODx CMF">MODx CMF</a>. I haven&#8217;t had a chance to delve into the code to deeply, so any comments about your experiences with this library will be greatly appreciated.</p>
<blockquote><p>OpenExpedio is our name for open eXtensions to PDO. It&#8217;s a light-weight ORB (object-relational bridge) library that works on PHP 4 and 5, and takes advantage of the newly adopted standard for database persistence in PHP 5.1+, PDO. It implements the very simple, but effective Active Record pattern for data access.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.adventuresinprogramming.com/2007/03/26/xpdo/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Been a long time</title>
		<link>http://www.adventuresinprogramming.com/2007/03/12/been-a-long-time/</link>
		<comments>http://www.adventuresinprogramming.com/2007/03/12/been-a-long-time/#comments</comments>
		<pubDate>Tue, 13 Mar 2007 06:16:20 +0000</pubDate>
		<dc:creator>Kodewulf</dc:creator>
		
		<category><![CDATA[News]]></category>

		<category><![CDATA[lua]]></category>

		<category><![CDATA[scripting]]></category>

		<category><![CDATA[web services]]></category>

		<guid isPermaLink="false">http://adventuresinprogramming.com.s22377.gridserver.com/2007/03/12/been-a-long-time/</guid>
		<description><![CDATA[It has been a while since I&#8217;ve updated Adventures in Programming.  One of the reasons for this is that I haven&#8217;t been out and about scouring the internet for development related articles as much as I should have been. The other is that I decided to learn a new scripting language called LUA.  [...]]]></description>
			<content:encoded><![CDATA[<p>It has been a while since I&#8217;ve updated Adventures in Programming.  One of the reasons for this is that I haven&#8217;t been out and about scouring the internet for development related articles as much as I should have been. The other is that I decided to learn a new scripting language called LUA.  It is a very popular language used very often as a scripting engine in games, ie. Farcry and World of Warcraft.  I&#8217;ve managed to created a few addons for World of Warcraft that can be found <a title="World of Warcraft Addons" target="_blank" href="http://kodewulf.wowinterface.com">here</a>.</p>
<p></p>
<p>I&#8217;m also delving deeper into the nuances of the newest version of PHP and am also getting AJAX and Web Services under the belt. <img src="http://www.adventuresinprogramming.com/templates/default/img/emoticons/smile.png" alt=":-)" style="display: inline; vertical-align: bottom;" class="emoticon" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.adventuresinprogramming.com/2007/03/12/been-a-long-time/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Phising Exploit Discovered in ‘Google Public Search Service’</title>
		<link>http://www.adventuresinprogramming.com/2006/09/16/phising-exploit-discovered-in-%e2%80%98google-public-search-service%e2%80%99/</link>
		<comments>http://www.adventuresinprogramming.com/2006/09/16/phising-exploit-discovered-in-%e2%80%98google-public-search-service%e2%80%99/#comments</comments>
		<pubDate>Sat, 16 Sep 2006 13:09:59 +0000</pubDate>
		<dc:creator>Kodewulf</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[exploit]]></category>

		<category><![CDATA[google]]></category>

		<category><![CDATA[phising]]></category>

		<guid isPermaLink="false">http://adventuresinprogramming.com.s22377.gridserver.com/2006/09/16/phising-exploit-discovered-in-%e2%80%98google-public-search-service%e2%80%99/</guid>
		<description><![CDATA[Eric Farraro from software.dev discovered a nasty hole in the Google Public Search Service.
Yesterday I mentioned that I had discovered an exploit in a little known service from a major web company. It turns out that that exploit is in a little known service called ‘Google Public Service Search’. This service is meant for universities [...]]]></description>
			<content:encoded><![CDATA[<p>Eric Farraro from <a href="http://ericfarraro.com" title="Software development in the daily life of Eric Farraro">software.dev</a> discovered a <a href="http://ericfarraro.com/?p=6" title="Phising Exploit Discovered in ‘Google Public Search Service’">nasty hole</a> in the Google Public Search Service.</p>
<blockquote><p>Yesterday I mentioned that I had discovered an exploit in a little known service from a major web company. It turns out that that exploit is in a little known service called ‘Google Public Service Search’. This service is meant for universities or other non-profit organizations to add a ‘Google’ search to their website. It differs from the other free Google site search in that it allows you to customize the header and footer of the search results page. It’s interesting to note that the code for your header and footer is actually hosted by Google, on their server.</p></blockquote>
<p>You can read the original <a href="http://ericfarraro.com/?p=6" title="Phising Exploit Discovered in ‘Google Public Search Service’">entry</a> on his <a href="http://ericfarraro.com" title="Software development in the daily life of Eric Farraro">blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.adventuresinprogramming.com/2006/09/16/phising-exploit-discovered-in-%e2%80%98google-public-search-service%e2%80%99/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dreamweaver Killer: Cross Platform Open Source (Javascript, HTML, CSS) IDE</title>
		<link>http://www.adventuresinprogramming.com/2006/07/28/dreamweaver-killer-cross-platform-open-source-javascript-html-css-ide/</link>
		<comments>http://www.adventuresinprogramming.com/2006/07/28/dreamweaver-killer-cross-platform-open-source-javascript-html-css-ide/#comments</comments>
		<pubDate>Fri, 28 Jul 2006 17:16:11 +0000</pubDate>
		<dc:creator>Kodewulf</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[Digg]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[aptana]]></category>

		<category><![CDATA[cross-platform]]></category>

		<category><![CDATA[ide]]></category>

		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://adventuresinprogramming.com.s22377.gridserver.com/2006/07/28/dreamweaver-killer-cross-platform-open-source-javascript-html-css-ide/</guid>
		<description><![CDATA[Digg: Dreamweaver Killer: Cross Platform Open Source (Javascript, HTML, CSS) IDE
Aptana is a robust, JavaScript-focused IDE for building dynamic web applications. Highlights include the following features: Code Assist on JavaScript, HTML, and CSS languages, including your own JavaScript functions Outliner that gives a snapshot view of your JavaScript, HTML, and CSS code structure Error and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://digg.com/programming/Dreamweaver_Killer_Cross_Platform_Open_Source_Javascript_HTML_CSS_IDE" title="Dreamweaver Killer: Cross Platform Open Source (Javascript, HTML, CSS) IDE">Digg: Dreamweaver Killer: Cross Platform Open Source (Javascript, HTML, CSS) IDE</a></p>
<blockquote><p>Aptana is a robust, JavaScript-focused IDE for building dynamic web applications. Highlights include the following features: Code Assist on JavaScript, HTML, and CSS languages, including your own JavaScript functions Outliner that gives a snapshot view of your JavaScript, HTML, and CSS code structure Error and warning notification.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.adventuresinprogramming.com/2006/07/28/dreamweaver-killer-cross-platform-open-source-javascript-html-css-ide/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Digg: Five common PHP design patterns</title>
		<link>http://www.adventuresinprogramming.com/2006/07/19/digg-five-common-php-design-patterns/</link>
		<comments>http://www.adventuresinprogramming.com/2006/07/19/digg-five-common-php-design-patterns/#comments</comments>
		<pubDate>Wed, 19 Jul 2006 12:59:44 +0000</pubDate>
		<dc:creator>Kodewulf</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[Digg]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[design pattern]]></category>

		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://adventuresinprogramming.com.s22377.gridserver.com/2006/07/19/digg-five-common-php-design-patterns/</guid>
		<description><![CDATA[Digg: Five common PHP design patterns
This article explains five widely used design patterns in PHP with sample code to demonstrate each pattern. Intermediate level.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://digg.com/programming/Five_common_PHP_design_patterns" title="Five common PHP design patterns">Digg: Five common PHP design patterns</a></p>
<blockquote><p>This article explains five widely used design patterns in PHP with sample code to demonstrate each pattern. Intermediate level.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.adventuresinprogramming.com/2006/07/19/digg-five-common-php-design-patterns/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Digg: Open-source LAMP a beacon to developers</title>
		<link>http://www.adventuresinprogramming.com/2006/07/15/digg-open-source-lamp-a-beacon-to-developers/</link>
		<comments>http://www.adventuresinprogramming.com/2006/07/15/digg-open-source-lamp-a-beacon-to-developers/#comments</comments>
		<pubDate>Sun, 16 Jul 2006 03:39:59 +0000</pubDate>
		<dc:creator>Kodewulf</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[Digg]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[apache]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[mysql]]></category>

		<category><![CDATA[perl]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://adventuresinprogramming.com.s22377.gridserver.com/2006/07/15/digg-open-source-lamp-a-beacon-to-developers/</guid>
		<description><![CDATA[Digg: Open-source LAMP a beacon to developers
The so-called LAMP stack of open-source software&#8211;which includes the Linux operating system, Apache Web server, MySQL database and scripting languages PHP, Perl or Python&#8211;is pushing its way into mainstream corporate computing.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://digg.com/programming/Open-source_LAMP_a_beacon_to_developers" title="Digg: Open-source LAMP a beacon to developers">Digg: Open-source LAMP a beacon to developers</a></p>
<blockquote><p>The so-called LAMP stack of open-source software&#8211;which includes the Linux operating system, Apache Web server, MySQL database and scripting languages PHP, Perl or Python&#8211;is pushing its way into mainstream corporate computing.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.adventuresinprogramming.com/2006/07/15/digg-open-source-lamp-a-beacon-to-developers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>jQuery</title>
		<link>http://www.adventuresinprogramming.com/2006/07/15/jquery/</link>
		<comments>http://www.adventuresinprogramming.com/2006/07/15/jquery/#comments</comments>
		<pubDate>Sat, 15 Jul 2006 11:58:13 +0000</pubDate>
		<dc:creator>Kodewulf</dc:creator>
		
		<category><![CDATA[Development]]></category>

		<category><![CDATA[Libraries]]></category>

		<category><![CDATA[Programming]]></category>

		<category><![CDATA[ajax]]></category>

		<category><![CDATA[dom scripting]]></category>

		<category><![CDATA[framework]]></category>

		<category><![CDATA[Javascript]]></category>

		<category><![CDATA[jquery]]></category>

		<category><![CDATA[library]]></category>

		<guid isPermaLink="false">http://adventuresinprogramming.com.s22377.gridserver.com/2006/07/15/jquery/</guid>
		<description><![CDATA[jQuery
jQuery is a new type of Javascript library. It is not a huge, bloated, framework promising the best in AJAX - nor is just a set of needlessly complex enhancements - jQuery is designed to change the way that you write Javascript.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://jquery.com" title="jQuery">jQuery</a></p>
<blockquote><p><a href="http://jquery.com" title="jQuery">jQuery</a> is a new type of Javascript library. It is not a huge, bloated, framework promising the best in AJAX - nor is just a set of needlessly complex enhancements - jQuery is designed to change the way that you write Javascript.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.adventuresinprogramming.com/2006/07/15/jquery/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
