<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>lo tomàs avança &#187; Informàtica</title>
	<atom:link href="http://lotomas.net/category/informatica/feed/" rel="self" type="application/rss+xml" />
	<link>http://lotomas.net</link>
	<description>Esforç al 200%</description>
	<lastBuildDate>Tue, 09 Mar 2010 19:33:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<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>
		<slash:comments>1</slash:comments>
		</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(&#8220;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(&#8220;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(&#8220;/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(&#8220;UseAutosave&#8221;) = 1<br />
.cOption(&#8220;UseAutosaveDirectory&#8221;) = 1<br />
.cOption(&#8220;AutosaveDirectory&#8221;) = Directori<br />
.cOption(&#8220;AutosaveFilename&#8221;) = Fitxer<br />
.cOption(&#8220;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>
		<slash:comments>3</slash:comments>
		</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(&#8220;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(&#8220;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>
		<slash:comments>0</slash:comments>
		</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>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Com no administrar geeks al treball</title>
		<link>http://lotomas.net/2006/05/29/com-no-administrar-geeks-al-treball/</link>
		<comments>http://lotomas.net/2006/05/29/com-no-administrar-geeks-al-treball/#comments</comments>
		<pubDate>Mon, 29 May 2006 08:27:23 +0000</pubDate>
		<dc:creator>Tomàs Reverter</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Informàtica]]></category>
		<category><![CDATA[MundoReal]]></category>
		<category><![CDATA[Treball]]></category>

		<guid isPermaLink="false">http://lotomas.net/2006/05/29/com-no-administrar-geeks-al-treball/</guid>
		<description><![CDATA[La primera vegada que vaig llegir el Cómo no administrar geeks en el trabajo&#160;em vaig quedar pensant quanta raó que tenia:

Cómo no tratar a los geeks en el trabajo
1. Subestimar el entrenamiento.2. No dar reconocimiento.3. Demasiado trabajo, más alla de las horas de oficina (creer que los geeks no tienen vida).4. Hablar como administrador, los [...]]]></description>
			<content:encoded><![CDATA[<p>La primera vegada que vaig llegir el <a href="http://www.alt1040.com/archivo/2006/05/24/como-no-se-debe-de-manejar-a-un-geek-en-el-trabajo/">Cómo no administrar geeks en el trabajo</a>&nbsp;em vaig quedar pensant quanta raó que tenia:</p>
<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
<p><em>Cómo no tratar a los </em><a href="http://www.microsiervos.com/archivo/internet/geek-y-nerd.html"><em>geeks</em></a><em> en el trabajo</em></p>
<p><em>1. Subestimar el entrenamiento.<br />2. No dar reconocimiento.<br />3. Demasiado trabajo, más alla de las horas de oficina (creer que los geeks no tienen vida).<br />4. Hablar como administrador, los geeks no se la creen.<br />5. Intentar ser más inteligente que los geeks.<br />6. Actuar inconsistentemente<br />7. Ignorar a los geeks<br />8. Tomar decisiones sin consultar a los geeks<br />9. Insistir en no darles las herramientas de trabajo necesarias (sí, esa computadora carísima nos sirve y mucho).<br />10. Olvidar que los geeks somos creativos.</em></p>
</blockquote>
<p>Però la que més ajuda&nbsp;a la creació de bon ambient al lloc de treball és la que han afegit a <a href="http://www.microsiervos.com/archivo/ordenadores/no-tratar-a-los-geeks.html">microsiervos</a>: </p>
<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
<p><strong>1. ¡Cámbiales de ordenador a menudo!</strong> Eso les mantendrá entretenidos, felices, se sentirán apreciados y además mejorará su productividad</p>
</blockquote>
<p>I es que com&nbsp;a mínim jo faria innumerables hores extres a canvi de tenir un parell de <a href="http://www.apple.com/es/displays/">Work Cinema de 23&rdquo;</a> (pq Home Cinema no serien xD) conectat a un futur Mac Pro..</p>
]]></content:encoded>
			<wfw:commentRss>http://lotomas.net/2006/05/29/com-no-administrar-geeks-al-treball/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Concurs d&#8217;OpenOffice.org Calc</title>
		<link>http://lotomas.net/2006/05/08/concurs-dopenofficeorg-calc/</link>
		<comments>http://lotomas.net/2006/05/08/concurs-dopenofficeorg-calc/#comments</comments>
		<pubDate>Mon, 08 May 2006 20:44:21 +0000</pubDate>
		<dc:creator>Tomàs Reverter</dc:creator>
				<category><![CDATA[Informàtica]]></category>
		<category><![CDATA[Software Lliure]]></category>

		<guid isPermaLink="false">http://lotomas.net/2006/05/08/concurs-dopenofficeorg-calc/</guid>
		<description><![CDATA[Interessant participar al I Concurs Internacional d&#8217;OpenOffice.org Calc, que ja fa temps que tinc ganes de començar a tocar l&#8217;OpenOffice.org Calc.
]]></description>
			<content:encoded><![CDATA[<p>Interessant participar al <a href="http://barrapunto.com/article.pl?sid=06/05/08/126224" target="_blank">I Concurs Internacional d&rsquo;OpenOffice.org Calc</a>, que ja fa temps que tinc ganes de començar a tocar l&rsquo;OpenOffice.org Calc.</p>
]]></content:encoded>
			<wfw:commentRss>http://lotomas.net/2006/05/08/concurs-dopenofficeorg-calc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recull de CheatSheets</title>
		<link>http://lotomas.net/2006/05/04/recull-de-cheatsheets/</link>
		<comments>http://lotomas.net/2006/05/04/recull-de-cheatsheets/#comments</comments>
		<pubDate>Thu, 04 May 2006 10:37:35 +0000</pubDate>
		<dc:creator>Tomàs Reverter</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Informàtica]]></category>

		<guid isPermaLink="false">http://lotomas.net/2006/05/04/recull-de-cheatsheets/</guid>
		<description><![CDATA[Dios, m&#8217;encanten aquest reculls de cheatsheets, va de meravella tenir-los ben a mà.
]]></description>
			<content:encoded><![CDATA[<p>Dios, m&rsquo;encanten aquest <a href="http://www.petefreitag.com/item/455.cfm" target="_blank">reculls de cheatsheets</a>, va de meravella tenir-los ben a mà.</p>
]]></content:encoded>
			<wfw:commentRss>http://lotomas.net/2006/05/04/recull-de-cheatsheets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Com rescatar un disc dur del més enllà</title>
		<link>http://lotomas.net/2006/04/28/com-rescatar-un-disc-dur-del-mes-enlla/</link>
		<comments>http://lotomas.net/2006/04/28/com-rescatar-un-disc-dur-del-mes-enlla/#comments</comments>
		<pubDate>Fri, 28 Apr 2006 08:30:05 +0000</pubDate>
		<dc:creator>Tomàs Reverter</dc:creator>
				<category><![CDATA[Informàtica]]></category>

		<guid isPermaLink="false">http://lotomas.net/2006/04/28/com-rescatar-un-disc-dur-del-mes-enlla/</guid>
		<description><![CDATA[200 formes de reviure un disc dur&#160;(via Alt1040)
]]></description>
			<content:encoded><![CDATA[<p><a href="http://techrepublic.com.com/5100-6255-5029761-1.html" target="_blank">200 formes de reviure un disc dur</a>&nbsp;(via <a href="http://www.alt1040.com/archivo/2006/04/27/200-maneras-de-revivir-un-disco-duro/" target="_blank">Alt1040</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://lotomas.net/2006/04/28/com-rescatar-un-disc-dur-del-mes-enlla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Més sobre QuickSilver</title>
		<link>http://lotomas.net/2006/04/28/mes-sobre-quicksilver/</link>
		<comments>http://lotomas.net/2006/04/28/mes-sobre-quicksilver/#comments</comments>
		<pubDate>Fri, 28 Apr 2006 08:25:02 +0000</pubDate>
		<dc:creator>Tomàs Reverter</dc:creator>
				<category><![CDATA[Informàtica]]></category>
		<category><![CDATA[MacOSX]]></category>

		<guid isPermaLink="false">http://lotomas.net/2006/04/28/mes-sobre-quicksilver/</guid>
		<description><![CDATA[Llegint el blog d&#8217;Alt1040&#160;he trobat&#160;que els nois de theappleblog han gravat un screencast sobre QuickSilver.
]]></description>
			<content:encoded><![CDATA[<p>Llegint el blog d&rsquo;<a href="http://www.alt1040.com/archivo/2006/04/27/una-mac-sin-quicksilver-no-es-una-mac/" target="_blank">Alt1040</a>&nbsp;he trobat&nbsp;que els nois de <a href="http://www.theappleblog.com/" target="_blank">theappleblog</a> han gravat un <a href="http://www.theappleblog.com/2006/04/27/quicksilver-screencast-the-setup/" target="_blank">screencast sobre QuickSilver</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://lotomas.net/2006/04/28/mes-sobre-quicksilver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Subversion Screencast</title>
		<link>http://lotomas.net/2006/04/27/subversion-screencast/</link>
		<comments>http://lotomas.net/2006/04/27/subversion-screencast/#comments</comments>
		<pubDate>Thu, 27 Apr 2006 08:57:12 +0000</pubDate>
		<dc:creator>Tomàs Reverter</dc:creator>
				<category><![CDATA[Informàtica]]></category>
		<category><![CDATA[MacOSX]]></category>
		<category><![CDATA[Software Lliure]]></category>

		<guid isPermaLink="false">http://lotomas.net/2006/04/27/subversion-screencast/</guid>
		<description><![CDATA[A ClickableBliss han publicat un screencast de 18 minuts anomenat &#8220;Introduction to Subversion Screencast&#8221; on realitzen una introducció al control de versions, explicant els principals conceptes i exposant exemples d&#8217;ús des de l&#8217;escriptori OS X
]]></description>
			<content:encoded><![CDATA[<p>A <a href="http://clickablebliss.com/" target="_blank">ClickableBliss</a> han publicat un screencast de 18 minuts anomenat &ldquo;<a href="http://clickablebliss.com/blog/2006/04/26/introduction_to_subversion_screencast/" target="_blank">Introduction to Subversion Screencast</a>&rdquo; on realitzen una introducció al control de versions, explicant els principals conceptes i exposant exemples d&rsquo;ús des de l&rsquo;escriptori OS X</p>
]]></content:encoded>
			<wfw:commentRss>http://lotomas.net/2006/04/27/subversion-screencast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
