<?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>Mercurial &#187; Open Source</title>
	<atom:link href="http://www.mercurial.cc/archives/category/open-source/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mercurial.cc</link>
	<description>Weighty, fluid, brilliant and toxic</description>
	<lastBuildDate>Mon, 14 Nov 2011 15:54:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Getting Ruby to work on Vista64</title>
		<link>http://www.mercurial.cc/archives/2009/12/16/getting-ruby-to-work-on-vista64/</link>
		<comments>http://www.mercurial.cc/archives/2009/12/16/getting-ruby-to-work-on-vista64/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 04:15:31 +0000</pubDate>
		<dc:creator>Camilo</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://www.mercurial.cc/?p=2489</guid>
		<description><![CDATA[<p>Trying to get Ruby and Rails to work in Vista64 turned to be an exercise in masochism: All the wikis, blogs, fora and others re contradicting one another, based on what worked in one system and extrapolating to other situations.</p> <p>Here, I am going to do the same.</p> <p>Part of the problem is that, after [...]]]></description>
			<content:encoded><![CDATA[<p>Trying to get Ruby and Rails to work in Vista64 turned to be an exercise in masochism: All the wikis, blogs, fora and others re contradicting one another, based on what worked in one system and extrapolating to other situations.</p>
<p>Here, I am going to do the same.</p>
<p>Part of the problem is that, after installing all the dependencies with</p>
<div class="codecolorer-container ruby default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="ruby codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">gem install sqlite3<span style="color:#006600; font-weight:bold;">-</span>ruby</div></div>
<p>there are messages that indicate that as not working:</p>
<blockquote><p>==== UNSUPPORTED PLATFORM ==================================</p>
<p>The platform &#8216;i386-mingw32&#8242; is unsupported. Please help the author by<br />
editing the following file to allow your sqlite3 library to be found, and<br />
submitting a patch to qoobaa@gmail.com. Thanks!</p>
<p>C:/Ruby/lib/ruby/gems/1.9.1/gems/sqlite3-0.0.4/lib/sqlite3/driver/ffi/api.rb<br />
===================================================================</p></blockquote>
<p>What I did was to go to the mentioned api.rb, and check the offending environment</p>
<div class="codecolorer-container ruby default" style="border:1px solid #9F9F9F;width:435px;"><div class="ruby codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">ffi_lib <span style="color:#9966CC; font-weight:bold;">case</span> RUBY_PLATFORM.<span style="color:#9900CC;">downcase</span><br />
&nbsp; &nbsp; <span style="color:#9966CC; font-weight:bold;">when</span> <span style="color:#006600; font-weight:bold;">/</span>darwin<span style="color:#006600; font-weight:bold;">/</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#996600;">&quot;libsqlite3.dylib&quot;</span><br />
&nbsp; &nbsp; <span style="color:#9966CC; font-weight:bold;">when</span> <span style="color:#006600; font-weight:bold;">/</span>linux<span style="color:#006600; font-weight:bold;">|</span>freebsd<span style="color:#006600; font-weight:bold;">|</span>netbsd<span style="color:#006600; font-weight:bold;">|</span>openbsd<span style="color:#006600; font-weight:bold;">|</span>dragonfly<span style="color:#006600; font-weight:bold;">|</span>solaris<span style="color:#006600; font-weight:bold;">/</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#996600;">&quot;libsqlite3.so&quot;</span><br />
&nbsp; &nbsp; <span style="color:#9966CC; font-weight:bold;">when</span> <span style="color:#006600; font-weight:bold;">/</span>win32<span style="color:#006600; font-weight:bold;">/</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#996600;">&quot;sqlite3.dll&quot;</span><br />
&nbsp; &nbsp; <span style="color:#9966CC; font-weight:bold;">else</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; abort <span style="color:#006600; font-weight:bold;">&lt;&lt;-</span>EOF</div></div>
<p>and replaced</p>
<div class="codecolorer-container ruby default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="ruby codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color:#9966CC; font-weight:bold;">when</span> <span style="color:#006600; font-weight:bold;">/</span>win32<span style="color:#006600; font-weight:bold;">/</span></div></div>
<p>with</p>
<div class="codecolorer-container ruby default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="ruby codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color:#9966CC; font-weight:bold;">when</span> <span style="color:#006600; font-weight:bold;">/</span>i386<span style="color:#006600; font-weight:bold;">-</span>mingw32<span style="color:#006600; font-weight:bold;">/</span></div></div>
<p>I followed tips from <a href="http://blog.emson.co.uk/2008/06/installing-sqlite3-on-windows-for-rails/" title"emson on rails">emson</a>.</p>
<p>So far this works, but I do fully expect more trouble along the way.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d2489').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d2489" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.mercurial.cc%2Farchives%2F2009%2F12%2F16%2Fgetting-ruby-to-work-on-vista64%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.mercurial.cc/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.mercurial.cc%2Farchives%2F2009%2F12%2F16%2Fgetting-ruby-to-work-on-vista64%2F&amp;title=Getting+Ruby+to+work+on+Vista64" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.mercurial.cc/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Getting+Ruby+to+work+on+Vista64+@+http%3A%2F%2Fwww.mercurial.cc%2Farchives%2F2009%2F12%2F16%2Fgetting-ruby-to-work-on-vista64%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.mercurial.cc/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d2489').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d2489').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.mercurial.cc/archives/2009/12/16/getting-ruby-to-work-on-vista64/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google OS, at last.</title>
		<link>http://www.mercurial.cc/archives/2009/07/08/google-os-at-last/</link>
		<comments>http://www.mercurial.cc/archives/2009/07/08/google-os-at-last/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 12:53:13 +0000</pubDate>
		<dc:creator>Camilo</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.mercurial.cc/?p=2391</guid>
		<description><![CDATA[<p> Google is going with their own OS, and it is not going to be a GoOS. Sadly.</p> <p>5 years ago I posted about various speculations on this fabled operatig system, here, and part of the idea was the cloud as repository and the convenience of open source and accessibility.</p> <p>Well, finally! Google posted in [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" src="http://farm3.static.flickr.com/2252/2370638208_4acb4a403b_m.jpg" alt="baby goose" title="Baby Goose" /> Google is going with their own OS, and it is not going to be a GoOS. Sadly.</p>
<p>5 years ago I posted about various speculations on this fabled operatig system, <a href="http://www.mercurial.cc/archives/2004/08/26/google-and-its-os/comment-page-1/" title="I still like the name GoOSe">here</a>, and part of the idea was the cloud as repository and the convenience of open source and accessibility.</p>
<p>Well, finally! Google posted in their <a href="http://googleblog.blogspot.com/2009/07/introducing-google-chrome-os.html" title="but they call it Chrome">blog</a> about this:</p>
<blockquote><p>Google Chrome OS is an open source, lightweight operating system that will initially be targeted at netbooks. Later this year we will open-source its code, and netbooks running Google Chrome OS will be available for consumers in the second half of 2010.</p></blockquote>
<p>FastCompany <a href="http://www.fastcompany.com/blog/kit-eaton/technomix/google-drops-bomb-its-own-operating-system" title="look, that cloud looks like a bunny">hints towards</a> a system that operates, in part, in the clouds,<br />
<blockquote>I&#8217;m betting that some of the key components will be cloud-based, which is implied by the instant-on aspects of the project.</p></blockquote>
<p>yet what I find the most interesting of this whole thing is that aspect of the user input, recognizing that the free product, as Chris Anderson would say, reaches more people than a proprietary solution, gets more suggestions and solutions, and achieves more, faster and with a higher efficiency.</p>
<p>We still have to see if what we get is actually a manageable product, and there are too many caveats: the dependency on web applications might be as well a deterrent for certain uses and demographics, the need to muscle out microsoft and all the linux distros, the acceptance toa new gadget when people are already entrenching due to economic malaise are all situations to take into account.</p>
<p>Then again, storage and processing power dedicated to fuel an apps machine, and the increase in demand for internet access as basic infrastructure is going to make wonders for our interactions within the net.<br />
What next? Infrastructure, mobility, price.</p>
<p>Photo by <a href="http://www.flickr.com/photos/aasgier/2370638208/" title="Baby goose in Flickr">Ferdi&#8217;s World</a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d2391').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d2391" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.mercurial.cc%2Farchives%2F2009%2F07%2F08%2Fgoogle-os-at-last%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.mercurial.cc/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.mercurial.cc%2Farchives%2F2009%2F07%2F08%2Fgoogle-os-at-last%2F&amp;title=Google+OS%2C+at+last." rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.mercurial.cc/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Google+OS%2C+at+last.+@+http%3A%2F%2Fwww.mercurial.cc%2Farchives%2F2009%2F07%2F08%2Fgoogle-os-at-last%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.mercurial.cc/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d2391').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d2391').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.mercurial.cc/archives/2009/07/08/google-os-at-last/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Larger databases</title>
		<link>http://www.mercurial.cc/archives/2009/05/04/larger-databases/</link>
		<comments>http://www.mercurial.cc/archives/2009/05/04/larger-databases/#comments</comments>
		<pubDate>Tue, 05 May 2009 01:10:45 +0000</pubDate>
		<dc:creator>Camilo</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[opensource]]></category>

		<guid isPermaLink="false">http://www.mercurial.cc/?p=2369</guid>
		<description><![CDATA[<p>I found this presentation, which points to interesting developments: Multi-terabyte MySQL Data Warehouses Multi-terabyte MySQL Data Warehouses </p> Bookmark It Hide Sites $$('div.d2369').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); [...]]]></description>
			<content:encoded><![CDATA[<p>I found this presentation, which points to interesting developments:<br />
<a title="View Multi-terabyte MySQL Data Warehouses" href="http://www.scribd.com/doc/2669961/Multiterabyte-MySQL-Data-Warehouses-Absolutely-Presentation" style="margin: 12px auto 6px auto; font-family: Helvetica,Arial,Sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 14px; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none; display: block; text-decoration: underline;">Multi-terabyte MySQL Data Warehouses</a> <object codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" id="doc_560255707668935" name="doc_560255707668935" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" align="middle"	height="500" width="100%" rel="media:presentation" resource="http://d.scribd.com/ScribdViewer.swf?document_id=2669961&#038;access_key=key-l9rk3nd5yfohwr8ujt8&#038;page=1&#038;version=1&#038;viewMode=" xmlns:media="http://search.yahoo.com/searchmonkey/media/" xmlns:dc="http://purl.org/dc/terms/" ><param name="movie"	value="http://d.scribd.com/ScribdViewer.swf?document_id=2669961&#038;access_key=key-l9rk3nd5yfohwr8ujt8&#038;page=1&#038;version=1&#038;viewMode="><param name="quality" value="high"><param name="play" value="true"><param name="loop" value="true"><param name="scale" value="showall"><param name="wmode" value="opaque"><param name="devicefont" value="false"><param name="bgcolor" value="#ffffff"><param name="menu" value="true"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="salign" value=""><embed src="http://d.scribd.com/ScribdViewer.swf?document_id=2669961&#038;access_key=key-l9rk3nd5yfohwr8ujt8&#038;page=1&#038;version=1&#038;viewMode=" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" play="true" loop="true" scale="showall" wmode="opaque" devicefont="false" bgcolor="#ffffff" name="doc_560255707668935_object" menu="true" allowfullscreen="true" allowscriptaccess="always" salign="" type="application/x-shockwave-flash" align="middle"  height="500" width="100%"></embed><span rel="media:thumbnail" href="http://i.scribd.com/profiles/images/bjlpaghyg0kcd-thumb.jpg"> 						<span property="media:title">Multi-terabyte MySQL Data Warehouses</span>			<span property="dc:creator"></span> 						<span property="dc:type" content="Text"> 			</object>	</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d2369').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d2369" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.mercurial.cc%2Farchives%2F2009%2F05%2F04%2Flarger-databases%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.mercurial.cc/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.mercurial.cc%2Farchives%2F2009%2F05%2F04%2Flarger-databases%2F&amp;title=Larger+databases" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.mercurial.cc/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Larger+databases+@+http%3A%2F%2Fwww.mercurial.cc%2Farchives%2F2009%2F05%2F04%2Flarger-databases%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.mercurial.cc/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d2369').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d2369').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.mercurial.cc/archives/2009/05/04/larger-databases/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Document Freedom Day 2009</title>
		<link>http://www.mercurial.cc/archives/2009/03/25/document-freedom-day-2009/</link>
		<comments>http://www.mercurial.cc/archives/2009/03/25/document-freedom-day-2009/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 14:40:41 +0000</pubDate>
		<dc:creator>Camilo</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.mercurial.cc/?p=2364</guid>
		<description><![CDATA[<p>Today is Document Freedom Day 2009</p> <p>Why is that imnpoirtant? When a corporation owns the format in which your document lives, it is effectively gone from you the moment that corporation changes anything, goes broke, anything.</p> <p>Also, if you have an open document, archival and retrieval processes are far easier and replicable. How many of [...]]]></description>
			<content:encoded><![CDATA[<p>Today is <a href="http://www.documentfreedom.org/" title="Document Freedom Day 2009">Document Freedom Day 2009</a></p>
<p>Why is that imnpoirtant? When a corporation owns the format in which your document lives, it is effectively gone from you the moment that corporation changes anything, goes broke, anything.</p>
<p>Also, if you have an open document, archival and retrieval processes are far easier and replicable. How many of you know how to deal with a 1995 Wordperfect document? What about a TXT file? Exactly.</p>
<p>As they indicate in their <a href="http://blog.documentfreedom.org/2009/03/today-is-dfd-09-global-day-for-document-liberation/#more-36" title="DFD is today">blogpost</a></p>
<blockquote><p>The question of Document Freedom has severe repercussions for freedom of choice, competition, markets and the sovereignty of countries and their governments.</p></blockquote>
<p>Freedom of speech is worthless if you can not open the speech file!</p>
<p>via <a href="http://danlynch.org/blog/2009/03/dfd09/" title="dfd 2009">adventures in open source</a> and <a href="http://www.linuxtoday.com/news_story.php3?ltsn=2009-03-25-006-35-OS-CY" title="lt">linux today</a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d2364').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d2364" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.mercurial.cc%2Farchives%2F2009%2F03%2F25%2Fdocument-freedom-day-2009%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.mercurial.cc/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.mercurial.cc%2Farchives%2F2009%2F03%2F25%2Fdocument-freedom-day-2009%2F&amp;title=Document+Freedom+Day+2009" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.mercurial.cc/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Document+Freedom+Day+2009+@+http%3A%2F%2Fwww.mercurial.cc%2Farchives%2F2009%2F03%2F25%2Fdocument-freedom-day-2009%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.mercurial.cc/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d2364').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d2364').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.mercurial.cc/archives/2009/03/25/document-freedom-day-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OLPC gone windows</title>
		<link>http://www.mercurial.cc/archives/2008/04/23/olpc-gone-windows/</link>
		<comments>http://www.mercurial.cc/archives/2008/04/23/olpc-gone-windows/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 19:43:21 +0000</pubDate>
		<dc:creator>Camilo</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Society]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[olpc]]></category>

		<guid isPermaLink="false">http://www.mercurial.cc/?p=2268</guid>
		<description><![CDATA[<p>This comment summarizes it all:</p> <p>OLPC = One License Per Child</p> <p>Reported by the Inquirer, the OLPC project is throwing away its linux pedigree, opting for the impossibly corporate Microsoft Windows.</p> <p>What, I wonder, is the rationale behind it. An open-source OLPC would have been magic, even more so in poor countries, or in countries [...]]]></description>
			<content:encoded><![CDATA[<p>This <a href="http://reddit.com/info/6gu8m/comments/c03suy7" title="reddit FTW">comment</a> summarizes it all:</p>
<blockquote><p>OLPC = One License Per Child</p></blockquote>
<p>Reported by <a href="http://www.theinquirer.net/gb/inquirer/news/2008/04/23/olpc-scrap-linux-windows" title="win-OLPC instead of linux">the Inquirer</a>, the OLPC project is throwing away its linux pedigree, opting for the impossibly corporate Microsoft Windows.</p>
<p>What, I wonder, is the rationale behind it. An open-source OLPC would have been magic, even more so in poor countries, or in countries with large barriers to technology.</p>
<p>By making it Windows the OLPC is effectively dead; it needs a bigger platform, licenses, updates and distributors, and introduces security risks in all these countries: having an open-source laptop? Cool. Having a closed-source PC? Backdoors come to mind. </p>
<p>Next: get your own <a href="http://eeepc.asus.com/global/product.htm" title="Asus EEE">Asus eee</a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d2268').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d2268" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.mercurial.cc%2Farchives%2F2008%2F04%2F23%2Folpc-gone-windows%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.mercurial.cc/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.mercurial.cc%2Farchives%2F2008%2F04%2F23%2Folpc-gone-windows%2F&amp;title=OLPC+gone+windows" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.mercurial.cc/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+OLPC+gone+windows+@+http%3A%2F%2Fwww.mercurial.cc%2Farchives%2F2008%2F04%2F23%2Folpc-gone-windows%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.mercurial.cc/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d2268').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d2268').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.mercurial.cc/archives/2008/04/23/olpc-gone-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OLPC and milk</title>
		<link>http://www.mercurial.cc/archives/2008/01/04/olpc-and-milk/</link>
		<comments>http://www.mercurial.cc/archives/2008/01/04/olpc-and-milk/#comments</comments>
		<pubDate>Fri, 04 Jan 2008 17:55:20 +0000</pubDate>
		<dc:creator>Camilo</dc:creator>
				<category><![CDATA[Economics]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[Society]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[equality]]></category>
		<category><![CDATA[justice]]></category>
		<category><![CDATA[olpc]]></category>
		<category><![CDATA[profit]]></category>

		<guid isPermaLink="false">http://www.mercurial.cc/archives/2008/01/04/olpc-and-milk/</guid>
		<description><![CDATA[<p> I am confident that the One Laptop Per Child will have the effect which is the educational equivalent of the nutritional disaster that imported formula has had on the poor parts of the world.</p> <p>Is this a broad generalization, or is this post by Atanu Dey actually on point?</p> <p>The famous OLPC irks me [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://flickr.com/photos/dcmetroblogger/1888133087/" title="olpc prod starts, image by DCMetBlogger"><img class="floatleft" src="/images/olpc_prod.jpg" alt="olpc_prod.jpg" title="olpc prod starts, image by DCMetBlogger" /></a><br />
<blockquote>I am confident that the One Laptop Per Child will have the effect which is the educational equivalent of the nutritional disaster that imported formula has had on the poor parts of the world.</p></blockquote>
<p>Is this a broad generalization, or is this post by <a href="http://www.deeshaa.org/2005/11/05/formula-for-milking-the-digital-divide/" title="milking the digital divide">Atanu Dey</a> actually on point?</p>
<p>The famous OLPC irks me because of the arbitrary definition of &#8220;poor parts of the world&#8221;, and it has a big shadow reminiscent of &#8220;white man&#8217;s burden&#8221; all over it.</p>
<p>At the same time, I see how communication and free access to networks can create more open, egalitarian discussion, and that in turn might be good.</p>
<p>But I am reading a lot on the OLPC because I am interested in getting those little shiny laptops here in NC:</p>
<ul>
<li>Huge income diaprity between classes? Check.</li>
<li> Limited access to education? Check.</li>
<li> Low life expectancy? Check.</li>
<li> Human rights abuses? Check.</li>
<li>economy in turmoil? Check</li>
</ul>
<p>I think that the USA qualifies as well as any other country.</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d2265').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d2265" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.mercurial.cc%2Farchives%2F2008%2F01%2F04%2Folpc-and-milk%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.mercurial.cc/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.mercurial.cc%2Farchives%2F2008%2F01%2F04%2Folpc-and-milk%2F&amp;title=OLPC+and+milk" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.mercurial.cc/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+OLPC+and+milk+@+http%3A%2F%2Fwww.mercurial.cc%2Farchives%2F2008%2F01%2F04%2Folpc-and-milk%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.mercurial.cc/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d2265').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d2265').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.mercurial.cc/archives/2008/01/04/olpc-and-milk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>linux in walmart</title>
		<link>http://www.mercurial.cc/archives/2007/11/02/linux-in-walmart/</link>
		<comments>http://www.mercurial.cc/archives/2007/11/02/linux-in-walmart/#comments</comments>
		<pubDate>Fri, 02 Nov 2007 20:07:35 +0000</pubDate>
		<dc:creator>Camilo</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Society]]></category>

		<guid isPermaLink="false">http://www.mercurial.cc/archives/2007/11/02/linux-in-walmart/</guid>
		<description><![CDATA[<p>walmart is, oddly, the perfect environment to deploy linux for the masses. Check the Wired article about a nice$200 desktop available at walmart. Given the typical walmart consumer, this is akin to the famous olpc initiative, although in a much ambitious scale; I can almost see the throngs of low income consumers opting for open [...]]]></description>
			<content:encoded><![CDATA[<p>walmart is, oddly, the perfect environment to deploy linux for the masses. Check the Wired  article about a nice<a href="http://blog.wired.com/gadgets/2007/10/200-everex-gree.html" title="ubuntu walmart WTF?">$200 desktop</a> available at walmart.<br />
Given the typical walmart consumer, this is akin to the famous olpc initiative, although in a much ambitious scale; I can almost see the throngs of low income consumers opting for open source.<br />
And what is <a href="http://www.enlightenment.org/" title="iluminame">enlightenment</a>?<br />
<blockquote>By using the fast Enlightenment desktop manager &#8230; the makers say it&#8217;s more responsive than Vista is, even on more powerful computers.</p></blockquote>
<p>There is even a list of where to get that little monster!</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d2261').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d2261" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.mercurial.cc%2Farchives%2F2007%2F11%2F02%2Flinux-in-walmart%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.mercurial.cc/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.mercurial.cc%2Farchives%2F2007%2F11%2F02%2Flinux-in-walmart%2F&amp;title=linux+in+walmart" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.mercurial.cc/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+linux+in+walmart+@+http%3A%2F%2Fwww.mercurial.cc%2Farchives%2F2007%2F11%2F02%2Flinux-in-walmart%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.mercurial.cc/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d2261').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d2261').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.mercurial.cc/archives/2007/11/02/linux-in-walmart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Canon vs Linux</title>
		<link>http://www.mercurial.cc/archives/2007/04/17/canon-vs-linux/</link>
		<comments>http://www.mercurial.cc/archives/2007/04/17/canon-vs-linux/#comments</comments>
		<pubDate>Tue, 17 Apr 2007 11:10:27 +0000</pubDate>
		<dc:creator>Camilo</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://confusedkid.com/mercurial/?p=2164</guid>
		<description><![CDATA[<p>I love ubuntu linux, but recent experiments with unsuspecting friends had led me to conclude that it is going to be a long and arduous time before there is mainstream acceptance for it.</p> <p>Hey, ubuntu linux is the best, most amazing linux distro that there is. It installs in seconds, respects you as a user [...]]]></description>
			<content:encoded><![CDATA[<p>I love <a href="http://www.ubuntu.com/" title="ubuntu linux">ubuntu linux</a>, but recent experiments with <a href="http://gondrilesh.wordpress.com" title="pol sci candidate">unsuspecting friends</a> had led me to conclude that it is going to be a long and arduous time before there is mainstream acceptance for it.</p>
<p>Hey, ubuntu linux is the best, most amazing linux distro that there is. It installs in seconds, respects you as a user (ie no DRM crap), offers amazing possibilities and doesn’t cost a penny. And yeah, it has no games in it, either; not as many as in MSFT, at least, which, for me, is a bonus.</p>
<p>But there is still reluctance: a few months ago I got together with a friend who wanted some linux in his HP 64 bit laptop. The installation was a breeze, fast, efficient, the kind that makes you think that linux is definitely going to stay here for a while, to kick some ass.<br />
It was that cool: Beryl? Easy. Repositories? Done. He even got a little bit about it, getting rid of the chains that Microsoft imposes on users.</p>
<p>All went well, until the beginning of last week, when he wanted to attach a printer. And then it all went to hell. He wanted a Canon, these printers being some sort of family tradition. But no! </p>
<p>Canon printers suck: the only available solution was spending some money on drivers and stuff, and then installing that thing. My friend and I tried that option, which, as expected, didn’t work.</p>
<p>So, he got rid of Canon, and is buying either an HP or a Dell. Something with open source drivers and more respect for the customer. Can you imagine the market that canon would tap if they released drivers for the canon, in some sort of linux flavor? By ignoring this market, they are just pushing the users away, opening doors for competition, and generally being regarded just as big goofy sort of a company. They might be giants, but they are goofy giants. Who can respect that?</p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a title="Click me to see the sites." href="#" onclick="$$('div.d2164').each( function(e) { e.visualEffect('slide_down',{duration:2.5}) }); return false;"><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d2164" style="overflow:hidden">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.mercurial.cc%2Farchives%2F2007%2F04%2F17%2Fcanon-vs-linux%2F" rel="nofollow" title="Add to&nbsp;Facebook"><img class="social_img" src="http://www.mercurial.cc/wp-content/plugins/social-bookmarks/images/facebook.png" title="Add to&nbsp;Facebook" alt="Add to&nbsp;Facebook" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://reddit.com/submit?url=http%3A%2F%2Fwww.mercurial.cc%2Farchives%2F2007%2F04%2F17%2Fcanon-vs-linux%2F&amp;title=Canon+vs+Linux" rel="nofollow" title="Add to&nbsp;reddit"><img class="social_img" src="http://www.mercurial.cc/wp-content/plugins/social-bookmarks/images/reddit.png" title="Add to&nbsp;reddit" alt="Add to&nbsp;reddit" /></a>
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://twitter.com/home/?status=Check+out+Canon+vs+Linux+@+http%3A%2F%2Fwww.mercurial.cc%2Farchives%2F2007%2F04%2F17%2Fcanon-vs-linux%2F" rel="nofollow" title="Add to&nbsp;Twitter"><img class="social_img" src="http://www.mercurial.cc/wp-content/plugins/social-bookmarks/images/twitter.png" title="Add to&nbsp;Twitter" alt="Add to&nbsp;Twitter" /></a>
<br />
<br />
<a style="font-size:90%;text-align: right; " title="Click me to hide the sites." href="#" onclick="$$('div.d2164').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); return false;">Hide Sites</a>
</div>
</div>
<!-- Social Bookmarks END -->
<script type="text/javascript">$$('div.d2164').each( function(e) { e.visualEffect('slide_up',{duration:0.5}) }); </script>]]></content:encoded>
			<wfw:commentRss>http://www.mercurial.cc/archives/2007/04/17/canon-vs-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

