<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comentarios en: WP-Syntax 0.9 - Hack aceptado :D</title>
	<atom:link href="http://picandocodigo.net/2008/07/wp-syntax-09/feed/" rel="self" type="application/rss+xml" />
	<link>http://picandocodigo.net/2008/07/wp-syntax-09/</link>
	<description>Programando... Mi blog sobre programación, tecnología, web, software libre, videojuegos y más</description>
	<pubDate>Thu, 20 Nov 2008 09:19:35 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
		<item>
		<title>Por: List Category Posts: Plugin para WordPress &#124; Picando Código</title>
		<link>http://picandocodigo.net/2008/07/wp-syntax-09/#comment-3965</link>
		<dc:creator>List Category Posts: Plugin para WordPress &#124; Picando Código</dc:creator>
		<pubDate>Sat, 16 Aug 2008 21:32:58 +0000</pubDate>
		<guid isPermaLink="false">http://picandocodigo.net/?p=1004#comment-3965</guid>
		<description>[...] WordPress. Este es el segundo de creación propia, y el tercero en el que participo, contando los aportes a WP-Syntax. En una entrada pasada comentaba como tuve que escribir un plugin nuevo para WordPress para mostrar [...]</description>
		<content:encoded><![CDATA[<p>[...] WordPress. Este es el segundo de creación propia, y el tercero en el que participo, contando los aportes a WP-Syntax. En una entrada pasada comentaba como tuve que escribir un plugin nuevo para WordPress para mostrar [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: fernando</title>
		<link>http://picandocodigo.net/2008/07/wp-syntax-09/#comment-3629</link>
		<dc:creator>fernando</dc:creator>
		<pubDate>Mon, 28 Jul 2008 01:18:30 +0000</pubDate>
		<guid isPermaLink="false">http://picandocodigo.net/?p=1004#comment-3629</guid>
		<description>Gracias, espero que más de uno se haya descargado el plugin en su versión más reciente.

¡Saludos!</description>
		<content:encoded><![CDATA[<p>Gracias, espero que más de uno se haya descargado el plugin en su versión más reciente.</p>
<p>¡Saludos!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Marcelo Ramos</title>
		<link>http://picandocodigo.net/2008/07/wp-syntax-09/#comment-3612</link>
		<dc:creator>Marcelo Ramos</dc:creator>
		<pubDate>Fri, 25 Jul 2008 22:38:14 +0000</pubDate>
		<guid isPermaLink="false">http://picandocodigo.net/?p=1004#comment-3612</guid>
		<description>&lt;pre lang="Python"&gt;
print "Buena ahi!, felicitaciones!"
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="python python" style="font-family:monospace;"><span style="color: #ff7700;font-weight:bold;">print</span> <span style="color: #483d8b;">&quot;Buena ahi!, felicitaciones!&quot;</span></pre></div></div>

]]></content:encoded>
	</item>
	<item>
		<title>Por: Roberto</title>
		<link>http://picandocodigo.net/2008/07/wp-syntax-09/#comment-3596</link>
		<dc:creator>Roberto</dc:creator>
		<pubDate>Fri, 25 Jul 2008 02:40:39 +0000</pubDate>
		<guid isPermaLink="false">http://picandocodigo.net/?p=1004#comment-3596</guid>
		<description>Bueno, probando asm que no podia faltar :D
&lt;pre lang="asm"&gt;format ELF executable
entry start

segment readable executable

start:

   mov eax, 4
   mov ebx, 1
   mov ecx, msg
   mov edx, msg_len

   mov eax, 1
   mov ebx, 0
   int 80h

segment readable writable

msg  db   'Prueba en asm xD'
msg_len  $-msg&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Bueno, probando asm que no podia faltar <img src='http://picandocodigo.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>

<div class="wp_syntax"><div class="code"><pre class="asm asm" style="font-family:monospace;">format ELF executable
entry start
&nbsp;
<span style="color: #000000; font-weight: bold;">segment</span> readable executable
&nbsp;
start<span style="color: #339933;">:</span>
&nbsp;
   <span style="color: #00007f; font-weight: bold;">mov</span> <span style="color: #00007f;">eax</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">4</span>
   <span style="color: #00007f; font-weight: bold;">mov</span> <span style="color: #00007f;">ebx</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">1</span>
   <span style="color: #00007f; font-weight: bold;">mov</span> <span style="color: #00007f;">ecx</span><span style="color: #339933;">,</span> msg
   <span style="color: #00007f; font-weight: bold;">mov</span> <span style="color: #00007f;">edx</span><span style="color: #339933;">,</span> msg_len
&nbsp;
   <span style="color: #00007f; font-weight: bold;">mov</span> <span style="color: #00007f;">eax</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">1</span>
   <span style="color: #00007f; font-weight: bold;">mov</span> <span style="color: #00007f;">ebx</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">0</span>
   <span style="color: #00007f; font-weight: bold;">int</span> <span style="color: #0000ff;">80h</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">segment</span> readable writable
&nbsp;
msg  <span style="color: #000000; font-weight: bold;">db</span>   <span style="color: #7f007f;">'Prueba en asm xD'</span>
msg_len  $<span style="color: #339933;">-</span>msg</pre></div></div>

]]></content:encoded>
	</item>
	<item>
		<title>Por: fernando</title>
		<link>http://picandocodigo.net/2008/07/wp-syntax-09/#comment-3594</link>
		<dc:creator>fernando</dc:creator>
		<pubDate>Fri, 25 Jul 2008 00:39:36 +0000</pubDate>
		<guid isPermaLink="false">http://picandocodigo.net/?p=1004#comment-3594</guid>
		<description>Pablos: gracias por las pruebas.
Pablo con minúscula: Me tomé el atrevimiento de editar tu comentario. Habías escrito pre lang="L", pero L tiene que ser uno de los lenguajes permitidos por el plugin (listados en este mismo post). Adiviné que era JavaScript, ¿le pegué?</description>
		<content:encoded><![CDATA[<p>Pablos: gracias por las pruebas.<br />
Pablo con minúscula: Me tomé el atrevimiento de editar tu comentario. Habías escrito pre lang=&#8221;L&#8221;, pero L tiene que ser uno de los lenguajes permitidos por el plugin (listados en este mismo post). Adiviné que era JavaScript, ¿le pegué?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: pablo</title>
		<link>http://picandocodigo.net/2008/07/wp-syntax-09/#comment-3593</link>
		<dc:creator>pablo</dc:creator>
		<pubDate>Fri, 25 Jul 2008 00:33:37 +0000</pubDate>
		<guid isPermaLink="false">http://picandocodigo.net/?p=1004#comment-3593</guid>
		<description>:D
&lt;pre lang="javascript"&gt;alert("te felicito, ahora si funciona ^^");&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p> <img src='http://picandocodigo.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>

<div class="wp_syntax"><div class="code"><pre class="javascript javascript" style="font-family:monospace;"><span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;te felicito, ahora si funciona ^^&quot;</span><span style="color: #009900;">&#41;</span>;</pre></div></div>

]]></content:encoded>
	</item>
	<item>
		<title>Por: Pablo</title>
		<link>http://picandocodigo.net/2008/07/wp-syntax-09/#comment-3592</link>
		<dc:creator>Pablo</dc:creator>
		<pubDate>Fri, 25 Jul 2008 00:30:20 +0000</pubDate>
		<guid isPermaLink="false">http://picandocodigo.net/?p=1004#comment-3592</guid>
		<description>Probando. Supongo que puse el código correcto.
De todos modos esto esta muy bueno :D

&lt;pre lang="pascal"&gt;
begin
   write(p)
end.
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Probando. Supongo que puse el código correcto.<br />
De todos modos esto esta muy bueno <img src='http://picandocodigo.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>

<div class="wp_syntax"><div class="code"><pre class="pascal pascal" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">begin</span>
   <span style="color: #000066;">write</span><span style="color: #009900;">&#40;</span>p<span style="color: #009900;">&#41;</span>
<span style="color: #000000; font-weight: bold;">end</span>.</pre></div></div>

]]></content:encoded>
	</item>
	<item>
		<title>Por: fernando</title>
		<link>http://picandocodigo.net/2008/07/wp-syntax-09/#comment-3591</link>
		<dc:creator>fernando</dc:creator>
		<pubDate>Thu, 24 Jul 2008 23:47:09 +0000</pubDate>
		<guid isPermaLink="false">http://picandocodigo.net/?p=1004#comment-3591</guid>
		<description>¡Gracias gente! Me está gustando lo de FerGNUndo... jeje.

zetta: Es posible que estés haciendo algo mal, o que en ciertos casos el plugin de un error. ¿Me podrías enviar por correo el código que estás intentando mostrar?
fernando en picandocodigo.net.

Prueben, y no olviden lo que escribieron en caso de que no les funcione, así me lo hacen saber.

Saludos!</description>
		<content:encoded><![CDATA[<p>¡Gracias gente! Me está gustando lo de FerGNUndo&#8230; jeje.</p>
<p>zetta: Es posible que estés haciendo algo mal, o que en ciertos casos el plugin de un error. ¿Me podrías enviar por correo el código que estás intentando mostrar?<br />
fernando en picandocodigo.net.</p>
<p>Prueben, y no olviden lo que escribieron en caso de que no les funcione, así me lo hacen saber.</p>
<p>Saludos!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: fbt</title>
		<link>http://picandocodigo.net/2008/07/wp-syntax-09/#comment-3590</link>
		<dc:creator>fbt</dc:creator>
		<pubDate>Thu, 24 Jul 2008 23:44:25 +0000</pubDate>
		<guid isPermaLink="false">http://picandocodigo.net/?p=1004#comment-3590</guid>
		<description>&lt;pre lang="c"&gt;
printf("probando");
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="c c" style="font-family:monospace;"><span style="color: #000066;">printf</span><span style="color: #009900;">&#40;</span><span style="color: #ff0000;">&quot;probando&quot;</span><span style="color: #009900;">&#41;</span>;</pre></div></div>

]]></content:encoded>
	</item>
	<item>
		<title>Por: Juan Funez &#124; One Frag Left!</title>
		<link>http://picandocodigo.net/2008/07/wp-syntax-09/#comment-3585</link>
		<dc:creator>Juan Funez &#124; One Frag Left!</dc:creator>
		<pubDate>Thu, 24 Jul 2008 22:32:10 +0000</pubDate>
		<guid isPermaLink="false">http://picandocodigo.net/?p=1004#comment-3585</guid>
		<description>Felicitacione FerGNUndo :)
Yo sigo copado con el video de CodeMonkey.</description>
		<content:encoded><![CDATA[<p>Felicitacione FerGNUndo <img src='http://picandocodigo.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Yo sigo copado con el video de CodeMonkey.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Imzyos</title>
		<link>http://picandocodigo.net/2008/07/wp-syntax-09/#comment-3584</link>
		<dc:creator>Imzyos</dc:creator>
		<pubDate>Thu, 24 Jul 2008 22:17:01 +0000</pubDate>
		<guid isPermaLink="false">http://picandocodigo.net/?p=1004#comment-3584</guid>
		<description>Felicidades, gran trabajo</description>
		<content:encoded><![CDATA[<p>Felicidades, gran trabajo</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: zetta</title>
		<link>http://picandocodigo.net/2008/07/wp-syntax-09/#comment-3583</link>
		<dc:creator>zetta</dc:creator>
		<pubDate>Thu, 24 Jul 2008 22:07:54 +0000</pubDate>
		<guid isPermaLink="false">http://picandocodigo.net/?p=1004#comment-3583</guid>
		<description>Por cierto, felicidades por tan merecida mención =)</description>
		<content:encoded><![CDATA[<p>Por cierto, felicidades por tan merecida mención =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: jk</title>
		<link>http://picandocodigo.net/2008/07/wp-syntax-09/#comment-3582</link>
		<dc:creator>jk</dc:creator>
		<pubDate>Thu, 24 Jul 2008 22:07:51 +0000</pubDate>
		<guid isPermaLink="false">http://picandocodigo.net/?p=1004#comment-3582</guid>
		<description>Congrats!</description>
		<content:encoded><![CDATA[<p>Congrats!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: zetta</title>
		<link>http://picandocodigo.net/2008/07/wp-syntax-09/#comment-3581</link>
		<dc:creator>zetta</dc:creator>
		<pubDate>Thu, 24 Jul 2008 22:07:13 +0000</pubDate>
		<guid isPermaLink="false">http://picandocodigo.net/?p=1004#comment-3581</guid>
		<description>A mi me sigue sin funcionar =S
talvez simplemente lo estoy haciendo todo mal 
&lt;pre lang="php"&gt;

&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>A mi me sigue sin funcionar =S<br />
talvez simplemente lo estoy haciendo todo mal</p>

<div class="wp_syntax"><div class="code"><pre class="php php" style="font-family:monospace;">&nbsp;</pre></div></div>

]]></content:encoded>
	</item>
	<item>
		<title>Por: Pablo</title>
		<link>http://picandocodigo.net/2008/07/wp-syntax-09/#comment-3577</link>
		<dc:creator>Pablo</dc:creator>
		<pubDate>Thu, 24 Jul 2008 21:40:29 +0000</pubDate>
		<guid isPermaLink="false">http://picandocodigo.net/?p=1004#comment-3577</guid>
		<description>Felicitaciones!</description>
		<content:encoded><![CDATA[<p>Felicitaciones!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
