<?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/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
>

<channel>
	<title>Open Warrior &#187; open source</title>
	<atom:link href="http://kylewilliams.co.za/category/open-source/feed" rel="self" type="application/rss+xml" />
	<link>http://kylewilliams.co.za</link>
	<description>Because digital freedom matters...</description>
	<lastBuildDate>Wed, 30 Jun 2010 07:22:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/za/</creativeCommons:license>
		<item>
		<title>mencoder webcam floating point exception solution</title>
		<link>http://kylewilliams.co.za/2009/10/23/mencoder-webcam-floating-point-exception-solution</link>
		<comments>http://kylewilliams.co.za/2009/10/23/mencoder-webcam-floating-point-exception-solution#comments</comments>
		<pubDate>Fri, 23 Oct 2009 14:44:52 +0000</pubDate>
		<dc:creator>Kyle Williams</dc:creator>
				<category><![CDATA[(k)ubuntu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[tech]]></category>

		<guid isPermaLink="false">http://kylewilliams.co.za/?p=174</guid>
		<description><![CDATA[I&#8217;ve spent most of the afternoon trying to figure out how I could use MEncoder to record video and audio from my webcam and kept running into a &#8220;floating point exception&#8221; problem. In scouring the internet I realised that many people seem to be having the exact same problem. It turns out that the problem [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve spent most of the afternoon trying to figure out how I could use <a href="http://www.mplayerhq.hu/">MEncoder</a> to record video and audio from my webcam and kept running into a &#8220;floating point exception&#8221; problem. In scouring the internet I realised that many people seem to be having the exact same problem. It turns out that the problem is due to a bug in MEncoder and is simply fixed by installing the latest version.</p>
<p>I use <a href="http://www.kubuntu.org">Kubuntu Jaunty</a> so the problem for me lay in the version of Mencoder that comes packaged with it. To fix the problem all I did was follow <a href="http://teejee2008.wordpress.com/2009/10/15/how-to-update-mplayer-in-ubuntu-9-04-jaunty/">these</a> instruction for adding a thrid party repository for newer builds of <a href="http://www.mplayerhq.hu/">MPlayer/MEncoder</a> and then installed the latest MEncoder using apt-get.</p>
<blockquote><p>sudo apt-get install mplayer mencoder</p></blockquote>
<p>Thereafter I was able to capture video and audio from my webcam using the following command:</p>
<blockquote><p>mencoder tv:// -tv driver=v4l2:width=320:height=240:device=/dev/video0:forceaudio:adevice=/dev/dsp -ovc lavc -oac mp3lame -lameopts cbr:br=64:mode=3 -o webcam.avi</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://kylewilliams.co.za/2009/10/23/mencoder-webcam-floating-point-exception-solution/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/za/</creativeCommons:license>
	</item>
		<item>
		<title>getting the lenovo sl300 camera to work on linux</title>
		<link>http://kylewilliams.co.za/2009/03/05/getting-the-lenovo-sl300-camera-to-work-on-linux</link>
		<comments>http://kylewilliams.co.za/2009/03/05/getting-the-lenovo-sl300-camera-to-work-on-linux#comments</comments>
		<pubDate>Thu, 05 Mar 2009 21:42:08 +0000</pubDate>
		<dc:creator>Kyle Williams</dc:creator>
				<category><![CDATA[(k)ubuntu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://kylewilliams.co.za/2009/03/05/getting-the-lenovo-sl300-camera-to-work-on-linux</guid>
		<description><![CDATA[I recently got a Lenovo SL300 Laptop, with a built in camera and was pretty keen to get onto using the camera with Skype, but it wouldn&#8217;t work &#8211; I couldn&#8217;t get a video feed from the camera. To cut a long story short, after two days of Googling and playing around I found a [...]]]></description>
			<content:encoded><![CDATA[<p>I recently got a Lenovo SL300 Laptop, with a built in camera and was pretty keen to get onto using the camera with Skype, but it wouldn&#8217;t work &#8211; I couldn&#8217;t get a video feed from the camera. To cut a long story short, after two days of Googling and playing around I found a solution (though I can&#8217;t remember where I found it) &#8211; here&#8217;s how!</p>
<p><strong>Tested on (K)Ubuntu Hardy &amp; Intrepid (See bottom for Jaunty fix)<br />
</strong></p>
<p>By default the webcam works on all Linux kernels 2.6.25+. However, the problem is that when the kernel loads the uvcvideo module, it loads it with the wrong parameters.</p>
<p>To correct this first unload the uvcvideo module:</p>
<p><em>~# sudo modprobe -r uvcvideo</em></p>
<p>Then reload the module with the correct parameter:</p>
<p><em>~# sudo modprobe uvcvideo quirks=16</em></p>
<p>Exactly what quirks are, I&#8217;m not sure &#8211; all I know is that various values for the quirks parameter work (I tried up to 50) without any noticeable performance difference.</p>
<p><strong>Automating the Process</strong></p>
<p>Now one would expect that you would want to automate this process and that&#8217;s also really simple &#8211; all you need to do is add an option to pass the quirks parameter to your kernel when the module is loaded. Exactly how you do this might vary depending on your linux distribution.</p>
<p>On Ubuntu do the following:</p>
<p><em>~# cd /etc/modprobe.d</em><br />
<em>~# nano options</em></p>
<p>At the bottom add the following line:</p>
<p><em>options uvcvideo quirks=16</em></p>
<p>And that&#8217;s it! Either reload the module with <em>modprobe -r uvcvideo</em> or restart your computer, and you won&#8217;t have to worry about it again!</p>
<p>I&#8217;ve only tested this solution on the Lenovo SL300 running Kubuntu Hardy and Intrepid, but I&#8217;m pretty sure it will work with all UVC webcams which aren&#8217;t displaying a picture.</p>
<p><span style="font-weight: bold">Update: </span>Upgrading to Jaunty breaks this fix. I think the reason is that modprobe no longer makes use of the options file, but instead replaces it with a series of conf files. To get the camera working again do the following:</p>
<p><em>~# cd /etc/modprobe.d</em><br />
<em>~# sudo nano uvcvideo.conf</em></p>
<p>Once again add the following line:<br />
<em>options uvcvideo quirks=16</em></p>
<p>And then reload the uvcvideo module with &#8220;sudo modprobe -r uvcvideo&#8221; and then &#8220;sudo modprobe uvcvideo&#8221;</p>
<p>Edit: If anyone successfully used this solution on a SL400 or SL500, please let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://kylewilliams.co.za/2009/03/05/getting-the-lenovo-sl300-camera-to-work-on-linux/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/za/</creativeCommons:license>
	</item>
		<item>
		<title>open source development model</title>
		<link>http://kylewilliams.co.za/2007/11/07/open-source-development-model</link>
		<comments>http://kylewilliams.co.za/2007/11/07/open-source-development-model#comments</comments>
		<pubDate>Wed, 07 Nov 2007 12:37:51 +0000</pubDate>
		<dc:creator>Kyle Williams</dc:creator>
				<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://kylewilliams.co.za/2007/11/07/open-source-development-model/</guid>
		<description><![CDATA[.flickr-photo { } .flickr-frame { float: left; text-align: center; margin-right: 15px; margin-bottom: 15px; } .flickr-caption { font-size: 0.8em; margin-top: 0px; } Teamwork, originally uploaded by tim ellis. The open source development model is what makes open source software so great. The model is simple: release early, release often. The reason is simple, the sooner you [...]]]></description>
			<content:encoded><![CDATA[<style type="text/css"> .flickr-photo { } .flickr-frame { float: left; text-align: center; margin-right: 15px; margin-bottom: 15px; } .flickr-caption { font-size: 0.8em; margin-top: 0px; } </style>
<p class="flickr-frame"> 	<a href="http://www.flickr.com/photos/tim_ellis/104325149/" title="photo sharing"><img src="http://farm1.static.flickr.com/42/104325149_cf8d8af370_t.jpg" class="flickr-photo" alt="Teamwork" /></a><br />
<span class="flickr-caption"><br />
<a href="http://www.flickr.com/photos/tim_ellis/104325149/">Teamwork</a>,<br />
originally uploaded by <a href="http://www.flickr.com/people/tim_ellis/">tim ellis</a>.<br />
</span></p>
<p>The open source development model is what makes open source software so great. The model is simple: release early, release often. The reason is simple, the sooner you can get software out there, the sooner bugs can be found and fixed, and in the long run, better software. For geeks and technical users this is the best type of development model.</p>
<p>For non-technical users however, software which follows this development process can be somewhat daunting. Non-technical users and new users to open source software are looking for usability and complete software packages, not a simplistic form of what one day will be a great software package. I&#8217;m pretty sure that a non-technical user who comes across semi-working software, will probably just give up using it.</p>
<p>Think of all those stories that you hear from people when you tell them that you use Linux. If they know what Linux is, their response will usually be something like &#8220;Oh yes, Linux, I installed it a while ago but I wasn&#8217;t able to get XYZ working.&#8221;</p>
<p>The reason this happens, is that we, as geeks don&#8217;t mind if something doesn&#8217;t work 100% &#8211; we can always find a work around. For the non-technical user however, this isn&#8217;t the case.</p>
<p>Perhaps it&#8217;s time that more emphasis is put on the average non-technical user, rather than the geek who&#8217;ll be able to work things out. Maybe it&#8217;s time to adapt the development model to cater for non-technical users, rather than have it aimed a the pursuit of perfect, bug free software. Open source software is for everybody to use &#8211; but to do that, it must be usable!<br />
<br clear="all" /></p>
]]></content:encoded>
			<wfw:commentRss>http://kylewilliams.co.za/2007/11/07/open-source-development-model/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/za/</creativeCommons:license>
	</item>
		<item>
		<title>ubuntu free software</title>
		<link>http://kylewilliams.co.za/2007/10/16/ubuntu-free-software</link>
		<comments>http://kylewilliams.co.za/2007/10/16/ubuntu-free-software#comments</comments>
		<pubDate>Tue, 16 Oct 2007 18:54:24 +0000</pubDate>
		<dc:creator>Kyle Williams</dc:creator>
				<category><![CDATA[(k)ubuntu]]></category>
		<category><![CDATA[old]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://kylewilliams.co.za/?p=26</guid>
		<description><![CDATA[The latest version of Ubuntu, called Gutsy Gibbon will be available on the 18th of this month. Never heard of Ubuntu? Here’s a shirt description (taken from the Ubuntu site) “Ubuntu is a community developed, linux-based operating system that is perfect for laptops, desktops and servers. It contains all the applications you need &#8211; a [...]]]></description>
			<content:encoded><![CDATA[<p class="entry">The latest version of <a href="http://www.ubuntu.com/">Ubuntu</a>, called Gutsy Gibbon will be available on the 18th of this month. Never heard of Ubuntu? Here’s a shirt description (taken from the Ubuntu site)</p>
<blockquote><p> “Ubuntu is a community developed, linux-based operating system that is perfect for laptops, desktops and servers. It contains all the applications you need &#8211; a web browser, presentation, document and spreadsheet software, instant messaging and much more. Ubuntu is free software.”</p></blockquote>
<p>In even simpler terms, Ubuntu is a free alternative to Microsoft Windows software. With a little configuration it can do anything that Windows can do, from transferring music to your ipod, to playing the latest dvds, and it comes bundled with loads of great software. And best of all its free, and you’re allowed, in fact encouraged to copy it and give it to people so that they can use it as well.</p>
<p>So, if you’re interested you can either head over to the <a href="http://www.ubuntu.com/">Ubuntu website</a> where you can download it, or you can head over to <a href="http://www.shipit.ubuntu.com/">http://www.shipit.ubuntu.com </a>and request that they send you some cds &#8211; and yes, they will send you cds for absolutely nothing, free, gratis!</p>
]]></content:encoded>
			<wfw:commentRss>http://kylewilliams.co.za/2007/10/16/ubuntu-free-software/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/za/</creativeCommons:license>
	</item>
		<item>
		<title>ubuntu human kde colour scheme</title>
		<link>http://kylewilliams.co.za/2007/10/16/ubuntu-human-kde-colour-scheme</link>
		<comments>http://kylewilliams.co.za/2007/10/16/ubuntu-human-kde-colour-scheme#comments</comments>
		<pubDate>Tue, 16 Oct 2007 18:53:22 +0000</pubDate>
		<dc:creator>Kyle Williams</dc:creator>
				<category><![CDATA[(k)ubuntu]]></category>
		<category><![CDATA[old]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://kylewilliams.co.za/?p=25</guid>
		<description><![CDATA[The first time I started Ubuntu I was shocked to see that the artwork team had chosen such a terrible colour scheme…i mean come on, how could brown ever be appealing? Then a week ago I needed to use GParted to sort out a hard drive issue I was having and couldn’t find my Kubuntu [...]]]></description>
			<content:encoded><![CDATA[<p class="entry">The first time I started <a href="http://www.ubuntu.com/">Ubuntu</a> I was shocked to see that the artwork team had chosen such a terrible colour scheme…i mean come on, how could brown ever be appealing?</p>
<p>Then a week ago I needed to use <a href="http://gparted.sourceforge.net/">GParted</a> to sort out a hard drive issue I was having and couldn’t find my <a href="http://www.kubuntu.org/">Kubuntu</a> live cds or my GParted live cd. So, I pulled out one of the Ubuntu Feisty cds sent to me via <a href="https://shipit.ubuntu.com/">shipit</a> so that I could use the GParted included on the live CD.</p>
<p>I booted into Ubuntu Feisty and was amazed at how much more beautiful the brown “Human” theme looked compared to when I first saw it in Ubuntu Hoary Hedgehog. So for the last week the Ubuntu Human theme has been on my mind &#8211; there’s something subtle in the brown that gets to me, I just can’t place my finger on it.</p>
<p>Anyway, if you’re like me and absolutely love <a href="http://www.kde.org/">KDE</a>, but are also spellbound by the Ubuntu Human theme then here’s how to get the Ubuntu theme in KDE.</p>
<p>The first step is to download the KDE Human colour scheme created by Mihai Şucan available at <a href="http://www.robodesign.ro/files/linux/kde-ubuntu-human.kcsrc">http://www.robodesign.ro/files/linux/kde-ubuntu-human.kcsrc</a>.</p>
<p>Once the download has completed open KControl. Go to “Appearance &amp; Themes” -&gt; “Colors,” click “Import Scheme,” find the downloaded file, and click “Open.” That’s it, click Apply and enjoy the Human colours.</p>
<p>Here’s a screenshot of the Human theme on KDE 3.5.7<br />
<a href="http://kylewilliams.co.za/wp-content/uploads/2007/10/human-1.jpg"><img src="http://kylewilliams.co.za/wp-content/uploads/2007/10/human-1.thumbnail.jpg" /></a><a href="http://www.iblog.co.za/wp-content/blogs/5717/uploads//human-1.jpg" class="imagelink" title="human-1_small.jpg"><br />
</a></p>
<p>And here’s a screenshot of the Kalahari2 wallpaper I’m using by robertn<br />
<a href="http://kylewilliams.co.za/wp-content/uploads/2007/10/human-2.jpg"><img src="http://kylewilliams.co.za/wp-content/uploads/2007/10/human-2.thumbnail.jpg" /></a><br />
Here’s the <a href="http://www.kde-look.org/content/show.php/Kalahari02?content=67483">link to the wallpaper.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kylewilliams.co.za/2007/10/16/ubuntu-human-kde-colour-scheme/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/za/</creativeCommons:license>
	</item>
		<item>
		<title>the road to kde hacking</title>
		<link>http://kylewilliams.co.za/2007/10/16/the-road-to-kde-hacking</link>
		<comments>http://kylewilliams.co.za/2007/10/16/the-road-to-kde-hacking#comments</comments>
		<pubDate>Tue, 16 Oct 2007 18:50:40 +0000</pubDate>
		<dc:creator>Kyle Williams</dc:creator>
				<category><![CDATA[kde]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[old]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://kylewilliams.co.za/?p=21</guid>
		<description><![CDATA[Aaron Siego, president of KDE e.V recently made a post titled “Getting into KDE hacking” which reminded me of the reason I started this blog in the first place &#8211; to detail my journey into the world of KDE hacking. Truth is though, that I haven’t posted anything related to KDE hacking since I started [...]]]></description>
			<content:encoded><![CDATA[<p class="entry">Aaron Siego, president of <a href="http://ev.kde.org/">KDE e.V</a> recently made a post titled <a href="http://aseigo.blogspot.com/2007/09/getting-into-kde-hacking.html">“Getting into KDE hacking”</a> which reminded me of the reason I started this blog in the first place &#8211; to detail my journey into the world of KDE hacking.</p>
<p>Truth is though, that I haven’t posted anything related to KDE hacking since I started this blog, mainly because I haven’t had the time to do any of the great free software things I plan to do. Anyway, Aaron highlight 6 steps to getting involved in KDE hacking, and so far I’ve completed the first one which is learning Qt4. So not all is lost, I am one step closer to developing free software for the desktop environment which I have grown to love over the years (more on that another time).</p>
]]></content:encoded>
			<wfw:commentRss>http://kylewilliams.co.za/2007/10/16/the-road-to-kde-hacking/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/za/</creativeCommons:license>
	</item>
		<item>
		<title>great open source game</title>
		<link>http://kylewilliams.co.za/2007/10/16/great-open-source-game</link>
		<comments>http://kylewilliams.co.za/2007/10/16/great-open-source-game#comments</comments>
		<pubDate>Tue, 16 Oct 2007 18:47:20 +0000</pubDate>
		<dc:creator>Kyle Williams</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[old]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://kylewilliams.co.za/?p=18</guid>
		<description><![CDATA[I managed to find one of the greatest and most enjoyable open source games of all times, The Battle for Wesnoth. From the site http://www.wesnoth.org: “The Battle for Wesnoth is a free, turn-based strategy game with a fantasy theme. Fight a desperate battle to reclaim the throne of Wesnoth, or take hand in any number [...]]]></description>
			<content:encoded><![CDATA[<p class="entry">I managed to find one of the greatest and most enjoyable open source games of all times, <em>The Battle for Wesnoth</em>.</p>
<p>From the site <a href="http://www.wesnoth.org/">http://www.wesnoth.org</a>:<br />
<em>“The Battle for Wesnoth is a free, turn-based strategy game with a fantasy theme. Fight a desperate battle to reclaim the throne of Wesnoth, or take hand in any number of other adventures…”</em></p>
<p>What makes the game so great is that it is truly a strategic game because of its turn based game play. You play your turn, and then your opponent plays theirs &#8211; at no time are you playing at the same time. What makes this such a great idea for a strategy game is that you really need to think ahead as to how your opponent is going to respond to the decisions you make and vice versa.</p>
<p>Don’t expect the most amazing 3D graphics however, they’re more like those of Warcraft 2. But don’t let this put you off. The Battle for Wesnoth is one of the most enjoyable games I’ve played in a while &#8211; in fact I usually don’t even enjoy playing games.</p>
<p>On Ubuntu based systems you want to install several packages from universe,</p>
<p>wesnoth<br />
wesnoth-data<br />
wesnoth-music</p>
<p>Those are the main ones, and then you’ll probably want to install a few campaigns,</p>
<p>wesnoth-ttb &#8211; A Tale of Two Brothers<br />
wesnoth-utbs &#8211; Under the Burning Sun<br />
wesnoth-tsg &#8211; The South Guard<br />
wesnoth-httt &#8211; Heir to the Throne<br />
wesnoth-ei &#8211; Eastern Invasion</p>
<p>I’d recommend first working through the tutorial when starting the game and then going on to play the A Tale of Two Brothers campaign.</p>
<p>Happy (free &amp; open) gaming!</p>
]]></content:encoded>
			<wfw:commentRss>http://kylewilliams.co.za/2007/10/16/great-open-source-game/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/za/</creativeCommons:license>
	</item>
		<item>
		<title>ubuntu south africa community</title>
		<link>http://kylewilliams.co.za/2007/10/16/ubuntu-south-africa-community</link>
		<comments>http://kylewilliams.co.za/2007/10/16/ubuntu-south-africa-community#comments</comments>
		<pubDate>Tue, 16 Oct 2007 18:46:28 +0000</pubDate>
		<dc:creator>Kyle Williams</dc:creator>
				<category><![CDATA[(k)ubuntu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[old]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://kylewilliams.co.za/?p=17</guid>
		<description><![CDATA[South African Ubuntu users should consider joining the Ubuntu South Africa Community. “This Wiki is dedicated to all Ubuntu users, developers and enthusiasts in South Africa. If you use Ubuntu or have an interest in the operating system you are automatically part of the community. We want you to feel valued and at home. We [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://kylewilliams.co.za/wp-content/uploads/2007/10/ubuntulogo-za.png" title="Ubuntu South Africa"><img src="http://kylewilliams.co.za/wp-content/uploads/2007/10/ubuntulogo-za.png" alt="Ubuntu South Africa" /></a></p>
<p>South African Ubuntu users should consider joining the Ubuntu South Africa Community.</p>
<p>“This Wiki is dedicated to all Ubuntu users, developers and enthusiasts in South Africa. If you use Ubuntu or have an interest in the operating system you are automatically part of the community. We want you to feel valued and at home. We call ourselves the Ubuntu-ZA LoCo Team. Ubuntu-ZA is an official Ubuntu LoCo (Local Community) Team. From https://wiki.ubuntu.com/LoCoFAQ:”</p>
<p><a href="http://www.ubuntu-za.org/">http://www.ubuntu-za.org/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kylewilliams.co.za/2007/10/16/ubuntu-south-africa-community/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/za/</creativeCommons:license>
	</item>
		<item>
		<title>my first commercial gpl software</title>
		<link>http://kylewilliams.co.za/2007/10/16/my-first-commercial-gpl-software</link>
		<comments>http://kylewilliams.co.za/2007/10/16/my-first-commercial-gpl-software#comments</comments>
		<pubDate>Tue, 16 Oct 2007 18:44:33 +0000</pubDate>
		<dc:creator>Kyle Williams</dc:creator>
				<category><![CDATA[gpl]]></category>
		<category><![CDATA[old]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://kylewilliams.co.za/?p=15</guid>
		<description><![CDATA[Yesterday I was approached by a financial analyst and asked to write some commercial financial software which will be used in calculating bond rates. This is my first commercial project and has created the opportunity for me to test the sustainability of the open source model when it comes to commercial software. The software will [...]]]></description>
			<content:encoded><![CDATA[<p class="entry">Yesterday I was approached by a financial analyst and asked to write some commercial financial software which will be used in calculating bond rates. This is my first commercial project and has created the opportunity for me to test the sustainability of the open source model when it comes to commercial software.</p>
<p>The software will be GPL &#8211; it has to since it uses a GPL driver. I’ll develop the application and give it to my contractor, from there it will be interesting to see how the contractor handles distribution and what profits (if any) they make.</p>
<p>Profits can be made with GPL’d and other open source software &#8211; one only needs to look at RedHat and MySQL as examples. RedHat and MySQL however are large companies, it will be interesting to see how sustainable the model is for small projects.</p>
<p>I might write a paper on this once the project is completed and has been successfully deployed &#8211; I’m sure a case study of this type will be very valuable to the community.</p>
]]></content:encoded>
			<wfw:commentRss>http://kylewilliams.co.za/2007/10/16/my-first-commercial-gpl-software/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/za/</creativeCommons:license>
	</item>
		<item>
		<title>microsoft/linspire deal</title>
		<link>http://kylewilliams.co.za/2007/10/16/microsoftlinspire-deal</link>
		<comments>http://kylewilliams.co.za/2007/10/16/microsoftlinspire-deal#comments</comments>
		<pubDate>Tue, 16 Oct 2007 18:43:21 +0000</pubDate>
		<dc:creator>Kyle Williams</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[old]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://kylewilliams.co.za/?p=14</guid>
		<description><![CDATA[For those of you who don’t know, Linux distribution Linspire has signed a deal with Microsoft. The deal, like Novell and Xandros before it includes office document compatibility, instant messaging interoperability and collaboration on digital media. Again the big ticket part of the deal inlcudes patent covenants from Microsoft for customers operating the Linspire desktop. [...]]]></description>
			<content:encoded><![CDATA[<p class="entry">For those of you who don’t know, Linux distribution Linspire has signed a deal with Microsoft.</p>
<p><em>The deal, like Novell and Xandros before it includes office document compatibility, instant messaging interoperability and collaboration on digital media. Again the big ticket part of the deal inlcudes patent covenants from Microsoft for customers operating the Linspire desktop.</em><br />
<a href="http://www.techcrunch.com/2007/06/14/linspire-joins-microsofts-any-one-but-red-hat-group/">http://www.techcrunch.com/2007/06/14/linspire-joins-microsofts-any-one-but-red-hat-group/</a></p>
<p>The official letter released by Linspire is available here:<br />
<a href="http://www.linspire.com/linspire_letter.php">http://www.linspire.com/linspire_letter.php</a></p>
<p>I’ve been thinking about this issue quite a bit today. My first reaction, like many others, was negative. However, I’ve put a bit more thought into it and now see how it can benefit the linux community while still staying true to open source philosophies (if not in the short run, then at least in the long run).</p>
<p>I have no doubt that including proprietary software in linux distributions will allow for better integration with proprietary systems and software, thereby increasing linux’s market share. Now that’s all very good, but I don’t think the community’s outcry is about market share. It’s more about denying users their freedom and “giving in to the enemy,” an argument which I believe to be valid. However, in my experience most first time linux users aren’t that concerned about their freedom. Usually they’re just fed up with Windows and are looking for an alternative, as was the case for me. But as people start using linux and free software (as in free speech), they start to understand the values of free software. Slowly these ideals grow in the mind of the free software user, and (hopefully) eventually turn them into free software advocates.</p>
<p>I believe that as long as there are movements such as the Free Software Foundation and linux distributions which remain true to open source philosophies (as I suspect debian always will), there will always be a truly free option when it comes to computing. And new users who come to believe that freedom in software is important, will ensure that the open source philosophies live on.</p>
<p>From my observations free software adoption usually follows a timeline which goes something like:<br />
1. Use proprietary software<br />
2. Use a mixture of proprietary software and free software<br />
3. Start to understand the value of free software.<br />
4. Switch to only free software and encourage others to use it and contribute to the community.</p>
<p>Deals such as those that commercial linux vendors make with Microsoft speed up the transition from only proprietary software use to a mixture of free software and proprietary software. Thereby speeding up the adoption of only free software.</p>
<p>Of course, there is always the risk that in the future the pool of free software users that believe in and encourage the free software philosophy will become diluted by those who know nothing of it. In the event that this happens people will stop seeing the need for open source software and start developing only proprietary software. Yet once again, the free software movement will pick up as remaining free software advocates fight for software freedom, and the cycle will repeat itself. Hopefully though, free software advocates will be successful in preventing this scenario from ever taking place.</p>
]]></content:encoded>
			<wfw:commentRss>http://kylewilliams.co.za/2007/10/16/microsoftlinspire-deal/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/za/</creativeCommons:license>
	</item>
	</channel>
</rss>
