<?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>Sometimes I listen to myself &#187; FOSS/Linux</title>
	<atom:link href="http://blog.charleskiyanda.com/category/fosslinux/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.charleskiyanda.com</link>
	<description>Open Source Culture and Science</description>
	<lastBuildDate>Sat, 28 May 2011 22:51:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Kludging your way to nice figures with ubuntu+kile+inkscape+cairo+eps+psfrag</title>
		<link>http://blog.charleskiyanda.com/2011/05/28/kludging-your-way-to-nice-figures-with-ubuntukileinkscapecairoepspsfrag/</link>
		<comments>http://blog.charleskiyanda.com/2011/05/28/kludging-your-way-to-nice-figures-with-ubuntukileinkscapecairoepspsfrag/#comments</comments>
		<pubDate>Sat, 28 May 2011 22:50:40 +0000</pubDate>
		<dc:creator>Charles Kiyanda</dc:creator>
				<category><![CDATA[FOSS/Linux]]></category>
		<category><![CDATA[Geeky stuff of the day]]></category>

		<guid isPermaLink="false">http://blog.charleskiyanda.com/?p=155</guid>
		<description><![CDATA[<p>Several inkscape+latex+psfrag users have been complaining for quite a  while now about the changes in cairo. I periodically forget how to  kludge my way through while I wait for the situation to stabilize and I  have to search the tubes for a couple hours before I remember all the  details, so here <span style="color:#777"> . . . &#8594; Read More: <a href="http://blog.charleskiyanda.com/2011/05/28/kludging-your-way-to-nice-figures-with-ubuntukileinkscapecairoepspsfrag/">Kludging your way to nice figures with ubuntu+kile+inkscape+cairo+eps+psfrag</a></span>]]></description>
			<content:encoded><![CDATA[<p>Several inkscape+latex+psfrag users have been complaining for quite a  while now about the changes in cairo. I periodically forget how to  kludge my way through while I wait for the situation to stabilize and I  have to search the tubes for a couple hours before I remember all the  details, so here it is for all to enjoy (and for me to find much more  quickly the next time). I use linux (ubuntu), kile, tetex, inkscape and psfrag. If you&#8217;re on windows, well, I can probably not help.</p>
<p>The problem: The later versions of inkscape use cairo to generate eps files. The new version of cairo doesn&#8217;t have explicit strings for the words in the eps files. Instead of having the string &#8220;(hello)Tj&#8221; somewhere in your eps file, you have the string &#8220;&lt;0102030304&gt;Tj&#8221;. Psfrag looks for hello somewhere, can&#8217;t find it and hence is utterly confused. As a result, so are you. (Un)fortunately, inkscape is a really good FOSS program and I&#8217;m unwilling to change my ways at this point.</p>
<p>The solution: Here&#8217;s my workflow.</p>
<ol>
<li>Make a file in inkscape as usual. Use short labels (which will later be replaced by psfrag) if you want to make it quicker later on. I just go through the alphabet in sequence.</li>
<li>Replace all the &lt;##&gt;Tj strings with (CC)Tj. Make sure to change the numbers to the right letters. (If you write the letters in order in inkscape, then 01 corresponds to a, 02 corresponds to b, etc.) To be a bit quicker, I make a epsfix.sh script, which does it for me once I&#8217;ve figured it out. This way, I can modify the figure later on and not go completely mad. A sample script is shown at the bottom for 2 labels, a and b.</li>
<li>run epsfix.sh</li>
<li>produce dvi using kile (I use kile, you might not)</li>
<li>produce ps from dvi using kile (or whatever it is you use)</li>
<li>ps2pdf text.ps text.pdf (because using kile and dvi2pdf(?), the pdf doesn&#8217;t have the psfrag substitutions in)</li>
</ol>
<p>As an extra (which I always forget also): to get text on multiple lines using psfrag, use a shortstack: &#8220;\psfrag{label}{\shortstack[l]{some more\\text}}&#8221;.</p>
<p>Not simple and not pretty. There are probably more succint and elegant scripts for epsfix.sh. You might be able to get the pdf generation to work from withing kile. Personally, I&#8217;ve given up and just keep a terminal window open for that operation.</p>
<p>Sample script epsfix.sh with 2 labels, a and b:</p>
<p>#! /bin/sh<br />
cp fig.eps fig.eps.backup ##(for your sanity the first time you run the script)<br />
mv temp.eps fig.eps<br />
sed &#8216;s/&lt;01&gt;/(a)/&#8217; fig.eps | sed &#8216;s/&lt;02&gt;/(b)/&#8217; &gt; temp.eps<br />
rm fig.eps<br />
mv temp.eps fig.eps</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.charleskiyanda.com/2011/05/28/kludging-your-way-to-nice-figures-with-ubuntukileinkscapecairoepspsfrag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>classifying papers</title>
		<link>http://blog.charleskiyanda.com/2010/11/17/classifying-papers/</link>
		<comments>http://blog.charleskiyanda.com/2010/11/17/classifying-papers/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 05:12:18 +0000</pubDate>
		<dc:creator>Charles Kiyanda</dc:creator>
				<category><![CDATA[FOSS/Linux]]></category>
		<category><![CDATA[social networks]]></category>

		<guid isPermaLink="false">http://blog.charleskiyanda.com/?p=140</guid>
		<description><![CDATA[<p>Every few months I ask myself the question again: &#8220;What to do with my scientific library?&#8221; I&#8217;ve run across solutions here and there, bu none which convinced me: jabref, zotero, papers, etc.</p>
<p>I actually tried jabref, but it struck me as not having many functions beyond holding a list of all my papers and generating a bibtex <span style="color:#777"> . . . &#8594; Read More: <a href="http://blog.charleskiyanda.com/2010/11/17/classifying-papers/">classifying papers</a></span>]]></description>
			<content:encoded><![CDATA[<p>Every few months I ask myself the question again: &#8220;What to do with my scientific library?&#8221; I&#8217;ve run across solutions here and there, bu none which convinced me: jabref, zotero, papers, etc.</p>
<p>I actually tried jabref, but it struck me as not having many functions beyond holding a list of all my papers and generating a bibtex file. Zotero is hosted on servers far away somewhere and my work doesn&#8217;t allow this. (Well, they might allow it, but to be prudent I host all work related files locally.) Papers seems awesome, but is unfortunately mac only. The situation seemed desperate until I saw gPapers! I thought I finally had found THE program of my dreams. Alas, gPapers is rather unfinished. The person who developed it originally doesn&#8217;t seem to have contributed in a while. What to do? Well, contribute of course! Though I have been known to file bug reports and test alphas, I&#8217;ve never contributed actual code to an open-source project, so this is my first experience. It seems like the timing and circumstances are perfect for me to get involved:</p>
<ul>
<li>gPapers is written in python, which I&#8217;ve taken the time to learn lately;</li>
<li>I&#8217;m tired of looking for this perfect software and have gotten frustrated enough that I&#8217;m willing to write it;</li>
<li>right now, the feature-set of gPapers seems contained, so the initial deciphering of the code shouldn&#8217;t be impossible (it&#8217;s not like I just decided to rewrite the whole linux kernel);</li>
<li>there are few developers and the pace is slow, so I should have time to get up to speed without having the software go through three major revisions.</li>
</ul>
<p>The only problem is: the active fork of gPapers is hosted on github. I have no idea how git works, let alone github. (I DO use version control, but I&#8217;m a svn user right now and have no experience with distributed version control.) I managed to create an account on github, create keypairs and upload the public key to github and&#8230;that&#8217;s pretty much where I was as of this morning. After a few days of looking, I came across a great tutorial containing the information I had been looking for so far. It basically answers the question I&#8217;ve been stuck with for a while: &#8220;Ok, I&#8217;ve created an account on github and now I want to contribute to a project. What do I do?&#8221; (spoiler: the answer is basically that you fork the project, as surprising as it may sound to svn users.)</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="225" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=6457780&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" /><embed type="application/x-shockwave-flash" width="400" height="225" src="http://vimeo.com/moogaloop.swf?clip_id=6457780&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p><a href="http://vimeo.com/6457780">Getting started with GitHub</a> from <a href="http://vimeo.com/berry">Charles Max Wood</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>As for gPapers itself, I got the software to run a few days back and now I&#8217;m off to see if I can actually make it work. Let&#8217;s see how much has to be done to make gPapers better than papers.</p>
<p>[Update 11/17/2010: I was corrected by a commenter. You can use zotero entirely locally. I'll give zotero a whirl again sometime in the next few days then. I'll probably still try to contribute to gpapers, be it only to learn how to use git properly.]</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.charleskiyanda.com/2010/11/17/classifying-papers/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Linux and music production</title>
		<link>http://blog.charleskiyanda.com/2009/08/05/linux-and-music-production/</link>
		<comments>http://blog.charleskiyanda.com/2009/08/05/linux-and-music-production/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 03:48:17 +0000</pubDate>
		<dc:creator>Charles Kiyanda</dc:creator>
				<category><![CDATA[FOSS/Linux]]></category>
		<category><![CDATA[Geeky stuff of the day]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://blog.charleskiyanda.com/?p=114</guid>
		<description><![CDATA[<p>An interesting article on an electronic musician, Kim Cascone, switching from Mac to Linux for his music production. I wonder how this guy&#8217;s installation compares from starting with Ubunu Studio. My understanding is that Ubuntu Studio is supposed to be tailored to audio/video/image production from the start. I&#8217;ve been meaning to try it for a while, <span style="color:#777"> . . . &#8594; Read More: <a href="http://blog.charleskiyanda.com/2009/08/05/linux-and-music-production/">Linux and music production</a></span>]]></description>
			<content:encoded><![CDATA[<p><a href="http://createdigitalmusic.com/2009/08/04/linux-music-workflow-switching-from-mac-os-x-to-ubuntu-with-kim-cascone/" target="_blank">An interesting article</a> on an electronic musician, <a href="http://en.wikipedia.org/wiki/Kim_Cascone" target="_blank">Kim Cascone</a>, switching from Mac to Linux for his music production. I wonder how this guy&#8217;s installation compares from starting with <a href="http://ubuntustudio.org/">Ubunu Studio</a>. My understanding is that Ubuntu Studio is supposed to be tailored to audio/video/image production from the start. I&#8217;ve been meaning to try it for a while, yet never took the time.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.charleskiyanda.com/2009/08/05/linux-and-music-production/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s the simple things</title>
		<link>http://blog.charleskiyanda.com/2009/05/17/its-the-simple-things/</link>
		<comments>http://blog.charleskiyanda.com/2009/05/17/its-the-simple-things/#comments</comments>
		<pubDate>Sun, 17 May 2009 06:45:16 +0000</pubDate>
		<dc:creator>Charles Kiyanda</dc:creator>
				<category><![CDATA[Copyright and Society]]></category>
		<category><![CDATA[FOSS/Linux]]></category>
		<category><![CDATA[Geeky stuff of the day]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://blog.charleskiyanda.com/?p=92</guid>
		<description><![CDATA[<p>Every time I buy music from amazon in mp3 format, I&#8217;m absolutely amazed at how well it works. I&#8217;m not just talking about the no-drm mp3 stuff, that&#8217;s only half of the equation. What&#8217;s the other half? Convenience. Amazon has a download utility for their digital music sales. I was amazed the first time I tried <span style="color:#777"> . . . &#8594; Read More: <a href="http://blog.charleskiyanda.com/2009/05/17/its-the-simple-things/">It&#8217;s the simple things</a></span>]]></description>
			<content:encoded><![CDATA[<p>Every time I buy music from amazon in mp3 format, I&#8217;m absolutely amazed at how well it works. I&#8217;m not just talking about the no-drm mp3 stuff, that&#8217;s only half of the equation. What&#8217;s the other half? Convenience. Amazon has a download utility for their digital music sales. I was amazed the first time I tried it to see their website suggesting packages for debian, ubuntu, fedora and (I think) Suse. I was even more amazed when the install went without a hitch, their program started and the download actually worked.</p>
<div class="wp-caption alignnone" style="width: 330px"><img title="Amazon" src="http://blog.charleskiyanda.com/images/amazon_goodness.png" alt="Amazons download utility working flawlessly on linux" width="320" height="200" /><p class="wp-caption-text">Amazon&#39;s download utility working flawlessly on linux</p></div>
<p>I recently wiped out my system on my laptop and installed the latest version of ubuntu. Even though the amazon website said the package was for ubuntu 8.10, I was, once again, amazed to see it work flawlessly with the 9.04 version of ubuntu. It&#8217;s the little things, you know&#8230;</p>
<p>Now, may this be a model for other businesses out there. It&#8217;s not that difficult! Just make it simple. Sell what people actually want (audio files that will work on any music player) in a convenient way. Don&#8217;t fuss around with making the killer app that will download my music, catalog it, make me coffee and take care of my playlists. Amazon&#8217;s app isn&#8217;t trying to disloge the itunes software thingie. I just want to buy music, just sell it to me already.</p>
<p>Funny how Amazon, without ever selling a single music player, managed to make a place for itself in the music selling niche while competing with the company that probably has a 90% market share in music players and essentially bundles its music store in with every player. Granted, amazon has lots of ressources, but they didn&#8217;t go hi-tech here. The lesson is simple. I have money and I want to spend it. Just sell me the darned thing already.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.charleskiyanda.com/2009/05/17/its-the-simple-things/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FOSS taking over the world</title>
		<link>http://blog.charleskiyanda.com/2008/11/02/foss-taking-over-the-world/</link>
		<comments>http://blog.charleskiyanda.com/2008/11/02/foss-taking-over-the-world/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 21:07:17 +0000</pubDate>
		<dc:creator>Charles Kiyanda</dc:creator>
				<category><![CDATA[FOSS/Linux]]></category>

		<guid isPermaLink="false">http://blog.charleskiyanda.com/?p=55</guid>
		<description><![CDATA[<p>The french legislature switched from windows to linux in July 2007. ZDnet ran an article a year later (in french) with several first hand accounts of the effects of the transition. The conclusion was that everything went well.</p>
<p>Now, the German foreign ministry is in the process of migrating its 11 000 desktops to linux with about <span style="color:#777"> . . . &#8594; Read More: <a href="http://blog.charleskiyanda.com/2008/11/02/foss-taking-over-the-world/">FOSS taking over the world</a></span>]]></description>
			<content:encoded><![CDATA[<p>The french legislature switched from windows to linux in July 2007. <a href="http://www.zdnet.fr/actualites/informatique/0,39040745,39382082,00.htm" target="_blank">ZDnet ran an article a year later</a> (in french) with several first hand accounts of the effects of the transition. The conclusion was that everything went well.</p>
<p>Now, <a href="http://www.osor.eu/news/de-foreign-ministry-cost-of-open-source-desktop-maintenance-is-by-far-the-lowest" target="_blank">the German foreign ministry is in the process of migrating its 11 000 desktops to linux with about half of the work completed.</a> Interrestingly, a source in the foreign ministry says that the cost of operating the desktops has gone from about 3000 euros to 1000 euros per year per computer. While the situation may be a lot more complex (maybe the foreign ministry has linux wizards on its payroll) it is definitely something to consider if you&#8217;re running a business that uses any number of computers. With a potential economy of 66% of your operating costs, even a small business using only a handful of computers, it may be beneficial to switch. The cost of transition (per computer) may become quite high, but with such savings in operating costs, I bet a migration to linux will be self-financing in a very short time.</p>
<p>It may be beneficial to run the numbers for your business. Then again, if I had to run the numbers for a business of mine, I wouldn&#8217;t know where to start. There may be money to be made here. <img src='http://blog.charleskiyanda.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.charleskiyanda.com/2008/11/02/foss-taking-over-the-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The 6 months music challenge, Issue 1: Hipster, Please! Compilations</title>
		<link>http://blog.charleskiyanda.com/2008/06/14/the-6-months-music-challenge-issue-1-hipster-please-compilations/</link>
		<comments>http://blog.charleskiyanda.com/2008/06/14/the-6-months-music-challenge-issue-1-hipster-please-compilations/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 04:00:56 +0000</pubDate>
		<dc:creator>Charles Kiyanda</dc:creator>
				<category><![CDATA[6 months music challenge]]></category>
		<category><![CDATA[Copyright and Society]]></category>
		<category><![CDATA[FOSS/Linux]]></category>

		<guid isPermaLink="false">http://blog.charleskiyanda.com/?p=44</guid>
		<description><![CDATA[<p>I&#8217;m a strong supporter of free and open source software. To be honest, I&#8217;m a supporter of free and open source anything really. That&#8217;s why I contribute to wikitravel (sporadically, but still), why I started wikiscuba (well, still trying to make it take off, really), openstreetmap and anything I can get my hands on that suits <span style="color:#777"> . . . &#8594; Read More: <a href="http://blog.charleskiyanda.com/2008/06/14/the-6-months-music-challenge-issue-1-hipster-please-compilations/">The 6 months music challenge, Issue 1: Hipster, Please! Compilations</a></span>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a strong supporter of free and open source software. To be honest, I&#8217;m a supporter of free and open source anything really. That&#8217;s why I contribute to <a href="http://www.wikitravel.org" target="_blank">wikitravel</a> (sporadically, but still), why I started <a href="http://www.wikiscuba.com" target="_blank">wikiscuba</a> (well, still trying to make it take off, really), <a href="http://www.openstreetmap.org" target="_blank">openstreetmap</a> and anything I can get my hands on that suits my hobbies. I really started getting interested and involved with &#8220;FOSS and things&#8221; in october 2005. I started my phd in august 2005 and swore to myself that I would try and work with latex (the word processor, that is, not the preservative, although, kids, if you&#8217;re listening, using condoms is a pretty f****ng idea) for the majority of the stuff I write. I also had to log onto different machines and my supervisor strongly suggested (as strongly as advisors can suggest, which means it really was an order) I install linux. I decided to make the switch at home as well 2 months later and use FOSS for my personal needs and aimed to be windows free. Almost 3 years later, I&#8217;m pretty much there. I still have to use windows every once in a while, unfortunately.</p>
<p>For example, while I can get video going on msn using <a href="http://www.amsn-project.net/" target="_blank">aMSN</a>, I still haven&#8217;t found an msn client on linux which will easily allow me to use both voice and video. Luckily, between the phone and msn, I don&#8217;t boot windows for that reason very often.</p>
<p>Powerpoint is still an outstanding tool when it comes to presentations and the defacto standard at conferences, so I have to boot windows every once in a while to run powerpoint and prepare/show a presentation. All the supporting material though (plots and so on) are made on FOSS so I&#8217;m really only using powerpoint to make the actual slides.</p>
<p>Finally, some companies still haven&#8217;t caught on that it would be nice to just open up the protocols to interface with their devices, so I have to boot windows every time I want to upgrade the firmware on my <a href="https://buy.garmin.com/shop/shop.do?pID=327" target="_blank">gps</a> or on my <a href="http://www.pentaximaging.com/products/product_details/digital_camera--K10D/reqID--8793673/subsection--digital_slr" target="_blank">cameras</a> (Pentax has this autorun archive thing I can&#8217;t unpack on linux yet, so I boot windows to extract the actual update and then reboot linux to do everything else. Garmin just ships you an actual program, so I have to run it in windows.)</p>
<p>Today, almost three years after embarking on this journey, I&#8217;m happy with the result. I only have legit copies of windows on my computers and I only run them when absolutely necessary&#8230;and even then I sometimes hesitate. Running windows just makes me curse and cringe now, which helps in no way my stress level when I&#8217;m at a conference and I have to give a talk.</p>
<p>Somewhere along the way of becoming windows free, I started to understand the subtleties of copyright law. I have been following one lawyer&#8217;s comments on the <a href="http://recordingindustryvspeople.blogspot.com/" target="_blank">RIAA fight against their own customers</a> and I think I&#8217;m now ready to make another change in my life. I call it the &#8220;6 months music challenge&#8221;. For the next 6 months, I will not buy a single CD. Not one. I will not pirate CDs either. I will find all the new music I will consume online for free. To show you my commitment to this challenge, every week I will write a blog post describing one new music album/group/compilation I have found online and listened to for free with the blessing of the artist(s). To be eligible, the songs will have to be downloadble. You should be able to download the songs in a convenient format and listen to them on your ipod/mp3 player if you want.So while I think it&#8217;s cool that artists put the little player applet on their myspace page, you&#8217;ll have to be able to do more. I&#8217;m not just looking for artists who promote their music online, I&#8217;m looking for artists who<em> use their music as promotional material online.</em></p>
<p>So here at last, for my first submission, I bring to you <a href="http://www.hipsterplease.com/2007/07/nerdcore-undercover.html" target="_blank">Nerdcore Undercover</a> and <a href="http://www.hipsterplease.com/2008/05/old-nerdy-bastard.html" target="_blank">Old Nerdy Bastard</a>, which I found following links from blog to blog onto, finally, the <a href="http://www.hipsterplease.com/" target="_blank">Hipsters, Please! blog</a>, written by Z who, if I understand correctly, produced (?) the two compilation albums. Most of the music on there is hip-hop, more so on Nerdcore Undercover, while Old Nerdy Bastard is rather more eclectic. I&#8217;ve been listening to those 2 albums in the car for the last two days now and I&#8217;m looking forward to tomorrow. I&#8217;m going out of town with a few friends for the day and I&#8217;m going to introduce these albums to those same friends. Should prove interesting!</p>
<p>So here&#8217;s to the start of, I hope, a great blog post series!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.charleskiyanda.com/2008/06/14/the-6-months-music-challenge-issue-1-hipster-please-compilations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Cloud and the Dreamer</title>
		<link>http://blog.charleskiyanda.com/2008/04/25/the-cloud-and-the-dreamer/</link>
		<comments>http://blog.charleskiyanda.com/2008/04/25/the-cloud-and-the-dreamer/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 01:45:43 +0000</pubDate>
		<dc:creator>Charles Kiyanda</dc:creator>
				<category><![CDATA[FOSS/Linux]]></category>
		<category><![CDATA[social networks]]></category>

		<guid isPermaLink="false">http://blog.charleskiyanda.com/2008/04/25/the-cloud-and-the-dreamer/</guid>
		<description><![CDATA[<p>People have lately been talking about &#8220;computing in the cloud&#8221;. I hate that sentence. Nonetheless, what I&#8217;m guessing they&#8217;re referring to is &#8220;using the internet as an infrastructure design component in computing systems&#8221;. I&#8217;m not happy with that either. For one, as a scientist, the word &#8220;computing&#8221; has a rather precise definition which can&#8217;t be equated <span style="color:#777"> . . . &#8594; Read More: <a href="http://blog.charleskiyanda.com/2008/04/25/the-cloud-and-the-dreamer/">The Cloud and the Dreamer</a></span>]]></description>
			<content:encoded><![CDATA[<p>People have lately been talking about &#8220;computing in the cloud&#8221;. I hate that sentence. Nonetheless, what I&#8217;m guessing they&#8217;re referring to is &#8220;using the internet as an infrastructure design component in computing systems&#8221;. I&#8217;m not happy with that either. For one, as a scientist, the word &#8220;computing&#8221; has a rather precise definition which can&#8217;t be equated with facebook and flickr. Alas, let us forget my petty scientific objections and look at the idea itself.</p>
<p>&#8220;Computing in the cloud&#8221; seems to refer to a number of different concepts most of which would appear to &#8220;blend the desktop with the internet&#8221;. Essentially, when you would be working on your computer (referred to as the desktop), you would really also be working on the internet. Instead of &#8220;computing in the cloud&#8221;, you may have heard &#8220;software as a service&#8221;. In this case, you wouldn&#8217;t install applications on your desktop. Rather, you would log on to a website, which offers one or more &#8220;software&#8221;. You never own the software, you never install it, you upload your data to their servers and do your modifications there.</p>
<p>Adobe <a href="http://www.itwire.com/content/view/10043/53/" target="_blank">has talked about</a> &#8220;software as a service&#8221; for photoshop, for example.</p>
<p>There have also been recent news reports (see <a href="http://www.redherring.com/Home/24164" target="_blank">here</a> and <a href="http://www.readwriteweb.com/archives/windows_live_mesh_to_launch_ne.php" target="_blank">here</a> for examples) of microsoft coming out with &#8220;Windows Live Mesh&#8221;. If I understand anything of the press releases, the service would essentially link your desktop to servers accessible over the internet, so that your &#8220;desktop&#8221; is shared across the web and when you modify a file at work, you also modify it at home. Magically. It appears you could also elect to share parts of your desktop in &#8220;social networking&#8221; of some sort.</p>
<p>I see two main problems with these ideas, however neat they may be. One is monetization and the other is  ownership.</p>
<p>First, on the topic of monetization. I&#8217;m not going to say that it will be impossible for to monetize these services. Quite the contrary. I think it will be too easy to monetize these services! It appears to me that the big software companies now want to monetize their software more. Now that most of the people who use a computer know how to get pirated software, I&#8217;m guessing we&#8217;re either hitting a monetization barrier for the old system or a decrease in monetization possibilities. Essentially, I&#8217;m saying that everyone who&#8217;s going to buy software already does and the remainder of the market will not pay for your software no matter what. (Or at least, the coming of that day is dreaded.) Hence, you need to find a better way to monetize that segment of the market. What better way then to never actually sell you the software! All we do is sell you the capabilities of the software as an online service. There&#8217;s nothing wrong with this approach, were it not for the track record of some of the big guys in the field.</p>
<p>There was a recent announcement from Microsoft (again), saying <a href="http://blogs.computerworld.com/msn_music" target="_blank">they will discontinue their &#8220;Plays-for-sure&#8221; servers</a> on september 1st 2008. The ironically named &#8220;plays-for-sure&#8221; format was meant to license music to people. You could buy music from microsoft and you had to get a license for every machine you wanted to get it to play on. When the servers go down, you&#8217;ll no longer be able to get new licenses and you&#8217;ll be stuck playing these files on whatever hardware you have a license for already. (Unless you just go the illegal way and rip the music to another format.)</p>
<p>In the light of the above example (and I&#8217;m sure there are others), one can&#8217;t help but feeling trapped by the company. Here I am, paying for my online photoshop service and, one day, they decide that stitiching panoramas is too load intensive, so we&#8217;ll charge more for it. Hold on. I stitch panoramas all the time! That&#8217;s why I pay for the photoshop service in the first place! Or how about microsoft deciding one day that its &#8220;live mesh&#8221; isn&#8217;t profitable enough changes model and just shuts down its servers. I&#8217;m planning a 4 month trip around the world soon, do I really want to be in Asia with possibly no access to important data when this happens?</p>
<p>Another problem is that of ownership. It&#8217;s quite evident that some segments of the population will never trust other people with their data. I work for a US National Lab and based on the corporate culture here and the type of work we do, I get the distinct feeling we will NEVER be allowed to edit a report on an online version of word. No matter how cool this idea may sound to management and IT. (Think no software updates, ever. Wouldn&#8217;t the IT folks be happy about that one!) But aside from government agencies, I can see other people who would feel uneasy about such an arrangement. For example, I make these huge panoramas. (I&#8217;ve printed a 48&#8243; long image once and that wasn&#8217;t the full resolution, just as large as I could print it.) I&#8217;m not making money on these panoramas (although my mom loves them), but I could plan to one day. I don&#8217;t really trust online services with my high-resolution originals. I have friends who are actual (paid and professional) photographers. I don&#8217;t see them liking such all-encompassing online services so much. To be fair, they have advantages. They could go on assignment in the Sahara with a tiny machine, put the memory stick in there and, voilà, it&#8217;s shared with the editor&#8217;s desk in Montreal. But does this convenience outweigh the risks? I don&#8217;t trust microsoft to never have a glitch and get hacked. Even Google, who so far benefits from still looking largely like the good guy around the block, has seen exploits of the gmail service. There are some things for which I don&#8217;t really want to trust a large company like microsoft. Have you ever tried to call microsoft customer service when hotmail failed to work? That&#8217;s right. You just said &#8220;oh well, it will start again soon.&#8221; Now imagine that everything you do on your computer depends on microsoft. I&#8217;m not sure I want to go there.</p>
<p>Being a free software advocate and linux fan and user myself, I&#8217;m actually not that scared about the possibility of software as a service and &#8220;desktop in the cloud&#8221; ideas. I have recently convinced a fervent microsoft user and lover friend of mine to use a piece of free software, The Gimp. This friend&#8217;s computer was reformatted last week (too many viruses) and I tried to suggest we install linux on a small partition so he can try it out, just to see. You should have seen his reaction. I thought I had sprayed a witch with holy water. You can imagine why it was a big thing to get him to use The Gimp. The Gimp is a free software alternative to Adobe Photoshop. It&#8217;s not quite as powerful as Photoshop (currently it only works in 8 bit spaces if you really want to know, feel free to ignore), but for many, many, many people, I&#8217;m sure that would suffice. As it turns out, there&#8217;s a whole segment of the population who steals software. (Shocking!) When stealing commercial software will not be an option anymore (or not a practical one), a portion of that segment will be convertible to free software alternatives. More users, more testing, more developement, better free software&#8230; You get the picture&#8230;</p>
<p>Microsoft has recently said they&#8217;re thinking of &#8220;leasing&#8221; as a &#8220;service&#8221; more parts of windows. Parts you already use. This is probably great news for linux. One of the main barriers to the adoption of linux by normal people and not just the über-geeks is the fact that windows is preinstalled on every&#8230;single&#8230;pc&#8230;you&#8230;buy. Every single one of them. People often complain installing linux is hard, people don&#8217;t know how to format drives. Guess what? Installing windows is hard too, you just never do it. On top of it, the price of microsoft windows is pretty much always included in the price of the computer. Essentially, it&#8217;s perceived as free, when, really, it isn&#8217;t completely free. When people start having to pay to convert a jpg to a gif, the cost of windows will become more apparent. Free and Open Source Software (FOSS) alternatives will become more appealing. Essentially, annoyance has a price. The current perceived spending is zero. When the current perceived spending rises, a certain level of annoying will be considered. Annoyances such as &#8220;learning the difference between the odt and doc formats&#8221;, &#8220;learning how to install packages in linux rather than running executables in windows&#8221;, etc.</p>
<p>So I dream of the day (there&#8217;s my link to my title) the common man will consider foss software as an alternative. To be honest, I don&#8217;t think all software will eventually be free. Mass consumption software, I could see. Stuff like The Gimp and Firefox. Specialty software that only a small portion of the society uses may well be software you have to buy for a long, long time. I also dream of the day people realize that and start supporting linux when they sell software.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.charleskiyanda.com/2008/04/25/the-cloud-and-the-dreamer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wikipedia licensing will be compatible with creative commons</title>
		<link>http://blog.charleskiyanda.com/2007/12/02/wikipedia-licensing-will-be-compatible-with-creative-commons/</link>
		<comments>http://blog.charleskiyanda.com/2007/12/02/wikipedia-licensing-will-be-compatible-with-creative-commons/#comments</comments>
		<pubDate>Sun, 02 Dec 2007 01:28:54 +0000</pubDate>
		<dc:creator>Charles Kiyanda</dc:creator>
				<category><![CDATA[Copyright and Society]]></category>
		<category><![CDATA[FOSS/Linux]]></category>

		<guid isPermaLink="false">http://blog.charleskiyanda.com/2007/12/02/wikipedia-licensing-will-be-compatible-with-creative-commons/</guid>
		<description><![CDATA[<p>[I know I'd promised this post would be about the great idea I have and which I've been dangling around without really being descriptive, but as far as I can see, this has just come out and I need to talk about it.]</p>
<p>So the wikimedia foundation just announced a deal was accepted by everyone that would <span style="color:#777"> . . . &#8594; Read More: <a href="http://blog.charleskiyanda.com/2007/12/02/wikipedia-licensing-will-be-compatible-with-creative-commons/">Wikipedia licensing will be compatible with creative commons</a></span>]]></description>
			<content:encoded><![CDATA[<p><em>[I know I'd promised this post would be about the great idea I have and which I've been dangling around without really being descriptive, but as far as I can see, this has just come out and I need to talk about it.]</em></p>
<p>So the <a href="http://wikimediafoundation.org/wiki/Resolution:License_update" target="_blank">wikimedia foundation just announced</a> a deal was accepted by everyone that would make the GFDL (the gnu free  documentation license) compatible with the creative commons license. Wow, ok, so what does that mean? Two short points.</p>
<p><span id="more-23"></span></p>
<p>1- What&#8217;s a license again?</p>
<p>The &#8220;copyleft movement&#8221; doesn&#8217;t claim that it won&#8217;t use copyright, rather it encourages creators to voluntarily  give some or all rights away formally, but within the confines of copyright law. How do you do that? You use a license. As an example, let&#8217;s take wikipedia. Formally, everytime you modify a page on wikipedia, you own the copyright to that page as a derivative work of all the stuff before&#8230; until the next edit of course. By using the wikipedia framework (the wiki, the site itself, etc&#8230;) you agree to post your copyrighted stuff according to a license. In this case, wikipedia uses the GFDL, the GNU Free Documentation License. It says many things, but the summary is that everyone is free to use the stuff freely for non-commercial or commercial uses, at will. What you have to do though, is that whatever is licensed under the GFDL has to be distributed under the GFDL and also carry along with it the whole text of the GFDL (which is pretty long). It also says that if you make a derivative work of the stuff (which is what you do when you edit a page) you have to distribute it under the GFDL, so that if you use something that&#8217;s licensed under GFDL as a base, you have to make your end product licensed under GFDL as well. It&#8217;s not as bad as it seems as the definition of a derivative work isn&#8217;t all encompassing. For example, if you quote something from wikipedia in a book, you don&#8217;t have to distribute the whole book under the GFDL. Is the GFDL the only license of that type? Absolutely not. There are dozens and they&#8217;re not all compatible, which has caused headaches at time. Another license which is pretty close to the GFDL is the CC-by-SA (creative commons attribution share-alike license). Now you may think, &#8220;wow!What&#8217;s that?!&#8221; Let&#8217;s describe it.</p>
<p>2-Wow! What&#8217;s CC-by-SA?!?!</p>
<p>CC-by-SA stands for creative commons attribution share-alike license. The creative commons is a not for profit organisation that came out of Stanford and whose purpose is to design license agreements that allow you to easily understand what you&#8217;re doing and easily give away some, all or none of your rights away. To achieve that goal, they have crafted a whole set of lienses (and are crafting more) as well as have ported them to different jurisdictions (different countries). So hte CC-by-SA is only one of those licenses. What does CC-by-SA say? Well, basically the same thing as the GFDL. It says you can use the work as you like, but you have to say where it came from and the resulting work has to be licensed with the same terms. Now, it&#8217;s nice and simple, but it&#8217;s not compatible with the GFDL?  So at this point, you may ask &#8220;Why?&#8221;</p>
<p>3-Why are GFDL and CC-by-SA not compatible?</p>
<p>Simple. In fact, right now, the incompatibility is only one-way. You can take stuff that&#8217;s licensed CC-by-SA and integrate it (or just release it) under something that&#8217;s GFDL, because the GFDL has the same terms as CC-by-SA. You can&#8217;t take something that&#8217;s GFDL and release it under CC-by-SA because the GFDL says the derivative work has to be licensed under <strong>the same license</strong>. CC-by-SA only says<strong> the license has to have the same provisions</strong>, but it can be a different license. Annoying heh? Two things achieving the same goal can&#8217;t talk to each other.  So now you may think &#8220;Well, that&#8217;s nice legal stuff, but why should I care?&#8221; Let&#8217;s look at that.</p>
<p>4- &#8220;Why should I care?&#8221;</p>
<p>Well, at least <strong>I</strong> (Charles) should care because I administer websites and I have to deal with these licenses.  If you look at the right bar of this website, further down, you&#8217;ll see a little logo with the name of the license. That&#8217;s right, this site is licensed under a creative commons license. Neat heh? I don&#8217;t actually mind people reusing what I write here. I just ask that they be nice about it and follow my conditions. Now that&#8217;s nice, but I don&#8217;t often use wikipedia stuff in here. In fact I don&#8217;t. One area where this was a problem was <a href="http://www.wikiscuba.com" target="_blank">wikiscuba</a>. I started that website with a british diver and we had to decide, at the beginning, which license we were going to use. We wanted to have a creative commons license so that we could interface with <a href="http://www.wikitravel.org" target="_blank">wikitravel</a>. Wikitravel is a travel wiki and since we have listings of dive sites, we wanted to be able to re-use stuff from wikitravel in ours. As a matter of fact, we did. Way at the beginning, I copied the country pages from wikitravel to give us a start and some structure in the dive site section. The problem is that we also have a techniques/gear/instruction kind of part of the site and it would have been nice to have GFDL licensing so that we could take stuff from <a href="http://www.wikipedia.org" target="_blank">wikipedia</a>. We had to make a choice. We picked creative commons. With the hindsight, we could have picked both. It&#8217;s possible to dual-license all the stuff. We didn&#8217;t. Why? I don&#8217;t remember. That&#8217;s where the headaches start, you see. Thanks to this new move (I&#8217;m not sure whether it&#8217;s a done thing, but when it comes, you&#8217;ll know for sure, wikiscuba will gain about 1000 pages overnight and I&#8217;ll happily add information on there!) we won&#8217;t have to choose. Now we can just get back to the business of creating more information, adapting more information and distributing it so people can use it.</p>
<p>5-&#8221;That&#8217;s nice, Charles, you&#8217;ve told us why <strong>you</strong> should care, but why should <strong>I</strong> care?&#8221;</p>
<p>Ah! Good question. Well, in today&#8217;s world, it&#8217;s easy to create content and distribute it. Do you have blog? Did you take a picture of your dog and put it on it? Then you&#8217;re distributing content. (Just for the record, it could also be a picture of you, your boyfriend, your niece or anything else.) What about the text of your blog? What if you wrote down something, put it on a webpage for everyone to see? You&#8217;re distributing content. What if you sing a song you recorded? You&#8217;re distributing content. What if you write a piece of software and you put it on your webpage? You&#8217;re distributing content. (There are licenses specifically for software, for example linux is licensed under the GPL which is also very popular. There are, for software also, a lot of different licenses and they&#8217;re not a priori compatible, either because of the terms they use or of some technicality. Firefox, for example, is free and open source software, but is not distributed under the GPL.)</p>
<p>So as you can see, in today&#8217;s world, it&#8217;s easy to create and distribute content. (As a corollary, it&#8217;s also easy to copy someone else&#8217;s copyrighted content and distribute it.) An example which is hopefully more interesting to the scientist-readers of this blog, is the following:</p>
<blockquote><p>If you write a report, produces plots, integrate it all in a pdf and put it on your webpage, you&#8217;ve created and distributed content. Now, what do you want? Do you want to make sure people know they can cut out a figure and re-use it in their Ph.D. thesis while attributing you as the source? This is probably something most scientists want. One option would be to release your work under the Creative Commons attribution share-alike license, the CC-by-SA. [Just for the record, I don't work for creative commons and I don't get anything from them for saying this or anything else.] In today&#8217;s massively interconnected world where fast communication methods are available to many, it&#8217;s important to know about copyright. Especially when it&#8217;s so easy to break the law by copying someone else&#8217;s copyright these days.</p></blockquote>
<p>So that&#8217;s the long story about the short announcement. This is a great day. Interoperability between &#8220;open source&#8221; or &#8220;copyleft&#8221; projects is important or, at least according to me, desirable. Sometimes you don&#8217;t want interoperability. For example, I believe the license which governs the BSD operating system (most people have microsoft windows, mac people have MacOS, the free and open source operating system normally talked about is linux, BSD is another such free and open source operating system) allows people to take the source, modify it, compile it, package it in a machine and distribute it around, making people pay for it, without ever giving the program away. (If I&#8217;m wrong, someone correct me, but I believe it&#8217;s the BSD license which allows that.) Now I don&#8217;t think that&#8217;s wrong. It&#8217;s a choice. And the BSD people, at the beginning, made that choice. Linux, on the other hand, says that you can re-use linux code (well, GPL code really)  as you will but you have to <strong>give the source away</strong>. Again, it&#8217;s a decision. It has good effects: the license basically tends to multiply and your code would never end up to disappear from the usable-for-free pool (which could happen to BSD although it&#8217;s quite unlikely). It also has undesirable effects: there are people who might want to use the code base and create something really awesome that you&#8217;d actually want to buy, but they won&#8217;t because they don&#8217;t want to give the source away. The original linux people made a choice.</p>
<p>My final point is that when you create content and distribute it, you have to make a choice as to how you&#8217;re going to distribute it. You can give all your rights away and put it in the public domain. You can give no rights away and simply not license your creation at all (or basically only license it for viewing). You can give some rights away in between those extremes. Still you have to know what you can give away and what your choices are. I recommend the <a href="http://www.creativecommons.org" target="_blank">creative commons</a> website as a good start with information although there are more ressources out there.</p>
<p>[Originally seen on <a href="http://blog.jamendo.com/index.php/2007/12/01/breaking-news-wikipedia-switches-to-creative-commons/">slashdot</a> and <a href="http://blog.jamendo.com/index.php/2007/12/01/breaking-news-wikipedia-switches-to-creative-commons/" target="_blank">Jamendo Blog</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.charleskiyanda.com/2007/12/02/wikipedia-licensing-will-be-compatible-with-creative-commons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Google Maps&#8221; for bicycles</title>
		<link>http://blog.charleskiyanda.com/2007/09/13/google-maps-for-bicycles/</link>
		<comments>http://blog.charleskiyanda.com/2007/09/13/google-maps-for-bicycles/#comments</comments>
		<pubDate>Thu, 13 Sep 2007 23:18:57 +0000</pubDate>
		<dc:creator>Charles Kiyanda</dc:creator>
				<category><![CDATA[FOSS/Linux]]></category>

		<guid isPermaLink="false">http://blog.charleskiyanda.com/2007/09/13/google-maps-for-bicycles/</guid>
		<description><![CDATA[<p>Just saw this on the OpenStreetMaps mailing list:</p>
<p> I were just told about an bikerouting application for Gotheburg, Sweden. It&#8217;s all in swedish but may be interesting anyway. It is at &#60;http://demo.triona.se/cykel/&#62;, try for example enter &#8220;parkgatan 7&#8243; as start/Från and &#8220;torggatan 1&#8243; as destination/Till and then click &#8220;Beräkna rutt&#8221;. You get a route in green <span style="color:#777"> . . . &#8594; Read More: <a href="http://blog.charleskiyanda.com/2007/09/13/google-maps-for-bicycles/">&#8220;Google Maps&#8221; for bicycles</a></span>]]></description>
			<content:encoded><![CDATA[<p>Just saw this on the <a href="http://www.openstreetmap.org/">OpenStreetMaps</a> mailing list:</p>
<blockquote><p> I were just told about an bikerouting application for Gotheburg, Sweden. It&#8217;s all in swedish but may be interesting anyway. It is at <a href="http://demo.triona.se/cykel/" class="moz-txt-link-rfc2396E">&lt;http://demo.triona.se/cykel/&gt;</a>, try for example enter &#8220;parkgatan 7&#8243; as start/Från and &#8220;torggatan 1&#8243; as destination/Till and then click &#8220;Beräkna rutt&#8221;. You get a route in green in the map and a list of turns in the lower right part. There are setting for if you cycle slow, medium or fast. Also if you want the &#8220;most appropriate&#8221; or fastest route.</p>
<p>/Jonas</p></blockquote>
<p>This is cool. For those not in the know (and I assume there&#8217;s a few of you, not so long ago I had no idea that OSM meant more than Orchestre Symphonique de Montréal), OSM stands for Open Street Maps. It&#8217;s community effort, people riding/walking/driving around with their gps units and recording where the streets are. So far, it&#8217;s basically an &#8220;open source google maps&#8221;. Except, as in most open source projects, it ends up being more than that. People don&#8217;t just record the location of the streets, they record the location of pubs/restaurants/parks&#8230; Ok, so far it still looks like something Google does with the added burden of the randomness of data availability. Except it&#8217;s not only that! Mappers also record the position of walking paths, cycling paths, etc. Now that&#8217;s definitely something Google doesn&#8217;t do, at least not right now. So why bother when google does it for free? Well, for starters, the bike routing example I gave just above is a great idea that&#8217;s impossible with Google. There is someone who decided to reuse this free data to make something cool and innovative. It might not be so useful in the land of Uncle Sam, but in other countries with a developped cycling infrastructure, this would be wonderful. Granted locals learn how to cycle somewhere quite fast without needing to constantly use a map, this would still be a perfect tool for a slightly longer trip. I could see myself having used such a tool back when I lived in Montréal, in Québec.</p>
<p>There&#8217;s more to this than a cycling navigator, though. The data is free (as in free speech and free beer), which means you can take it and reuse it. How does that impact your life? As an example, let me take <a href="http://www.wikiscuba.com" target="_blank">wikiscuba</a>. It&#8217;s a wiki and all the information is free (as in free speech and&#8230; you know). This site would benefit a whole lot from having maps included. We have installed all the required code on the site to use the <a href="http:///www.google.com/apis/maps/">google maps applet</a> and it works. Some people have started using it. It&#8217;s completely legal. It&#8217;s free, as in free beer, but not free as in free speech. What this means for us is that we can use the google maps applet with no legal worries, but this restrict the further uses that can be done with out site. While it&#8217;s legal for us to display google maps within the wikiscuba site, it makes it illegal for someone to print off the page and distribute it to people. So if, at some point, we have enough information on a page for a dive shop to say &#8220;Ok, let&#8217;s just print off the page from wikiscuba and distribute it to students so they know where to go for the certification&#8221;, they wouldn&#8217;t legally be allowed to. At this point, you may thing it&#8217;s probably not a big problem. After all, Google is probably not going to tour all the dive shops of the world to make sure they haven&#8217;t printed a page from our site with one of their maps. Sure.  Only, our data is completely free. So theoretically, someone could decide to write a book using the stuff we have written on the wiki. But they wouldn&#8217;t be allowed to use the maps. You couldn&#8217;t, also, directly make a set of pdf files from pages from an area that interests you and just distribute those on your website. You&#8217;d have to edit the maps out beforehand. Something like &#8220;The expanded guide of scuba diving sites in Northern Europe&#8221;. Now that starts restricting what you can do with our site. At this point, you may think &#8220;So what? Just edit the maps out!&#8221; and you&#8217;d be right. It&#8217;s just not as nice. I&#8217;d like to be able, on the licensing page of wikiscuba, to say:</p>
<p>&#8220;Go on. Do what you will. It&#8217;s free! (as in free speech)&#8221;</p>
<p>But I can&#8217;t. I have to say:</p>
<p>&#8220;Almost everything on wikiscuba is free. The text is all licensed under a creative commons license and you can use all the text you want in other uses. Images should also be similarly licensed, although it&#8217;s a good thing to check. Some of them may be in the public domain, in which case you can do anything you want with them. In other cases, some images may be licensed under various flavors of the creative commons licenses and certain restrictions may apply. Above all, you are not allowed to re-use the google maps applet information&#8230;&#8221;</p>
<p>Not as nice. Not all of it is Google&#8217;s fault, you&#8217;re right. The bit about the images will have to be there no matter what. But &#8220;some images have some restrictions and many have absolutely no restrictions&#8221; sounds a whole lot better than &#8220;you can&#8217;t re-use the information.&#8221; Reading the bit about google maps, stumps the reader. It may make re-using our data appear more difficult than it is and lower your desire to undertake a project that would re-use what we offer. I don&#8217;t like that. There&#8217;s really no incentive for us (who legally own wikiscuba and make it run) to restrict the way in which you use our data.</p>
<p>Now, at this point, you may be thinking &#8220;I disagree. If you restricted what can be done with the information on your site, you could make money everytime someone reuses your data!&#8221;</p>
<p>And you&#8217;d be right.</p>
<p>But you&#8217;d be forgetting one, small, detail; This is a community effort.</p>
<p>People don&#8217;t like to work for something and then not be allowed to use it if they want to.</p>
<p>Nobody would contribute to our site if we did that.</p>
<p>The site wouldn&#8217;t be cool.</p>
<p>I wouldn&#8217;t have a great scuba diving encyclopedia (although we&#8217;re still far from that) when I&#8217;m looking for info about a dive site.</p>
<p>I wouldn&#8217;t sleep well at night.</p>
<p>Again, I&#8217;m not blaming Google. They&#8217;re not sharecropping here. They license map and satellite data from companies and government and use it on their site. In fact, it appears that the restrictions they put on their maps and the google maps applet is because of those licensing deals. So it&#8217;s not entirely clear it&#8217;s even their fault from the start. Still, OSM is better in that respect. The data is free. Yes, the data is spotty. You don&#8217;t have good coverage in the US and in many other parts of the world. But the coverage is expanding. Companies are licensing their map data to the OSM community for use in the project. So, some bits of the world see their coverage expanded very, very rapidly at times. It&#8217;s a relatively young project. It&#8217;s getting there. When their coverage is really good, maybe I&#8217;ll be able to include that data in my site instead of google maps. That will be a great day. Oh yeah, and I&#8217;ll be able to have great street navigation on my gps without having to pay 200$ to garmin. That&#8217;ll be even better!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.charleskiyanda.com/2007/09/13/google-maps-for-bicycles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How linux (well, really foss) is going to rule the world: the 2-step program</title>
		<link>http://blog.charleskiyanda.com/2007/08/13/how-linux-well-really-foss-is-going-to-rule-the-world-the-2-step-program/</link>
		<comments>http://blog.charleskiyanda.com/2007/08/13/how-linux-well-really-foss-is-going-to-rule-the-world-the-2-step-program/#comments</comments>
		<pubDate>Mon, 13 Aug 2007 21:16:42 +0000</pubDate>
		<dc:creator>Charles Kiyanda</dc:creator>
				<category><![CDATA[FOSS/Linux]]></category>

		<guid isPermaLink="false">http://blog.charleskiyanda.com/2007/08/13/how-linux-well-really-foss-is-going-to-rule-the-world-the-2-step-program/</guid>
		<description><![CDATA[<p>Linux on the desktop and so FOSS, Free (as in free speech) and Open Source Software, have been making headway lately. Linux is still not accepted as an operating system. It&#8217;s still viewed as a geekie thing that&#8217;s not ready to be used by the masses. So I was wondering lately how this could be changed <span style="color:#777"> . . . &#8594; Read More: <a href="http://blog.charleskiyanda.com/2007/08/13/how-linux-well-really-foss-is-going-to-rule-the-world-the-2-step-program/">How linux (well, really foss) is going to rule the world: the 2-step program</a></span>]]></description>
			<content:encoded><![CDATA[<p>Linux on the desktop and so FOSS, Free (as in free speech) and Open Source Software, have been making headway lately. Linux is still not accepted as an operating system. It&#8217;s still viewed as a geekie thing that&#8217;s not ready to be used by the masses. So I was wondering lately how this could be changed and I came up with the following 2 step program</p>
<ol>
<li><strong>Take up windows on it&#8217;s own turf and target it&#8217;s own weakness:</strong> A FOSS antivirus software for windows. Antivirus software is just the most annoying thing to get. Every body gets it for free with their laptop nowadays. It lasts a year and then it expires. It just bugs you with reminder notices, they want to charge a lot for the software and definition updates. An open-source antivirus software/framework would be a huge plus. Just give that away. Hopefully, companies would come up and try to sell you just the virus definition. Maybe with different pricing schemes. For 10$/month, you get daily updates, for 2$/month, you get monthly updates&#8230; Maybe maintain a minimal, yet useful and free, virus definition file, so the program isn&#8217;t useless if you don&#8217;t pay. An antivirus software would be installed by loads of people. A great way to push some FOSS advocacy.</li>
<li><strong>A &#8220;how do computers and the internet work&#8221; website:</strong> I&#8217;m really tired of explaining to my father how his voip box has to connect to the router or, really, just what a router does all together. My mother still has a hard sometimes understanding the difference between a file and a website. I know I&#8217;ve explained these things to them, time and time again, yet it just doesn&#8217;t stick. Believe me, if there was a website where I could be and write down exactly what it does, I would even fire up inkscape (my favourite vector drawing program) and make pretty pictures for the explanations. Seriously, I would. I&#8217;m just really tired of  getting phone calls like &#8220;I don&#8217;t understand, I click on this file and the website doesn&#8217;t come up.&#8221; How does that help FOSS? Such a website would be a great way to do some foss advocacy. When explaining what an operating system, the answer isn&#8217;t just &#8220;It&#8217;s microsoft windows&#8221;, the answer is &#8220;microsoft windows may be the most familiar operating system you are familiar with. it does x, y and z. There are other alternatives, like MacOS (you may have heard the words MacOS X). Linux is another operating system you could use. It differentiates itself by a, b and c. Here&#8217;s a ubuntu linux, microsoft windows and MacOS X screenshot. Linux is free and just as useful as windows.&#8221; Yes, this is an explanation that&#8217;s pushing a particular taste onto people. It&#8217;s trying to influence users. Absolutely. But it&#8217;s not lying. It&#8217;s telling the truth, it&#8217;s being usefull and it&#8217;s emphasizing a particular set of software. Yes it&#8217;s following an agenda. Yes, it kind of reminds you of what companies like, well&#8230; microsoft, would do. How does one do this honestly? It should be hosted on a website like http://www.linux-outreach.com. Just be honest. &#8220;This information is brought to you by the linux outreach program.&#8221; Then give useful information to computer illeterate people and upsh your agenda. At some point, we have to be proactive.</li>
</ol>
<p>None of these two steps actually benefit current linux users. Linux users, right now, have absolutely no need for antivirus software, although it pays to be proactive. If Linux does gain a lot of popularity on the desktop, at some point, we&#8217;ll see viruses. Current linux users don&#8217;t need to be told what a router is, or what the difference between a directory and a file is. Current linux users are geek. But if we want FOSS to gain acceptance, we need to be proactive and reach out. We need the linux outreach program.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.charleskiyanda.com/2007/08/13/how-linux-well-really-foss-is-going-to-rule-the-world-the-2-step-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

