<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Raising Elephants...</title>
	<atom:link href="http://leorockway.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://leorockway.wordpress.com</link>
	<description>Raising elephants -- skinny or not -- is so utterly boring...</description>
	<lastBuildDate>Mon, 11 Apr 2011 19:23:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='leorockway.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Raising Elephants...</title>
		<link>http://leorockway.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://leorockway.wordpress.com/osd.xml" title="Raising Elephants..." />
	<atom:link rel='hub' href='http://leorockway.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Mr cron, send me an email</title>
		<link>http://leorockway.wordpress.com/2011/04/11/mr-cron-send-me-an-email/</link>
		<comments>http://leorockway.wordpress.com/2011/04/11/mr-cron-send-me-an-email/#comments</comments>
		<pubDate>Mon, 11 Apr 2011 19:23:14 +0000</pubDate>
		<dc:creator>leorockway</dc:creator>
				<category><![CDATA[gnu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://leorockway.wordpress.com/?p=73</guid>
		<description><![CDATA[I wrote this post to continue with the sysadmining series asked by Ardian. Sometimes I need cron scripts to email me the result of something and configuring sendmail or postfix to do that seems a little like killing a mosquito with a bazooka (it works, but it&#8217;s not very efficient). So, what I do is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=73&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><em>I wrote this post to continue with the sysadmining series asked by Ardian.</em></p>
<p>Sometimes I need cron scripts to email me the result of something and configuring sendmail or postfix to do that seems a little like killing a mosquito with a bazooka (it works, but it&#8217;s not very efficient).</p>
<p>So, what I do is use msmtp.</p>
<p>msmtp is very easy to use and configure. Just write a config file for it (.msmtprc in your $HOME) and make it point to the GMail smtp server.<br />
Something like this works:</p>
<p><code>defaults<br />
tls on<br />
tls_starttls on<br />
tls_trust_file /etc/ssl/certs/ca-certificates.crt</p>
<p>account default<br />
host smtp.gmail.com<br />
port 587<br />
auth on<br />
user user_name@gmail.com<br />
password H3Re_Goes_Y0ur_p@ssword</code></p>
<p>Then you $ chmod 600 ~/.msmtprc</p>
<p>And that&#8217;s pretty much it. Then to send an email what you do is pipe the mail to msmtp with the address of the person you want to email.</p>
<p>Something like this:</p>
<p><code>echo -e "Subject:test\nTo:foo@bar.com\nhello world" | msmtp foo@bar.com<br />
</code></p>
<p>That command would send an email to foo@bar.com with the subject &#8220;test&#8221; and the body &#8220;hello world&#8221;<br />
The &#8220;Subject&#8221; and &#8220;To&#8221; fields are optional, but it&#8217;s nice to include them. The \n are new lines.</p>
<p>You can also make a text file and cat it and redirect the output with pipes.<br />
More information for the email could be included, like the text encoding used, etc, but for the stuff I need to email, a subject and a body is usually more than enough.</p>
<p><strong>Disclaimer:</strong> I don&#8217;t like using GMail (the default interface has a JavaScript trap, I don&#8217;t trust Google with my personal data, etc), but GMail (through Google Apps) is the mail server of choice at work. Using msmtp doesn&#8217;t mean you HAVE TO use GMail. I only put it as an example because it&#8217;s what we use at work. As a matter of fact, you&#8217;re better off NOT using GMail at all and using some other email provider that doesn&#8217;t spy on you and that respects your freedom.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/leorockway.wordpress.com/73/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/leorockway.wordpress.com/73/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=73&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://leorockway.wordpress.com/2011/04/11/mr-cron-send-me-an-email/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1ee27499863486912a9051d6561388c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">leorockway</media:title>
		</media:content>
	</item>
		<item>
		<title>Some semi-serious sysadmin scholastic statements</title>
		<link>http://leorockway.wordpress.com/2011/04/11/some-semi-serious-sysadmin-scholastic-statements/</link>
		<comments>http://leorockway.wordpress.com/2011/04/11/some-semi-serious-sysadmin-scholastic-statements/#comments</comments>
		<pubDate>Mon, 11 Apr 2011 19:19:34 +0000</pubDate>
		<dc:creator>leorockway</dc:creator>
				<category><![CDATA[gnu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://leorockway.wordpress.com/?p=70</guid>
		<description><![CDATA[Asked by my friend Ardian, I&#8217;m writing these tips for sysadmin-wannabes hoping that it will be useful. Securing SSH SSH is one of the best friends of any sysadmin (because everybody knows that sysadmins don&#8217;t have real friends). Because SSH is one of our true few friends, we need to make sure that it stays [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=70&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Asked by my friend <a href="https://ardiansblog.wordpress.com/">Ardian</a>, I&#8217;m writing these tips for sysadmin-wannabes hoping that it will be useful.</p>
<p><em>Securing SSH</em></p>
<p>SSH is one of the best friends of any sysadmin (because everybody knows that sysadmins don&#8217;t have real friends). Because SSH is one of our true few friends, we need to make sure that it stays our friend and to do that we have to defend it.<br />
Here are some ways to achieve that:</p>
<p><em>Security through obscurity</em></p>
<p>It is a general consensus that securing something through obscurity is not a good idea. Security through obscurity is not real security, but sometimes it helps stop annoying script kiddies.  You can&#8217;t make your whole security scheme rely on people not knowing your secret, particularly when the secret is easily discovered.<br />
I&#8217;m talking here about moving your SSH port to something different than 22 (which is the default port). It&#8217;s very easy to find out which ports are open in a server (you just need to use nmap), but there are people who don&#8217;t know that and have automated scripts constantly trying to gain access through that port. Usually higher ports is a good idea.<br />
Just don&#8217;t rely on this as your only means of securing SSH.</p>
<p><em>Hello, Mr. John Doe</em></p>
<p>Don&#8217;t let users with very common usernames have SSH access. Particularly, don&#8217;t let root have SSH access. Other usernames that shouldn&#8217;t be allowed are admin, superadmin, backup, cron, etc. Automated attempts to gain access use dictionaries of common users, so it&#8217;s better if we don&#8217;t give them a chance to guess what users we have in the system.</p>
<p><em>Stop knocking at my door!</em></p>
<p>If we receive many failed login attempts from the same IP, then that person probably isn&#8217;t someone with a valid password. There are many ways to tell that person to get off: IPTables rules, fail2ban, denyhosts, etc. Some people may even prefer their own solutions, but having these available, that&#8217;s probably not necessary.<br />
The idea is that if a user keeps trying to gain access to our server, we can lock them out for a certain period of time.</p>
<p><em>Leo@Vinci</em></p>
<p>Sometimes we have users that connect always from the same host. The host can then be specified in the sshd configuration file so that user can&#8217;t connect from anywhere else. In that way, we close the door to yet another possible intruder trying to spoof our user from some other location.</p>
<p><em>Password? What password?</em></p>
<p>Relying on passwords might not be a great idea because passwords can be weak (although that can be solved with PAM magic, which I may talk about at a different time). Generating SSH keys and disabling password authentication is usually a good idea. SSH keys are unique (unless you use certain versions of Debian&#8230;).</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/leorockway.wordpress.com/70/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/leorockway.wordpress.com/70/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=70&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://leorockway.wordpress.com/2011/04/11/some-semi-serious-sysadmin-scholastic-statements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1ee27499863486912a9051d6561388c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">leorockway</media:title>
		</media:content>
	</item>
		<item>
		<title>lemon.py</title>
		<link>http://leorockway.wordpress.com/2010/09/23/lemon-py/</link>
		<comments>http://leorockway.wordpress.com/2010/09/23/lemon-py/#comments</comments>
		<pubDate>Thu, 23 Sep 2010 22:01:23 +0000</pubDate>
		<dc:creator>leorockway</dc:creator>
				<category><![CDATA[free]]></category>
		<category><![CDATA[gnu]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[cook]]></category>

		<guid isPermaLink="false">http://leorockway.wordpress.com/?p=66</guid>
		<description><![CDATA[lemon.py<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=66&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I told people at work (yes, I have a job now, more about that later&#8230; or maybe not) that I could make lemon pie. They know I&#8217;m all about free software, so they asked me if it was GPL lemon pie. I published this in our intranet (some of it is in Spanish, but even if you don&#8217;t speak a word of Spanish you can tell what&#8217;s going on):</p>
<pre>#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''How to make a yummy lemmon pie'''

###
#
# lemon.py is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published
# by the Free Software Foundation, either version 3 of the License,
# or (at your option) any later version.
#
# lemon.py is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, see 
# or write to the Free Software Foundation, Inc., 59 Temple Place,
# Suite 330, Boston, MA  02111-1307  U.S.A.
#
###

INGREDIENTES_MASA = {'harina':'250g', 'azúcar':'125g', 'manteca':'75g', \
'huevos':1, 'yema':1, 'esencia de vainilla':'un chorro'}
MASA = []

for ingrediente in INGREDIENTES_MASA:
    MASA.append(ingrediente) # la masa queda húmeda.
    #cook(MASA, '20 minutos', 'horno medio')


INGREDIENTES_RELLENO = {'agua':'1 taza', 'maizena':'¼ taza', \
'jugo de limón':'½ taza', 'ralladura de limón':'de 1 limón', 'yemas':3, \
'manteca':'50g'}

RELLENO = []
RELLENO_DESPUES = []

for ingrediente in INGREDIENTES_RELLENO:
    if ingrediente != 'yemas' and ingrediente != 'manteca':
        RELLENO.append(ingrediente)
    else:
        RELLENO_DESPUES.append(ingrediente)
    #estado_relleno = cook(RELLENO, 'hasta que se espese y hierva', \
    #'fuego lento') # hay que revolver constantemente
    #if estado_relleno == 'cooked':
    #    for ingrediente in RELLENO_DESPUES:
    #        RELLENO.append(ingrediente) # continuar revolviendo 2 minutos más


INGREDIENTES_MERENGUE = {'claras':4, 'azúcar':'8 cucharadas'}
MERENGUE = []

for ingrediente in INGREDIENTES_MERENGUE:
    MERENGUE.append(ingrediente)
    #whisk(MERENGUE) # hasta que se formen piquitos

LEMON_PIE = MASA + RELLENO + MERENGUE
#cook(LEMON_PIE, 'hasta que se dore el merengue')</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/leorockway.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/leorockway.wordpress.com/66/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=66&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://leorockway.wordpress.com/2010/09/23/lemon-py/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1ee27499863486912a9051d6561388c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">leorockway</media:title>
		</media:content>
	</item>
		<item>
		<title>The UTUTO XS Lemote project begins!</title>
		<link>http://leorockway.wordpress.com/2009/10/09/the-ututo-xs-lemote-project-begins/</link>
		<comments>http://leorockway.wordpress.com/2009/10/09/the-ututo-xs-lemote-project-begins/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 05:25:30 +0000</pubDate>
		<dc:creator>leorockway</dc:creator>
				<category><![CDATA[distros]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[gnu]]></category>
		<category><![CDATA[lignux]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ututo]]></category>
		<category><![CDATA[free software]]></category>

		<guid isPermaLink="false">http://leorockway.wordpress.com/?p=53</guid>
		<description><![CDATA[This is a quick translation I made of the article that appeared in Ututo&#8217;s site: http://www.ututo.org/web/modules/news/news.php?ID_news=368 Thanks to ethana2 for proofreading it. Some time ago we started toying with the idea of porting our operating system to the new Lemote Yeelong This computer is characterized by having a completely free hardware design and by not [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=53&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p><strong>This is a quick translation I made of the article that appeared in Ututo&#8217;s site: <a href="http://www.ututo.org/web/modules/news/news.php?ID_news=368" rel="nofollow">http://www.ututo.org/web/modules/news/news.php?ID_news=368</a><br />
Thanks to ethana2 for proofreading it.</strong></p>
<p>Some time ago we started toying with the idea of porting our operating system to the new Lemote Yeelong<br />
This computer is characterized by having a completely free hardware design and by not needing any nonfree software components to work.</p>
<p>Unlike other computers we know, it doesn&#8217;t use a processor made by the most known companies.<br />
The Lemote company uses a processor developed completely in China, named Loongson. It has a MIPS architecture.</p>
<p>In UTUTO XS, we have had a tradition of development and advocacy of free software for more than 6 years. As the UTUTO project, we thought it would be important to support this hardware starting with version 2010. This would help the spreading of free software and also it would be another choice of operating system for the Lemote computers.</p>
<p>Richard Stallman talked to us about the possibility of getting some Lemote computers as a donation for this project and he put us in contact with the Lemote company in China.</p>
<p>A couple of days later Lemote sent us the Yeelong computers and thanked us for our intention of porting our operating system.</p>
<p>This initiative has the support of institutions that advocate free software and free knowledge.</p>
<p>Among them we can mention:</p>
<p>&#8211; Dr. Richard Stallman (father of the free software movement).<br />
&#8211; Lemote (Jiangsu Lemote Tech. Co. Ltd, China)<br />
&#8211; Free Software Foundation (US)<br />
&#8211; Solar (Software Libre Argentina)<br />
&#8211; Fundación Instituto de Innovación para el Bienestar Ciudadano (Spain)<br />
&#8211; Misol (Misiones Software Libre, Argentina)<br />
&#8211; Hipatia (Free Knowledge)<br />
&#8211; Asociación de Software Libre de Ecuador (ASLE)<br />
&#8211; Fundación Red Especial España</p>
<p>This initiative is the beginning of the project that we internally codenamed &#8220;UTUTO XS Lemote&#8221;.<br />
The idea is to have an XS system for these computers along with the corresponding updated package repository, just like with the versions for other processors</p>
<p>We think this is an important opportunity to learn and to face the challenge of creating a complete and functional system that would have the user at the core.</p>
<p>Here [0] you can see some pictures of the computers that we&#8217;ve got and also how we started the creation of the boot loader of the operating system and the compilation of a basic user system. For the time being we only have a text command line.</p>
<p>We thank all the people who support this project and we will keep you informed with the news on the development of &#8220;UTUTO XS Lemote&#8221;.</p>
<p>[0] <a href="http://erp.ututo.org/album/index.php?album=ututoxs%2FYeelong" rel="nofollow">http://erp.ututo.org/album/index.php?album=ututoxs%2FYeelong</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/leorockway.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/leorockway.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=53&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://leorockway.wordpress.com/2009/10/09/the-ututo-xs-lemote-project-begins/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1ee27499863486912a9051d6561388c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">leorockway</media:title>
		</media:content>
	</item>
		<item>
		<title>Getting rid of the annoying pcspeaker sound</title>
		<link>http://leorockway.wordpress.com/2009/08/26/getting-rid-of-the-annoying-pcspeaker-sound/</link>
		<comments>http://leorockway.wordpress.com/2009/08/26/getting-rid-of-the-annoying-pcspeaker-sound/#comments</comments>
		<pubDate>Wed, 26 Aug 2009 10:43:35 +0000</pubDate>
		<dc:creator>leorockway</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://leorockway.wordpress.com/?p=49</guid>
		<description><![CDATA[If you, like me, hate the annoying beep of the pc speaker, then you can get rid of it by doing: # rmmod pcspkr The problem with that is that you need to do it every time you restart, so here&#8217;s how you can get rid of it forever: # vim /etc/modprobe.d/blacklist And add a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=49&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>If you, like me, hate the annoying beep of the pc speaker, then you can get rid of it by doing:</p>
<blockquote><p># rmmod pcspkr</p></blockquote>
<p>The problem with that is that you need to do it every time you restart, so here&#8217;s how you can get rid of it forever:</p>
<blockquote><p># vim /etc/modprobe.d/blacklist</p></blockquote>
<p>And add a line that says:</p>
<blockquote><p>blacklist pcspkr</p></blockquote>
<p>Ok, there you go. Short post today, but hopefully useful.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/leorockway.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/leorockway.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=49&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://leorockway.wordpress.com/2009/08/26/getting-rid-of-the-annoying-pcspeaker-sound/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1ee27499863486912a9051d6561388c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">leorockway</media:title>
		</media:content>
	</item>
		<item>
		<title>Free software conference in Prishtina</title>
		<link>http://leorockway.wordpress.com/2009/08/24/free-software-conference-in-prishtina/</link>
		<comments>http://leorockway.wordpress.com/2009/08/24/free-software-conference-in-prishtina/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 01:50:10 +0000</pubDate>
		<dc:creator>leorockway</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://leorockway.wordpress.com/?p=46</guid>
		<description><![CDATA[I have been meaning to write this blog post for a long time, but for some reason or another it always ended up as a draft. First of all, for those of you who still don&#8217;t know, I came to Kosovo for a free software conference [0] that will take place on August 29th and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=46&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I have been meaning to write this blog post for a long time, but for some reason or another it always ended up as a draft. First of all, for those of you who still don&#8217;t know, I came to Kosovo for a free software conference [0] that will take place on August 29th and 30th at the University of Prishtina. I was invited to speak about two different topics which are translation with free software and basic Python. If you are in the area (or you are rich and feel like spending money on plane tickets) then I&#8217;d be really glad if you could join us here in Kosovo. Now, I came to Kosovo some time in advance to get to know the place and to help organize the conference. During my stay here I&#8217;ve had a great time visiting places like Mirushe [1]. People here are very nice and I was pleasantly surprised when the locals at Gjakova even helped me carry my bags when I got at the bus station and then took me to a place where I could phone my friend Heroid (who&#8217;s letting me stay at his house and I really thank him for that). To top it all, these nice gentlemen that carried my bags even paid for the phone call I made. <s>Also, and I think this is something that I need to point out, Kosovar girls are extremely beautiful <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </s> Nobody is as beautiful as my loving girlfriend. So, this has been a great trip so far and, after all my US / Buenos Aires winters, I really welcome this European summer sun. You should also come to the free software conference in Prishtina; it&#8217;s definitely worth it.<br />[0] <a href="http://kosovasoftwarefreedom.org" rel="nofollow">http://kosovasoftwarefreedom.org</a><br />[1] <a href="http://picasaweb.google.com/arianit/PrizrenMirushe" rel="nofollow">http://picasaweb.google.com/arianit/PrizrenMirushe</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/leorockway.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/leorockway.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=46&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://leorockway.wordpress.com/2009/08/24/free-software-conference-in-prishtina/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1ee27499863486912a9051d6561388c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">leorockway</media:title>
		</media:content>
	</item>
		<item>
		<title>TontoFlog</title>
		<link>http://leorockway.wordpress.com/2009/07/13/tontoflog/</link>
		<comments>http://leorockway.wordpress.com/2009/07/13/tontoflog/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 02:15:46 +0000</pubDate>
		<dc:creator>leorockway</dc:creator>
				<category><![CDATA[agpl]]></category>
		<category><![CDATA[creative commons]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[service]]></category>

		<guid isPermaLink="false">http://leorockway.wordpress.com/?p=39</guid>
		<description><![CDATA[Photo blogs were (or are, who knows how long fads last) very popular in my country. They were so popular that photo blog users formed some kind of urban tribe and they gathered in a local shopping mall to do&#8230; nothing. I guess they took pictures&#8230; One thing&#8217;s for sure, they had very dubious fashion [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=39&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Photo blogs were (or are, who knows how long fads last) very popular in my country. They were so popular that photo blog users formed some kind of urban tribe and they gathered in a local shopping mall to do&#8230; nothing. I guess they took pictures&#8230; One thing&#8217;s for sure, they had very <a title="Floggers" href="http://en.wikipedia.org/wiki/Flogger_(fashion)">dubious fashion tastes</a>. So my friend <a title="Marcolandia" href="http://marcolandia.com.ar/">Marcolandia </a>decided it was about time there was a free software solution for these poor and tormented souls: this article is not about floggers (short for photo blogger) but about this new GNU AGPLv3 photo blogging software.</p>
<p>I&#8217;m definitely not a flogger, but I had to try my friend&#8217;s software and I have to say that it&#8217;s really impressive. I could post a screenshot of my photoblog in my new photoblog, but I&#8217;m not up for recursion today. You can visit <a title="Flog" href="http://leorockway.com.ar/flog">my photoblog</a> or you can download the software and try it out: <a title="TontoFlog" href="http://www.tontoflog.com.ar/">TontoFlog</a>. (It will soon be uploaded as a savannah project)</p>
<p>It&#8217;s only in Spanish for now, but I&#8217;ll work on a translation as soon as Marcolandia puts the strings all together so TontoFlog stays modular.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/leorockway.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/leorockway.wordpress.com/39/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=39&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://leorockway.wordpress.com/2009/07/13/tontoflog/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1ee27499863486912a9051d6561388c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">leorockway</media:title>
		</media:content>
	</item>
		<item>
		<title>0c:00.0 Network controller: Broadcom Corporation BCM4311 802.11b/g WLAN (rev 01) take two:</title>
		<link>http://leorockway.wordpress.com/2009/07/04/free-broadcom/</link>
		<comments>http://leorockway.wordpress.com/2009/07/04/free-broadcom/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 03:02:42 +0000</pubDate>
		<dc:creator>leorockway</dc:creator>
				<category><![CDATA[broadcom]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[gNewSense]]></category>
		<category><![CDATA[gnu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[firmware]]></category>
		<category><![CDATA[freesoftware]]></category>
		<category><![CDATA[gnewsense]]></category>

		<guid isPermaLink="false">http://leorockway.wordpress.com/?p=25</guid>
		<description><![CDATA[My Broadcom WiFi card is finally working with free software in gNewSense so I decided to make a post to explain how to make that happen for your card as well. First you need to check your Broadcom WiFi card model: the OpenFWWF site says that 4306, 4311(rev1), 4318 and 4320 are tested and that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=25&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>My Broadcom WiFi card is finally working with free software in <a title="gNewSense" href="http://gnewsense.org" target="_blank">gNewSense</a> so I decided to make a post to explain how to make that happen for your card as well.</p>
<p>First you need to check your Broadcom WiFi card model: the <a title="OpenFWWF" href="http://www.ing.unibs.it/openfwwf/" target="_blank">OpenFWWF</a> site says that 4306, 4311(rev1), 4318 and 4320 are tested and that they work. Not having one of those models is not a reason to try it, though.</p>
<p>Now, you need to install git-core, curl, bison and flex if they are not installed. Get b43-tools (<a href="http://git.bu3sch.de/git/b43-tools.git" rel="nofollow">http://git.bu3sch.de/git/b43-tools.git</a>)and compile it.<br />
After that&#8217;s done compiling (it should take 2 seconds or so), you need to download the firmware. Lastest firmware as of today is 5.2.<br />
Extract the tar.gz and just &#8220;make&#8221;. When that&#8217;s done compiling (it also takes very little time) you&#8217;ll have 3 .fw files in your openfwwf directory. Those 3 files need to be copied to /lib/firmware/b43-open/ .</p>
<p>Then you need to install Linux-libre v2.6.30. A neatly packaged image can be found at my friend <a title="Ali Gündüz" href="http://aligunduz.org/" target="_blank">Ali Gündüz</a>&#8216;s <a title="Freedom Shoppe" href="http://freedomshoppe.org" target="_blank">Freedom Shoppe</a>.</p>
<p>After that you need to pass an option to the b43 module. You do that by adding a line that says &#8220;options b43 qos=0&#8243; (without quotes) to the /etc/modprobe.d/options file. I also added b43 to /etc/modules but that might not be necessary.</p>
<p>Here&#8217;s a step by step copypastable list of all the commands for you (you may need to change the version number of the firmware or the kernel, depending on when you read this post; also make sure that WordPress is not using formatted quotation marks):</p>
<blockquote><p>cd<br />
sudo apt-get install git-core curl bison flex<br />
git clone git://git.bu3sch.de/b43-tools.git<br />
cd b43-tools/assembler<br />
make<br />
sudo make install<br />
cd<br />
wget <a href="http://www.ing.unibs.it/openfwwf/firmware/openfwwf-5.2.tar.gz" rel="nofollow">http://www.ing.unibs.it/openfwwf/firmware/openfwwf-5.2.tar.gz</a><br />
tar zxvf openfwwf-5.2.tar.gz<br />
cd openfwwf-5.2<br />
make<br />
sudo mkdir /lib/firmware/b43-open<br />
sudo cp *.fw /lib/firmware/b43-open/<br />
cd<br />
wget <a href="http://aligunduz.org/gNewSense/freedomshoppe/linux-image-2.6.30-libre-fshoppe1_i386.deb" rel="nofollow">http://aligunduz.org/gNewSense/freedomshoppe/linux-image-2.6.30-libre-fshoppe1_i386.deb</a><br />
sudo dpkg -i linux-image-2.6.30-libre-fshoppe1_i386.deb<br />
sudo -i<br />
echo &#8220;options b43 qos=0 nohwcrypt=1&#8243; &gt;&gt; /etc/modprobe.d/options<br />
echo &#8220;b43&#8243; &gt;&gt; /etc/modules<br />
logout</p></blockquote>
<p>I restarted and booted with the 2.6.30 kernel and my card was working. dmesg confirmed that I was using the free firmware:</p>
<p>[ 8460.884239] b43-phy0: Loading OpenSource firmware version 410.31754 (Hardware crypto not supported)</p>
<p>I would&#8217;ve liked it to say &#8220;free software&#8221;, just like I would&#8217;ve liked the firmware to be called free and not open, but that&#8217;s extra.</p>
<p>Enjoy your WiFi with freedom!</p>
<p>EDIT: I updated the openfwwf version to 5.2<br />
EDIT2: updated the git repo for b43-tools</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/leorockway.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/leorockway.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=25&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://leorockway.wordpress.com/2009/07/04/free-broadcom/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1ee27499863486912a9051d6561388c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">leorockway</media:title>
		</media:content>
	</item>
		<item>
		<title>Watch out, it&#8217;s an update</title>
		<link>http://leorockway.wordpress.com/2009/05/04/watch-out-its-an-update/</link>
		<comments>http://leorockway.wordpress.com/2009/05/04/watch-out-its-an-update/#comments</comments>
		<pubDate>Mon, 04 May 2009 18:37:53 +0000</pubDate>
		<dc:creator>leorockway</dc:creator>
				<category><![CDATA[free]]></category>
		<category><![CDATA[gnu]]></category>
		<category><![CDATA[lignux]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://leorockway.wordpress.com/?p=17</guid>
		<description><![CDATA[No, I&#8217;m not going to explain how to make qemupuppy run. If you need help to make qemupuppy work look for it in the interwebz. I&#8217;m also not going to recommend qemupuppy either since it is not a Free OS. If you want a Free OS that runs from a prendrive try FUSBi. Since my [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=17&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>No, I&#8217;m not going to explain how to make qemupuppy run. If you need help to make qemupuppy work look for it in the interwebz. I&#8217;m also not going to recommend qemupuppy either since it is not a Free OS. If you want a Free OS that runs from a prendrive try <a title="FUSBi" href="http://aligunduz.org/FUSBi/">FUSBi</a>.</p>
<p>Since my last post a lot of things have changed: I have lost most of my patience (probably all of it) and I decided I won&#8217;t be publishing any more tutorials that can be found somewhere else on the web. I also migrated to a 100% free GNU distro: gNewSense (but I am, of course, using KDE). Before gNewSense I was using Debian Lenny, but gave up on it when I discovered that some people were making Debian go against its own DFSG. I&#8217;m happy to say that not all the people wanted that, but apparently the ones trying to use the Social Contract and the DFSG as toilet paper (yet again) were the majority.</p>
<p>Now, why did I decide to break the silence and come up with an update after all this time?</p>
<p>I&#8217;m sure that by now you can tell this is going be a [long] rant. So&#8230; here be tigers:</p>
<p>&lt;rant&gt;</p>
<p>I want to talk about peer pressure.  I have seen a lot of people getting bent by peer pressure to use nonfree software and that makes me angry at the peer preassurers and the peer pressurees but mostly at the latter, because it&#8217;s their mental weakness which makes peer pressure so effective with them. I have seen people installing Adobe Flash because they have been told that they __have__to__ watch this or that flash video which refuses to work with swfdec; instead of being strong and not letting their will be broken, they go against their ideals because some people tell them they are stupid and freetarded. Flash video is a horrible format and unless we fight it back it will continue being massively used. People are not aware that their conformism regarding this format doesn&#8217;t allow them to see the big picture, that unless someone breaks this vicious circle things are never going to change.</p>
<p>The same thing can be said about Sun&#8217;s Java (as opposed to IcedTea), AIM/Windows Live Messenger, Google, Launchpad or Linux (yes, the vanilla Linux kernel is non free, I&#8217;m sorry to tell you). Unless more people take action against this, we will only see an increase in the usage of nonfree apps/services.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/leorockway.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/leorockway.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=17&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://leorockway.wordpress.com/2009/05/04/watch-out-its-an-update/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1ee27499863486912a9051d6561388c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">leorockway</media:title>
		</media:content>
	</item>
		<item>
		<title>0c:00.0 Network controller: Broadcom Corporation BCM94311MCG wlan mini-PCI (rev 01) for GNU/Linux</title>
		<link>http://leorockway.wordpress.com/2008/04/25/0c000-network-controller-broadcom-corporation-bcm94311mcg-wlan-mini-pci-rev-01-for-hardy-heron/</link>
		<comments>http://leorockway.wordpress.com/2008/04/25/0c000-network-controller-broadcom-corporation-bcm94311mcg-wlan-mini-pci-rev-01-for-hardy-heron/#comments</comments>
		<pubDate>Sat, 26 Apr 2008 02:42:10 +0000</pubDate>
		<dc:creator>leorockway</dc:creator>
				<category><![CDATA[broadcom]]></category>
		<category><![CDATA[hardy]]></category>
		<category><![CDATA[kubuntu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://leorockway.wordpress.com/?p=10</guid>
		<description><![CDATA[EDIT2: There&#8217;s another post for a working explanation to make a broadcom card work with free software. EDIT: The method I had explained in this post made use of nonfree firmware. Thanks to Broadcom&#8217;s lack of cooperation this wifi card can&#8217;t be used nowadays with a Free Software OS. I&#8217;m a Free Software advocate so [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=10&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>EDIT2: There&#8217;s another post for a working explanation to <a title="Broadcom and free software" href="http:http://leorockway.wordpress.com/2009/07/04/0c00-0-network-controller-broadcom-corporation-bcm4311-802-11bg-wlan-rev-01-take-two///">make a broadcom card work with free software</a>.</p>
<p>EDIT: The method I had explained in this post made use of nonfree firmware. Thanks to Broadcom&#8217;s lack of cooperation this wifi card can&#8217;t be used nowadays with a Free Software OS.<br />
I&#8217;m a Free Software advocate so I decided this post had no place in my blog. If you hate freedom you can ask Scroogle how to make this card work, but the best thing to do would be to complain to Broadcom and refrain from buying from them ever again.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/leorockway.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/leorockway.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/leorockway.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/leorockway.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=10&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://leorockway.wordpress.com/2008/04/25/0c000-network-controller-broadcom-corporation-bcm94311mcg-wlan-mini-pci-rev-01-for-hardy-heron/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1ee27499863486912a9051d6561388c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">leorockway</media:title>
		</media:content>
	</item>
		<item>
		<title>Ututo XS 2006 Vivo</title>
		<link>http://leorockway.wordpress.com/2008/04/09/ututo-xs-2006-vivo/</link>
		<comments>http://leorockway.wordpress.com/2008/04/09/ututo-xs-2006-vivo/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 19:17:04 +0000</pubDate>
		<dc:creator>leorockway</dc:creator>
				<category><![CDATA[distros]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[gnu]]></category>
		<category><![CDATA[lignux]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ututo]]></category>

		<guid isPermaLink="false">http://leorockway.wordpress.com/?p=8</guid>
		<description><![CDATA[I have recently been testing some Lignux distros: it&#8217;s not that I&#8217;m not happy with Kubuntu it&#8217;s just that I want a distro where I&#8217;m in more control of the contents installed and since I consider myself a kind of Lignux power user (keywords: &#8220;kind of&#8221;) I don&#8217;t think I really need &#8216;Linux for Human [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=8&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I have recently been testing some Lignux distros: it&#8217;s not that I&#8217;m not happy with Kubuntu it&#8217;s just that I want a distro where I&#8217;m in more control of the contents installed and since I consider myself a kind of Lignux power user (keywords: &#8220;kind of&#8221;) I don&#8217;t think I really need &#8216;Linux for Human Beings&#8217;.<br />
(Just to be fair, I&#8217;m not saying Kubuntu is bad, I&#8217;m saying that Kubuntu usually just ends up being Ubuntu&#8217;s ugly stepsister).</p>
<p>The lack of more interest on Kubuntu from the developers and the need for a distro that gave me more control made me decide to start trying new distros. It is weird that after so many years of being a Lignux user I only tested 2 distros: Slackware and Kubuntu.</p>
<p>So the first distro I decided to test was Ututo.<br />
Ututo, a small lizard that lives in Salta, Argentina, gave its name to the Ututo project. From the Ututo project came the Ututo GNU/Linux distribution which, to this date, is one of the few that follows the 4 rules of software freedom by RMS.</p>
<blockquote><p>* The freedom to run the program, for any purpose (freedom 0).</p>
<p>* The freedom to study how the program works, and adapt it to your needs (freedom 1). Access to the source code is a precondition for this.</p>
<p>* The freedom to redistribute copies so you can help your neighbor (freedom 2).</p>
<p>* The freedom to improve the program, and release your improvements to the public, so that the whole community benefits (freedom 3). Access to the source code is a precondition for this.</p></blockquote>
<p>Stallman said in an interview:</p>
<blockquote><p>All of the commercial distributors of the GNU/Linux system going back something like 7 or 8 years, have made a practice of including non free software in their distributions, and this is something I have been trying to push against in various ways, without much success. But, in fact, even the non commercial distributors of the GNU plus Linux operating system have been including and distributing non free software, and the sad thing was, that of all the many distributions, until recently there was none, that I could recommend. Now I know of one, that I can recommend, its called &#8220;Ututo-e&#8221;, it comes from Argentina. I hope that very soon I will be able to recommend another.</p></blockquote>
<p>[This interview is a little old, now there's also gNewSense which is free according to the 4 freedoms.]</p>
<p>Stallman&#8217;s support for Ututo is so that Ututo&#8217;s ISOs are hosted by FSF.</p>
<p>Ututo comes compiled for many architectures, which makes it faster for most computers. It comes with a choice of KDE, Gnome, IceWM, or Fluxbox and it has Beryl too :S It has its own package manager (uget) and the repos do __not__ include any proprietary software.</p>
<p>Now, what I tried was the Live CD from 2006 not the latest installable version (2007) and the 2006 Live CD comes with Gnome and IceWM. So, in case you were wondering&#8230; yes, I have been using Gnome for a while (but if I decide to install Ututo I will install KDE, of course).</p>
<p>I should also point out that Ututo was one of the first distros to produce a working live cd, something that was seemingly impossible at the moment.</p>
<p>Overall I really enjoyed the Ututo experience and I like that it provides the freedom that all the other distros lack. And who needs Flash anyway? Gnash won&#8217;t let me watch YouTube videos, but I don&#8217;t really care, I can download the FLV and watch the videos with my media player of choice.</p>
<p>Here&#8217;s link to a <a href="http://xs226.xs.to/xs226/08153/pantallazo581.png">screenshot of the Ututo XS 2006 Vivo</a>. To find out more about the Ututo project (which includes much more than just the GNU/Linux distro) you can visit <a title="Ututo's website" href="https://www.ututo.org/www/?country=ENGLISH" target="_blank">Ututo&#8217;s website</a>.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/leorockway.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/leorockway.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/leorockway.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/leorockway.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=8&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://leorockway.wordpress.com/2008/04/09/ututo-xs-2006-vivo/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1ee27499863486912a9051d6561388c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">leorockway</media:title>
		</media:content>
	</item>
		<item>
		<title>ooxml, the April fools&#8217; standard</title>
		<link>http://leorockway.wordpress.com/2008/04/02/ooxml-the-april-fools-standard/</link>
		<comments>http://leorockway.wordpress.com/2008/04/02/ooxml-the-april-fools-standard/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 02:04:12 +0000</pubDate>
		<dc:creator>leorockway</dc:creator>
				<category><![CDATA[corruption]]></category>
		<category><![CDATA[m$]]></category>
		<category><![CDATA[ooxml]]></category>

		<guid isPermaLink="false">http://leorockway.wordpress.com/?p=7</guid>
		<description><![CDATA[I was reading /. to find out those juicy April Fools&#8217; news and I read this article [0] that says that ooxml was approved by ISO. I wasn&#8217;t 100% sure it was just /. trying to be funny, but I didn&#8217;t believe it at first. Then I read another article in KDE Dot News [1] [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=7&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I was reading /. to find out those juicy April Fools&#8217; news and I read this article [0] that says that ooxml was approved by ISO. I wasn&#8217;t 100% sure it was just /. trying to be funny, but I didn&#8217;t believe it at first. Then I read another article in KDE Dot News [1] saying that KDE had voted &#8220;yes&#8221; on ooxml after receiving an anonimous donation. That allowed me to breath again: the ooxml article in /. __had__ to be a joke!</p>
<p>Well, I woke up this morning to face the sad reality: ooxml had, indeed, been approved by ISO.</p>
<p>I read the official ISO press release [2], I read the report article that appeared in nooxml [3] which called ooxml the banana standard and had nice logos that say &#8216;MISOSOFT&#8217; and &#8216;ISO, A division of Microsoft&#8217; (I would put the images here, but I try to adhere as much as I can to the semi-official, semi-serious ascii ribbon campaign against gratuitous graphics on the web [4]).</p>
<p>I even read the comment by <a href="http://en.wikipedia.org/wiki/Miguel_de_Icaza">Idiot de Icaza</a> on his personal weblog [5] where he acclaimed ooxml (not surprising, after he called it a &#8220;superb format&#8221; [6]).</p>
<p>Some people would say that ooxml turning into a standard doesn&#8217;t change anything for free software, but it does. ISO and all its standards have been discredited: if we complain about this new standard then we lose, because then all of our standards mean nothing (ODF); if we don&#8217;t complain, then we lose, because ooxml has no opposition.</p>
<p>I wish I could use ODF at all times, but I still have to exchange documents with people that don&#8217;t even know what ODF is and since M$ Office doesn&#8217;t work with ODF, I&#8217;m forced to save as .doc (which I hate doing, not only because I hate .doc, but also because I don&#8217;t like OO.o a whole lot; I&#8217;m a KDE guy, I&#8217;m all about KOffice).</p>
<p>So, yeah, ooxml is a standard now, even after all the corruption involved in its voting. The Free Software lovers should start a bigger campaign to promote OO.o, along with Sun, then people may not even use ooxml, regardless of its standarization.</p>
<p>[0] <a href="http://slashdot.org/article.pl?sid=08/04/01/2229207">http://slashdot.org/article.pl?sid=08/04/01/2229207</a><br />
[1] <a href="http://dot.kde.org/1207000153/">http://dot.kde.org/1207000153/</a><br />
[2] <a href="http://www.iso.org/iso/pressrelease.htm?refid=Ref1123">http://www.iso.org/iso/pressrelease.htm?refid=Ref1123</a><br />
[3] <a href="http://www.noooxml.org/">http://www.noooxml.org/</a><br />
[4] <a href="http://www.ecst.csuchico.edu/~ghelman/ascii.html">http://www.ecst.csuchico.edu/~ghelman/ascii.html</a><br />
[5] <a href="http://tirania.org/blog/archive/2008/Apr-02.html">http://tirania.org/blog/archive/2008/Apr-02.html</a><br />
[6] <a href="http://groups.google.com/group/tiraniaorg-blog-comments/browse_thread/thread/2a07b8b50038d8c8/d582162af2d63d57">http://groups.google.com/group/tiraniaorg-blog-comments/browse_thread/thread/2a07b8b50038d8c8/d582162af2d63d57</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/leorockway.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/leorockway.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/leorockway.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/leorockway.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=7&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://leorockway.wordpress.com/2008/04/02/ooxml-the-april-fools-standard/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1ee27499863486912a9051d6561388c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">leorockway</media:title>
		</media:content>
	</item>
		<item>
		<title>Jamendo will charge for their music</title>
		<link>http://leorockway.wordpress.com/2008/04/01/jamendo-will-charge-for-their-music/</link>
		<comments>http://leorockway.wordpress.com/2008/04/01/jamendo-will-charge-for-their-music/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 21:19:06 +0000</pubDate>
		<dc:creator>leorockway</dc:creator>
				<category><![CDATA[creative commons]]></category>
		<category><![CDATA[free]]></category>

		<guid isPermaLink="false">http://leorockway.wordpress.com/?p=6</guid>
		<description><![CDATA[After the major failure with their new &#8220;orange&#8221; layout (that still doesn&#8217;t work with Konqueror), Jamendo has surprised the free software community and freedom fighters by issuing a press release stating that they are going to start charging 20 Amerikan dollars per album downloaded. One of their admins said: &#8220;We tried to make people donate [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=6&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>After the major failure with their new &#8220;orange&#8221; layout (that still doesn&#8217;t work with Konqueror), <a title="Jamendo" href="http://jamendo.com" target="_blank">Jamendo</a> has surprised the free software community and freedom fighters by issuing a press release stating that they are going to start charging 20 Amerikan dollars per album downloaded.</p>
<p>One of their admins said: &#8220;We tried to make people donate to keep this service free, but we are not Radiohead and we can&#8217;t even make enough money to maintain our severs&#8221;.</p>
<p><strong>EDIT:</strong> just look at the date <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/leorockway.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/leorockway.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/leorockway.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/leorockway.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=6&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://leorockway.wordpress.com/2008/04/01/jamendo-will-charge-for-their-music/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1ee27499863486912a9051d6561388c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">leorockway</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello, world!</title>
		<link>http://leorockway.wordpress.com/2007/12/28/hello-world/</link>
		<comments>http://leorockway.wordpress.com/2007/12/28/hello-world/#comments</comments>
		<pubDate>Fri, 28 Dec 2007 20:47:05 +0000</pubDate>
		<dc:creator>leorockway</dc:creator>
				<category><![CDATA[python]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Python 2.5.1 (r251:54863, Mar 7 2008, 04:10:12) [GCC 4.1.3 20070929 (prerelease) (Ubuntu 4.1.2-16ubuntu2)] on linux2 Type &#8220;help&#8221;, &#8220;copyright&#8221;, &#8220;credits&#8221; or &#8220;license&#8221; for more information. &#62;&#62;&#62; print &#8220;Hello, world!&#8221; Hello, world! &#62;&#62;&#62;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=1&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Python 2.5.1 (r251:54863, Mar  7 2008, 04:10:12)<br />
[GCC 4.1.3 20070929 (prerelease) (Ubuntu 4.1.2-16ubuntu2)] on linux2<br />
Type &#8220;help&#8221;, &#8220;copyright&#8221;, &#8220;credits&#8221; or &#8220;license&#8221; for more information.<br />
&gt;&gt;&gt; print &#8220;Hello, world!&#8221;<br />
Hello, world!<br />
&gt;&gt;&gt;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/leorockway.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/leorockway.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/leorockway.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/leorockway.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=leorockway.wordpress.com&#038;blog=2405062&#038;post=1&#038;subd=leorockway&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://leorockway.wordpress.com/2007/12/28/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1ee27499863486912a9051d6561388c4?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">leorockway</media:title>
		</media:content>
	</item>
	</channel>
</rss>
