<?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>The Old Fashioned &#187; Software</title>
	<atom:link href="http://www.rodrigogalindez.com/categorias/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rodrigogalindez.com</link>
	<description>The weblog of designer &#38; author Rodrigo Galindez.</description>
	<lastBuildDate>Fri, 20 Jan 2012 15:55:16 +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>A Designer&#8217;s Journey into Sublime Text 2</title>
		<link>http://www.rodrigogalindez.com/archivos/a-web-designers-journey-into-sublime-text-2/</link>
		<comments>http://www.rodrigogalindez.com/archivos/a-web-designers-journey-into-sublime-text-2/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 18:05:16 +0000</pubDate>
		<dc:creator>Rodrigo</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.rodrigogalindez.com/?p=2722</guid>
		<description><![CDATA[I&#8217;m a huge fan of TextMate.
For years, it has been my editor of choice, the first thing I open &#8212;if it&#8217;s not already opened&#8212; when I do client work.
However, I&#8217;ve been hearing good praise for Sublime Text 2. This relatively new, cross platform text editor has definitely caught my attention. And because the alpha version [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a huge fan of TextMate.</p>
<p>For years, it has been my editor of choice, the first thing I open &mdash;if it&#8217;s not already opened&mdash; when I do client work.</p>
<p>However, I&#8217;ve been hearing good praise for <a href="http://www.sublimetext.com/2">Sublime Text 2</a>. This relatively new, cross platform text editor has definitely caught my attention. And because the <a href="http://blog.macromates.com/2011/textmate-2-0-alpha/" title="Try it out if you dare">alpha version of TextMate 2</a> never grown on me, I decided to give it a try.</p>
<p><span id="more-2722"></span><br />
To make things fair and see if I will ever switch, I decided to use real templates from a real project. After all, if this was about to replace my main text editor, it should behave like that. This is what I&#8217;ve found after a week hacking with CSS3 and HTML5:</p>
<p><strong>It&#8217;s beautiful.</strong> There&#8217;s something incredible beautiful in the lack of controls: it gives you the flexibility to make the interface what you want. Throw in your favorite color schemes and you will end up with an interface tailored to your tastes. Make sure to <a href="https://github.com/buymeasoda/soda-theme">download Soda</a>, a custom UI theme for extra gorgeous-ness. Menlo, the default font shipped with Sublime Text 2 is a refreshing twist on Monaco too.</p>
<p><strong>It&#8217;s fast.</strong> And I mean, <em>damn</em> fast. How fast a black window could be? Just compare it with TextMate when opening files, and specially, when searching in files. Those extra microseconds you win really make the difference if you spend your day hacking at code.</p>
<div class="image-post"><img src="http://www.rodrigogalindez.com/wp-content/uploads/sublime-text-2.png" alt="" title="Sublime Text 2" width="584" height="556" class="alignnone size-full wp-image-2731" /></div>
<p><strong>It&#8217;s clever.</strong> Sublime Text 2 seems like a natural extension for your brain. Need to open a file? Hit <kbd>CMD + P</kbd> and start typing the file you need. No sidebars, no file dialogs, no nothing: just think and type. Writing CSS is damn inteligent too, the autocomplete module is super fast and predicts your previous/most used properties.</p>
<p><strong>It&#8217;s functional.</strong> Sublime Text 2 has some cool window modes to help you focus, the one I&#8217;m using to write this text is called <em>Distraction Free Mode</em>, which blacks out whatever you have in your screen and presents just the text, slightly centered, in full screen mode. No dock, no menu bar, just a black canvas to work with.</p>
<p><strong>It&#8217;s advanced if you want it to.</strong> In TextMate, I don&#8217;t only use <em>Snippets</em> &mdash;triggered by the convenient <kbd>TAB</kbd>&mdash; key, but <em>Commands</em>. These make certain operations with the text you have. For example, if I have a sentence that I want to mark it as a linked list item, I can just select the words and hit <kbd>CMD + Shift + J</kbd> to wrap them between <code>LI</code> and <code>A</code> tags. This makes coding a breeze. While TextMate Bundles are natively soported &mdash;just drop them out in the <code>~/Library/Application Support/Sublime Text 2/Packages/</code> folder&mdash;, Commands are a different story. I had a hard time figuring how to work this, but for now I just fixed this by adding some custom key bindings. Go to Key Bindings &#8211; User in the Sublime Text 2 menu and paste something similar to this:</p>
<pre>
[
  { "keys": ["super+shift+j"], "command": "insert_snippet", "args": {"contents": "&lt;li&gt;&lt;a href=\"\"&gt;${0:$SELECTION}&lt;/a&gt;&lt;/li&gt;" } },
  { "keys": ["super+shift+p"], "command": "insert_snippet", "args": {"contents": "&lt;p&gt;${0:$SELECTION}&lt;/p&gt;" } }
]
</pre>
<p>In short, this makes two new key bindings: the first one triggered by <kbd>CMD + Shift + J</kbd> (wraps selection in LI and A tags), and the second, triggered by <kbd>CMD + Shift + P</kbd> (wraps selection in P tags). Easy, no?</p>
<p><strong>Extensible.</strong> Sublime Text 2 is extensible via <em>Packages</em>. Install the <a href="http://wbond.net/sublime_packages/package_control">Sublime Package Control Manager</a> for an easy way to browse and install new functionalities. I installed a simple, per-file ToDo Manager that I can always access via the Command Palette, by hitting <kbd>Cmd + Shift + P</kbd>, but literally there are tons of Packages out there.</p>
<p>So to sum up, the experiment was definitely an enjoyable experience. I had a learning curve of zero: switching from TextMate was very smooth and a matter of seconds. There are a lot of features that I didn&#8217;t review here, like the Minimap, the multiple select and so on, so do yourself a favor and try this gem out. It rocks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodrigogalindez.com/archivos/a-web-designers-journey-into-sublime-text-2/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>I Use This: Software recomendado por usuarios reales</title>
		<link>http://www.rodrigogalindez.com/archivos/i-use-this-software-recomendado-por-usuarios-reales/</link>
		<comments>http://www.rodrigogalindez.com/archivos/i-use-this-software-recomendado-por-usuarios-reales/#comments</comments>
		<pubDate>Mon, 05 Feb 2007 18:26:00 +0000</pubDate>
		<dc:creator>Rodrigo</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.16bits.net/archivos/i-use-this-software-recomendado-por-usuarios-reales/</guid>
		<description><![CDATA[I Use This: Software recomendado en base a experiencias de usuarios reales.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://osx.iusethis.com/">I Use This: Software recomendado en base a experiencias de usuarios reales.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodrigogalindez.com/archivos/i-use-this-software-recomendado-por-usuarios-reales/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nuevo ícono para Photoshop CS 3</title>
		<link>http://www.rodrigogalindez.com/archivos/nuevo-icono-para-photoshop-cs-3/</link>
		<comments>http://www.rodrigogalindez.com/archivos/nuevo-icono-para-photoshop-cs-3/#comments</comments>
		<pubDate>Fri, 22 Dec 2006 06:40:40 +0000</pubDate>
		<dc:creator>Rodrigo</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.16bits.net/archivos/nuevo-icono-para-photoshop-cs-3/</guid>
		<description><![CDATA[Este es un lindo ícono para reemplazar por el que viene por defecto en Photoshop CS 3.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://forum.insanelymac.com/index.php?showtopic=35930">Este es un lindo ícono</a> para reemplazar por el que viene por defecto en Photoshop CS 3.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodrigogalindez.com/archivos/nuevo-icono-para-photoshop-cs-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Quick Look at the New Features in Photoshop CS3, Public Beta Preview</title>
		<link>http://www.rodrigogalindez.com/archivos/a-quick-look-at-the-new-features-in-photoshop-cs3-public-beta-preview/</link>
		<comments>http://www.rodrigogalindez.com/archivos/a-quick-look-at-the-new-features-in-photoshop-cs3-public-beta-preview/#comments</comments>
		<pubDate>Fri, 15 Dec 2006 22:00:55 +0000</pubDate>
		<dc:creator>Rodrigo</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.16bits.net/archivos/a-quick-look-at-the-new-features-in-photoshop-cs3-public-beta-preview/</guid>
		<description><![CDATA[A Quick Look at the New Features in Photoshop CS3, Public Beta Preview.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.photoshopuser.com/cs3/sk_features.html">A Quick Look at the New Features in Photoshop CS3, Public Beta Preview.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodrigogalindez.com/archivos/a-quick-look-at-the-new-features-in-photoshop-cs3-public-beta-preview/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mac OS X 10.4.8 mejora el rendimiento de Photoshop?</title>
		<link>http://www.rodrigogalindez.com/archivos/mac-os-x-1048-mejora-el-rendimiento-de-photoshop/</link>
		<comments>http://www.rodrigogalindez.com/archivos/mac-os-x-1048-mejora-el-rendimiento-de-photoshop/#comments</comments>
		<pubDate>Tue, 21 Nov 2006 14:03:35 +0000</pubDate>
		<dc:creator>Rodrigo</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.16bits.net/archivos/mac-os-x-1048-mejora-el-rendimiento-de-photoshop/</guid>
		<description><![CDATA[No me había dado cuenta hasta que mi amigo Enie tiró la data (Photoshop es insufrible en Macs con Intel, por lo que, por ahora, diseño en PC todavía). Al parecer Mac OS X 10.4.8 (la última actualización) mejoró Rosetta y ahora Photoshop anda mucho mejor. ¿Para cuando CS3? Adobe, ¡ponete las pilas! Una Mac [...]]]></description>
			<content:encoded><![CDATA[<p>No me había dado cuenta hasta que mi amigo <a href="http://nunezdesign.com.ar/blog/?p=52">Enie tiró la data</a> (Photoshop es insufrible en Macs con Intel, por lo que, por ahora, diseño en PC todavía). Al parecer Mac OS X 10.4.8 (la última actualización) mejoró Rosetta y ahora Photoshop anda mucho mejor. ¿Para cuando CS3? Adobe, ¡ponete las pilas! Una Mac sin Photoshop no es Mac ;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodrigogalindez.com/archivos/mac-os-x-1048-mejora-el-rendimiento-de-photoshop/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>iTunes y conflictos con DVD drives</title>
		<link>http://www.rodrigogalindez.com/archivos/itunes-y-conflictos-con-dvd-drives/</link>
		<comments>http://www.rodrigogalindez.com/archivos/itunes-y-conflictos-con-dvd-drives/#comments</comments>
		<pubDate>Tue, 13 Jun 2006 00:29:25 +0000</pubDate>
		<dc:creator>Rodrigo</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.16bits.net/archivos/itunes-y-conflictos-con-dvd-drives/</guid>
		<description><![CDATA[Si, como yo, desinstalaste iTunes porque te parece una basura del software, y de repente Windows no reconoce tu grabadora de DVD, esto te puede ayudar. Vía (iTunes y otros programas pueden dañar el registro de Windows).
]]></description>
			<content:encoded><![CDATA[<p>Si, como yo, desinstalaste iTunes porque te parece una basura del software, y de repente Windows no reconoce tu grabadora de DVD, <a href="http://support.microsoft.com/default.aspx?scid=kb;en-us;314060">esto te puede ayudar</a>. <a href="http://www.thudfactor.com/wordpress/2005/05/25/code-41-dvd-player-problem-solved/">Vía</a> (iTunes y otros programas pueden dañar el registro de Windows).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodrigogalindez.com/archivos/itunes-y-conflictos-con-dvd-drives/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Estúpido iTunes</title>
		<link>http://www.rodrigogalindez.com/archivos/estupido-itunes/</link>
		<comments>http://www.rodrigogalindez.com/archivos/estupido-itunes/#comments</comments>
		<pubDate>Thu, 08 Jun 2006 18:51:23 +0000</pubDate>
		<dc:creator>Rodrigo</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.16bits.net/archivos/estupido-itunes/</guid>
		<description><![CDATA[Estúpido iTunes. Es horrendo, su &#8220;librería&#8221; es pésima, además de ser terriblemente lento cuando tenes muchas canciones (¡y eso que tengo 1GB de RAM!), y ahora con la última actualización ya no reconoce a mi iPod Nano. Como me dijo Juani alguna vez, Winamp sigue siendo el rey, iTunes una basura más. ¿Alguien conoce algún [...]]]></description>
			<content:encoded><![CDATA[<p>Estúpido iTunes. Es horrendo, su &#8220;librería&#8221; es pésima, además de ser terriblemente lento cuando tenes muchas canciones (¡y eso que tengo 1GB de RAM!), y ahora con la última actualización ya no reconoce a mi iPod Nano. Como me dijo <a href="http://www.flusser.com.ar">Juani</a> alguna vez, Winamp sigue siendo el rey, iTunes una basura más. ¿Alguien conoce algún soft para Windows bueno y bonito que permita copiar canciones a un iPod Nano?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodrigogalindez.com/archivos/estupido-itunes/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>Launchy, o la utilidad que debes tener a mano</title>
		<link>http://www.rodrigogalindez.com/archivos/launchy-o-la-utilidad-que-debes-tener-a-mano/</link>
		<comments>http://www.rodrigogalindez.com/archivos/launchy-o-la-utilidad-que-debes-tener-a-mano/#comments</comments>
		<pubDate>Fri, 28 Apr 2006 05:30:50 +0000</pubDate>
		<dc:creator>Rodrigo</dc:creator>
				<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.16bits.net/?p=799</guid>
		<description><![CDATA[Desde que Juani me recomendó Launchy, no puedo más que extrañarlo cada vez que tengo que trabajar en otra PC. Se trata de una pequeña utilidad (782KB) que te permite lanzar una aplicación, o un documento, escribiendo solo las primeras letras &#8212;muy al estilo de Quicksilver para Mac&#8212; sin necesidad de usar el mouse para [...]]]></description>
			<content:encoded><![CDATA[<p>Desde que <a href="http://www.flusser.com.ar">Juani</a> me recomendó <a href="http://www.launchy.net">Launchy</a>, no puedo más que extrañarlo cada vez que tengo que trabajar en otra PC. Se trata de una pequeña utilidad (782KB) que te permite lanzar una aplicación, o un documento, escribiendo solo las primeras letras &mdash;muy al estilo de Quicksilver para Mac&mdash; sin necesidad de usar el mouse para ello.</p>
<p>Una vez cargado, Launchy es llamado con las teclas <kbd>Alt</kbd> y <kbd>Barra Espaciadora</kbd> (si estás en una ventana, sería la combinación de teclas para maximizar, minimizar y cambiar el tamaño de la misma, cosa que creo que el 10% usa, así que no te preocupes) y espera las primeras letras de la aplicación que querés lanzar. En el screenshot, pueden ver a Launchy ejecutando Photoshop solo tecleando <em>photo</em>, lo que me ahorra valiosos segundos evitando la navegación típica con el mouse a Inicio &rarr; Programas &rarr; Photoshop.</p>
<p><img src="http://www.16bits.net/images/launchy.jpg" alt="Launchy en acción" class="centered" /></p>
<p>Lo mejor es que podés poner accesos directos a directorios frecuentemente utilizados (por ejemplo, <em>www</em>) o a URLs de todos los días, por ejemplo, Gmail. Launchy bien configurado es una joya que te ahorrará preciados segundos y mejorará tu productividad, te lo aseguro. Es muchísimo más cómodo teclear 2 letras para lanzar una aplicación, que mover la mano hacia el mouse y hacer la seguidilla de clicks habitual ;)</p>
<p>Ahh, y como las mejores cosas en la vida, Launchy es gratis, como el aire. ¿Qué esperás para probarlo?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodrigogalindez.com/archivos/launchy-o-la-utilidad-que-debes-tener-a-mano/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Review: WeBuilder 2006</title>
		<link>http://www.rodrigogalindez.com/archivos/review-de-webuilder-2006/</link>
		<comments>http://www.rodrigogalindez.com/archivos/review-de-webuilder-2006/#comments</comments>
		<pubDate>Sun, 19 Mar 2006 10:04:16 +0000</pubDate>
		<dc:creator>Rodrigo</dc:creator>
				<category><![CDATA[Programación]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.16bits.net/archivos/review-de-webuilder-2006/</guid>
		<description><![CDATA[Como no tengo sueño (típico) y ya la noche del Sábado se terminó, acá vá el review que les debía sobre un editor que vengo usando y que ya &#8212;les soy sincero&#8212; ha reemplazado a TopStyle como mi editor de código por default. Se trata de WeBuilder 2006, un editor de código &#8220;multiuso&#8221;, es decir, [...]]]></description>
			<content:encoded><![CDATA[<p>Como no tengo sueño (típico) y ya la noche del Sábado se terminó, acá vá el review que les debía sobre un editor que vengo usando y que ya &mdash;les soy sincero&mdash; ha reemplazado a TopStyle como mi editor de código por default. Se trata de <a href="http://www.blumentals.net/webuilder/">WeBuilder 2006</a>, un editor de código &#8220;multiuso&#8221;, es decir, sirve &mdash;y colorea&mdash; sintaxis de varios lenguajes, entre ellos los que más nos interesan a nosotros, es decir, PHP, XHTML, CSS, JavaScript, etc.</p>
<p><img src="http://www.blumentals.net/webuilder/images/tour/cssac.png" alt="WeBuilder en acción" class="centered" /></p>
<p><strong>Resúmen:</strong> Tiene autocompletar, buena integración con atajos de teclado y selecciones, colorea sintáxis de varios lenguajes, preview integrado. Un poco lento y sensación de &#8220;buggy&#8221;.</p>
<p><strong>Ventajas:</strong></p>
<ul>
<li>Autocompletado de sintáxis. Esto es fundamental, probé muchos editores que parecían buenos pero que se quedaban cortos al no tener esta función (Crimson Editor es un ejemplo). Es realmente un embole andar cerrando etiquetas en editores que no soportan autocompletado.</li>
<li>Ayuda al editar PHP. Poniendo, por ejemplo, <code>mail</code>, aparece un tooltip de lo que la funcion hace, los argumentos que recibe, etc. Además tiene una muy buena herramienta de mapeo al servidor local, lo que le permite un excelente preview integrado, tanto en Internet Explorer y Firefox.</li>
<li>Buen uso de teclado. Ctrl + K marca un enlace (Ctrl + Shit + A en Topstyle), TAB indenta lo seleccionado y ¡OHHHH!, Alt + Mouse selecciona verticalmente (¡esto es una delicia para los que veniamos de EditPlus!) ¿Todavía escribís tus etiquetas? Es como usar Photoshop y tener que recurrir al toobar para hacer algo ;)</li>
<li>Ayuda al editar CSS. Realmente no encuentro muchas diferencias contra TopStyle, de hecho, hay varias características (sutiles) que parecen haber copiado de este último. Creo que hasta el esquema de colores para resaltar sintáxis CSS es idéntico al de TopStyle.</li>
<li>Gestión de proyectos/sitios incluída. Un proyecto es una carpeta del servidor local (incluye opción de sincronización con el servidor remoto, aunque nunca la utilicé, pues siempre uso NetDrive). PHP Designer 2006, creo, no tiene un buen &mdash;y simple&mdash; gestor de proyectos.</li>
<li>Buena integración con FTP. Graba archivos y proyectos completos en el servidor remoto. Esto es un punto más a favor si lo comparamos con UltraEdit, por ejemplo.</li>
<li>Búsqueda completa. Busca en archivos, busca y reemplaza, y otras combinaciones interesantes. Para los más geeks, también soporta expresiones regulares.</li>
<li>Multi copy&#038;paste. Esto no lo probé nunca, pero a alguno capaz que le sirva. Lo ideal sería tener un editor que pegue ademas con el tercer botón del mouse (como en Linux).</li>
<li>Browser SQL integrado. Tiene un simple pero potente query browser para testear sentencias SQL. Soporta, obviamente MySQL.</li>
<li>Muy configurable. Al extremo, como PHP Designer o TopStyle.</li>
</ul>
<p><strong>Desventajas:</strong></p>
<ul>
<li>No es gratuito (cuesta 40USD).</li>
<li>A veces se &#8220;olvida&#8221; de las opciones guardadas. Me ha pasado tener que poner algunas veces a Monaco como fuente predeterminada.</li>
<li>Es medio lento al abrir un archivo. TopStyle sigue siendo el rey en este sentido, a mí me abre un archivo en menos de un segundo.</li>
<li>Un poco lento al seleccionar, tiene comportamiento erróneo al editar una línea de código en el límite del viewport.</li>
</ul>
<p><strong>Puntuación:</strong> 9 chelines.<br />
<strong>Descarga:</strong> <a href="http://www.blumentals.net/webuilder/">Desde la web de Blumentals.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodrigogalindez.com/archivos/review-de-webuilder-2006/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Opera 9 Disponible</title>
		<link>http://www.rodrigogalindez.com/archivos/opera-9-disponible/</link>
		<comments>http://www.rodrigogalindez.com/archivos/opera-9-disponible/#comments</comments>
		<pubDate>Fri, 21 Oct 2005 06:54:38 +0000</pubDate>
		<dc:creator>Rodrigo</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.16bits.net/archivos/opera-9-disponible/</guid>
		<description><![CDATA[Opera 9 Technical Preview ya está disponible. Descarga directa. Por cierto, este es un post desde Flock, usando la excelente herramienta
de publicación WYSIWYG integrada que tiene. Esperen un review más detallado
pronto :)
]]></description>
			<content:encoded><![CDATA[<p><a href="http://511.dabomb.com.ar/2005/10/opera-9-preview-1-o-el-futuro-merlin/">Opera 9 Technical Preview ya está disponible</a>. <a href="http://snapshot.opera.com/windows/o90p1_8031.exe">Descarga directa</a>. Por cierto, este es un post desde Flock, usando la <em>excelente</em> herramienta<br />
de publicación WYSIWYG integrada que tiene. Esperen un review más detallado<br />
pronto :)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodrigogalindez.com/archivos/opera-9-disponible/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

