<?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/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
>

<channel>
	<title>Visiones Epicureas de la Vida Moderna</title>
	<atom:link href="http://pasta0126.com/wp0126/feed/" rel="self" type="application/rss+xml" />
	<link>http://pasta0126.com/wp0126</link>
	<description>&#34;El hombre moderno ya no caza, hace cola.&#34;</description>
	<lastBuildDate>Fri, 02 Dec 2011 12:21:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/3.0/es/</creativeCommons:license>
		<item>
		<title>Jolin vs. Joder</title>
		<link>http://pasta0126.com/wp0126/jolin-vs-joder/</link>
		<comments>http://pasta0126.com/wp0126/jolin-vs-joder/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 22:11:14 +0000</pubDate>
		<dc:creator>pasta0126</dc:creator>
				<category><![CDATA[Visiones Epicúreas]]></category>

		<guid isPermaLink="false">http://pasta0126.com/wp0126/?p=4707</guid>
		<description><![CDATA[Nunca he entendido porque a los niños pequeños se les prohíbe decir cierto tipo de palabras denominadas Palabrotas. El termino en si ya es algo bastante poco agradable y creo que es una injusticia ya que todas las palabras son igual de bonitas, es cierto que su significado puede traer una connotación sobre un hecho [...]]]></description>
			<content:encoded><![CDATA[<p>Nunca he entendido porque a los niños pequeños se les prohíbe decir cierto tipo de palabras denominadas <a href="http://es.wikipedia.org/wiki/Lenguaje_soez">Palabrotas</a>.<br />
El termino en si ya es algo bastante poco agradable y creo que es una injusticia ya que todas las palabras son igual de bonitas, es cierto que su significado puede traer una connotación sobre un hecho cruento o desagradable, o referirse a aspectos poco éticos e hirientes, también puede ser complicada de pronunciar o puede tener algún fonema con cierta gracia, pero todo ello no dice nada en si sobre si una palabra es mejor que otra.</p>
<p>Como se dice en <a href="http://es.wikiquote.org/wiki/Romeo_y_Julieta">Romeo y julieta</a> : &#8220;Lo que llamamos rosa exhalaría el mismo grato perfume aún cuando de otra forma se llamase&#8221;.</p>
<p>Terminemos con la hipocresía. Los niños cuando dices esas palabras puestas dicen lo mismo que nosotros salvo en la forma.</p>
<p>Que es peor un niño que no tiene control de sus emociones y sin conocimiento del lenguaje siendo un simple títere en las manos del que sepa un poco mas que el o una persona consciente de si mismo que expresa con contundencia sus sentimientos y entiende los mecanismos sociales.</p>
]]></content:encoded>
			<wfw:commentRss>http://pasta0126.com/wp0126/jolin-vs-joder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/3.0/es/</creativeCommons:license>
	</item>
		<item>
		<title>Páginas sólo para usuarios registrados en WordPress</title>
		<link>http://pasta0126.com/wp0126/paginas-solo-para-usuarios-registrados-en-wordpress/</link>
		<comments>http://pasta0126.com/wp0126/paginas-solo-para-usuarios-registrados-en-wordpress/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 11:26:30 +0000</pubDate>
		<dc:creator>pasta0126</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://pasta0126.com/wp0126/?p=4137</guid>
		<description><![CDATA[Como mantener en la barra de navegación una página privada sólo para usuarios registrados Por Ignacio &#8211; 04/04/2010 &#8211; Guardado en Trucos Si tenemos un blog donde aceptamos usuarios registrados a los que ofrecemos información especial una vez ingresan en el site, nos encontraremos con que si listamos nuestro menú usando wp_list_pages() u otro método, [...]]]></description>
			<content:encoded><![CDATA[<p>Como mantener en la barra de navegación una página privada sólo para usuarios registrados</p>
<p>Por Ignacio &#8211; 04/04/2010 &#8211; Guardado en Trucos</p>
<p>Si tenemos un blog donde aceptamos usuarios registrados a los que ofrecemos información especial una vez ingresan en el site, nos encontraremos con que si listamos nuestro menú usando wp_list_pages() u otro método, ellos no verán en principio las páginas que hayamos marcado como “privadas” en nuestra Administración.</p>
<p>Lo interesante es que el usuario registrado tenga acceso a esos enlaces. Veamos cómo añadir, en nuestro menú en HTML, un nuevo ítem que se muestre sólo a usuarios registrados:</p>
<blockquote><p>&lt;ul&gt;</p>
<p>&lt;?php</p>
<p>wp_list_pages(&#8216;depth=1&amp;title_li=0&amp;sort_column=menu_order&#8217;);</p>
<p>if(current_user_can(&#8216;read_private_pages&#8217;)) :</p>
<p>?&gt;</p>
<p>&lt;li&gt;&lt;a href=&#8221;&lt;?php echo get_permalink(10); ?&gt;&#8221;&gt;For Authors only&lt;/a&gt;&lt;/li&gt;</p>
<p>&lt;?php endif; ?&gt;</p>
<p>&lt;/ul&gt;</p></blockquote>
<p>Salvamos, y listo.</p>
<p>vía <a href="http://www.todowp.org/como-mantener-en-la-barra-de-navegacion-una-pagina-privada-solo-para-usuarios-registrados/">Como mantener en la barra de navegación una página privada sólo para usuarios registrados | TodoWordPress</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://pasta0126.com/wp0126/paginas-solo-para-usuarios-registrados-en-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/3.0/es/</creativeCommons:license>
	</item>
		<item>
		<title>La velocidad del fuego</title>
		<link>http://pasta0126.com/wp0126/la-velocidad-del-fuego/</link>
		<comments>http://pasta0126.com/wp0126/la-velocidad-del-fuego/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 11:09:48 +0000</pubDate>
		<dc:creator>pasta0126</dc:creator>
				<category><![CDATA[Curiosidades]]></category>

		<guid isPermaLink="false">http://pasta0126.com/wp0126/?p=4642</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><embed height="350" type="application/x-shockwave-flash" width="425" src="http://www.youtube.com/v/vhJeDYQVtdQ&amp;feature=player_embedded" wmode="transparent" /></p>
]]></content:encoded>
			<wfw:commentRss>http://pasta0126.com/wp0126/la-velocidad-del-fuego/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/3.0/es/</creativeCommons:license>
	</item>
		<item>
		<title>Smiley Cthulhu</title>
		<link>http://pasta0126.com/wp0126/smiley-cthulhu/</link>
		<comments>http://pasta0126.com/wp0126/smiley-cthulhu/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 14:31:52 +0000</pubDate>
		<dc:creator>pasta0126</dc:creator>
				<category><![CDATA[Curiosidades]]></category>

		<guid isPermaLink="false">http://pasta0126.com/wp0126/?p=4646</guid>
		<description><![CDATA[Seis formas de llamar a Cthulhu desde tus conversaciones de internet: El básico (;,;) De cuerpo ancho (;,,,;) Con ojos saltones (°,,,°) Con alas ~^(;,;)^~ Ostentoso /&#124;\(;,;)/&#124;\ EuroCthulhu :€ vía Miskatonic.es: Pon a Cthulhu en tu chat.]]></description>
			<content:encoded><![CDATA[<p>Seis formas de llamar a Cthulhu desde tus conversaciones de internet:</p>
<ol>
<li>El básico (;,;)</li>
<li>De cuerpo ancho (;,,,;)</li>
<li>Con ojos saltones (°,,,°)</li>
<li>Con alas ~^(;,;)^~</li>
<li>Ostentoso /|\(;,;)/|\</li>
<li>EuroCthulhu :€</li>
</ol>
<p>vía <a href="http://www.miskatonic.es/2011/06/pon-cthulhu-en-tu-chat.html">Miskatonic.es: Pon a Cthulhu en tu chat</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://pasta0126.com/wp0126/smiley-cthulhu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/3.0/es/</creativeCommons:license>
	</item>
		<item>
		<title>Imperial march</title>
		<link>http://pasta0126.com/wp0126/imperial-march/</link>
		<comments>http://pasta0126.com/wp0126/imperial-march/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 21:32:22 +0000</pubDate>
		<dc:creator>pasta0126</dc:creator>
				<category><![CDATA[Curiosidades]]></category>
		<category><![CDATA[Inspiración]]></category>

		<guid isPermaLink="false">http://pasta0126.com/wp0126/?p=4482</guid>
		<description><![CDATA[Floppy music DUO &#8211; Imperial march &#8211; YouTube.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.youtube.com/watch?v=yHJOz_y9rZE&amp;feature=player_embedded">Floppy music DUO &#8211; Imperial march &#8211; YouTube</a>.</p>
<p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/yHJOz_y9rZE&amp;feature=player_embedded" /><param name="wmode" value="transparent" /><embed src="http://www.youtube.com/v/yHJOz_y9rZE&amp;feature=player_embedded" type="application/x-shockwave-flash" wmode="transparent" height="350" width="425" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://pasta0126.com/wp0126/imperial-march/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/3.0/es/</creativeCommons:license>
	</item>
		<item>
		<title>Realismo</title>
		<link>http://pasta0126.com/wp0126/realismo/</link>
		<comments>http://pasta0126.com/wp0126/realismo/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 21:19:28 +0000</pubDate>
		<dc:creator>pasta0126</dc:creator>
				<category><![CDATA[Inspiración]]></category>
		<category><![CDATA[Selección 0126]]></category>

		<guid isPermaLink="false">http://pasta0126.com/wp0126/?p=4476</guid>
		<description><![CDATA[Drawing Time Lapse: &#8220;Realism Challenge&#8221; &#8211; YouTube.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.youtube.com/watch?v=zZdkjjj3Rg0&amp;feature=player_embedded">Drawing Time Lapse: &#8220;Realism Challenge&#8221; &#8211; YouTube</a>.</p>
<p><object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/zZdkjjj3Rg0&amp;feature=player_embedded" /><param name="wmode" value="transparent" /><embed src="http://www.youtube.com/v/zZdkjjj3Rg0&amp;feature=player_embedded" type="application/x-shockwave-flash" wmode="transparent" height="350" width="425" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://pasta0126.com/wp0126/realismo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/3.0/es/</creativeCommons:license>
	</item>
		<item>
		<title>Airport Extreme (configuracion por defecto)</title>
		<link>http://pasta0126.com/wp0126/airport-extreme-configuracion-por-defecto/</link>
		<comments>http://pasta0126.com/wp0126/airport-extreme-configuracion-por-defecto/#comments</comments>
		<pubDate>Fri, 30 Sep 2011 09:05:47 +0000</pubDate>
		<dc:creator>pasta0126</dc:creator>
				<category><![CDATA[Utilidades]]></category>

		<guid isPermaLink="false">http://pasta0126.com/wp0126/?p=4359</guid>
		<description><![CDATA[Acceso a la Airport Extreme (configuracion por defecto) IP Address &#8211;&#62; 169.254.22.5 subnet mask &#8211;&#62; 255.255.255.0 gateway &#8211;&#62; 192.168.0.1 error -6753: Apple Support Communities.]]></description>
			<content:encoded><![CDATA[<p>Acceso a la Airport Extreme (configuracion por defecto)</p>
<p>IP Address &#8211;&gt; 169.254.22.5<br />
subnet mask &#8211;&gt; 255.255.255.0<br />
gateway &#8211;&gt; 192.168.0.1</p>
<p><a href="https://discussions.apple.com/thread/438394?start=0&amp;tstart=0">error -6753: Apple Support Communities</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://pasta0126.com/wp0126/airport-extreme-configuracion-por-defecto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/3.0/es/</creativeCommons:license>
	</item>
		<item>
		<title>QLOCKTWO</title>
		<link>http://pasta0126.com/wp0126/qlocktwo/</link>
		<comments>http://pasta0126.com/wp0126/qlocktwo/#comments</comments>
		<pubDate>Fri, 30 Sep 2011 08:42:19 +0000</pubDate>
		<dc:creator>pasta0126</dc:creator>
				<category><![CDATA[Inspiración]]></category>

		<guid isPermaLink="false">http://pasta0126.com/wp0126/?p=4373</guid>
		<description><![CDATA[  QLOCKTWO BY BIEGERT &#38; FUNK.]]></description>
			<content:encoded><![CDATA[<p><a href="http://pasta0126.com/wp0126/?attachment_id=4419" rel="attachment wp-att-4419"><img class="alignnone size-medium wp-image-4419" title="Dibujo" src="http://pasta0126.com/wp0126/wp-content/Dibujo-292x300.jpg" alt="" width="292" height="300" /></a> </p>
<p><a href="http://qlocktwo.com/">QLOCKTWO BY BIEGERT &amp; FUNK</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://pasta0126.com/wp0126/qlocktwo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/3.0/es/</creativeCommons:license>
	</item>
		<item>
		<title>Unicornios contra Narvales</title>
		<link>http://pasta0126.com/wp0126/unicornios-contra-narvales/</link>
		<comments>http://pasta0126.com/wp0126/unicornios-contra-narvales/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 14:11:47 +0000</pubDate>
		<dc:creator>pasta0126</dc:creator>
				<category><![CDATA[Curiosidades]]></category>

		<guid isPermaLink="false">http://pasta0126.com/wp0126/?p=4274</guid>
		<description><![CDATA[Unicornios contra Narvales (subtitulado) &#8211; YouTube.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.youtube.com/watch?v=B6L5VlVuzWA">Unicornios contra Narvales (subtitulado) &#8211; YouTube</a>.</p>
<p><object width="560" height="345" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/B6L5VlVuzWA" /><param name="wmode" value="transparent" /><embed width="560" height="345" type="application/x-shockwave-flash" src="http://www.youtube.com/v/B6L5VlVuzWA" wmode="transparent" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://pasta0126.com/wp0126/unicornios-contra-narvales/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/3.0/es/</creativeCommons:license>
	</item>
		<item>
		<title>Trompeta con Botella de Coca-Cola</title>
		<link>http://pasta0126.com/wp0126/trompeta-con-botella-de-coca-cola/</link>
		<comments>http://pasta0126.com/wp0126/trompeta-con-botella-de-coca-cola/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 13:50:24 +0000</pubDate>
		<dc:creator>pasta0126</dc:creator>
				<category><![CDATA[Curiosidades]]></category>
		<category><![CDATA[Inspiración]]></category>

		<guid isPermaLink="false">http://pasta0126.com/wp0126/?p=4268</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://www.youtube.com/embed/RomP69mCVYs" frameborder="0" width="420" height="345"></iframe></p>
<p><iframe src="http://www.youtube.com/embed/AIjq4pavUXM" frameborder="0" width="560" height="345"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://pasta0126.com/wp0126/trompeta-con-botella-de-coca-cola/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/3.0/es/</creativeCommons:license>
	</item>
	</channel>
</rss>

