<?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; FOSS</title>
	<atom:link href="http://vvn.net/wp/tag/foss/feed/" rel="self" type="application/rss+xml" />
	<link>http://vvn.net/wp</link>
	<description>Jazz Like Code and Music For Life</description>
	<lastBuildDate>Fri, 07 Jan 2011 19:46:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<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 &#8230; <a href="http://vvn.net/wp/2008/10/28/review-mysql-in-a-nutshell/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></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>&#8216;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>Open Source in the Enterprise &#8211; 2008</title>
		<link>http://vvn.net/wp/2008/10/17/open-source-in-the-enterprise-2008/</link>
		<comments>http://vvn.net/wp/2008/10/17/open-source-in-the-enterprise-2008/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 14:30:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[FOSSology]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[IT governance]]></category>
		<category><![CDATA[IT policy]]></category>
		<category><![CDATA[open-source]]></category>
		<category><![CDATA[opensource]]></category>

		<guid isPermaLink="false">http://vvn.net/wp/?p=1016</guid>
		<description><![CDATA[Open Source software projects and FOSS (free open source software) governance policies are becoming more visible at companies like Capgemini, Cisco, CompuWare, EDS, HP, IBM, Microsoft, Oracle, SAP, Sun, etc. The news about Microsoft&#8217;s Open Source Web Platform Installer probably &#8230; <a href="http://vvn.net/wp/2008/10/17/open-source-in-the-enterprise-2008/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Open Source software projects and FOSS (free open source software) governance policies are becoming more visible at companies like <a title="Open Source at CapGemini" href="http://www.capgemini.com/ctoblog/open-source/" target="_blank">Capgemini</a>, <a title="Cisco Open Source Tools" href="http://cosi-nms.sourceforge.net/" target="_blank">Cisco</a>, <a title="Compuware Open Source" href="http://www.compuware.com/pressroom/news/2006/5328_ENG_HTML.htm" target="_blank">CompuWare</a>, <a title="FOSS Governance at EDS" href="http://www.eds.com/insights/publications/synnovation/issue8.aspx" target="_blank">EDS</a>, <a title="HP Open Source Linux" href="http://www.hp.com/go/linux" target="_blank">HP</a>, <a title="IBM Open Source" href="http://www-03.ibm.com/opensource/" target="_blank">IBM</a>, <a title="Microsoft Open Source" href="http://www.microsoft.com/opensource/" target="_blank">Microsoft</a>, <a title="Free and Open Source at Oracle" href="http://oss.oracle.com/" target="_blank">Oracle</a>, <a title="SAP Open Source" href="https://www.sdn.sap.com/irj/sdn/standards-and-opensource" target="_blank">SAP</a>, <a title="Open Source at Sun" href="http://www.sun.com/software/opensource/index.jsp" target="_blank">Sun</a>, etc.</p>
<p>The <a title="TechCruch article on MS Web Platform Installer" href="http://www.techcrunch.com/2008/10/16/microsoft-puts-weight-behind-open-source-projects-with-web-platform-installer/" target="_blank">news about Microsoft&#8217;s Open Source Web Platform Installer</a> probably took a few people by surprise this week. Game plans and strategies are changing quickly, and <a title="EDS Open Source Governance" href="http://www.eds.com/insights/publications/synnovation/articles/synnovation_v3i2_EDS.pdf" target="_blank">enterprise open source governance policies</a> (PDF) may need to be reviewed or revised to keep up with the rapid pace of change. Projects like <a title="FOSSology" href="http://fossology.org/" target="_blank">FOSSology</a> and <a title="FossBazaar" href="https://fossbazaar.org/" target="_blank">FossBazaar</a> are designed to grapple with governance issues.</p>
<p><a title="Open Source in the Enterprise 2008" href="http://radar.oreilly.com/research/os-enterprise-report.html" target="_blank">Open Source in the Enterprise &#8211; 2008</a>, an O&#8217;Reilly Radar Report starts with the question/premise: &#8220;It&#8217;s no longer IF, but HOW?&#8221;  O&#8217;Reilly&#8217;s new report is for CIOs, CTOs, IT managers, and business owners who want to make smart decisions about deploying open source. <span style="color: #999999;">(Disclaimer: O&#8217;Reilly makes money selling books about open source software.)</span></p>
<p>So how do you use open source software in your business? How do you define policies for using open source? How do you govern IT? What are the best practices in the industry today?</p>
<p>The O&#8217;Reilly Radar Report, <em>Open Source in the Enterprise &#8211; 2008</em>, is authored by Bernard Golden (<a title="Navica Soft FOSS" href="http://www.navicasoft.com/" target="_blank">CEO of Navica</a>).</p>
<p>Mr. Golden starts out by telling us that open source is &#8220;growing at a compound rate of 55%&#8221;. The number of projects hosted at SourceForge has grown from around 12,500 in 2000 to nearly 200,000 by year-end 2007. However, Mr. Golden also reminds us that Open Source adoption statistics are not very reliable at this point:</p>
<blockquote><p>It is extremely challenging to assess how much open source is being used within enterprises today. One of the traditional methods of use identification (vendor reports) is missing, as most open source software is downloaded anonymously and copied/redistributed extensively. Self-reporting by enterprises cannot be relied upon, either, as many companies are unwilling to self-report in the interest of avoiding conflict with existing vendors or keeping competitive information confidential.</p></blockquote>
<p>He goes on to explain his method of research, which involved examining job posting data &#8212; looking for tell tale markers of Open Source adoption in various enterprises.</p>
<p>The report lists 6 drivers for Enterprise Open Source Adoption, and follows each with case studies, and analysis of best practices:</p>
<ol>
<li>Agility and Scale ( case study &#8211; PayPal)</li>
<li>Quality and Security (case study &#8211; Coverity)</li>
<li>Breaking Vendor Lockin (case study &#8211; Kaplan test services)</li>
<li>Cost (case study &#8211; Big Lots)</li>
<li>Sovereignty (case study &#8211; open source in Brazil)</li>
<li>Innovation (case study &#8211; AMQP at JP Morgan/Chase)</li>
</ol>
<p>The O&#8217;Reilly report concludes with details on how to create an <strong>Open Source Action Plan</strong>.</p>
<blockquote><p>The critical task at this stage of open source use is to bring it into the open and recognize that it will be an important part of IT initiatives going forward. Don’t underestimate this issue: a recent CIO magazine survey found that about 50% of enterprises claim that they are currently using open source, while 45% cited support concerns as a reason restricting its use—whereas the reality is that nearly every IT organization has open source running today. The first step to solving a problem is confronting it, and the challenge for early open source users is to be honest about their actual circumstances.</p></blockquote>
<p>I found the report to be well researched and written in a non-technical, jargon-free manner. The case studies are helpful. You might find the report helpful also.</p>
<p><span style="color: #999999;">Disclaimer: The values, viewpoints and opinions expressed are totally my own, and do not necessarily reflect the values, viewpoints, or opinions of my employer, clients, suppliers, or any other affiliation.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://vvn.net/wp/2008/10/17/open-source-in-the-enterprise-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wooby Wuvers Woundup</title>
		<link>http://vvn.net/wp/2008/09/15/wooby-wuvers-woundup/</link>
		<comments>http://vvn.net/wp/2008/09/15/wooby-wuvers-woundup/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 02:43:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CompuScriptology]]></category>
		<category><![CDATA[FOSSology]]></category>
		<category><![CDATA[DHH]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[IronRuby]]></category>
		<category><![CDATA[JRuby]]></category>
		<category><![CDATA[Obie Fernandez]]></category>
		<category><![CDATA[REST]]></category>
		<category><![CDATA[RoR]]></category>
		<category><![CDATA[RSpec]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[Scooby Do]]></category>
		<category><![CDATA[Tim Bray]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://vvn.net/wp/?p=839</guid>
		<description><![CDATA[Scooby-Do&#8217;s way of saying &#8220;Ruby Lovers Roundup&#8221;&#8230;  A quick review of recent happenings (and writings) in the Ruby  development community&#8230; and what a fun round up it is! The ruby rock stars are pushing agile development in sunny Florida &#8230; &#8230; <a href="http://vvn.net/wp/2008/09/15/wooby-wuvers-woundup/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Scooby-Do&#8217;s way of saying &#8220;Ruby Lovers Roundup&#8221;&#8230;  A quick review of recent happenings (and writings) in the Ruby  development community&#8230; and what a fun round up it is! The ruby rock stars are pushing agile development in sunny Florida &#8230; and the sunny Java guy is resting from Java to talk about Ruby RSpec RESTing and testing..</p>
<p><strong>Tim Bray</strong> took a break from his other stuff to <a title="Testing REST" href="http://www.tbray.org/ongoing/When/200x/2008/09/10/Misusing-RSpec" target="_blank">run more RSpec tests</a>. Is he RESTing or testing, or both at the same time? He&#8217;s <a title="Testing REST" href="http://www.tbray.org/ongoing/When/200x/2008/09/10/Misusing-RSpec" target="_blank">misusing RSpec</a> (like <a title="Andy McKee - Guitar Drifting" href="http://vvn.net/wp/2008/04/18/andy-mckee-guitar-drifting/">Andy McKee abuses the guitar</a>) &#8212; and <a title="Jazz Innovation and Scripting" href="http://vvn.net/wp/2008/08/30/jazz-innovation-scripting/">that kind of innovation</a> could lead to a cool new invention &#8212; but only if he plays with it long enough to discover something new and interesting.</p>
<p><strong>Obie Fernandez</strong> is <a title="Paired Programming the Hashrocket Way" href="http://blog.obiefernandez.com/content/2008/08/the-hashrocket-way-pair-programming.html" target="_blank">pushing paired programming the HashRocket way</a>. Looks like they are having fun with it, and getting some good results. True believers in agile programming methods are already doing this, and everyone else is watching it closely, or closing their eyes, and trying to ignore it with one pragmatic eye still open.</p>
<p><strong>David H. Hansson</strong> was not really &#8220;thinking out loud&#8221;, but he recently twittered:</p>
<blockquote><p><span><a title="GetDropBox.com" href="http://getdropbox.com" target="_blank">getdropbox.com</a> is exactly what I need to complete the two computer conundrum. Great execution. Can&#8217;t wait to be able to pay for it. </span></p></blockquote>
<p>DHH also <a title="Rails 2.1.1" href="http://weblog.rubyonrails.org/2008/9/5/rails-2-1-1-lots-of-bug-fixes" target="_blank">released Rails 2.1.1</a> &#8212; with lots of little bug fixes.</p>
<p><strong>Dave Thomas</strong> is <a title="Procs in Ruby 1.9" href="http://pragdave.blogs.pragprog.com/pragdave/2008/09/fun-with-procs.html" target="_blank">having fun with procs in Ruby 1.9</a></p>
<p><strong>Michael Galpin</strong> talked about <a title="JRuby on Rails" href="http://www.ibm.com/developerworks/opensource/library/os-ad-prototype-jruby/index.html" target="_blank">rapid prototyping with Apache Derby and JRuby on Rails</a> over on IBM developerworks.</p>
<p>Did I mention that <a title="JRuby 1.1.4" href="http://docs.codehaus.org/display/JRUBY/2008/08/28/JRuby+1.1.4+Released" target="_blank">JRuby 1.1.4 was released</a>? &#8211;  with a 2-20x increase in speed for most features</p>
<p><strong>John Lam</strong> (the Microsoft IronRuby guy) <a title="John Lam talks at RubyFringe" href="http://www.infoq.com/presentations/john-lam-ruby-beyond-rails" target="_blank">helps you connect the dots and solve the really big problems</a> in this video captured at the last RubyFringe.</p>
<p><a title="Jazzing with JRuby" href="http://www.infoq.com/interviews/sieger-jruby-warbler-rails" target="_blank">Nick Sieger talks about jazzing things up with JRuby</a> in this InfoQ video interview.</p>
<p>&#8230; and from the <strong>awesome fresh news department</strong> &#8230; enjoy the <a title="Fresh Rails Documentation" href="http://www.railsinside.com/documentation/102-awesome-fresh-rails-documentation-to-enjoy.html" target="_blank">awesome fresh rails documentation</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://vvn.net/wp/2008/09/15/wooby-wuvers-woundup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java &#8211; Really Open &#8211; Open Source</title>
		<link>http://vvn.net/wp/2008/04/24/java-really-open-open-source/</link>
		<comments>http://vvn.net/wp/2008/04/24/java-really-open-open-source/#comments</comments>
		<pubDate>Thu, 24 Apr 2008 10:15:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[GPL]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[open-source]]></category>
		<category><![CDATA[Sun]]></category>

		<guid isPermaLink="false">http://vvn.net/wp/?p=111</guid>
		<description><![CDATA[I hope my 13 year old daughter doesn't ask me to explain the difference between FOSS and "free beer", or stump me with questions about how the CDDL is different than the GPL. I just enjoy drinking the coffee. I drink the free coffee every day at work. Why? I just like it. Don't ask me any difficult questions. <a href="http://vvn.net/wp/2008/04/24/java-really-open-open-source/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>From the <strong>Free Refill Department</strong>, the <strong>Better Late Than Early Department</strong>, and the <strong>Boy Who Cried Wolf Department, </strong>comes this interesting news item:</p>
<p><a href="http://vvn.net/wp/wp-content/uploads/2008/04/free_coffee_480px.jpg"><img class="aligncenter size-full wp-image-115" title="Free Coffee" src="http://vvn.net/wp/wp-content/uploads/2008/04/free_coffee_480px.jpg" alt="Free Coffee " width="480" height="360" /></a><a href="http://vvn.net/wp/wp-content/uploads/2008/04/java_logo_130px.png"> </a></p>
<p>Java is &#8220;really open&#8221; Open Source now. Almost.</p>
<p>Yahoo reported this <a title="Java is really Open Source now." href="http://news.yahoo.com/s/infoworld/20080422/tc_infoworld/98999" target="_blank">hot Java news</a> on <a title="Earth Day was Tuesday" href="http://vvn.net/wp/2008/04/22/earth-day-spins-planet-turns/">Earth Day</a>,  and Slashdot <a title="Developers at Slashdot rehashing the Java news." href="http://developers.slashdot.org/article.pl?sid=08/04/23/2037220" target="_blank">reported it and rehashed it</a> on <a title="World Book day is all about books, reading, and literacy." href="http://vvn.net/wp/2008/04/23/world-book-day-new-book-to-read/">World Book Day</a>, eWeek <a title="Suns Open Door, Open Source Policy" href="http://www.eweek.com/c/a/Linux-and-Open-Source/Suns-OpenDoor-Policy/" target="_blank">analyzed it</a> last Wednesday, and snail mailed it on Monday,  and I&#8217;m finally mentioning it on <a title="Bring Your Child to Work Day, April 24, 2008" href="http://vvn.net/wp/2008/04/24/bring-your-child-to-work-day/">Bring Your Child to Work Day</a>.  I hope my 13 year old daughter doesn&#8217;t ask me to explain the difference between <a title="FOSS - Free Open Source Software" href="http://en.wikipedia.org/wiki/FOSS" target="_blank">FOSS</a> and &#8220;free beer&#8221;, or stump me with questions about how the <a title="Sun CDDL - Common Development and Distribution License" href="http://en.wikipedia.org/wiki/Common_Development_and_Distribution_License" target="_blank">CDDL</a> is different than the <a title="GNU - General Public License" href="http://en.wikipedia.org/wiki/GNU_General_Public_License" target="_blank">GPL</a>. I just enjoy drinking the free coffee. I drink the free coffee <strong>every day</strong> at work. Why? I just like it. Don&#8217;t ask me any difficult questions.</p>
<p>But seriously&#8230; <a title="Sun's little April Fools joke" href="http://blogs.sun.com/jonathan/entry/a_new_strategy" target="_blank">all joking aside</a>, seems like <a title="A BIO about Suns CEO." href="http://www.sun.com/aboutsun/executives/schwartz/bio.jsp" target="_blank">Jonathan Schwartz</a> really gets it.</p>
]]></content:encoded>
			<wfw:commentRss>http://vvn.net/wp/2008/04/24/java-really-open-open-source/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

