<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<feed xmlns="http://www.w3.org/2005/Atom">

	<title>Grupo de Usuarios de GNU/Linux de Tijuana</title>
	<link rel="self" href="http://planet.tjlug.org/atom.xml"/>
	<link href="http://planet.tjlug.org/"/>
	<id>http://planet.tjlug.org/atom.xml</id>
	<updated>2008-05-12T07:00:04+00:00</updated>
	<generator uri="http://www.planetplanet.org/">Planet/2.0 +http://www.planetplanet.org</generator>

	<entry xml:lang="en">
		<title type="html">Un mensaje de Mozilla México</title>
		<link href="http://www.tjlug.org/2008/05/04/un-mensaje-de-mozilla-mexico/"/>
		<id>http://www.tjlug.org/?p=24</id>
		<updated>2008-05-04T15:22:18+00:00</updated>
		<content type="html">&lt;p&gt;En Mozilla México estamos convencidos que los GUL son elementos&lt;br /&gt;
importantísimos dentro del sistema del Software Libre siendo, entre&lt;br /&gt;
otros aspectos, un excelente punto de contacto con sus miembros.&lt;/p&gt;
&lt;p&gt;Nos encantaría poder ser copartícipes de sus actividades&lt;br /&gt;
promoviéndolas en nuestra comunidad para mejorar la experiencia del&lt;br /&gt;
usuario en el uso de los productos Mozilla.&lt;/p&gt;
&lt;p&gt;Actualmente contamos con una infraestructura de organización que está&lt;br /&gt;
madurando y aumentando como Noticias, Foros, Documentos, entre otros.&lt;/p&gt;
&lt;p&gt;Una de los objetivos de Mozilla México es crear la traducción y&lt;br /&gt;
localización de los productos Mozilla, así como de sus extensiones, a&lt;br /&gt;
las lenguas de México, incluido el español por supuesto. Para lograr&lt;br /&gt;
dicho meta es necesario la participación de un gran equipo&lt;br /&gt;
multidisciplinario  para cada lengua; traductores, desarrolladores y&lt;br /&gt;
testers. La única manera de hacerlo es con su participación.&lt;/p&gt;
&lt;p&gt;Aprovecho la ocasión para promocionar el lanzamiento mundial de&lt;br /&gt;
Firefox 3. En Mozilla México estamos organizando las Firefox 3 Release&lt;br /&gt;
Party&amp;#8217;s de toda la República y nos encantaría que pudieran organizar&lt;br /&gt;
un evento en su comunidad, pueden encontrar más información para crear&lt;br /&gt;
o formar parte de alguno en nuestro sitio web.&lt;/p&gt;
&lt;p&gt;http://mozilla-mexico.sf.net&lt;/p&gt;
&lt;p&gt;Hay una gran cantidad de temas que podríamos comentar y proponer, por&lt;br /&gt;
el momento les agradezco su atención y espero sus comentarios.&lt;/p&gt;
&lt;p&gt; -Ricardo Meza&lt;/p&gt;</content>
		<author>
			<name>Grupo de Usuarios de GNU/Linux de Tijuana</name>
			<uri>http://www.tjlug.org</uri>
		</author>
		<source>
			<title type="html">Grupo de Usuarios de GNU/Linux de Tijuana</title>
			<subtitle type="html">[TJLUG] Grupo de Usuarios de GNU/Linux de Tijuana</subtitle>
			<link rel="self" href="http://www.tjlug.org/feed/"/>
			<id>http://www.tjlug.org/feed/</id>
			<updated>2008-05-04T16:00:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">No Need for Twitter</title>
		<link href="http://blog.guillermoamaral.com/2008/04/11/no-need-for-twitter/"/>
		<id>http://blog.guillermoamaral.com/?p=100</id>
		<updated>2008-04-11T20:43:19+00:00</updated>
		<content type="html">&lt;p&gt;&lt;img src=&quot;http://blog.guillermoamaral.com/hackergochi.png&quot; alt=&quot;hackergochi&quot; align=&quot;right&quot; /&gt;&lt;br /&gt;
I just updated my Amarok Twitter Script, added a few suggestions sent to me by Charles Nepote.&lt;/p&gt;
&lt;p&gt;Install:&lt;/p&gt;
&lt;p&gt;  1) In AmaroK goto Tools &gt; Script Manager&lt;br /&gt;
  2) Hit install and select the downloaded package.&lt;br /&gt;
  3) After install right click on &amp;#8220;twitter-update.sh&amp;#8221; and select &amp;#8220;Edit&amp;#8221;.&lt;br /&gt;
  4) Customise your Username and Password in the specified location and save.&lt;br /&gt;
  5) Now hit Run and Close.&lt;/p&gt;
&lt;p&gt;Download: &lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://downloads.guillermoamaral.com/misc/twitter.amarokscript.tar.bz2&quot;&gt;Download Package&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;#8212;-  &lt;b&gt;Also updated my twitter from console script&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;code&gt;&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
#&lt;br /&gt;
# Twitter Update&lt;br /&gt;
#&lt;br /&gt;
# Requires: cURL http://curl.haxx.se/&lt;br /&gt;
# By Guillermo Antonio Amaral Bastidas  gamaral@guillermoamaral.com &gt;&lt;br /&gt;
#&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;### CONFIGURE ###&lt;/p&gt;
&lt;p&gt;declare -rx USERNAME=&amp;#8221;YOUR_USERNAME&amp;#8221;&lt;br /&gt;
declare -rx PASSWORD=&amp;#8221;YOUR_PASSWORD&amp;#8221;&lt;/p&gt;
&lt;p&gt;### DONT MODIFY ###&lt;/p&gt;
&lt;p&gt;declare -x STATUS=&amp;#8221;$@&amp;#8221;&lt;/p&gt;
&lt;p&gt;curl &amp;#8216;http://twitter.com/statuses/update.xml&amp;#8217; \&lt;br /&gt;
    -u ${USERNAME}:${PASSWORD} \&lt;br /&gt;
    -d &amp;#8220;status=${STATUS}&amp;#8221; &gt; /dev/null 2&gt; /dev/null&lt;/p&gt;
&lt;p&gt;# EOF&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;Usage:&lt;/p&gt;
&lt;p&gt;  ./twitter Update from console woot&lt;/p&gt;
&lt;p&gt;Download:&lt;/p&gt;
&lt;p&gt;  &lt;a href=&quot;http://downloads.guillermoamaral.com/misc/twitter&quot;&gt;Download Script&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Animus Wisdom</name>
			<uri>http://blog.guillermoamaral.com</uri>
		</author>
		<source>
			<title type="html">Animus Wisdom</title>
			<subtitle type="html">Blessed is he who expects nothing, for he shall never be disappointed.</subtitle>
			<link rel="self" href="http://blog.guillermoamaral.com/feed/"/>
			<id>http://blog.guillermoamaral.com/feed/</id>
			<updated>2008-05-12T04:00:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">No Need for Double Vision</title>
		<link href="http://blog.guillermoamaral.com/2008/04/06/no-need-for-double-vision/"/>
		<id>http://blog.guillermoamaral.com/?p=99</id>
		<updated>2008-04-07T02:10:41+00:00</updated>
		<content type="html">&lt;p&gt;&lt;a href=&quot;http://blog.guillermoamaral.com/wp-content/uploads/2008/04/eee2.jpg&quot;&gt;&lt;img src=&quot;http://blog.guillermoamaral.com/wp-content/uploads/2008/04/eee2-300x225.jpg&quot; alt=&quot;&quot; title=&quot;eee2&quot; width=&quot;300&quot; height=&quot;225&quot; class=&quot;alignnone size-medium wp-image-98&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;h3&gt;Quick Updates:&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;I bought a couple of EEEPC&amp;#8217;s for the family a few months ago, they both run Gentoo, one KDE one Gnome.&lt;/li&gt;
&lt;li&gt;I got screwed by my last employer.&lt;/li&gt;
&lt;li&gt;Partnered up with a few friends and created a new company, we have something in the works to help launch our company.&lt;/li&gt;
&lt;li&gt;Changed the business application projects I am work on from KDE4 to QT4, sorry Ted.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;More on this later,&lt;br /&gt;
Cheers&lt;/p&gt;</content>
		<author>
			<name>Animus Wisdom</name>
			<uri>http://blog.guillermoamaral.com</uri>
		</author>
		<source>
			<title type="html">Animus Wisdom</title>
			<subtitle type="html">Blessed is he who expects nothing, for he shall never be disappointed.</subtitle>
			<link rel="self" href="http://blog.guillermoamaral.com/feed/"/>
			<id>http://blog.guillermoamaral.com/feed/</id>
			<updated>2008-05-12T04:00:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">KDE Amerika</title>
		<link href="http://www.tjlug.org/2008/02/16/kde-amerika/"/>
		<id>http://www.tjlug.org/2008/02/16/kde-amerika/</id>
		<updated>2008-02-16T09:54:35+00:00</updated>
		<content type="html">&lt;p&gt;Estoy organizando una evento similar a &amp;#8220;&lt;a href=&quot;http://es.wikipedia.org/wiki/AKademy&quot;&gt;Akademy&lt;/a&gt;&amp;#8221; de &lt;a href=&quot;http://www.kde.org/&quot;&gt;KDE&lt;/a&gt; en Tijuana, nuestra única competencia es Jamaica. Así que con un poco de suerte para la tercer semana de Enero 2009 mas de 150 programadores de KDE estarán aquí en Tijuana.&lt;/p&gt;
&lt;p&gt;Si ganamos se ocupara mucha ayuda y traductores. Quien quiere participar ?&lt;/p&gt;</content>
		<author>
			<name>Grupo de Usuarios de GNU/Linux de Tijuana</name>
			<uri>http://www.tjlug.org</uri>
		</author>
		<source>
			<title type="html">Grupo de Usuarios de GNU/Linux de Tijuana</title>
			<subtitle type="html">[TJLUG] Grupo de Usuarios de GNU/Linux de Tijuana</subtitle>
			<link rel="self" href="http://www.tjlug.org/feed/"/>
			<id>http://www.tjlug.org/feed/</id>
			<updated>2008-05-04T16:00:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Linux Magazine</title>
		<link href="http://www.tjlug.org/2008/02/16/linux-magazine/"/>
		<id>http://www.tjlug.org/2008/02/16/linux-magazine/</id>
		<updated>2008-02-16T09:47:30+00:00</updated>
		<content type="html">&lt;p&gt;Linux Magazine España nos ha regalado 3 magníficos artículos:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&amp;#8220;El Día a Día del Administrador de Sistemas: Nttcp.&amp;#8221;&lt;/li&gt;
&lt;li&gt;&amp;#8220;Uso de Perl con un multímetro para informar del consumo eléctrico.&amp;#8221;&lt;/li&gt;
&lt;li&gt;&amp;#8220;Acceso a GUIs remotos con VNC.&amp;#8221;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Los enlaces serán distribuidos por nuestra &lt;a href=&quot;http://lists.tjlug.org/mailman/listinfo/tjlug.general&quot;&gt;lista de correo general&lt;/a&gt;.&lt;/p&gt;</content>
		<author>
			<name>Grupo de Usuarios de GNU/Linux de Tijuana</name>
			<uri>http://www.tjlug.org</uri>
		</author>
		<source>
			<title type="html">Grupo de Usuarios de GNU/Linux de Tijuana</title>
			<subtitle type="html">[TJLUG] Grupo de Usuarios de GNU/Linux de Tijuana</subtitle>
			<link rel="self" href="http://www.tjlug.org/feed/"/>
			<id>http://www.tjlug.org/feed/</id>
			<updated>2008-05-04T16:00:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">No Need for a New Year</title>
		<link href="http://blog.guillermoamaral.com/2008/01/31/no-need-for-a-new-year/"/>
		<id>http://blog.guillermoamaral.com/2008/01/31/no-need-for-a-new-year/</id>
		<updated>2008-01-31T08:57:20+00:00</updated>
		<content type="html">&lt;p&gt;&lt;img src=&quot;http://blog.guillermoamaral.com/hackergochi.png&quot; alt=&quot;hackergochi&quot; align=&quot;right&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;&lt;i&gt;New year, new theme for my titles&amp;#8230;. Any guesses ?&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;\brief KDE Release Event&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://blog.guillermoamaral.com/2008/01/31/no-need-for-a-new-year/google/&quot; rel=&quot;attachment wp-att-97&quot; title=&quot;Google&quot;&gt;&lt;img src=&quot;http://blog.guillermoamaral.com/wp-content/uploads/2008/01/cone.thumbnail.jpg&quot; alt=&quot;Google&quot; align=&quot;left&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;  I would like to thank everybody involved in the KDE 4 Release Event, It was a pleasure to meet fellow KDE gear heads, talk to media people, get drunk at google, make new friends, get drunk at the hotel, sneak in the backdoor of the oasis pub ( I think it was called oasis ) and sing karaoke till they kicked us out.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;\brief Distro Hooping&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;  While at the event I decided to try out Kubuntu since the great Mr. Riddell was so kind as to leave a few install cd&amp;#8217;s for anybody who was interested, sadly my POS laptop didn&amp;#8217;t like the idea; My Compaq V3010US is one of the worst laptops I have had the pleasure to buy. It has a horrible ACPI implementation, 30 minute battery life, it uses that damn broadcom wireless chipset and a nasty nvidia video chipset that burned out the original LCD display and has already killed a pixel or two in the new display. Sadly Kubuntu lowered the battery life down to 15 minutes and the video drivers didn&amp;#8217;t work at all. I have been a hard-core Gentoo user for quite some time and I was a bit worried trying out a binary based distribution but I gave it the old collage try for the duration of my trip yet it didn&amp;#8217;t stick, I reinstalled Gentoo as soon as I got home. I love to try distros but I have noticed I keep coming back to good old Gentoo.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;\brief Closure &lt;/b&gt;&lt;/p&gt;
&lt;p&gt;  A little under a year ago one of my cars &lt;a href=&quot;http://blog.guillermoamaral.com/2007/02/14/happy-valentines-day/&quot;&gt;got stolen&lt;/a&gt; breaking my stolen car recovery streak; I have recovered every single car that has been stolen from me or one of my family members in a day or even minutes. &amp;#8212; I found the damn thing last week in a impound lot!!! The car was stolen on the 14th of Feburary 2007 and was impounded the day after. So it has been waiting for me for almost a year. On the up side my streak has not been broken but on the down side it got stripped by thieves. Que sera sera.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;\brief Wrap-up&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;  Well after taking care of most of my backlogged work I can finally get back to some fun and interesting matters! A few photos from ( outside ) the KDE Event and my stripped out car can be found at &lt;a href=&quot;http://photos.guillermoamaral.com/&quot;&gt;http://photos.guillermoamaral.com/&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;  Cheers!&lt;/p&gt;</content>
		<author>
			<name>Animus Wisdom</name>
			<uri>http://blog.guillermoamaral.com</uri>
		</author>
		<source>
			<title type="html">Animus Wisdom</title>
			<subtitle type="html">Blessed is he who expects nothing, for he shall never be disappointed.</subtitle>
			<link rel="self" href="http://blog.guillermoamaral.com/feed/"/>
			<id>http://blog.guillermoamaral.com/feed/</id>
			<updated>2008-05-12T04:00:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">KDE 4 Release Event</title>
		<link href="http://www.tjlug.org/2008/01/21/kde-4-release-event/"/>
		<id>http://www.tjlug.org/2008/01/21/kde-4-release-event/</id>
		<updated>2008-01-22T00:55:56+00:00</updated>
		<content type="html">&lt;p&gt;He regresado del KDE 4 Release Event en Mountain View, CA y tengo fotos para todos ustedes.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://photos.guillermoamaral.com/&quot;&gt;http://photos.guillermoamaral.com/&lt;/a&gt;&lt;/p&gt;</content>
		<author>
			<name>Grupo de Usuarios de GNU/Linux de Tijuana</name>
			<uri>http://www.tjlug.org</uri>
		</author>
		<source>
			<title type="html">Grupo de Usuarios de GNU/Linux de Tijuana</title>
			<subtitle type="html">[TJLUG] Grupo de Usuarios de GNU/Linux de Tijuana</subtitle>
			<link rel="self" href="http://www.tjlug.org/feed/"/>
			<id>http://www.tjlug.org/feed/</id>
			<updated>2008-05-04T16:00:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Montain View Kalifornia</title>
		<link href="http://blog.guillermoamaral.com/2008/01/16/montain-view-kalifornia/"/>
		<id>http://blog.guillermoamaral.com/2008/01/16/montain-view-kalifornia/</id>
		<updated>2008-01-17T01:02:28+00:00</updated>
		<content type="html">&lt;p&gt;&lt;img src=&quot;http://blog.guillermoamaral.com/hackergochi.png&quot; alt=&quot;hackergochi&quot; align=&quot;right&quot; /&gt;&lt;/p&gt;
&lt;p&gt;It is time to get ready for my trip to Mountain View for the KDE Release Event, I will be sharing a room with Dave Yates from the &lt;a href=&quot;http://www.lottalinuxlinks.com/&quot;&gt;Lotta Linux Links&lt;/a&gt; site and podcast, so it should be entertaining.&lt;/p&gt;
&lt;p&gt;Expect a lot of pictures!&lt;/p&gt;</content>
		<author>
			<name>Animus Wisdom</name>
			<uri>http://blog.guillermoamaral.com</uri>
		</author>
		<source>
			<title type="html">Animus Wisdom</title>
			<subtitle type="html">Blessed is he who expects nothing, for he shall never be disappointed.</subtitle>
			<link rel="self" href="http://blog.guillermoamaral.com/feed/"/>
			<id>http://blog.guillermoamaral.com/feed/</id>
			<updated>2008-05-12T04:00:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Installfest</title>
		<link href="http://www.tjlug.org/2007/12/29/installfest/"/>
		<id>http://www.tjlug.org/2007/12/29/installfest/</id>
		<updated>2007-12-29T23:00:36+00:00</updated>
		<content type="html">&lt;p&gt;Se ha decidido hacer Installfest el &lt;b&gt;3er Domingo&lt;/b&gt; de cada mes de &lt;b&gt;11:00 a 16:00&lt;/b&gt;.&lt;/p&gt;</content>
		<author>
			<name>Grupo de Usuarios de GNU/Linux de Tijuana</name>
			<uri>http://www.tjlug.org</uri>
		</author>
		<source>
			<title type="html">Grupo de Usuarios de GNU/Linux de Tijuana</title>
			<subtitle type="html">[TJLUG] Grupo de Usuarios de GNU/Linux de Tijuana</subtitle>
			<link rel="self" href="http://www.tjlug.org/feed/"/>
			<id>http://www.tjlug.org/feed/</id>
			<updated>2008-05-04T16:00:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Reunión Inicial</title>
		<link href="http://www.tjlug.org/2007/12/29/reunin-inicial/"/>
		<id>http://www.tjlug.org/2007/12/29/reunin-inicial/</id>
		<updated>2007-12-29T20:31:40+00:00</updated>
		<content type="html">&lt;p&gt;
Nuestra primer reuni&amp;oacute;n sera durante la ultima semana de Enero, 2008, en donde se discutir&amp;aacute; las metas del &lt;b&gt;TJLUG&lt;/b&gt;.
&lt;/p&gt;
&lt;p&gt;
&lt;i&gt;Se anunciara el lugar, d&amp;iacute;a y hora tan pronto como se decida.&lt;/i&gt; Si le interesa participar por favor envi&amp;eacute; un correo a &lt;a href=&quot;mailto:info@tjlug.org&quot;&gt;info@tjlug.org&lt;/a&gt;.&lt;/p&gt;</content>
		<author>
			<name>Grupo de Usuarios de GNU/Linux de Tijuana</name>
			<uri>http://www.tjlug.org</uri>
		</author>
		<source>
			<title type="html">Grupo de Usuarios de GNU/Linux de Tijuana</title>
			<subtitle type="html">[TJLUG] Grupo de Usuarios de GNU/Linux de Tijuana</subtitle>
			<link rel="self" href="http://www.tjlug.org/feed/"/>
			<id>http://www.tjlug.org/feed/</id>
			<updated>2008-05-04T16:00:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Mensajería Instantánea ( Jabber )</title>
		<link href="http://www.tjlug.org/2007/12/26/mensajera-instantnea-jabber/"/>
		<id>http://www.tjlug.org/2007/12/26/mensajera-instantnea-jabber/</id>
		<updated>2007-12-26T23:27:47+00:00</updated>
		<content type="html">&lt;p&gt;Nuestro dominio &amp;#8220;tjlug.org&amp;#8221; ya cuenta con servicio de mensajer&amp;iacute;a instant&amp;aacute;nea ( Jabber ), solo registren su usuario usando su cliente de Jabber favorito.&lt;/p&gt;</content>
		<author>
			<name>Grupo de Usuarios de GNU/Linux de Tijuana</name>
			<uri>http://www.tjlug.org</uri>
		</author>
		<source>
			<title type="html">Grupo de Usuarios de GNU/Linux de Tijuana</title>
			<subtitle type="html">[TJLUG] Grupo de Usuarios de GNU/Linux de Tijuana</subtitle>
			<link rel="self" href="http://www.tjlug.org/feed/"/>
			<id>http://www.tjlug.org/feed/</id>
			<updated>2008-05-04T16:00:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">King Pest</title>
		<link href="http://blog.guillermoamaral.com/2007/12/18/king-pest/"/>
		<id>http://blog.guillermoamaral.com/2007/12/18/king-pest/</id>
		<updated>2007-12-18T23:37:26+00:00</updated>
		<content type="html">&lt;p&gt;&lt;img src=&quot;http://blog.guillermoamaral.com/hackergochi.png&quot; alt=&quot;hackergochi&quot; align=&quot;right&quot; /&gt;&lt;/p&gt;
&lt;p&gt;LUGs + Tijuana, some of my friends and I have looked long and hard for something that might resemble a &lt;b&gt;*proper*&lt;/b&gt; LUG with &lt;i&gt;coffee, beer, pizza, hackfests, installfests, monthly or fortnightly meetings, etc.&lt;/i&gt;&lt;br /&gt;
The only groups found are Internet based, so we decided to start our own.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.tjlug.org/&quot;&gt;Grupo de Usuarios de GNU/Linux de Tijuana&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I added all the fixins, our own &lt;a href=&quot;http://planet.tjlug.org/&quot;&gt;Planet&lt;/a&gt;, &lt;a href=&quot;http://lists.tjlug.org/mailman/listinfo&quot;&gt;Mailing lists&lt;/a&gt; with &lt;a href=&quot;http://www.gmane.org/&quot;&gt;Gmane&lt;/a&gt; as the archive and &lt;a href=&quot;http://en.wikipedia.org/wiki/Network_News_Transfer_Protocol&quot;&gt;NNTP&lt;/a&gt; gateway, Jabber server, POP3 POP3s IMAP IMAPS electronic mail access for LUG members. We just need a location, I will scout the city for a good place to hold the meetings.&lt;/p&gt;
&lt;p&gt;Anybody have any tips for LUGs in a city with very few GNU/Linux users ?&lt;/p&gt;
&lt;p&gt;On a sad note, I might be in the job market next year. I am currently working two jobs and it has taken its tole on my relationship. I have talked it over with the misses and I might accept a job offer from one of my ex-employers, I also got a good job offer from a local big *evil* corporation ( I dare not utter their name ).&lt;/p&gt;
&lt;p&gt;&lt;center&gt;&lt;br /&gt;
&lt;b&gt;Merry Tijuana Christmas to you all&lt;/b&gt;&lt;br /&gt;
&lt;a href=&quot;http://blog.guillermoamaral.com/wp-content/uploads/2007/12/tjfront.jpg&quot; title=&quot;Tijuana Christmas&quot;&gt;&lt;img src=&quot;http://blog.guillermoamaral.com/wp-content/uploads/2007/12/tjfront.thumbnail.jpg&quot; alt=&quot;Tijuana Christmas&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;b&gt;I hope saint nick brings you all a &lt;a href=&quot;http://en.wikipedia.org/wiki/Tijuana_Zebra&quot;&gt;zebra painted donkey&lt;a&gt;.&lt;/a&gt;&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;
&lt;/center&gt;&lt;/p&gt;</content>
		<author>
			<name>Animus Wisdom</name>
			<uri>http://blog.guillermoamaral.com</uri>
		</author>
		<source>
			<title type="html">Animus Wisdom</title>
			<subtitle type="html">Blessed is he who expects nothing, for he shall never be disappointed.</subtitle>
			<link rel="self" href="http://blog.guillermoamaral.com/feed/"/>
			<id>http://blog.guillermoamaral.com/feed/</id>
			<updated>2008-05-12T04:00:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Bienvenido</title>
		<link href="http://www.tjlug.org/2007/12/15/hello-world/"/>
		<id>http://www.tjlug.org/?p=1</id>
		<updated>2007-12-15T18:13:32+00:00</updated>
		<content type="html">&lt;p&gt;Preparando todo para lanzar TJLUG&lt;/p&gt;</content>
		<author>
			<name>Grupo de Usuarios de GNU/Linux de Tijuana</name>
			<uri>http://www.tjlug.org</uri>
		</author>
		<source>
			<title type="html">Grupo de Usuarios de GNU/Linux de Tijuana</title>
			<subtitle type="html">[TJLUG] Grupo de Usuarios de GNU/Linux de Tijuana</subtitle>
			<link rel="self" href="http://www.tjlug.org/feed/"/>
			<id>http://www.tjlug.org/feed/</id>
			<updated>2008-05-04T16:00:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Never Bet The Devil Your Snail-Mail</title>
		<link href="http://blog.guillermoamaral.com/2007/12/04/never-bet-the-devil-your-snail-mail/"/>
		<id>http://blog.guillermoamaral.com/2007/12/04/never-bet-the-devil-your-snail-mail/</id>
		<updated>2007-12-04T21:41:48+00:00</updated>
		<content type="html">&lt;p&gt;&lt;img src=&quot;http://blog.guillermoamaral.com/hackergochi.png&quot; alt=&quot;hackergochi&quot; align=&quot;right&quot; /&gt;&lt;/p&gt;
&lt;p&gt;As I picked up my P.O. Box mail yesterday evening I noticed something was different, a large rectangular envelope had found it&amp;#8217;s way in to my slot. It was a FedEx Express Envelope, I decided to open it right then and their and as I did a  fresh off the &amp;#8216;Google&amp;#8217; smell came from the inside.&lt;br /&gt;
&lt;a href=&quot;http://blog.guillermoamaral.com/wp-content/uploads/2007/12/invite.jpeg&quot; title=&quot;KDE4 Release Event Invitation&quot;&gt;&lt;img src=&quot;http://blog.guillermoamaral.com/wp-content/uploads/2007/12/invite.thumbnail.jpeg&quot; alt=&quot;KDE4 Release Event Invitation&quot; align=&quot;left&quot; /&gt;&lt;/a&gt;At first I did not believe it, I looked away and started shaking the envelope vigorously until a smaller envelope fell from the inside, carefully picking it up from the soft carpeted ground I noticed it had some sort of new protection technology &amp;#8212; &amp;#8220;What is this Sorcery ?&amp;#8221; my daughter shouted; Two small plastic rectangular pieces covered with glue on one side kept me away from my prize, I put on my emergency latex gloves and proceeded removing the strange objects, after a growling 2 hours of pealing I was Inside the smaller envelope. Their it was&amp;#8230; my Official &lt;a href=&quot;http://www.kde.org/kde-4.0-release-event/&quot;&gt;KDE 4 Release Event&lt;/a&gt; Invitation from &lt;b&gt;Google Inc.&lt;/b&gt;&lt;/p&gt;</content>
		<author>
			<name>Animus Wisdom</name>
			<uri>http://blog.guillermoamaral.com</uri>
		</author>
		<source>
			<title type="html">Animus Wisdom</title>
			<subtitle type="html">Blessed is he who expects nothing, for he shall never be disappointed.</subtitle>
			<link rel="self" href="http://blog.guillermoamaral.com/feed/"/>
			<id>http://blog.guillermoamaral.com/feed/</id>
			<updated>2008-05-12T04:00:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Why the Little Frenchman Submits Electronic Mail Using Port 587</title>
		<link href="http://blog.guillermoamaral.com/2007/11/28/why-the-little-frenchman-submits-electronic-mail-using-port-587/"/>
		<id>http://blog.guillermoamaral.com/2007/11/28/why-the-little-frenchman-submits-electronic-mail-using-port-587/</id>
		<updated>2007-11-29T01:33:42+00:00</updated>
		<content type="html">&lt;p&gt;&lt;img src=&quot;http://blog.guillermoamaral.com/hackergochi.png&quot; alt=&quot;hackergochi&quot; align=&quot;right&quot; /&gt;&lt;/p&gt;
&lt;p&gt;  After playing around with my electronic mail server I have decided to only accept outgoing mail from authenticated clients via the &lt;a href=&quot;http://tools.ietf.org/rfc/rfc4409.txt&quot;&gt;Submission ( 587 )&lt;/a&gt; and SMTPS ( 465 ) ports on all servers under my control, during the past few days I noticed that server load and spam are way down; since I can now be more strict with client name and HELO/EHLO checks on all connections via the standard SMTP (25) port, something I could not do before. &lt;/p&gt;
&lt;p&gt;  Authenticated client messages can bypass strict SPAM checks but do get checked for virus infection and are signed with the server&amp;#8217;s DomainKey on their way out.&lt;/p&gt;
&lt;p&gt;  Blocking port 25 doesn&amp;#8217;t sound like such a bad idea to me now because 95% of spam attempts on my servers seem to be from windows zombies. After I implemented the new checks I just get a handful of spam from a few hijacked servers and open relays. SpamAssassin gets most of them in the first try. &lt;/p&gt;
&lt;p&gt;I am quite happy with the results so far. :-)&lt;/p&gt;</content>
		<author>
			<name>Animus Wisdom</name>
			<uri>http://blog.guillermoamaral.com</uri>
		</author>
		<source>
			<title type="html">Animus Wisdom</title>
			<subtitle type="html">Blessed is he who expects nothing, for he shall never be disappointed.</subtitle>
			<link rel="self" href="http://blog.guillermoamaral.com/feed/"/>
			<id>http://blog.guillermoamaral.com/feed/</id>
			<updated>2008-05-12T04:00:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Loss of Post</title>
		<link href="http://blog.guillermoamaral.com/2007/11/27/loss-of-post/"/>
		<id>http://blog.guillermoamaral.com/2007/11/27/loss-of-post/</id>
		<updated>2007-11-28T00:41:06+00:00</updated>
		<content type="html">&lt;p&gt;&lt;img alt=&quot;gamaral&quot; src=&quot;http://blog.guillermoamaral.com/hackergochi.png&quot; /&gt;&lt;br /&gt;
I hope everybody had a great weekend, specially the Yankees among you. I also got to eat some delicious turkey since my girlfriend loves to cook. &lt;/p&gt;
&lt;p&gt;On a sad note, I screwed up a few minutes ago while playing with Weblogger in GNU Emacs, who knew that C-c C-k deleted posts!  &lt;b&gt;*woops*&lt;/b&gt; :-). Now my last post has gone A.W.O.L. and I find my self filling in the void.&lt;/p&gt;
&lt;p&gt;But I do have some good news, I was added to the &lt;a href=&quot;http://mx.planetalinux.org/&quot;&gt;Planeta Linux Mexico&lt;/a&gt; planet, so I invite you all to go and check it out.&lt;/p&gt;</content>
		<author>
			<name>Animus Wisdom</name>
			<uri>http://blog.guillermoamaral.com</uri>
		</author>
		<source>
			<title type="html">Animus Wisdom</title>
			<subtitle type="html">Blessed is he who expects nothing, for he shall never be disappointed.</subtitle>
			<link rel="self" href="http://blog.guillermoamaral.com/feed/"/>
			<id>http://blog.guillermoamaral.com/feed/</id>
			<updated>2008-05-12T04:00:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">The Gold-Bug in KNotes</title>
		<link href="http://blog.guillermoamaral.com/2007/10/21/the-gold-bug-in-knotes/"/>
		<id>http://blog.guillermoamaral.com/2007/10/21/the-gold-bug-in-knotes/</id>
		<updated>2007-10-22T03:40:05+00:00</updated>
		<content type="html">&lt;p&gt;  I wanted to get the new &lt;b&gt;KNotes&lt;/b&gt; layout out before the big freeze coming up, I still need to allot time and effort to get the code cleaned up and add much needed improvements.&lt;/p&gt;
&lt;p&gt;  This following screen shot shows the new layout in all it&amp;#8217;s glory.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://blog.guillermoamaral.com/wp-content/uploads/2007/10/snapshot4.png&quot; title=&quot;New layout for KNotes&quot;&gt;&lt;img src=&quot;http://blog.guillermoamaral.com/wp-content/uploads/2007/10/snapshot4.thumbnail.png&quot; alt=&quot;New layout for KNotes&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;* What you may not notice is that the Size Grip is no longer set as the Editor&amp;#8217;s Corner Widget,&lt;br /&gt;
      I had some problems getting that to work well on Qt 4.&lt;/p&gt;
&lt;p&gt;* KNote now uses actual Qt Layouts to split the components inside each note.&lt;/p&gt;
&lt;p&gt;* The note close button is larger and responds to hover and mouse down events differently.&lt;/p&gt;</content>
		<author>
			<name>Animus Wisdom</name>
			<uri>http://blog.guillermoamaral.com</uri>
		</author>
		<source>
			<title type="html">Animus Wisdom</title>
			<subtitle type="html">Blessed is he who expects nothing, for he shall never be disappointed.</subtitle>
			<link rel="self" href="http://blog.guillermoamaral.com/feed/"/>
			<id>http://blog.guillermoamaral.com/feed/</id>
			<updated>2008-05-12T04:00:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">How To Write A KNode Article</title>
		<link href="http://blog.guillermoamaral.com/2007/10/17/how-to-write-a-knode-article/"/>
		<id>http://blog.guillermoamaral.com/2007/10/17/how-to-write-a-knode-article/</id>
		<updated>2007-10-17T17:08:16+00:00</updated>
		<content type="html">&lt;p&gt;  Well after commenting a few posts ago about newsgroup use or the lack there off, I switched all my KDE mailing subscriptions to newsgroups in Gmane :-D, now all my news and mailing lists reside in KNode instead of KMail.&lt;/p&gt;
&lt;p&gt; &lt;a href=&quot;http://blog.guillermoamaral.com/wp-content/uploads/2007/10/snapshot3.png&quot; title=&quot;KNode screenshot&quot;&gt;&lt;img src=&quot;http://blog.guillermoamaral.com/wp-content/uploads/2007/10/snapshot3.thumbnail.png&quot; alt=&quot;KNode screenshot&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;  BTW, I will attend the KDE 4 release event at Google, this will be my first KDE event since the European events are quite a long way from my home office in Tijuana, Mexico and the old KWallet is empty during that time of the year. I hope to meet many of you there :-)&lt;/p&gt;
&lt;p&gt;  P.S. Many people have sent me e-mails asking about my post titles, only two got it right. all titles come from Edgar Allan Poe works, I might have also used a movie title at some point.&lt;/p&gt;</content>
		<author>
			<name>Animus Wisdom</name>
			<uri>http://blog.guillermoamaral.com</uri>
		</author>
		<source>
			<title type="html">Animus Wisdom</title>
			<subtitle type="html">Blessed is he who expects nothing, for he shall never be disappointed.</subtitle>
			<link rel="self" href="http://blog.guillermoamaral.com/feed/"/>
			<id>http://blog.guillermoamaral.com/feed/</id>
			<updated>2008-05-12T04:00:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">The KNotes Of Unrest</title>
		<link href="http://blog.guillermoamaral.com/2007/10/13/the-knotes-of-unrest/"/>
		<id>http://blog.guillermoamaral.com/2007/10/13/the-knotes-of-unrest/</id>
		<updated>2007-10-13T09:58:57+00:00</updated>
		<content type="html">&lt;p&gt;  Back from my business trip :-)&lt;/p&gt;
&lt;p&gt;  Everything went well, these past months have been hectic :-S in both my personal and professional life, I will be having more free time on my hands ( if my current employer keeps his word ). But I did get some free time today and I dedicated it to KNotes.&lt;/p&gt;
&lt;p&gt;  KNotes is now QT3_SUPPORT free, *main.cpp* has a new structure and the application class can now handle command line options.&lt;/p&gt;
&lt;p&gt;  &lt;a href=&quot;http://blog.guillermoamaral.com/wp-content/uploads/2007/10/snapshot2.png&quot; title=&quot;KNotes Screenshot&quot;&gt;&lt;img src=&quot;http://blog.guillermoamaral.com/wp-content/uploads/2007/10/snapshot2.thumbnail.png&quot; alt=&quot;KNotes Screenshot&quot; /&gt;&lt;/a&gt; &lt;/p&gt;
&lt;p&gt; I will work on the a few bugs I found during my trip this weekend.&lt;/p&gt;</content>
		<author>
			<name>Animus Wisdom</name>
			<uri>http://blog.guillermoamaral.com</uri>
		</author>
		<source>
			<title type="html">Animus Wisdom</title>
			<subtitle type="html">Blessed is he who expects nothing, for he shall never be disappointed.</subtitle>
			<link rel="self" href="http://blog.guillermoamaral.com/feed/"/>
			<id>http://blog.guillermoamaral.com/feed/</id>
			<updated>2008-05-12T04:00:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">The System of Dr. Linus and Professor Brooks</title>
		<link href="http://blog.guillermoamaral.com/2007/09/28/the-system-of-dr-linus-and-professor-brooks/"/>
		<id>http://blog.guillermoamaral.com/2007/09/28/the-system-of-dr-linus-and-professor-brooks/</id>
		<updated>2007-09-29T07:00:44+00:00</updated>
		<content type="html">&lt;p&gt;  Just confirmed today, I will be going on a business trip to the south&lt;br /&gt;
on Monday, I decided to take a couple of books to read during my stay.&lt;/p&gt;
&lt;p&gt;  &lt;i&gt;Just for Fun&lt;/i&gt; - The Story of an Accidental Revolutionary&lt;br /&gt;
    by &lt;b&gt;Linus Torvalds&lt;/b&gt; and &lt;b&gt;David Diamond&lt;/b&gt;.&lt;/p&gt;
&lt;p&gt;  &lt;i&gt;The Mythical Man-Month&lt;/i&gt; - Essays on Software Engineering&lt;br /&gt;
    by &lt;b&gt;Frederick P. Brooks, JR&lt;/b&gt;.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://blog.guillermoamaral.com/wp-content/uploads/2007/09/books-070928.jpg&quot; title=&quot;Books to Read&quot;&gt;&lt;img src=&quot;http://blog.guillermoamaral.com/wp-content/uploads/2007/09/books-070928.thumbnail.jpg&quot; alt=&quot;Books to Read&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;  I usually don&amp;#8217;t get to read them on business trips but I will make time&lt;br /&gt;
and read them before my triumphant return in one weeks time.&lt;/p&gt;
&lt;p&gt;  Does anybody have any suggestions on a good science fiction book to take?&lt;/p&gt;
&lt;p&gt;EDIT: Thank&amp;#8217;s `Serge` for the head up on the misplaced `r` in `Torvalds`, yes even I. The fastest typist in the west sometimes makes mistakes :-)&lt;/p&gt;</content>
		<author>
			<name>Animus Wisdom</name>
			<uri>http://blog.guillermoamaral.com</uri>
		</author>
		<source>
			<title type="html">Animus Wisdom</title>
			<subtitle type="html">Blessed is he who expects nothing, for he shall never be disappointed.</subtitle>
			<link rel="self" href="http://blog.guillermoamaral.com/feed/"/>
			<id>http://blog.guillermoamaral.com/feed/</id>
			<updated>2008-05-12T04:00:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">NewsGroup Blues</title>
		<link href="http://blog.guillermoamaral.com/2007/09/14/newsgroup-blues/"/>
		<id>http://blog.guillermoamaral.com/2007/09/14/newsgroup-blues/</id>
		<updated>2007-09-15T01:38:06+00:00</updated>
		<content type="html">&lt;p&gt;More than 10 years ago&amp;#8230; this was the last time I went into a newsgroup.&lt;/p&gt;
&lt;p&gt;A couple of days ago I signed up for a paid news group service and I have rediscovered the great feeling of posting without having to remember what site I posted on, passwords, profiles, etc.&lt;/p&gt;
&lt;p&gt;I was shocked to find that there are no groups for KDE ( besides the a few mailing lists ). I did find many well maintained groups for Debian, Mozilla projects, GNU projects and a few others.&lt;/p&gt;
&lt;p&gt;Does anybody still use Usenet?&lt;/p&gt;</content>
		<author>
			<name>Animus Wisdom</name>
			<uri>http://blog.guillermoamaral.com</uri>
		</author>
		<source>
			<title type="html">Animus Wisdom</title>
			<subtitle type="html">Blessed is he who expects nothing, for he shall never be disappointed.</subtitle>
			<link rel="self" href="http://blog.guillermoamaral.com/feed/"/>
			<id>http://blog.guillermoamaral.com/feed/</id>
			<updated>2008-05-12T04:00:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">KNotes sur un triangle</title>
		<link href="http://blog.guillermoamaral.com/2007/09/04/knotes-sur-un-triangle/"/>
		<id>http://blog.guillermoamaral.com/2007/09/04/knotes-sur-un-triangle/</id>
		<updated>2007-09-05T04:31:06+00:00</updated>
		<content type="html">&lt;p&gt;KNotes Update&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://blog.guillermoamaral.com/wp-content/uploads/2007/09/snapshot.png&quot; title=&quot;KNotes 4 9 2007&quot;&gt;&lt;img src=&quot;http://blog.guillermoamaral.com/wp-content/uploads/2007/09/snapshot.thumbnail.png&quot; alt=&quot;KNotes 4 9 2007&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Finally had time to clean and commit some base fixes for KNotes,&lt;br /&gt;
now to merge all my other fixes, they are starting to gather dust. (You may thank my job for that)&lt;/p&gt;
&lt;p&gt;&amp;#8220;One of the symptoms of an approaching nervous breakdown is the belief that one&amp;#8217;s work is terribly important.&amp;#8221;&lt;br /&gt;
    ~Bertrand Russell&lt;/p&gt;</content>
		<author>
			<name>Animus Wisdom</name>
			<uri>http://blog.guillermoamaral.com</uri>
		</author>
		<source>
			<title type="html">Animus Wisdom</title>
			<subtitle type="html">Blessed is he who expects nothing, for he shall never be disappointed.</subtitle>
			<link rel="self" href="http://blog.guillermoamaral.com/feed/"/>
			<id>http://blog.guillermoamaral.com/feed/</id>
			<updated>2008-05-12T04:00:03+00:00</updated>
		</source>
	</entry>

	<entry xml:lang="en">
		<title type="html">Back in Hack</title>
		<link href="http://blog.guillermoamaral.com/2007/08/27/back-in-hack/"/>
		<id>http://blog.guillermoamaral.com/2007/08/27/back-in-hack/</id>
		<updated>2007-08-27T07:05:59+00:00</updated>
		<content type="html">&lt;p&gt;A few weeks have past and I have had no time for code hacking, I have finished most of my backed up work and now am left with some extra time on my hands.&lt;/p&gt;
&lt;p&gt;I need to assign some quality time with &lt;b&gt;Kopete&lt;/b&gt; and &lt;b&gt;KNotes&lt;/b&gt;, this week will help me get back full speed.&lt;/p&gt;
&lt;p&gt;More on this during the week.&lt;/p&gt;</content>
		<author>
			<name>Animus Wisdom</name>
			<uri>http://blog.guillermoamaral.com</uri>
		</author>
		<source>
			<title type="html">Animus Wisdom</title>
			<subtitle type="html">Blessed is he who expects nothing, for he shall never be disappointed.</subtitle>
			<link rel="self" href="http://blog.guillermoamaral.com/feed/"/>
			<id>http://blog.guillermoamaral.com/feed/</id>
			<updated>2008-05-12T04:00:03+00:00</updated>
		</source>
	</entry>

</feed>
