<?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>UnixWars</title>
	<atom:link href="http://unixwars.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://unixwars.com</link>
	<description>Taher Shihadeh's ragbag</description>
	<lastBuildDate>Sat, 03 Jul 2010 14:09:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>epi_sort.py: Filename comparison</title>
		<link>http://unixwars.com/2010/07/03/filename-comparator/</link>
		<comments>http://unixwars.com/2010/07/03/filename-comparator/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 14:08:57 +0000</pubDate>
		<dc:creator>Taher Shihadeh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://unixwars.com/?p=667</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p>As every Joe Six-pack would do, I usually write a lot of scripts to automate my tasks as much as I can. Most of them aren&#8217;t even worth mentioning, but nevertheless I have been meaning to start posting some of those. I&#8217;ve stumbled upon lots of jewels on the net that seemed worthless to their authors, so if any one gets to use one of mine I&#8217;ll be happy. You never know.</p>
<h4>The problem:</h4>
<p>I have a directory full of unclassified media files, some are duplicates, some aren&#8217;t, and each one follows a different naming convention.</p>
<p>I even try to classify them from time to time, so you can throw some directories into the pack. Sometimes, I even create two or three directories for the same group-series-category-whatever before I realize there is an existing one with a slightly different name. And frequently a lot of files remain unclassified, many of which could fit into one of the directories I mentioned.</p>
<p>Of course &#8230; whenever a new file arrives to my <a href="/tag/home-server/">home server</a>, it gets thrown into that very same directory, so Chaos keeps spreading, as it always does.</p>
<p>To clarify things, lets show an example:</p>
<pre>drwxrwxrwx 1 user user      4096 2010-07-03 11:50 01_Battlestar_Enterprise
drwxrwxrwx 1 user user      4096 2010-07-03 11:42 02_Startrek_Galactica
drwxrwxrwx 1 user user      4096 2010-07-03 11:50 03_battlestar.enterprise-season.1
-rwxrwxrwx 1 user user 220393472 2010-07-03 02:49 battlestar.enterprise.s1e01.avi
-rwxrwxrwx 1 user user 221227008 2010-07-03 02:50 Battlestar_Enterprise_1_22.mp4
-rwxrwxrwx 1 user user 195393472 2010-07-03 02:49 startrek.galactica.4x15.[ripper_22].mkv
</pre>
<p>As you can imagine, sorting things up can get really tedious, and there is no automatic way of doing it that I know of.</p>
<p>I had some time this morning and got fed up with it. Every little piece of help is more than welcome, and here is where Python comes to the rescue.</p>
<h4>The solution:</h4>
<p>There are dozens of ways to do this, but I ended up coding a quick hack to help me sort things out.<br />
It just compares the names of files and directories, and estimates the similarities. Anything above a 50% match is usually correctly estimated.</p>
<pre class="prettyprint">#!/usr/bin/env python
# -*- coding: utf-8 -*-

# (C) 2010, Taher Shihadeh
# Licensed: GPL v2

"""
The script works based only on names of files and directories in a
non-recursive manner.

It takes a path as parameter and tries to determine if the names of
the contents look alike.

It removes separator characters, numbers and file extensions prior to
the comparison.
"""

import os
import sys
import string
from operator import itemgetter

FAST = False # Change this to skip file-to-file comparisons
SEP  = '_-+~.·:;·()[]¡!¿?<>'

def main (path):
    lst1    = os.listdir (path)
    lst2    = lst1
    len_lst = len(lst1)
    count   = 0.0
    results = []

    for x in lst1:
        for y in lst2:
            if x==y:
                continue
            x_dir = os.path.isdir(x)
            y_dir = os.path.isdir(y)

            if FAST and not (x_dir or y_dir):
                continue

            result = {'A': (x, x_dir), 'B': (y, y_dir)}

            str1, str2 = x, y
            if not x_dir:
                str1,_ = os.path.splitext (x)
            if not y_dir:
                str2,_ = os.path.splitext (y)

            result['factor'] = compare (str1,str2)
            results.append(result)

        lst2.remove(x)
        count += 1
        print >> sys.stderr, '%.2f%% done' %((count / len_lst)*200)

    show(results)

def split (str1):
    trans = string.maketrans(SEP, ' '*len(SEP))
    return str1.translate(trans).split()

def clean (lst):
    assert type(lst) == list
    return filter(lambda x: not x.isdigit(), lst)

def compare (str1, str2):
    """Return similarity factor as percentage"""
    aux1 = clean (split (str1.lower()))
    aux2 = clean (split (str2.lower()))

    set_or  = set(aux1) | set(aux2)
    set_and = set(aux1) &amp; set(aux2)

    return (float(len(set_and)) / float(len(set_or)))*100

def show (results):
    """Show most similar last"""
    for x in sorted(results, key=itemgetter('factor')):
        a,b = x['A'],x['B']
        if not b[1] and a[1]:
            a,b = b,a
        print '%.2f \t %s \t --> %s' %(x['factor'], a[0], b[0])

if __name__=='__main__':
    try:
        path = sys.argv[1]
    except IndexError:
        path = os.getcwd()

    main (path)
</pre>
<p>I don&#8217;t think any one is going to use it, but what the hell. It&#8217;s a big Internet ;-)</p>
]]></content:encoded>
			<wfw:commentRss>http://unixwars.com/2010/07/03/filename-comparator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Marketing budgets</title>
		<link>http://unixwars.com/2010/06/03/marketing-budgets/</link>
		<comments>http://unixwars.com/2010/06/03/marketing-budgets/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 22:39:48 +0000</pubDate>
		<dc:creator>Taher Shihadeh</dc:creator>
				<category><![CDATA[Humor]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[omg]]></category>
		<category><![CDATA[Opera]]></category>

		<guid isPermaLink="false">http://unixwars.com/?p=657</guid>
		<description><![CDATA[This entry is by no means technical, but it shows perfectly the vast difference in budget available to two very well known companies: Google and Opera. I just stumbled upon these two videos. One of them is almost three months old. Although it doesn&#8217;t prove much, it is quite spectacular with its fancy high speed [...]]]></description>
			<content:encoded><![CDATA[<p>This entry is by no means technical, but it shows perfectly the vast difference in budget available to two very well known companies: Google and Opera.</p>
<p>I just stumbled upon these two videos. One of them is almost three months old. Although it doesn&#8217;t prove much, it is quite spectacular with its fancy high speed camera at 2700 shots per second.</p>
<h4>Chrome versus Potato</h4>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="620" height="373" 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://www.youtube-nocookie.com/v/nCgQDjiotG0&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="620" height="373" " src="http://www.youtube-nocookie.com/v/nCgQDjiotG0&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>The other one &#8230; well&#8230; it isn&#8217;t as spectacular as Chrome&#8217;s. Seriously, it isn&#8217;t. But &#8230;. OMG!!! This is genius. Exactly as scientific as the first one. Not as visually appealing. But tomorrow morning I&#8217;ll still be laughing.</p>
<h4>Opera versus Potato (Parody)</h4>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="620" height="373" 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://www.youtube-nocookie.com/v/zaT7thTxyq8&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="620" height="373"  src="http://www.youtube-nocookie.com/v/zaT7thTxyq8&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://unixwars.com/2010/06/03/marketing-budgets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cherokee Summit 2010: Mission accomplished</title>
		<link>http://unixwars.com/2010/05/10/cherokee-summit-2010-mission-accomplished/</link>
		<comments>http://unixwars.com/2010/05/10/cherokee-summit-2010-mission-accomplished/#comments</comments>
		<pubDate>Mon, 10 May 2010 21:36:58 +0000</pubDate>
		<dc:creator>Taher Shihadeh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://unixwars.com/?p=648</guid>
		<description><![CDATA[We&#8217;ve been working in frenzy since last week. Not that we usually don&#8217;t, but this was something more. The Cherokee Summit just took place last weekend, and among other things we released our latest and greatest Cherokee v1.0, we defined the roadmap for v2.0, we shared knowledge with some of the most impressive experts in [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve been working in frenzy since last week. Not that we usually don&#8217;t, but this was something more. The <a href="http://summit.cherokee-project.com/">Cherokee Summit</a> just took place last weekend, and among other things we <a href="http://summit.cherokee-project.com/the-cherokee-web-server-release-1-0-is-officially-out/">released our latest and greatest Cherokee v1.0</a>, we defined the roadmap for v2.0, we shared knowledge with some of the most impressive experts in High Availability I&#8217;ve ever met, and above all, we had the chance to meet face to face. Our Community is, without a doubt, stronger than ever. The <a href="http://www.alobbs.com/1385/Cherokee_Summit_Big_Success.html">summit has been a great success</a>. We had people attending from all over the World, all levels of expertise, and even from all ages. On this photo you can see <a href="http://alobbs.com">Alvaro</a> and the youngest attendee.</p>
<p style="text-align: center;"><a href="http://gallery.cherokee-project.com/"><img class="aligncenter size-full wp-image-651" title="All ages" src="http://unixwars.com/wp-content/2010/05/MG_6377.jpg" alt="MG 6377 Cherokee Summit 2010: Mission accomplished" width="614" height="410" /></a></p>
<p>Everything was recorded, so we will upload the slides and videos of all our sessions really soon. For now, only the <a href="http://gallery.cherokee-project.com/">photo gallery</a> is available. Take a look at the <a href="http://gallery.cherokee-project.com/index.php/Mugshots-2010-B-W">mugshots</a>.</p>
<p style="text-align: center;"><a href="http://gallery.cherokee-project.com/"><img class="aligncenter size-full wp-image-650" title="Jump" src="http://unixwars.com/wp-content/2010/05/MG_6058.jpg" alt="MG 6058 Cherokee Summit 2010: Mission accomplished" width="614" height="410" /></a></p>
<p style="text-align: left;">I&#8217;m really glad we could make this Summit. It surpased all my expectations. By far. It was an unbelievable experience, and we had lots of fun. Take a look at our family photo. If you want to know which of the guys above is me, here&#8217;s a clue: <em>&#8220;In brightest day&#8230;&#8221;</em>.</p>
<p style="text-align: left;">I&#8217;m really looking forward to the next summit. Cherokee Summit 2010 was awesome. I&#8217;m sure the next one will be even better.</p>
]]></content:encoded>
			<wfw:commentRss>http://unixwars.com/2010/05/10/cherokee-summit-2010-mission-accomplished/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Countdown to Cherokee Summit 2010</title>
		<link>http://unixwars.com/2010/04/30/countdown-to-cherokee-summit-2010/</link>
		<comments>http://unixwars.com/2010/04/30/countdown-to-cherokee-summit-2010/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 17:28:54 +0000</pubDate>
		<dc:creator>Taher Shihadeh</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Cherokee]]></category>
		<category><![CDATA[high performance]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Octality]]></category>

		<guid isPermaLink="false">http://unixwars.com/?p=639</guid>
		<description><![CDATA[Only one more week to go! I&#8217;m going to remind you all about the first Cherokee Summit. It will be held next week in Madrid (7-8 May), and I&#8217;m really excited about it. We will release Cherokee 1.0, will rub shoulders with many members of our community, and we&#8217;ll define the road-map for Cherokee 2.0. [...]]]></description>
			<content:encoded><![CDATA[<p>Only one more week to go!<br />
I&#8217;m going to remind you all about the first <a href="http://summit.cherokee-project.com/program/">Cherokee Summit</a>. It will be held next week in Madrid (7-8 May), and I&#8217;m really excited about it. We will release Cherokee 1.0, will rub shoulders with many members of our community, and we&#8217;ll define the road-map for Cherokee 2.0. I&#8217;ll be giving a tech-talk along <a href="http://ion.suavizado.com/">Jonathan Hernandez</a>, so you know when and where to find me.</p>
<p>I&#8217;m sure that meeting many of the developers of Cherokee in person will be the highlight for me.</p>
<p>If by any chance you&#8217;ll be in Madrid that weekend, don&#8217;t forget to <a href="http://summit.cherokee-project.com/register/">register in time</a> and join us.</p>
<p style="text-align: center;"><em><strong>It&#8217;s gonna be legen&#8230; wait for it&#8230; dary!</strong></em><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" 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://www.youtube.com/v/ndwaw8q6MiY&amp;hl=en_US&amp;fs=1&amp;color1=0x006699&amp;color2=0x54abd6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/ndwaw8q6MiY&amp;hl=en_US&amp;fs=1&amp;color1=0x006699&amp;color2=0x54abd6" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://unixwars.com/2010/04/30/countdown-to-cherokee-summit-2010/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>European Space Agency</title>
		<link>http://unixwars.com/2010/03/16/european-space-agency/</link>
		<comments>http://unixwars.com/2010/03/16/european-space-agency/#comments</comments>
		<pubDate>Tue, 16 Mar 2010 18:49:15 +0000</pubDate>
		<dc:creator>Taher Shihadeh</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://unixwars.com/?p=631</guid>
		<description><![CDATA[Main characters: European Space Agency The Cherokee Project Plot: This is a love story. Nuff said! :)]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.alobbs.com/1382/The_European_Space_Agency_runs_Cherokee.html"><img class="aligncenter size-full wp-image-632" title="ESAxCherokee" src="http://unixwars.com/wp-content/2010/03/ESAxCherokee.jpg" alt="ESAxCherokee European Space Agency" width="400" height="372" /></a></p>
<h4>Main characters:</h4>
<p style="padding-left: 30px;"><a title="European Space Agency" href="http://www.esa.int">European Space Agency</a></p>
<p style="padding-left: 30px;"><a title="The Cherokee Project" href="http://www.cherokee-project.com">The Cherokee Project</a></p>
<h4>Plot:</h4>
<p style="padding-left: 30px;"><a title="European Space Agency runs Cherokee" href="http://www.alobbs.com/1382/The_European_Space_Agency_runs_Cherokee.html">This is a love story.</a> Nuff said! :)</p>
]]></content:encoded>
			<wfw:commentRss>http://unixwars.com/2010/03/16/european-space-agency/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Org-mode to the rescue</title>
		<link>http://unixwars.com/2010/02/28/org-mode-to-the-rescue/</link>
		<comments>http://unixwars.com/2010/02/28/org-mode-to-the-rescue/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 18:00:47 +0000</pubDate>
		<dc:creator>Taher Shihadeh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Emacs]]></category>

		<guid isPermaLink="false">http://unixwars.com/?p=608</guid>
		<description><![CDATA[It&#8217;s been a while since I started using Org-mode. Like four months or so. When I discovered it I knew I would blog about it sooner or later, but I didn&#8217;t want to rush things. Before writing about it,  I wanted to give it a run to see if it could be of any help [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while since I started using <a href="http://orgmode.org/">Org-mode</a>. Like four months or so. When I discovered it I knew I would blog about it sooner or later, but I didn&#8217;t want to rush things.</p>
<p>Before writing about it,  I wanted to give it a run to see if it could be of any help to a rather absentminded guy. I&#8217;m sure many long time Emacs users out there are forgetful at times. I know I am. It seems to fit the profile somehow ;-)</p>
<p>Since I couldn&#8217;t rely too much on my memory for these things, I had to find a task management solution. That&#8217;s where Org-mode comes in.</p>
<p>If you are like me, maybe Org-mode can save the day. I seem to be able to organize my time a lot better since I started using it.</p>
<p>Org-mode is a mode for keeping notes,  ToDo lists, and project planning in <a href="http://www.gnu.org/software/emacs/">Emacs</a>, with a fast and effective plain-text system. It seems awfully spartan  and simplistic at first, but it is nothing less than magnificent in features. Being a part of Emacs is also a plus for me, since it is the first thing I install on any platform I happen to be working. Besides the OS independence, not being tied at all to a particular application does get extra points. Formats may vary over time, but plain text files are here to stay.</p>
<p>These days I&#8217;m using it as an outliner, as a note-taking application, to manage my accounting and, most importantly, as a <a href="http://members.optusnet.com.au/~charles57/GTD/gtd_workflow.html">Getting Things Done (GTD)</a> tool. I don&#8217;t quite yet use it for Web and PDF <a href="http://orgmode.org/">Authoring</a>, but it never hurts to know I could if I wanted.</p>
<p>And for now the deal is working pretty well for me. It is very flexible, has lots of other uses, and also a very rich and knowledgable community, so I totally recommend you take a look at some of the links of this post. It will be worth your while.</p>
]]></content:encoded>
			<wfw:commentRss>http://unixwars.com/2010/02/28/org-mode-to-the-rescue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s official: Cherokee Summit 2010 is on its way!</title>
		<link>http://unixwars.com/2010/01/11/its-official-cherokee-summit-2010-is-on-its-way/</link>
		<comments>http://unixwars.com/2010/01/11/its-official-cherokee-summit-2010-is-on-its-way/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 13:42:37 +0000</pubDate>
		<dc:creator>Taher Shihadeh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Cherokee]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[high performance]]></category>
		<category><![CDATA[Octality]]></category>

		<guid isPermaLink="false">http://unixwars.com/?p=609</guid>
		<description><![CDATA[It is no secret that our Cherokee-Project Community has been growing steadily and relentlessly over the last couple of years. In fact, it has been doing so well that we&#8217;ve reached a point where holding a conference about the project actually makes a lot of sense. A lot of people have been asking about this, [...]]]></description>
			<content:encoded><![CDATA[<p>It is no secret that our <a href="http://www.cherokee-project.com/">Cherokee-Project Community</a> has been growing steadily and relentlessly over the last couple of years. In fact, it has been doing so well that we&#8217;ve reached a point where holding a conference about the project actually makes a lot of sense. A lot of people have been asking about this, and after a lot of work we are ready to announce our first Summit, to be held on May 7th-8-th.</p>
<p><img class="aligncenter" src="http://www.alobbs.com/images/cherokee-summit-2001-img1.png" alt="cherokee summit 2001 img1 Its official: Cherokee Summit 2010 is on its way!" width="454" height="128" title="Its official: Cherokee Summit 2010 is on its way!" /></p>
<p>You can read <a href="http://www.alobbs.com/1379/Cherokee_Summit_2010.html">Alvaro&#8217;s announcement</a>, or you can check out the <a href="http://summit.cherokee-project.com/">Summit web-site</a>.</p>
<p>Cherokee will be an important topic, but it won&#8217;t be the only one. Those will be a couple of days fully dedicated to High Performance and Scalable Web topics, so there&#8217;s room for everyone to join in.  We are commited to reaching the 1.0 milestone of Cherokee by then, so we will also have a party to celebrate it.</p>
<p>It&#8217;s going to be fun. I&#8217;ll be a speaker at the summit and I&#8217;m really looking forward to personally meeting many of the members of the project. Thanks to our sponsors we&#8217;ve managed to make the event completely free, so don&#8217;t forget to <a href="http://summit.cherokee-project.com/register/">register</a> while we still have free spots!</p>
<p><strong>UPDATE</strong>: We&#8217;ve written a <a href="http://www.alobbs.com/downloads/Cherokee Summit 2010.pdf">little brochure</a> (~100KB) ﻿that can be used to  let your colleagues know about the summit. Do not hesitate to send it to any coworker or friend who would be interested in attending a High Performance and Scalable Web event.﻿﻿﻿</p>
]]></content:encoded>
			<wfw:commentRss>http://unixwars.com/2010/01/11/its-official-cherokee-summit-2010-is-on-its-way/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Cherokee screencast season kicks off</title>
		<link>http://unixwars.com/2009/12/07/cherokee-screencast-season-kicks-off/</link>
		<comments>http://unixwars.com/2009/12/07/cherokee-screencast-season-kicks-off/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 10:27:54 +0000</pubDate>
		<dc:creator>Taher Shihadeh</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Cherokee]]></category>
		<category><![CDATA[high performance]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://unixwars.com/?p=597</guid>
		<description><![CDATA[On a previous post I introduced our first Cherokee Project screencast. We were going to wait for a new and improved website before we made them public, but what the hell! Why wait? I&#8217;m sure the new Cherokee-Project Screencast Collection will come in handy for many of you. From here I&#8217;d like to thank P.V. [...]]]></description>
			<content:encoded><![CDATA[<p>On a previous post I introduced our first <a href="http://www.cherokee-project.com/">Cherokee Project</a> screencast. We were going to wait for a new and improved website before we made them public, but what the hell! Why wait? I&#8217;m sure the new <a href="http://www.cherokee-project.com/screencasts.html">Cherokee-Project Screencast Collection</a> will come in handy for many of you.</p>
<p style="text-align: center;"><a href="http://www.cherokee-project.com/screencasts.html"><img class="size-medium wp-image-600  aligncenter" title="video-footage" src="http://unixwars.com/wp-content/2009/12/video-footage-300x300.jpg" alt="video footage 300x300 Cherokee screencast season kicks off" width="300" height="300" /></a></p>
<p>From here I&#8217;d like to thank <a href="http://mindmedia.com.sg/team/anthony">P.V. Anthony</a> for his invaluable advice on audio production and my old friend <a href="http://saragenge.com">Sara Genge</a> for lending her voice to the project (and for her <a href="http://www.dailycabal.com/category/authors/sara-genge/">awesome fiction writing</a>, but that is another story).</p>
]]></content:encoded>
			<wfw:commentRss>http://unixwars.com/2009/12/07/cherokee-screencast-season-kicks-off/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creative Commons makes my life better</title>
		<link>http://unixwars.com/2009/11/19/creative-commons-makes-my-life-better/</link>
		<comments>http://unixwars.com/2009/11/19/creative-commons-makes-my-life-better/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 20:39:14 +0000</pubDate>
		<dc:creator>Taher Shihadeh</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[Creative Commons]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://unixwars.com/?p=577</guid>
		<description><![CDATA[I must confess I&#8217;m amazed. At this time and age, there are still quite some theoretically influential folks that are convinced that &#8220;CC is not even an option&#8221; nowadays. I&#8217;m not going to point fingers here, but I guess you&#8217;ll understand that shit happens  if you live in Spain, like I do. After all, this [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://unixwars.com/wp-content/2009/11/creativecommons1.gif"><img class="alignright size-full wp-image-584" title="Creative Commons" src="http://unixwars.com/wp-content/2009/11/creativecommons1.gif" alt="Creative Commons" width="150" height="120" /></a>I must confess I&#8217;m amazed. At this time and age, there are still quite some theoretically influential folks that are convinced that &#8220;CC is not even an option&#8221; nowadays. I&#8217;m not going to point fingers here, but I guess you&#8217;ll understand that shit happens  if you live in Spain, like I do.</p>
<p>After all, this is the country where the Government has just spent almost 750K€ as a <a href="http://elportaldelamusica.es">covert gift to SGAE</a>, our equivalent to RIAA, also known as <a title="Los ladrones" href="http://www.sgae.es/">ladrones</a>. Beware, no copy-left music there. It is shameful in so many ways that I better not get started.</p>
<p>Saying <a href="http://creativecommons.org/">Creative Commons</a> is not an option is outrageous. Not just because I&#8217;ve always been a FLOSS advocate and CC simply fits in my mindset. I believe these kind of options simply make the World a better place.</p>
<p>Take this as an example. My friend <a href="http://www.alobbs.com/">Álvaro</a> had a CC song playing today. It is called Code Monkey. Not only did I love it, being a geek and all. Knowing it was CC, I googled about the author, and it turns out <a href="http://en.wikipedia.org/wiki/Jonathan_Coulton">Jonathan Coulton</a> releases his work under CC. He used to be one of us (and forever will be), but he switched fields from IT to music, and he seems to be doing pretty well. Kudos to you, sir! I love your work.</p>
<p>I&#8217;m pretty sure he would have had a hard time trying to live from his art through mainstream media (yes, Mu$ic Indu$try, I&#8217;m talking about you).</p>
<p>Not only does he succeed and has made my day a lot more fun. I also found out his work has been used in award winning works, which is something permitted by the licensing used. This music-clip won several Anime contests back in 2007. I&#8217;m not saying it is like winning a Nobel prize. But Madonna is not going to win one either. And quite frankly, seeing that <a title="Genocidal maniac" href="http://www.larouchepub.com/other/1995/2249_kissinger_food.html">Henry Kissinger</a> once won the Peace Nobel prize, this shouldn&#8217;t even be considered as a dignifying example.</p>
<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" 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://www.youtube.com/v/5W_wd9Qf0IE&amp;hl=es_ES&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/5W_wd9Qf0IE&amp;hl=es_ES&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Check out the videoclip. I for one had a warm fuzzy feeling listening to <a href="http://www.jonathancoulton.com/">Jonathan Coulton</a>&#8216;s work. You can <a href="http://www.jonathancoulton.com/store/">buy all his pieces</a> at really really inexpensive prices.</p>
]]></content:encoded>
			<wfw:commentRss>http://unixwars.com/2009/11/19/creative-commons-makes-my-life-better/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Our first Cherokee screencast</title>
		<link>http://unixwars.com/2009/11/19/our-first-cherokee-screencast/</link>
		<comments>http://unixwars.com/2009/11/19/our-first-cherokee-screencast/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 11:40:10 +0000</pubDate>
		<dc:creator>Taher Shihadeh</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Cherokee]]></category>
		<category><![CDATA[high performance]]></category>
		<category><![CDATA[Octality]]></category>

		<guid isPermaLink="false">http://unixwars.com/?p=567</guid>
		<description><![CDATA[Alvaro an I have been putting together a screen-cast to show an overview of Cherokee-Admin&#8217;s capabilities. It is just an introduction, but I think this kind of thing is really helpful to spread out the word about Cherokee&#8217;s multiple merits. We wanted to brag about our little baby. After all, not every serious web server [...]]]></description>
			<content:encoded><![CDATA[<p>Alvaro an I have been putting together a screen-cast to show an overview of Cherokee-Admin&#8217;s capabilities. It is just an introduction, but I think this kind of thing is really helpful to spread out the word about Cherokee&#8217;s multiple merits.</p>
<p>We wanted to brag about our little baby. After all, not every serious web server out there has a killer interface to configure it. Take a look at our <a href="http://www.vimeo.com/7683565">Cherokee Web Server introductory screen-cast</a>.</p>
<p style="text-align: center;">
<object width="400" height="340"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=7683565&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=7683565&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="340"></embed></object></p>
<p>You might want to see it at full screen for readability.</p>
<p>It&#8217;s just one of many to come. We&#8217;ve got some more planned, so I&#8217;ll let you know when they&#8217;re ready.</p>
]]></content:encoded>
			<wfw:commentRss>http://unixwars.com/2009/11/19/our-first-cherokee-screencast/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
