<?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>Vos Virtual Network &#187; Web 2.0</title>
	<atom:link href="http://vvn.net/wp/tag/web-20/feed/" rel="self" type="application/rss+xml" />
	<link>http://vvn.net/wp</link>
	<description>Jazz Like Code and Music For Life</description>
	<lastBuildDate>Fri, 04 Dec 2009 21:14: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>Review: MySQL in a Nutshell</title>
		<link>http://vvn.net/wp/2008/10/28/review-mysql-in-a-nutshell/</link>
		<comments>http://vvn.net/wp/2008/10/28/review-mysql-in-a-nutshell/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 11:29:04 +0000</pubDate>
		<dc:creator>daniel</dc:creator>
				<category><![CDATA[Bibliography]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Webdesignology]]></category>
		<category><![CDATA[book review]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[mySQL]]></category>
		<category><![CDATA[open-source]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[web application]]></category>

		<guid isPermaLink="false">http://vvn.net/wp/?p=1011</guid>
		<description><![CDATA[Book Review: MySQL in a Nutshell, 2nd Edition, by Russell J.T. Dyer, published by O&#8217;Reilly Media, April 2008, 545 pages, ISBN:0-596-51433-6, price: US $34.99 (Reviewed by Daniel Vos)
Behind virtually every web application, there&#8217;s a database management system.
Ever used Facebook? Guess what? It runs on a (huge!) database. What about your favorite discussion forum? Are you [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Book Review:</strong> <a title="MySQL in a Nutshell" href="http://oreilly.com/catalog/9780596514334/" target="_blank">MySQL in a Nutshell, 2nd Edition</a>, by Russell J.T. Dyer, published by O&#8217;Reilly Media, April 2008, 545 pages, ISBN:0-596-51433-6, price: US $34.99 (Reviewed by Daniel Vos)</p>
<div id="attachment_1013" class="wp-caption aligncenter" style="width: 345px"><a href="http://vvn.net/wp/wp-content/uploads/2008/10/mysql_nutshell_2nded.jpeg"><img class="size-full wp-image-1013" title="MySQL in a Nutshell, 2nd ed." src="http://vvn.net/wp/wp-content/uploads/2008/10/mysql_nutshell_2nded.jpeg" alt="MySQL in a Nutshell, 2nd ed." width="335" height="500" /></a><p class="wp-caption-text">MySQL in a Nutshell, 2nd ed.</p></div>
<p>Behind virtually every web application, there&#8217;s a database management system.</p>
<p>Ever used Facebook? Guess what? It runs on a (huge!) database. What about your favorite discussion forum? Are you into auto maintenance, fly fishing, or (if you&#8217;re like my wife) do you like to swap recipes, trade amusing anecdotes about your kids, or post blog articles? All database-driven.</p>
<p>Many of the most popular, thriving websites are database driven. Behind the scenes many Web 2.0 websites are running <a href="http://www.mysql.com/">MySQL</a>, <a href="http://www.sun.com/">Sun Microsystem</a>&#8217;s open source database. (There are other popular databases from Microsoft, Oracle, and IBM &#8212; but that&#8217;s another story.)</p>
<p>MySQL is the M in LAMP &#8212; the very popular Open Source web site platform/framework (Linux, Apache, MySQL, Perl, PHP, Python). MySQL is the database used with WordPress (the software that runs this VVN blog). MySQL is the default database server used with Ruby on Rails.</p>
<p>If MySQL is the world&#8217;s most popular open-source database, then <em>MySQL in a Nutshell (2nd ed.)</em> by <a href="http://russell.dyerhouse.com/cgi-bin/index.cgi">Russell J. T. Dyer</a> is the Encyclopedia Britannica of MySQL. Weighing in at 545 pages, the book is divided into five parts:</p>
<ol>
<li><strong>Tutorial</strong> &#8211; A brief tutorial on installing MySQL and performing basic database management tasks (35 pages).</li>
<li><strong>Statement and Function Reference</strong> &#8211; A comprehensive reference to <a href="http://www.w3schools.com/sql/default.asp">SQL</a> statements, clauses, and functions implemented by MySQL. (SQL is the standard language implemented by all major database management systems, but MySQL, Oracle, MS SQLServer, and the rest all have their own quirks.) This section weighs in at nearly 300 pages, and covers database user administration, data manipulation, and database replication, and more. String function, date and time functions, mathematical functions, and flow control functions are described here, too.</li>
<li><strong>Client and Server Administration</strong> &#8211; A guide to MySQL server and client configuration and administration (90 pages). This is where you will learn the difference between <em>mysqld</em> (the database server) and <em>mysql</em> (the command-line client), and the configuration options of each. A reference to command-line utilities such as <em>mysqladmin, mysqlcheck</em> and <em>mysqldump </em>is also included.</li>
<li><strong>Programming APIs</strong> &#8211; A 100-page guide to three popular programming language APIs &#8211; <a href="http://en.wikipedia.org/wiki/C_programming_language">C</a>, <a href="http://www.perl.org/">Perl</a>, and <a href="http://www.php.net/">PHP</a> &#8211; which websites or programs use to interface with MySQL.</li>
<li><strong>Quick Reference</strong> &#8211; A 15-page set of appendices with a quick reference to the data types, operators (arithmetic, relational, and logical), and environment variables used by MySQL.</li>
</ol>
<p>If you are an absolute beginner to MySQL and database management systems, this book might not be the best first choice for you. A good place to start instead might be <a href="http://www.netbeans.org/kb/docs/php/wish-list-tutorial-main-page.html">here</a>. But if you know that MySQL is in your software development or web site development future, <em>MySQL in a Nutshell</em> deserves a place on your bookshelf.</p>
]]></content:encoded>
			<wfw:commentRss>http://vvn.net/wp/2008/10/28/review-mysql-in-a-nutshell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Designing with Web Standards Two Years On</title>
		<link>http://vvn.net/wp/2008/07/26/designing-with-web-standards-two-years-on/</link>
		<comments>http://vvn.net/wp/2008/07/26/designing-with-web-standards-two-years-on/#comments</comments>
		<pubDate>Sat, 26 Jul 2008 15:12:59 +0000</pubDate>
		<dc:creator>daniel</dc:creator>
				<category><![CDATA[History]]></category>
		<category><![CDATA[Webdesignology]]></category>
		<category><![CDATA[Webstandardology]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[DWWS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[market analysis]]></category>
		<category><![CDATA[mobile web]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://vvn.net/wp/?p=193</guid>
		<description><![CDATA[Editors Note: Special guest author, Daniel Vos was invited to write a book review of Designing with Web Standards. Daniel is a graduate of Washington and Lee University (and also studied at Oxford.) Currently, he is an academic coordinator, budding web designer, and occasional writer for Roanoke area newspapers and business journals.
In my last post, [...]]]></description>
			<content:encoded><![CDATA[<p><em><strong>Editors Note:</strong> Special guest author, Daniel Vos was invited to write a book review of <strong>Designing with Web Standards</strong>. Daniel is a graduate of Washington and Lee University (and also studied at Oxford.) Currently, he is an academic coordinator, budding web designer, and occasional writer for Roanoke area newspapers and business journals.</em></p>
<p>In my <a href="http://vvn.net/wp/2008/07/19/a-web-design-classic-designing-with-web-standards/" target="_blank">last post</a>, I explained five reasons why <strong><em>Designing with Web Standards</em></strong> by Jeffrey Zeldman is a must-read classic of web design. In this post, <strong>I want to start a conversation</strong> about new developments in web standards since the second edition of the book was published two years ago.</p>
<p>As <em>DWWS</em> 2nd edition went to press in the second half of 2006:</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Internet_Explorer_6" target="_self">Internet 	Explorer 6</a> was the most popular browser, with about 77% of the market share; meanwhile, Firefox 1.5 ran a distant second in 	popularity, at 10.5% of the market share. (Source: <a href="http://marketshare.hitslink.com/report.aspx?qprid=2&amp;qpmr=40&amp;qpdt=1&amp;qpct=3&amp;qptimeframe=M&amp;qpsp=93&amp;qpnp=1" target="_blank">Market Share</a>).</li>
<li><a href="http://en.wikipedia.org/wiki/Internet_Explorer_7" target="_blank">Internet 	Explorer 7</a> was just being released.</li>
<li>Not long after its first birthday, <a href="http://www.adaptivepath.com/ideas/essays/archives/000385.php" target="_blank">Ajax</a> was already (to quote Zeldman) &#8220;stealing the rich applications market from Flash and generating nutty and probably unsustainable excitement.&#8221;</li>
<li>Microsoft was about to release <a href="http://en.wikipedia.org/wiki/Microsoft_Expression_Web" target="_self">Expression Web</a>, a relatively standards-compatible WYSIWYG web page editor to replace its notoriously bad <a href="http://en.wikipedia.org/wiki/Microsoft_FrontPage" target="_blank">FrontPage</a> editor and compete with Adobe&#8217;s standards-compatible <a href="http://en.wikipedia.org/wiki/Adobe_Dreamweaver" target="_self">Dreamweaver</a>.</li>
<li>Implementations of CSS across browsers remained inconsistent: Zeldman documented <a href="http://thinkdrastic.net/journal/wp-content/uploads/2006/11/IE_combi_float_bug_testcase.htm" target="_blank">the Float bug</a> in IE6/Windows, and other standardistas recommended <a href="http://css-discuss.incutio.com/?page=BoxModelHack" target="_blank">the Simplified Box Model Hack</a> to address different interpretations of the <a href="http://redmelon.net/tstme/box_model/" target="_blank">CSS box model</a>.</li>
</ul>
<p>Here&#8217;s where we stand today:</p>
<ul>
<li>Internet Explorer 7.0 has less than 50% of the browser market share, although IE still dominates nearly 75% of the market. But Internet Explorer use overall has been steadily declining as Firefox, Safari, and Opera continue to win more users. (Source: <a href="http://marketshare.hitslink.com/report.aspx?qprid=1#" target="_blank">Market Share</a>).</li>
<li>Browser bug watchers are still at it, and still finding new bugs and workarounds: See, for example, <a href="http://www.positioniseverything.net/" target="_blank">Position is Everything</a>.</li>
<li>The Web Standards project has launched <a href="http://en.wikipedia.org/wiki/Acid3">AcidTest 3.0</a>, which tests CSS, DOM, ECMAScript, and XML compliance. Verdict? <strong>All browsers still have plenty of room to grow</strong> &#8212; some more than others, I&#8217;m afraid!</li>
<li><a href="http://www.opera.com/" target="_blank">Opera</a> recently announced their <a href="http://www.opera.com/wsc/" target="_self">Web Standards Curriculum</a>, which they plan to complete by Sept 2008. Here&#8217;s hoping they finish what they&#8217;ve started. This could be a big help for those educating the next generation of web designers.</li>
<li>Finally, the ability to separate content from presentation via semantic XHTML markup and CSS will continue to be crucially important as the mobile web browser market grows. The W3C <a href="http://www.w3.org/TR/mobile-bp/" target="_self">Mobile Web Best Practices</a> are worth a glance, given <a href="http://www.networkworld.com/news/2007/053107-mobile-device-use-surges.html?zb&amp;rc=wireless_pda" target="_self">predictions</a> that <strong>there will be 82 million Internet-enabled mobile devices within three years.</strong></li>
<li>Adoption of web technologies which promote greater interactivity continues to grow. Was Zeldman right about Ajax generating unsustainable excitement?</li>
<li>Big software publishing companies such as Microsoft and Adobe seem to be making their products more and more standards-compatible.</li>
</ul>
<p>Web standards remains an exciting field, because new standards are still emerging, and using them (rather than proprietary solutions) is still the best way to publish <strong>elegant, attractive, findable, and accessible</strong> content<strong>.</strong> Books like <a href="http://www.zeldman.com/dwws/" target="_blank"><em>Designing with Web Standards</em></a> by <a href="http://www.zeldman.com/" target="_blank">Jeffrey Zeldman</a> got the ball rolling, and now it&#8217;s up to us to use the Web to market our products and services, target our audiences, and (perhaps most importantly) <strong>to build and sustain relationships</strong>.</p>
<p>I&#8217;ve said my bit. <strong>What do you think?</strong> What are some of the most important developments in web standards in the past 18 to 24 months?</p>
]]></content:encoded>
			<wfw:commentRss>http://vvn.net/wp/2008/07/26/designing-with-web-standards-two-years-on/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mongrel 1.1.1</title>
		<link>http://vvn.net/wp/2007/11/20/mongrel-111/</link>
		<comments>http://vvn.net/wp/2007/11/20/mongrel-111/#comments</comments>
		<pubDate>Tue, 20 Nov 2007 10:56:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Webdesignology]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[web server]]></category>

		<guid isPermaLink="false">http://vvn.net/wp/?p=64</guid>
		<description><![CDATA[This one (Mongrel onepointonepointone ) is just a little bug fix, fixing the Mongrel 1.1 mongrel_rails restart bug. Mongrel is a web server, that is cooler than a brick, and if you have used TomCat in the past, or heard of TomCat, you might understand the inside joke (TomCat vs. Mongrel (Dog)).
Most of the cool [...]]]></description>
			<content:encoded><![CDATA[<p>This one (<a href="http://mongrel.rubyforge.org/news.html" target="_blank">Mongrel onepointonepointone</a> ) is just a little bug fix, fixing the Mongrel 1.1 mongrel_rails restart bug. Mongrel is a web server, that is cooler than <a title="Ruby WEBrick home page." href="http://www.webrick.org/" target="_blank">a brick</a>, and if you have used <a title="Apache TomCat start page." href="http://tomcat.apache.org/" target="_blank">TomCat</a> in the past, or <a title="From the horses mouth, why tomcat is called comcat." href="http://www.wellho.net/archives/2005/11/why_is_tomcat_c.html" target="_blank">heard of TomCat</a>, you might understand the inside joke (TomCat vs. Mongrel (Dog)).</p>
<p>Most of the cool people who understand this stuff (wink, wink), are letting the cat out of the bag, because <a title="Flickr photo shows dog on screen at RailsConf" href="http://www.flickr.com/photos/19932288@N00/177405737" target="_blank">a dog</a> is man&#8217;s best friend. But this really not really not a cat-fight, or even Cat vs. Dog fight, since <a title="James Duncan Davison - the author of TomCat" href="http://en.wikipedia.org/wiki/James_Duncan_Davidson" target="_blank">even the guy who wrote TomCat</a> has <a title="James Duncan Davison talks about Mongrel with Ruby on Rails at Railsconf." href="http://www.oreillynet.com/ruby/blog/2006/06/railsconf_2006_day_3_last_day.html" target="_blank">switched to Mongrel</a>.</p>
<p><strong>Update 10-Apr-2008</strong>:  <a title="Mongrel source code at the Trac system." href="http://mongrel.rubyforge.org/wiki" target="_blank">Mongrel foot prints lead here now.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://vvn.net/wp/2007/11/20/mongrel-111/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mongrel 1.1 release yesterday</title>
		<link>http://vvn.net/wp/2007/11/02/mongrel-11-release-yesterday/</link>
		<comments>http://vvn.net/wp/2007/11/02/mongrel-11-release-yesterday/#comments</comments>
		<pubDate>Fri, 02 Nov 2007 11:30:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://vvn.net/wp/?p=61</guid>
		<description><![CDATA[Mongrel 1.1 is out, with JRuby support. Mongrel_cluster is also updated to 1.0.4, with fixes for a Capistrano recipe bug. More excitement and more power &#8230;
see http://mongrel.rubyforge.org/news.html 
]]></description>
			<content:encoded><![CDATA[<p>Mongrel 1.1 is out, with JRuby support. Mongrel_cluster is also updated to 1.0.4, with fixes for a Capistrano recipe bug. More excitement and more power &#8230;</p>
<p>see <a href="http://mongrel.rubyforge.org/news.html">http://mongrel.rubyforge.org/news.html </a></p>
]]></content:encoded>
			<wfw:commentRss>http://vvn.net/wp/2007/11/02/mongrel-11-release-yesterday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pipes</title>
		<link>http://vvn.net/wp/2007/04/22/pipes/</link>
		<comments>http://vvn.net/wp/2007/04/22/pipes/#comments</comments>
		<pubDate>Sun, 22 Apr 2007 23:41:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ontology]]></category>
		<category><![CDATA[Webdesignology]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://vvn.net/wp/?p=52</guid>
		<description><![CDATA[
Have you checked out the new Yahoo Pipes!
It is a like an &#8220;RSS feeds on steroids&#8221;. Pipes is an interactive feed agregator and manipulator. Using Pipes, you can create feeds that are more powerful, useful and relevant.
]]></description>
			<content:encoded><![CDATA[<p><img title="PIPES!" src="http://l.yimg.com/us.yimg.com/i/us/pps/logo_1.gif" alt="PIPES!" /></p>
<p>Have you checked out the <a title="Yahoo Pipes" href="http://pipes.yahoo.com/pipes/" target="_blank">new Yahoo Pipes</a>!</p>
<p>It is a like an &#8220;RSS feeds on steroids&#8221;. <strong>Pipes</strong> is an interactive feed agregator and manipulator. Using Pipes, you can create feeds that are more powerful, useful and relevant.</p>
]]></content:encoded>
			<wfw:commentRss>http://vvn.net/wp/2007/04/22/pipes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>30 Boxes &#8211; The Best Web Calendar?</title>
		<link>http://vvn.net/wp/2007/02/20/30-boxes-the-best-web-calendar/</link>
		<comments>http://vvn.net/wp/2007/02/20/30-boxes-the-best-web-calendar/#comments</comments>
		<pubDate>Tue, 20 Feb 2007 10:02:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Chronology]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[GTD]]></category>
		<category><![CDATA[open-id]]></category>
		<category><![CDATA[OpenID]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://vvn.net/wp/?p=45</guid>
		<description><![CDATA[Several months ago I was raving about 30 boxes &#8211; the calendar web-tool, todo list manager, and social networking thing. Then I quit using 30 boxes because I started using google calendar.
Just thought you might like to know that 30 boxes is still very cool, and they added a bunch of cool features since the [...]]]></description>
			<content:encoded><![CDATA[<p>Several months ago I was raving about <a title="30 boxes - Its Your Life" href="http://30boxes.com/">30 boxes</a> &#8211; the calendar web-tool, todo list manager, and social networking thing. Then I quit using 30 boxes because I started using <a title="Take the Google Calendar tour..." href="http://www.google.com/intl/en/googlecalendar/tour.html">google calendar.</a></p>
<p>Just thought you might like to know that 30 boxes is still very cool, and they added a bunch of cool features since the last time I checked.</p>
<p>30 boxes is a very cool web-calendar system. The only thing I don&#8217;t like about 30 boxes is having to log in &#8212; and it&#8217;s not their fault. Sometimes I am too lazy to login to a website for a few weeks. Some people are more pragmatic than me, and will keep trying things  until they find something that fits their lifestyle. Google makes it easier (<strong>to login</strong> to the calendar), since all the google apps are moving toward a common login or common ID for all the google apps.</p>
<p>Then along comes the <a href="http://openid.net/">Open-ID project</a> to make it easier to sign in to all web applications from one common ID management system. We&#8217;ll see if Open-ID catches on.</p>
]]></content:encoded>
			<wfw:commentRss>http://vvn.net/wp/2007/02/20/30-boxes-the-best-web-calendar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Todoist &#8211; Simple To Do List Manager</title>
		<link>http://vvn.net/wp/2007/02/07/todoist-simple-todo-list-manager/</link>
		<comments>http://vvn.net/wp/2007/02/07/todoist-simple-todo-list-manager/#comments</comments>
		<pubDate>Wed, 07 Feb 2007 10:08:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Methodology]]></category>
		<category><![CDATA[GTD]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[to-do list]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://vvn.net/wp/?p=43</guid>
		<description><![CDATA[&#8220;Todoist is a simple, efficient and dynamic todo list manager.
The main focus of the application is to help you get organized!
It&#8217;s a perfect fit for Getting Things Done people.&#8221;
]]></description>
			<content:encoded><![CDATA[<p>&#8220;<a href="http://todoist.com/" target="_blank">Todoist</a> is a simple, efficient and dynamic todo list manager.<br />
The main focus of the application is to help you get organized!<br />
It&#8217;s a perfect fit for <a href="http://vvn.net/wp/2006/08/16/gtd-getting-things-done/">Getting Things Done</a> people.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://vvn.net/wp/2007/02/07/todoist-simple-todo-list-manager/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mongrel 1.0.1 Released</title>
		<link>http://vvn.net/wp/2007/01/24/mongrel-101-released/</link>
		<comments>http://vvn.net/wp/2007/01/24/mongrel-101-released/#comments</comments>
		<pubDate>Wed, 24 Jan 2007 10:49:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Webdesignology]]></category>
		<category><![CDATA[mongrel]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[RoR]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[web server]]></category>

		<guid isPermaLink="false">http://vvn.net/wp/?p=42</guid>
		<description><![CDATA[What a nice birthday present for me. Mongrel 1.0.1 is released. You can do cool stuff with it.
]]></description>
			<content:encoded><![CDATA[<p>What a nice birthday present for me. <a title="Mongrel is a Ruby  web server." href="http://mongrel.rubyforge.org/">Mongrel</a> 1.0.1 is released. You can do cool stuff with it.</p>
]]></content:encoded>
			<wfw:commentRss>http://vvn.net/wp/2007/01/24/mongrel-101-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RadRails IDE &#8211; Ruby on Rails &#8211; Tutorial</title>
		<link>http://vvn.net/wp/2006/09/23/radrails-ruby-on-rails-ide-announced/</link>
		<comments>http://vvn.net/wp/2006/09/23/radrails-ruby-on-rails-ide-announced/#comments</comments>
		<pubDate>Sat, 23 Sep 2006 16:42:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Methodology]]></category>
		<category><![CDATA[Webdesignology]]></category>
		<category><![CDATA[application development]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[developing]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[programmer]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[RoR]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://vvn.net/wp/?p=38</guid>
		<description><![CDATA[RadRails is the Eclipse-based IDE for Ruby on Rails. Learn about installing RadRails, the structure and use of the application window, and the primary steps in developing an application.
// --&#62;
// --&#62; Ruby on Rails has hit the big time. With that popularity has come the desire by developers for an integrated development environment (IDE) that [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.radrails.org/">RadRails</a> is the <a href="http://www.eclipse.org/">Eclipse</a>-based <a href="http://en.wikipedia.org/wiki/Integrated_development_environment">IDE</a> for <a href="http://www.rubyonrails.org/">Ruby on Rails</a>. Learn about installing RadRails, the structure and use of the application window, and the primary steps in developing an application.<!--START RESERVED FOR FUTURE USE INCLUDE FILES--><script type="text/javascript"><!--
 if (document.referrer&amp;#038;&amp;document.referrer!="") {     // document.write(document.referrer);    var q = document.referrer;    var engine = q;    var isG = engine.search(/google\.com/i);    var searchTerms;    //var searchTermsForDisplay;    if (isG != -1) {  	   var i = q.search(/q=/); 	   var q2 = q.substring(i+2); 	   var j = q2.search(/&amp;#038;/); 	   j = (j == -1)?q2.length:j; 	   searchTerms = q.substring(i+2,i+2+j); 	   if (searchTerms.length != 0) { 	       searchQuery(searchTerms); 	       document.write("</p>
<div id=\"contents\"></div>
<p>"); 	   }    }  } //-->
// --&gt;
// --&gt;</script><!--END RESERVED FOR FUTURE USE INCLUDE FILES--> Ruby on Rails has hit the big time. With that popularity has come the desire by developers for an <strong>integrated development environment</strong> (IDE) that makes Rails even more accessible. RadRails, a Eclipse-based environment, fulfills that need for many developers.</p>
<p><a href="http://www-128.ibm.com/developerworks/opensource/library/os-ecl-radrails/?ca=dgr-lnxw09radrails">This article introduces the RadRails IDE</a></p>
]]></content:encoded>
			<wfw:commentRss>http://vvn.net/wp/2006/09/23/radrails-ruby-on-rails-ide-announced/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>11 Suggestions For Not Being a Dot-Bomb 2.0</title>
		<link>http://vvn.net/wp/2006/07/17/11-suggestions-for-not-being-a-dot-bomb-20/</link>
		<comments>http://vvn.net/wp/2006/07/17/11-suggestions-for-not-being-a-dot-bomb-20/#comments</comments>
		<pubDate>Mon, 17 Jul 2006 09:03:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Methodology]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[blogs]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://vvn.net/wp/?p=17</guid>
		<description><![CDATA[I love the 11 Suggestions For Not Being a Dot-Bomb 2.0 . A good dose of reality is real zippy in the morning &#8211; like a fresh glass of carrot juice. Great article &#8212; but I&#8217;m not adding the guy to my blog roll.
]]></description>
			<content:encoded><![CDATA[<p>I love the <a title="11 Suggestions - the original article." href="http://www.dead20.com/2006/07/16/11-suggestions-for-not-being-a-dot-bomb-20/">11 Suggestions For Not Being a Dot-Bomb 2.0</a> . A good dose of reality is real zippy in the morning &#8211; like a fresh glass of carrot juice. Great article &#8212; but I&#8217;m not adding the guy to my <a href="http://vvn.net/wp/2006/07/16/how-to-manage-your-blog-roll/">blog roll</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://vvn.net/wp/2006/07/17/11-suggestions-for-not-being-a-dot-bomb-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
