<?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"
	>

<channel>
	<title>lo tomàs avança</title>
	<atom:link href="http://lotomas.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://lotomas.net</link>
	<description>Esforç al 200%</description>
	<pubDate>Sat, 08 Nov 2008 14:38:14 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>Bug en la librería PlotKit de TurboGears (bueno, vale, es una personalización :P)</title>
		<link>http://lotomas.net/2008/11/08/bug-en-la-libreria-plotkit-de-turbogears-bueno-vale-es-una-personalizacion-p/</link>
		<comments>http://lotomas.net/2008/11/08/bug-en-la-libreria-plotkit-de-turbogears-bueno-vale-es-una-personalizacion-p/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 13:24:24 +0000</pubDate>
		<dc:creator>Tomàs Reverter</dc:creator>
		
		<category><![CDATA[Programació]]></category>

		<category><![CDATA[Python]]></category>

		<category><![CDATA[python turbogears plotkit]]></category>

		<guid isPermaLink="false">http://lotomas.net/?p=278</guid>
		<description><![CDATA[(standard disclaimer: si, hace más de un año que no escribo, y vuelvo en castellano!)
Hoy he tenido una pelea con la librerí­a de PlotKit para TurboGears, ya que ignoraba los comandos para personalizar el color y el grueso de las líneas de los gráficos, tanto los gráficos de barras como los de pastel.
Gracias al software [...]]]></description>
			<content:encoded><![CDATA[<p>(standard disclaimer: si, hace más de un año que no escribo, y vuelvo en castellano!)</p>
<p>Hoy he tenido una pelea con la librerí­a de <a title="PlotKit" href="http://www.liquidx.net/plotkit/">PlotKit</a> para <a title="TurboGears" href="http://turbogears.org/">TurboGears</a>, ya que ignoraba los comandos para personalizar el color y el grueso de las líneas de los gráficos, tanto los gráficos de barras como los de pastel.</p>
<p>Gracias al software libre (¡¡bien bien bien!!) he destripado la libreria para ver exactamente porqué no me hacía caso.</p>
<p>La explicación es sencilla. La forma más fácil de dibujar gráficos des de TurboGears es con el wrapper <a title="EasyPlot" href="http://media.liquidx.net/js/plotkit-doc/PlotKit.EasyPlot.html">EasyPlot</a>, que por defecto utiliza gráficos <a title="PlotKit SweetCanvasRenderer" href="http://media.liquidx.net/js/plotkit-doc/PlotKit.SweetCanvas.html">SweetCanvasRenderer</a> (aunque en la web diga que utilizan el CanvasRenderer(¿?¿?)). El problema es que este tipo de gráficos, para que queden muy muy monos, se les fija el color y el grueso de la línea (tal como explican en el enlace anterior).</p>
<p>Qué hacer? Se tienen que modificar el código fuente para indicarle que en vez de fijar el color de línea a blanco, lo lea de las opciones de PlotKit.</p>
<p>Para solucionarlo se tiene que modificar el código fuente del .egg descargado por TurboGears:</p>
<ol>
<li>Ir a la carpeta /Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/ y descomprimir el fichero PlotKit-0.9.1w3-py2.5.egg.zip. Al descomprimirlo conseguimos que TurboGears lea las dependencias desde la carpeta en lugar del zip. (La ruta es en un MacOSX Leopard).</li>
<li>Dentro de la carpeta tendremos que editar el fichero PlotKit-0.9.1w3-py2.5.egg/plotkit/static/javascript/SweetCanvas.js, para corregir el código, aunque realmente para que funcione se tiene que modificar el fichero PlotKit-0.9.1w3-py2.5.egg/plotkit/static/javascript/Plotkit_Packed.js. Este fichero contiene todos los otros de forma optimizada para su ejecución, es el que realmente se utiliza para la generación de el gráfico.</li>
<li>En la línea 1814 y 1815 del fichero Plotkit_Packed.js debíamos tener:
<pre>_342.lineWidth=2;
_342.strokeStyle=Color.whiteColor().toRGBString();</pre>
<p>Que deberemos cambiar por estas:</p>
<pre>if(this.options.strokeWidth){
 _342.lineWidth=this.options.strokeWidth;
 }else{
 _342.lineWidth=2;
 }
 if(this.options.strokeColor){
 _342.strokeStyle=this.options.strokeColor.toRGBString();
 }else{
 _342.strokeStyle=Color.whiteColor().toRGBString();
 }</pre>
</li>
</ol>
<p>Ahora, en vez de fijar los valores internamente, comprobará si han sido configurados por el desarrollador, y si así es, utilizará esos valores para dibujar nuestro anhelado gráfico.</p>
]]></content:encoded>
			<wfw:commentRss>http://lotomas.net/2008/11/08/bug-en-la-libreria-plotkit-de-turbogears-bueno-vale-es-una-personalizacion-p/feed/</wfw:commentRss>
		</item>
		<item>
		<title>El grep -r de Solaris</title>
		<link>http://lotomas.net/2007/01/30/el-grep-r-de-solaris/</link>
		<comments>http://lotomas.net/2007/01/30/el-grep-r-de-solaris/#comments</comments>
		<pubDate>Tue, 30 Jan 2007 12:12:29 +0000</pubDate>
		<dc:creator>Tomàs Reverter</dc:creator>
		
		<category><![CDATA[Informàtica]]></category>

		<guid isPermaLink="false">http://lotomas.net/2007/01/30/el-grep-r-de-solaris/</guid>
		<description><![CDATA[find ./ -type f -a -exec grep  text_a_buscar \{\} \; -a -print 
]]></description>
			<content:encoded><![CDATA[<p><code>find ./ -type f -a -exec grep  text_a_buscar \{\} \; -a -print </code></p>
]]></content:encoded>
			<wfw:commentRss>http://lotomas.net/2007/01/30/el-grep-r-de-solaris/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Automatitzacio d’impressio VBA (versió PDFCreator)</title>
		<link>http://lotomas.net/2006/11/23/automatitzacio-d%e2%80%99impressio-vba-versio-acrobat-pdfcreator/</link>
		<comments>http://lotomas.net/2006/11/23/automatitzacio-d%e2%80%99impressio-vba-versio-acrobat-pdfcreator/#comments</comments>
		<pubDate>Fri, 24 Nov 2006 01:39:48 +0000</pubDate>
		<dc:creator>Tomàs Reverter</dc:creator>
		
		<category><![CDATA[Informàtica]]></category>

		<guid isPermaLink="false">http://lotomas.net/2006/11/24/automatitzacio-d%e2%80%99impressio-vba-versio-acrobat-pdfcreator/</guid>
		<description><![CDATA[Aquesta rutina d’VBA serveix per aplicar un format concret i transformar a PDF tots els fitxers .xls que pengin de les subcarpetes d’un directori.

Option Explicit
Sub ArreglarMargeITransformarAPDF()
Dim fs, f, f1, sf
Dim folderspec
Dim MiNombre As String
folderspec = &#8220;C:\Directori\&#8221;
Set fs = CreateObject(&#8221;Scripting.FileSystemObject&#8221;)
Set f = fs.GetFolder(folderspec)
Set sf = f.SubFolders
For Each f1 In sf
Debug.Print f1.Name
MiNombre = Dir(folderspec &#038; f1.Name &#038; [...]]]></description>
			<content:encoded><![CDATA[<p>Aquesta rutina d’VBA serveix per aplicar un format concret i transformar a PDF tots els fitxers .xls que pengin de les subcarpetes d’un directori.</p>
<blockquote dir="ltr" style="margin-right: 0px" /><p><span id="more-261"></span></p>
<p>Option Explicit</p>
<p>Sub ArreglarMargeITransformarAPDF()</p>
<p>Dim fs, f, f1, sf<br />
Dim folderspec<br />
Dim MiNombre As String</p>
<p>folderspec = &#8220;C:\Directori\&#8221;</p>
<p>Set fs = CreateObject(&#8221;Scripting.FileSystemObject&#8221;)<br />
Set f = fs.GetFolder(folderspec)<br />
Set sf = f.SubFolders<br />
For Each f1 In sf<br />
Debug.Print f1.Name<br />
MiNombre = Dir(folderspec &#038; f1.Name &#038; &#8220;\&#8221;)<br />
Do While MiNombre &lt;&gt; &#8220;&#8221;<br />
If MiNombre Like &#8220;*.xls&#8221; Then<br />
Workbooks.Open folderspec &#038; f1.Name &#038; &#8220;\&#8221; &#038; MiNombre<br />
Call arreglarFormat<br />
Call imprimirPDF(folderspec &#038; f1.Name &#038; &#8220;\&#8221;, Replace(MiNombre, &#8220;.xls&#8221;, &#8220;.pdf&#8221;))<br />
ActiveWorkbook.Close savechanges:=True<br />
End If<br />
MiNombre = Dir<br />
Loop<br />
Debug.Print &#8220;Imprimit &#8221; &#038; f1.Name<br />
Next</p>
<p>End Sub</p>
<p>Public Sub arreglarFormat()</p>
<p>With ActiveSheet.PageSetup<br />
.LeftMargin = Application.InchesToPoints(0.15)<br />
.RightMargin = Application.InchesToPoints(0.15)<br />
.TopMargin = Application.InchesToPoints(0.15)<br />
.BottomMargin = Application.InchesToPoints(0.15)<br />
.Zoom = False<br />
.FitToPagesWide = 1<br />
.FitToPagesTall = 1<br />
.PrintErrors = 0<br />
.PaperSize = xlPaperA3<br />
End With</p>
<p>End Sub</p>
<p>Private Sub imprimirPDF(Directori, Fitxer)</p>
<p>Dim PSFileName As String<br />
Dim PDFFileName As String<br />
PSFileName = &#8220;c:\tempPOA.ps&#8221;<br />
PDFFileName = Directori &#038; Fitxer</p>
<p>&#8216; Imprimir la fulla<br />
Dim MySheet As Worksheet<br />
Set MySheet = ActiveSheet</p>
<p>&#8216; Convertir a PDF<br />
Dim pdfjob As PDFCreator.clsPDFCreator<br />
Set pdfjob = New PDFCreator.clsPDFCreator</p>
<p>With pdfjob<br />
If .cStart(&#8221;/NoProcessingAtStartup&#8221;) = False Then<br />
MsgBox &#8220;Can&#8217;t initialize PDFCreator.&#8221;, vbCritical + _<br />
vbOKOnly, &#8220;PrtPDFCreator&#8221;<br />
Exit Sub<br />
End If</p>
<p>&#8216;Set details on where to save file to, and flag it automatic<br />
.cOption(&#8221;UseAutosave&#8221;) = 1<br />
.cOption(&#8221;UseAutosaveDirectory&#8221;) = 1<br />
.cOption(&#8221;AutosaveDirectory&#8221;) = Directori<br />
.cOption(&#8221;AutosaveFilename&#8221;) = Fitxer<br />
.cOption(&#8221;AutosaveFormat&#8221;) = 0 &#8216; 0 = PDF</p>
<p>&#8216;Get ready for the print job<br />
.cClearCache<br />
End With</p>
<p>MySheet.PrintOut copies:=1, ActivePrinter:=&#8221;PDFCreator&#8221;</p>
<p>&#8216;Wait until the print job has entered the print queue<br />
Do Until pdfjob.cCountOfPrintjobs = 1<br />
DoEvents<br />
Loop<br />
pdfjob.cPrinterStop = False</p>
<p>&#8216;Wait until the PDF file shows up then release the objects<br />
Do Until Dir(Directori &#038; Fitxer) &lt;&gt; &#8220;&#8221;<br />
DoEvents<br />
Loop</p>
<p>pdfjob.cClose<br />
Set pdfjob = Nothing<br />
End Sub</p>
]]></content:encoded>
			<wfw:commentRss>http://lotomas.net/2006/11/23/automatitzacio-d%e2%80%99impressio-vba-versio-acrobat-pdfcreator/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Automatitzacio d&#8217;impressio VBA (versió Acrobat Distiller)</title>
		<link>http://lotomas.net/2006/11/23/automatitzacio-dimpressio-vba-versio-acrobat-distiller/</link>
		<comments>http://lotomas.net/2006/11/23/automatitzacio-dimpressio-vba-versio-acrobat-distiller/#comments</comments>
		<pubDate>Fri, 24 Nov 2006 00:38:27 +0000</pubDate>
		<dc:creator>Tomàs Reverter</dc:creator>
		
		<category><![CDATA[Informàtica]]></category>

		<guid isPermaLink="false">http://lotomas.net/2006/11/24/automatitzacio-dimpressio-vba-versio-acrobat-distiller/</guid>
		<description><![CDATA[Aquesta rutina d’VBA serveix per aplicar un format concret i transformar a PDF tots els fitxers .xls que pengin de les subcarpetes d’un directori

Option Explicit
Sub ArreglarMargeITransformarAPDF()
Dim fs, f, f1, sf
Dim folderspec
Dim MiNombre As String
folderspec = &#8220;C:\Directori&#8221;
Set fs = CreateObject(&#8221;Scripting.FileSystemObject&#8221;)
Set f = fs.GetFolder(folderspec)
Set sf = f.SubFolders
For Each f1 In sf
Debug.Print f1.Name
MiNombre = Dir(folderspec &#038; f1.Name &#038; [...]]]></description>
			<content:encoded><![CDATA[<p>Aquesta rutina d’VBA serveix per aplicar un format concret i transformar a PDF tots els fitxers .xls que pengin de les subcarpetes d’un directori</p>
<p><span id="more-260"></span></p>
<blockquote style="margin-right: 0px" dir="ltr"><p>Option Explicit</p>
<p>Sub ArreglarMargeITransformarAPDF()</p>
<p>Dim fs, f, f1, sf<br />
Dim folderspec<br />
Dim MiNombre As String</p>
<p>folderspec = &#8220;C:\Directori&#8221;</p>
<p>Set fs = CreateObject(&#8221;Scripting.FileSystemObject&#8221;)<br />
Set f = fs.GetFolder(folderspec)<br />
Set sf = f.SubFolders<br />
For Each f1 In sf<br />
Debug.Print f1.Name<br />
MiNombre = Dir(folderspec &#038; f1.Name &#038; &#8220;\&#8221;)<br />
Do While MiNombre &lt;&gt; &#8220;&#8221;<br />
If MiNombre Like &#8220;*.xls&#8221; Then<br />
Workbooks.Open folderspec &#038; f1.Name &#038; &#8220;\&#8221; &#038; MiNombre<br />
Call arreglarFormat<br />
Call imprimirPDF(folderspec &#038; f1.Name &#038; &#8220;\&#8221;, Replace(MiNombre, &#8220;.xls&#8221;, &#8220;.pdf&#8221;))<br />
ActiveWorkbook.Close savechanges:=True<br />
End If<br />
MiNombre = Dir<br />
Loop<br />
Debug.Print &#8220;Imprimit &#8221; &#038; f1.Name<br />
Next</p>
<p>End Sub</p>
<p>Public Sub arreglarFormat()</p>
<p>With ActiveSheet.PageSetup<br />
.LeftMargin = Application.InchesToPoints(0.15)<br />
.RightMargin = Application.InchesToPoints(0.15)<br />
.TopMargin = Application.InchesToPoints(0.15)<br />
.BottomMargin = Application.InchesToPoints(0.15)<br />
.Zoom = False<br />
.FitToPagesWide = 1<br />
.FitToPagesTall = 1<br />
.PrintErrors = 0<br />
.PaperSize = xlPaperA3<br />
End With</p>
<p>End Sub</p>
<p>Private Sub imprimirPDF(Directori, Fitxer)</p>
<p>Dim PSFileName As String<br />
Dim PDFFileName As String<br />
PSFileName = &#8220;c:\tempPOA.ps&#8221;<br />
PDFFileName = Directori &#038; Fitxer</p>
<p>&#8216; Imprimir la fulla<br />
Dim MySheet As Worksheet<br />
Set MySheet = ActiveSheet<br />
MySheet.Activate<br />
MySheet.PrintOut copies:=1, preview:=False, ActivePrinter:=&#8221;PDFCreator&#8221;, _<br />
printtofile:=True, collate:=True, prtofilename:=PSFileName</p>
<p>&#8216; Convertir a PDF<br />
Dim myPDF As PdfDistiller<br />
Set myPDF = New PdfDistiller<br />
myPDF.FileToPDF PSFileName, PDFFileName, &#8220;&#8221;</p>
<p>&#8216;Esborrar el fitxer temporal ps i el de log<br />
Kill PSFileName<br />
Kill Directori &#038; Replace(Fitxer, &#8220;.pdf&#8221;, &#8220;.log&#8221;)<br />
End Sub</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://lotomas.net/2006/11/23/automatitzacio-dimpressio-vba-versio-acrobat-distiller/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Nou habitant de l&#8217;escriptori de la feina</title>
		<link>http://lotomas.net/2006/11/20/nou-habitant-de-lescriptori-de-la-feina/</link>
		<comments>http://lotomas.net/2006/11/20/nou-habitant-de-lescriptori-de-la-feina/#comments</comments>
		<pubDate>Mon, 20 Nov 2006 09:36:34 +0000</pubDate>
		<dc:creator>Tomàs Reverter</dc:creator>
		
		<category><![CDATA[Treball]]></category>

		<guid isPermaLink="false">http://lotomas.net/2006/11/20/nou-habitant-de-lescriptori-de-la-feina/</guid>
		<description><![CDATA[
Moltes gràcies a tots els companys d&#8217;informàtica  Però encara no li he posat nom… mmm…
]]></description>
			<content:encoded><![CDATA[<p align="center"><img width="360" height="480" border="0" align="middle" alt="Plantetaaa" src="http://lotomas.net/files/DSC01107_small.jpg" /></p>
<p align="center">Moltes gràcies a tots els companys d&#8217;informàtica <img src='http://lotomas.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> Però encara no li he posat nom… mmm…</p>
]]></content:encoded>
			<wfw:commentRss>http://lotomas.net/2006/11/20/nou-habitant-de-lescriptori-de-la-feina/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Recurs informàtico-literari: PDF CHM eBooks</title>
		<link>http://lotomas.net/2006/10/31/recurs-informatico-literari-pdf-chm-ebooks/</link>
		<comments>http://lotomas.net/2006/10/31/recurs-informatico-literari-pdf-chm-ebooks/#comments</comments>
		<pubDate>Tue, 31 Oct 2006 09:37:11 +0000</pubDate>
		<dc:creator>Tomàs Reverter</dc:creator>
		
		<category><![CDATA[Informàtica]]></category>

		<guid isPermaLink="false">http://lotomas.net/2006/10/31/recurs-informatico-literari-pdf-chm-ebooks/</guid>
		<description><![CDATA[Buscant un llibre m&#8217;he trobat amb aquesta bona web d&#8217;on es pot descarregar eBooks en format pdf o chm. A més, la presentació és gairebé com Amazon 
PDF CHM eBooks
Val la pena fer-hi un cop d&#8217;ull, de debó.
]]></description>
			<content:encoded><![CDATA[<p>Buscant un llibre m&rsquo;he trobat amb aquesta bona web d&rsquo;on es pot descarregar eBooks en format pdf o chm. A més, la presentació és gairebé com Amazon <img src="http://lotomas.net/files/smile1.gif" /></p>
<p><a href="http://www.pdfchm.com/">PDF CHM eBooks</a></p>
<p>Val la pena fer-hi un cop d&rsquo;ull, de debó.</p>
]]></content:encoded>
			<wfw:commentRss>http://lotomas.net/2006/10/31/recurs-informatico-literari-pdf-chm-ebooks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Jocs de PlayStation 2 amb GunCon2</title>
		<link>http://lotomas.net/2006/10/22/jocs-de-playstation-2-amb-guncon2/</link>
		<comments>http://lotomas.net/2006/10/22/jocs-de-playstation-2-amb-guncon2/#comments</comments>
		<pubDate>Sun, 22 Oct 2006 11:36:03 +0000</pubDate>
		<dc:creator>Tomàs Reverter</dc:creator>
		
		<category><![CDATA[Compres]]></category>

		<category><![CDATA[PlayStation2]]></category>

		<guid isPermaLink="false">http://lotomas.net/2006/10/22/jocs-de-playstation-2-amb-guncon2/</guid>
		<description><![CDATA[Aquesta setmana m&#8217;ha arribat (via Hong Kong) una pistola GunCon2 de Namco per la PS2. Ha estat una inversió a llarg termini, a veure si aconsegueix que deixi de jugar la Time Crisis 3 de la sala de jocs de l&#8217;Eroski xD
Amb aquesta pistola es pot jugar als jocs que compleixen el sistema de joc [...]]]></description>
			<content:encoded><![CDATA[<p>Aquesta setmana m&#8217;ha arribat (via Hong Kong) una pistola GunCon2 de Namco per la PS2. Ha estat una inversió a llarg termini, a veure si aconsegueix que deixi de jugar la Time Crisis 3 de la sala de jocs de l&#8217;Eroski xD</p>
<p>Amb aquesta pistola es pot jugar als jocs que compleixen el sistema de joc GunCon2, i buscant una mica per Internet he confeccionat la següent llista:</p>
<ul>
<li>Time Crisis I, II i III</li>
<li>Crisis Zone, la continuació de la saga Time Crisis</li>
<li>Ninja Assault</li>
<li>Vampire Night</li>
<li>End Game</li>
<li>Starsky &#038; Hutch</li>
<li>Dino Stalker</li>
<li>Vampire Hunter</li>
<li>VIRTUA COP Re-Birth (J)</li>
<li>VIRTUA COP Elite Edition (E)</li>
<li>Gunvari (Point Blank) 1-2-3 + Time Crisis Compilation</li>
<li>Resident Evil: Dead Aim</li>
</ul>
<p>Finalment dintre d&#8217;<a href="http://www.neogaf.com/forum/showthread.php?p=1261061#post1261061">aquesta llista</a> se&#8217;n poden trobar alguns mes en format NTSC.</p>
]]></content:encoded>
			<wfw:commentRss>http://lotomas.net/2006/10/22/jocs-de-playstation-2-amb-guncon2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bug d&#8217;Ubuntu per alguns portàtils Dell</title>
		<link>http://lotomas.net/2006/10/09/bug-dubuntu-per-alguns-portatils-dell/</link>
		<comments>http://lotomas.net/2006/10/09/bug-dubuntu-per-alguns-portatils-dell/#comments</comments>
		<pubDate>Mon, 09 Oct 2006 19:14:22 +0000</pubDate>
		<dc:creator>Tomàs Reverter</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://lotomas.net/2006/10/09/bug-dubuntu-per-alguns-portatils-dell/</guid>
		<description><![CDATA[Fa bastant de temps que l&#8217;Ubuntu em feia un &#8220;tic&#8221; extrany. Mentre durava aquest tik de mig segon l&#8217;ordinador quedava completament aturat, amb la cpu al 100%. No molestava molt però al final es feia insofrible.

Avui he trobat la solució, modificar el mòdul speedstep tal i com indiquen als fòrums d&#8217;Ubuntu.
]]></description>
			<content:encoded><![CDATA[<p>Fa bastant de temps que l&#8217;Ubuntu em feia un &#8220;tic&#8221; extrany. Mentre durava aquest tik de mig segon l&#8217;ordinador quedava completament aturat, amb la cpu al 100%. No molestava molt però al final es feia insofrible.</p>
<p>
Avui he trobat la solució, modificar el mòdul speedstep tal i com indiquen als <a href="http://ubuntuforums.org/archive/index.php/t-75598.html">fòrums d&#8217;Ubuntu</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://lotomas.net/2006/10/09/bug-dubuntu-per-alguns-portatils-dell/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Canviar el disc dur al MacBook Pro</title>
		<link>http://lotomas.net/2006/09/21/canviar-el-disc-dur-al-macbook-pro/</link>
		<comments>http://lotomas.net/2006/09/21/canviar-el-disc-dur-al-macbook-pro/#comments</comments>
		<pubDate>Thu, 21 Sep 2006 12:18:02 +0000</pubDate>
		<dc:creator>Tomàs Reverter</dc:creator>
		
		<category><![CDATA[Apple]]></category>

		<guid isPermaLink="false">http://lotomas.net/2006/09/21/canviar-el-disc-dur-al-macbook-pro/</guid>
		<description><![CDATA[Per un de 160 Gb
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.hardmac.com/articles/61/">Per un de 160 Gb</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lotomas.net/2006/09/21/canviar-el-disc-dur-al-macbook-pro/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Els informàtics també necessiten amor</title>
		<link>http://lotomas.net/2006/09/06/els-informatics-tambe-necessiten-amor/</link>
		<comments>http://lotomas.net/2006/09/06/els-informatics-tambe-necessiten-amor/#comments</comments>
		<pubDate>Wed, 06 Sep 2006 12:26:51 +0000</pubDate>
		<dc:creator>Tomàs Reverter</dc:creator>
		
		<category><![CDATA[Empresa]]></category>

		<category><![CDATA[MundoReal]]></category>

		<guid isPermaLink="false">http://lotomas.net/2006/09/06/els-informatics-tambe-necessiten-amor/</guid>
		<description><![CDATA[Via la Pastilla Roja, El 50% de los gerentes de informática odia a los usuarios.
A partir d&#8217;una enquesta a 2.800 treballadors del sector informàtic revela dades tant precioses com 

&#8220;Más del 10% de los subordinados están tan hasta las narices que admiten haber fastidiado a propósito a su jefe, a un colega o a un [...]]]></description>
			<content:encoded><![CDATA[<p>Via la Pastilla Roja, <a href="http://www.lapastillaroja.net/archives/001082.html" target="_blank">El 50% de los gerentes de informática odia a los usuarios</a>.</p>
<p>A partir d&rsquo;una enquesta a 2.800 treballadors del sector informàtic revela dades tant precioses com </p>
<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
<p>&ldquo;Más del 10% de los subordinados están tan hasta las narices que admiten haber fastidiado a propósito a su jefe, a un colega o a un cliente. Los peores son los jefes, el 50% admite haber obstruido a un colega recientemente, mientras que sólo el 16% de los subordinados reconoce la misma felonía.&rdquo;</p>
</blockquote>
<p>!!!!!!! La gent és molt vengativa !!!!!!!</p>
<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
<p>&ldquo;El 80% de los gerentes y el 71% de los subordinados mira los sitios web de ofertas de empleo al menos una vez por semana.&rdquo;</p>
</blockquote>
<p>Crec que una de les causes inherents d&rsquo;aquesta situació és la pressió, la incomprensió i el poc reconeixement a la que generalment està tant acostumbrada la nostra professió.</p>
<p>Tal i com fan a <a href="http://www.microsiervos.com/archivo/libros/jpod.html">jPod</a>, s&rsquo;ha de construir una màquina d&rsquo;abrassades ja! xD</p>
]]></content:encoded>
			<wfw:commentRss>http://lotomas.net/2006/09/06/els-informatics-tambe-necessiten-amor/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
