<?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>Pablo Noel</title>
	<atom:link href="http://pablonoel.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://pablonoel.com</link>
	<description>Designer, Skater, Punk</description>
	<lastBuildDate>Mon, 30 Jan 2012 04:15:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>November Talks</title>
		<link>http://pablonoel.com/design/november-talks/</link>
		<comments>http://pablonoel.com/design/november-talks/#comments</comments>
		<pubDate>Mon, 08 Nov 2010 16:01:01 +0000</pubDate>
		<dc:creator>Pablo Noel</dc:creator>
				<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://pablonoel.com/?p=772</guid>
		<description><![CDATA[Im invited to talk in a couple of events this month, here is the schedule: Pandemia Talks. The web eye for the design guy. A talk for the students of graphic design, oriented to explain how to design for the web, what skills are needed to don&#8217;t die in the process and how to take [...]]]></description>
			<content:encoded><![CDATA[<p>Im invited to talk in a couple of events this month, here is the schedule:</p>
<h4>Pandemia Talks.</h4>
<p><strong>The web eye for the design guy.</strong></p>
<p>A talk for the students of graphic design, oriented to explain how to design for the web, what skills are needed to don&#8217;t die in the process and how to take advantage of tools to show their work on the web.</p>
<blockquote><p>16:30 hrs, saturday 13, november<br />
Universidad de las Américas.<br />
Av. Antonio Varas 880, Providencia, Santiago, Chile.</p></blockquote>
<h4>Webprendedor Workshop.</h4>
<p><strong>User experience and the new interfaces paradigms, HTML5 and the new challenges.</strong></p>
<p>An open workshop, to see and discuss how to face the new interfaces paradigms, the web on TV and touch devices. HTML5 and the new technologies.</p>
<blockquote><p>hour TBA, friday 19, november<br />
MBA Universidad Católica.<br />
Av. Alameda 440, Santiago, Chile.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://pablonoel.com/design/november-talks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create transparents backgrounds with CSS and Javascript</title>
		<link>http://pablonoel.com/code/how-to-create-transparents-backgrounds-with-css-and-javascript/</link>
		<comments>http://pablonoel.com/code/how-to-create-transparents-backgrounds-with-css-and-javascript/#comments</comments>
		<pubDate>Mon, 25 Oct 2010 21:13:48 +0000</pubDate>
		<dc:creator>Pablo Noel</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://pablonoel.com/?p=745</guid>
		<description><![CDATA[One of the most used graphic resources on the web are transparent backgrounds, the main problem with them, besides the readability of the content inside, is the always hard cross browsing, so lets see  how we can do some workarounds in order to make some nice transparent backgrounds. The &#8220;opacity&#8221; problem The simple and short [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most used graphic resources on the web are transparent backgrounds, the main problem with them, besides the readability of the content inside, is the always hard cross browsing, so lets see  how we can do some workarounds in order to make some nice transparent backgrounds.</p>
<h4>The &#8220;opacity&#8221; problem</h4>
<p>The simple and short CSS &#8220;opacity:0.5&#8243; property works just fine, at least on the most modern browsers, but affects not only the div`s background, but also the inner elements, making everything inside transparent. This can be solved by two ways.</p>
<h4>The solution from the future</h4>
<p>Using the CSS3 background property <a title="RGBA explained" href="http://www.css3.info/preview/rgba/">RBGA</a>, the only problem its this will only works with CSS3 enabled browsers.</p>
<p><strong>CSS</strong><br />
<code>div{<br />
background-color:rgba(255,255,255,0.5);<br />
}</code></p>
<h4>The solution for the past</h4>
<p>Or by a workaround using a transparent empty element positioned behind the content, like this:</p>
<p><strong>HTML</strong><br />
<code><br />
&lt;div class="trans_box"&gt;<br />
&lt;p&gt;My awesome content&lt;/p&gt;<br />
&lt;div class="trans_back"&gt;&lt;/div&gt;<br />
&lt;/div&gt;</code></p>
<p><strong>CSS</strong></p>
<p><code>.trans_box{<br />
position:relative;<br />
z-index:1;<br />
}<br />
.trans_back{<br />
position:absolute;<br />
z-index:-1<br />
top:0;<br />
left:0;<br />
width:100%;<br />
height:100%; // the height needs to be fixed in order to display correctly on ie6<br />
background:black;<br />
opacity:0.5;<br />
}</code></p>
<p>The problem, again, its this just work on modern browsers, but we have a Javascript solution for the always loved IE family</p>
<p><strong>CSS</strong></p>
<p><code>.trans_back{<br />
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; // ie8 hack<br />
filter: alpha(opacity=50); // ie6-7 hack<br />
}</code></p>
<h4>The Jquery way</h4>
<p>But hey, thats was an UGLY solution, so here it comes jQuery to saves the day. Using the same concept we can make a simple function that replace the ugliness of the hack, and will maintain the simplest html structure possible.</p>
<p><strong>HTML</strong><br />
<code>&lt;div class="trans_box"&gt;<br />
&lt;p&gt;My awesome content&lt;/p&gt;<br />
&lt;/div&gt;</code></p>
<p><strong>JS</strong><br />
<code>$('.trans_box').append('&lt;div class="trans_back"&gt;&lt;/div&gt;');<br />
$('.trans_box .trans_back').css({'opacity':0.50});</code></p>
<p><strong>CSS</strong><br />
<code>.trans_box{<br />
position:relative;<br />
z-index:1;<br />
}<br />
.trans_back{<br />
background:black;<br />
width:100%;<br />
height:100%; // the height needs to be fixed in order to display correctly on ie6<br />
position:absolute;<br />
top:0;left:0;<br />
z-index:-1;<br />
display:block;<br />
}</code></p>
<p>And thats all, i hope this little resume could save you some headaches.</p>
]]></content:encoded>
			<wfw:commentRss>http://pablonoel.com/code/how-to-create-transparents-backgrounds-with-css-and-javascript/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Clean inputs on focus</title>
		<link>http://pablonoel.com/code/clean-inputs-on-focus/</link>
		<comments>http://pablonoel.com/code/clean-inputs-on-focus/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 20:58:21 +0000</pubDate>
		<dc:creator>Pablo Noel</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://pablonoel.com/?p=78</guid>
		<description><![CDATA[A fast and nice way using Jquery to clean input values on focus, and put the default value back when is empty: $(".clean").each(function(){ var value = $(this).val(); $(this).focusin(function(){if($(this).val() == value){$(this).val("");};}); $(this).focusout(function(){if($(this).val() == ''){$(this).val(value);};}); }); Just add the class &#8220;.clean&#8221; to your input tag and voilá.]]></description>
			<content:encoded><![CDATA[<p>A fast and nice way using Jquery to clean input values on focus, and put the default value back when is empty:</p>
<p><code>$(".clean").each(function(){<br />
var value = $(this).val();<br />
$(this).focusin(function(){if($(this).val() == value){$(this).val("");};});<br />
$(this).focusout(function(){if($(this).val() == ''){$(this).val(value);};});<br />
});</code></p>
<p>Just add the class &#8220;.clean&#8221; to your input tag and voilá.</p>
]]></content:encoded>
			<wfw:commentRss>http://pablonoel.com/code/clean-inputs-on-focus/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Cocombobox Jquery Plugin for enhanced Comboboxs / Select Boxes</title>
		<link>http://pablonoel.com/code/cocombobox-jquery-plugin-for-enhanced-comboboxs-select-boxes/</link>
		<comments>http://pablonoel.com/code/cocombobox-jquery-plugin-for-enhanced-comboboxs-select-boxes/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 15:30:47 +0000</pubDate>
		<dc:creator>Pablo Noel</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[combobox]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[select]]></category>

		<guid isPermaLink="false">http://pablonoel.com/?p=67</guid>
		<description><![CDATA[Working on a couple of proyects i find myself searching for a solution for the customization for our so-long-used Select tag,  a.k.a Combobox. If you work with HTML you will know that its so freaking hard to add custom graphics and behaviors to this element, so i made a &#8220;simple&#8221; and kind of naiv solution [...]]]></description>
			<content:encoded><![CDATA[<p>Working on a couple of proyects i find myself searching for a solution for the customization for our so-long-used <a title="Select Tag at W3Schools" href="http://www.w3schools.com/TAGS/tag_Select.asp">Select tag</a>,  a.k.a <a title="Combobox at Wikipedia" href="http://en.wikipedia.org/wiki/Combo_box">Combobox</a>. If you work with HTML you will know that its so freaking hard to add custom graphics and behaviors to this element, so i made a &#8220;simple&#8221; and kind of naiv solution for this.</p>
<h3>Cocombobox Jquery Plugin</h3>
<p>This will add a &#8220;Combobox&#8221; kind of interaction to a standard list of elements, view the example page:</p>
<p><a title="Select Box - Combobox Jquery Plugin replacement" href="http://pablonoel.com/lab/jquery/cocombobox/">http://pablonoel.com/lab/jquery/cocombobox/</a></p>
<h4>Default HTML:</h4>
<p><code>&lt;form action="#" method="post"&gt;<br />
&lt;h3&gt;Combobox Default Configuration&lt;/h3&gt;<br />
&lt;ol&gt;<br />
&lt;li&gt;Select an Option&lt;/li&gt;<br />
&lt;li&gt;&lt;a title="enlace" rel="first" href="#"&gt;First Option&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a title="enlace" rel="second" href="#"&gt;Second Option&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a title="enlace" rel="third" href="#"&gt;Third Option&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ol&gt;<br />
&lt;/form&gt;</code></p>
<h4>Default Call</h4>
<p><code>$("ol").cocombobox();</code></p>
<h4>Generated HTML</h4>
<p><code>&lt;form action="#" method="post"&gt;<br />
&lt;h3&gt;Combobox Default Configuration&lt;/h3&gt;<br />
&lt;div style="position: relative; height: 20px; z-index: 9938;" class="comboboxccbx"&gt;&lt;ol style="overflow: hidden; position: absolute; height: 20px; z-index: 9938;" class="min"&gt;<br />
&lt;li id="option"&gt;Select an Option&lt;/li&gt;<br />
&lt;li&gt;&lt;a href="#" title="enlace" rel="first"&gt;First Option&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href="#" title="enlace" rel="second"&gt;Second Option&lt;/a&gt;&lt;/li&gt;<br />
&lt;li&gt;&lt;a href="#" title="enlace" rel="third"&gt;Third Option&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ol&gt;&lt;input name="combobox" id="combobox" value="" type="hidden"&gt;&lt;/div&gt;<br />
&lt;/form&gt;</code><br />
There is no documentation yet, and no changelog, but this is the first release, you can <a title="Download Plugin" href="http://pablonoel.com/lab/jquery/cocombobox/jquery.cocombobox.js">Download it</a> and tell me your comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://pablonoel.com/code/cocombobox-jquery-plugin-for-enhanced-comboboxs-select-boxes/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>No Comply 2008</title>
		<link>http://pablonoel.com/life/no-comply-2008/</link>
		<comments>http://pablonoel.com/life/no-comply-2008/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 03:56:10 +0000</pubDate>
		<dc:creator>Pablo Noel</dc:creator>
				<category><![CDATA[life]]></category>
		<category><![CDATA[arte]]></category>
		<category><![CDATA[australia]]></category>
		<category><![CDATA[dibujo]]></category>
		<category><![CDATA[escultura]]></category>
		<category><![CDATA[inspiracion]]></category>
		<category><![CDATA[pintura]]></category>

		<guid isPermaLink="false">http://pablonoel.com/blog/?p=35</guid>
		<description><![CDATA[Si hay algo en el mundo que me apasiona enormemente es el mundo del skateboarding, hace unos cuantos dias se inauguro en Sydney Australia una exposición con el trabajo de mas de 70 artistas de todo el mundo, con trabajos en formato skateboard, y para todos aquellos que no tenemos la posibilidad de visitar Sydney [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" title="No Comply 2008" src="http://farm4.static.flickr.com/3275/3018283130_58e0f08d5f.jpg" alt="" width="500" height="375" /></p>
<p>Si hay algo en el mundo que me apasiona enormemente es el mundo del skateboarding, hace unos cuantos dias se inauguro en Sydney Australia una exposición con el trabajo de mas de 70 artistas de todo el mundo, con trabajos en formato skateboard, y para todos aquellos que no tenemos la posibilidad de visitar Sydney mientras dura la exposición tenemos la suerte de que todos los trabajos han sido fotografiados y archivados online para nuestro disfrute.</p>
<p>Algunos trabajos de mi total agrado a continuación:</p>
<p><img class="alignnone size-full wp-image-36" title="nocomply" src="http://pablonoel.com/wp-content/uploads/2008/12/nocomply.jpg" alt="" width="500" height="1000" /></p>
<p><a title="Sitio oficial del lanzamiento [En ingles]" href="http://www.nocomply.com.au/">Sitio Oficial de No Comply</a><br />
<a title="Fotos del Lanzamiento en Flickr" href="http://www.flickr.com/photos/niceproduce/sets/72157610662164552/show/">Galería en Flickr del Lanzamiento</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pablonoel.com/life/no-comply-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beautiful Losers</title>
		<link>http://pablonoel.com/life/beautiful-losers/</link>
		<comments>http://pablonoel.com/life/beautiful-losers/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 00:33:23 +0000</pubDate>
		<dc:creator>Pablo Noel</dc:creator>
				<category><![CDATA[design]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[arte]]></category>
		<category><![CDATA[dibujo]]></category>
		<category><![CDATA[diy]]></category>
		<category><![CDATA[documental]]></category>
		<category><![CDATA[films]]></category>
		<category><![CDATA[fotografia]]></category>
		<category><![CDATA[inspiracion]]></category>
		<category><![CDATA[pintura]]></category>
		<category><![CDATA[usa]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://pablonoel.com/blog/?p=13</guid>
		<description><![CDATA[Cuando se habla del DIY (Do It Yourself) se suele vanalizar su existencia olvidando los profundos cambios y aportes que se han creado a partir de este movimiento. Definir el DIY como una moda es ignorar su historia y su legado. Historia ligada a los movimientos mas extremos y vanguardistas del arte, la música y [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-20" title="beautiful losers" src="http://pablonoel.com/wp-content/uploads/2008/09/beautifull.jpg" alt="" width="500" height="287" /></p>
<p>Cuando se habla del DIY (Do It Yourself) se suele vanalizar su existencia olvidando los profundos cambios y aportes que se han creado a partir de este movimiento. Definir el DIY como una moda es ignorar su historia y su legado. Historia ligada a los movimientos mas extremos y vanguardistas del arte, la música y la política, y un legado de obras que han inspirado transversalmente el modo en que actualmente la cultura es percibida.</p>
<p><strong>Beautiful Losers (Documental, Ingles, 90min, 2008)</strong></p>
<p><img class="alignleft size-medium wp-image-14" title="beautiful_losers" src="http://pablonoel.com/wp-content/uploads/2008/09/beautiful_losers-202x300.jpg" alt="" width="202" height="300" />Un documental que celebra este espíritu, mostrando la vida y obra de un grupo de artistas de New York, que en busca de una identidad propia crearon sin proponerlo, lo que seria una revolución en el arte.</p>
<p>Con artistas como Ed Templeton y Geoff McFetridge, artistas que han trascendido en mundos tan distintos como el skate y el diseño corporativo, un documental que muestra sus trabajos y su visión frente a esta revolución.</p>
<p><a title="Beautiful Losers en vimeo" href="http://vimeo.com/1324674">Ver la Sinopsis en Vimeo.</a><br />
<a title="Sitio oficial del documental Beautiful Losers" href="http://www.beautifullosers.com/">Sitio Oficial del Documental</a><br />
<a title="Beautiful Losers en IMDB" href="http://www.imdb.com/title/tt0430916/">Beautiful Losers en la IMDB</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pablonoel.com/life/beautiful-losers/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Mono</title>
		<link>http://pablonoel.com/life/hola-mundo/</link>
		<comments>http://pablonoel.com/life/hola-mundo/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 04:33:27 +0000</pubDate>
		<dc:creator>Pablo Noel</dc:creator>
				<category><![CDATA[life]]></category>
		<category><![CDATA[arte]]></category>
		<category><![CDATA[inspiracion]]></category>
		<category><![CDATA[japon]]></category>
		<category><![CDATA[noise]]></category>
		<category><![CDATA[vinilo]]></category>

		<guid isPermaLink="false">http://pablonoel.com/blog/?p=1</guid>
		<description><![CDATA[Con mis mas cercanos amigos tenemos la tradición de presentarnos bandas que, por uno u otro motivo, sabemos que cambiaran nuestras vidas, hace unos meses atrás armando llego con una de esas propuestas. Mono, es una banda Japonesa, de carácter independiente avocada al mas hermoso Noise que he escuchado en estos últimos años, pero esta [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-4" title="mono2007_3" src="http://pablonoel.com/wp-content/uploads/2008/09/mono2007_3.jpg" alt="" width="500" height="285" /></p>
<p>Con mis mas cercanos amigos tenemos la tradición de presentarnos bandas que, por uno u otro motivo, sabemos que cambiaran nuestras vidas, hace unos meses atrás <a title="Blog de Armando Torrealba" href="http://useme.cl/armando">armando</a> llego con una de esas propuestas.</p>
<p><a href="http://www.mono-jpn.com/">Mono</a>, es una banda Japonesa, de carácter independiente avocada al mas hermoso Noise que he escuchado en estos últimos años, pero esta entrada no es para hablar de lo increíble de su música, si no de lo delicado de su arte, y de como la pasión por su trabajo ha logrado traspasar las limitaciones por la que, actualmente, muchos artistas en mi país están protestando.</p>
<p>Para entrar en contexto, el problema básicamente se reduce a un grupo de artistas que imposibilitados de generar un cambio frente al nuevo paradigma dado por la revolución de internet, se ven acorralados por sus propias limitaciones frente a estos nuevos modelos de negocios. Debido a esto han generado una campaña llamada &#8220;<a title="Trato Justo, o &quot;mami, internet me quito el dulce&quot;" href="http://www.tratojustoartistas.cl/">Trato Justo</a>&#8221; que entre otras cosas pretende obligar a cada usuario de internet, a pagar un &#8220;impuesto a la descarga&#8221;, en favor obviamente de un grupo, obviamente liderado por ellos mismos.</p>
<p>Luego de que armando llegara a mi con esta banda, obviamente en formato mp3, bajado de alguno de los MILLONES de sitios de descarga musical gratuita, yo no solo pude acceder de manera INMEDIATA a su obra, si no que ademas, esta pudo traspasar no solo las barreras geográficas e idiomáticas que existen entre Japon y Chile. Esto significo que independiente de estas limitaciones la creación de un grupo de artistas pudiese conmover a un receptor al otro lado del mundo. Un receptor que no tuvo que pagar NADA por ello, por que no podia pagar por algo que NO CONOCIA. Pero gracias a un modelo abierto de publicación de contenidos, considero que esta obra, merecia no solo ser escuchada, si no que eventualmente, adquirida.</p>
<p>Personalmente soy un consumidor bastante frecuente de música, PAGO por ella, cuando esta lo vale. Ayer, rondando por una de mis tiendas favoritas, encontré con un disco que de otra manera podría haber pasado desapercibido a mi búsqueda. Tenia en ese momento en mis manos:</p>
<p><strong>Walking Cloud and Deep Red Sky, Flag Fluttered and the Sun Shined</strong></p>
<p><img class="alignleft size-thumbnail wp-image-8" title="Walking Cloud" src="http://pablonoel.com/wp-content/uploads/2008/09/mono-walkingcloud-150x150.jpg" alt="" width="150" height="150" />Este disco, <a title="Walking cloud and deep..." href="http://www.mono-jpn.com/e/disc/cd_3rd.html">lanzado el 14 de Abril del 2004</a>, bajo el sello <a title="Temporary Residence Limited, Sitio Oficial" href="http://www.temporaryresidence.com/">Temporary Residence Limited</a>, un sello independiente de la ciudad de New York, que entre otras bandas a editado a Envy y Explosions in the Sky, es el tercer LP de MONO. Un disco que musicalmente es hermoso, pero ademas constituye una obra de arte en si mismo, dado su formato y su arte.</p>
<p>El disco, un vinilo doble, incluye un par de detalles que elevan el valor de la obra, por el mero cuidado y pasion que se le dedico. El &#8220;sleeve&#8221; viene croquelado con la figura de dos niñas con violines, un arte con un lado rojo, da el fondo  al croquel. Un pequeño papel cuadrado con la frase &#8220;one for a thousand paper cranes&#8221; se adjunta con las instrucciones para crear un cisne de origami, un detalle no menor, considerando que tambien es el nombre del ultimo tema de este disco, segun armando me comentaba, este tema fue dedicado a una pequeña niña de pocos años de edad, que como ultimo deseo antes de morir, pidio que se le enseñara a crear el cisne de papel. Para coronar todo, se incluye un pequeño folleto, con los discos distribuidos por el sello, con una ilustracion que recita &#8220;THANK YOU&#8221;.</p>
<p>Luego de admirar tan delicado trabajo me queda solo pensar en los musicos &#8220;grandes&#8221; de mi pais, que entregan su arte de mala gana, casi mesquinamente, que te obligan a solo poder elegir el formato que ellos proponen, con un arte horrible, sin agradecimientos, sin delicadeza, sin PASION.</p>
<p>Los invito a visitar <a title="Trato Justo, Para Todos" href="www.tratojustoparatodos.cl">www.tratojustoparatodos.cl</a>, y ser parte de la conversación, sobre el tema de los derechos de autor, y lo ridiculo de la propuesta de &#8220;nuestros artistas&#8221;.</p>
<p><a title="Mono, sitio Oficial" href="http://www.mono-jpn.com/">Mono, Sitio Oficial</a><br />
<a title="Mono en Wikipedia" href="http://en.wikipedia.org/wiki/Mono_(Japanese_band)">Mono, en Wikipedia</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pablonoel.com/life/hola-mundo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>So long and thanks for all the comments</title>
		<link>http://pablonoel.com/general/so-long-and-thanks-for-all-the-comments/</link>
		<comments>http://pablonoel.com/general/so-long-and-thanks-for-all-the-comments/#comments</comments>
		<pubDate>Sat, 16 Aug 2008 06:49:07 +0000</pubDate>
		<dc:creator>Pablo Noel</dc:creator>
				<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://www.useme.cl/pablo/?p=675</guid>
		<description><![CDATA[Y bueno, tengo este espacio demasiado olvidado como para seguir manteniendolo, me ha encantado durante todos estos años tener un lugar donde dar cabida a mis disparates y descargos, pero estoy viejo, y me da bastante lata seguir hablando de mi vida, así que por salud mental cerrare esto, y lo guardare para mi. Esto [...]]]></description>
			<content:encoded><![CDATA[<p>Y bueno, tengo este espacio demasiado olvidado como para seguir manteniendolo, me ha encantado durante todos estos años tener un lugar donde dar cabida a mis disparates y descargos, pero estoy viejo, y me da bastante lata seguir hablando de mi vida, así que por salud mental cerrare esto, y lo guardare para mi.</p>
<p>Esto no significa que deje de escribir, todo lo contrario, es la búsqueda de un espacio mas profesional, o quizás mas apasionado, sobre el maravilloso mundo del diseño y la comunicación, sin interrupciones de carácter personal, ni el peso que me implica tener TODA mi vida respaldada y expuesta.</p>
<p>A estas alturas no se si alguien siga leyendo esto regularmente, no llevo registros de eso, pero muchas gracias a todos, y pronto los invitare a una charla un poco mas amena, o aburrida, depende de usted.</p>
<p>Saludos.</p>
]]></content:encoded>
			<wfw:commentRss>http://pablonoel.com/general/so-long-and-thanks-for-all-the-comments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sobre el Skateboarding y la Inspiración.</title>
		<link>http://pablonoel.com/general/sobre-el-skateboarding-y-la-inspiracion/</link>
		<comments>http://pablonoel.com/general/sobre-el-skateboarding-y-la-inspiracion/#comments</comments>
		<pubDate>Mon, 26 May 2008 00:17:07 +0000</pubDate>
		<dc:creator>Pablo Noel</dc:creator>
				<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://www.useme.cl/pablo/?p=673</guid>
		<description><![CDATA[Por que nuestros únicos limites siempre han sido los que nos auto-imponemos. Dissent TV: Tony with blind skater Tommy Carroll on ShredOrDie.com ]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="464" height="388" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="key=4600e35e6f&amp;vert=shredordie" /><param name="allowfullscreen" value="true" /><param name="src" value="http://www2.shredordie.com/public/flash/fodplayer.swf" /><embed type="application/x-shockwave-flash" width="464" height="388" src="http://www2.shredordie.com/public/flash/fodplayer.swf" allowfullscreen="true" flashvars="key=4600e35e6f&amp;vert=shredordie"></embed></object></p>
<p>Por que nuestros únicos limites siempre han sido los que nos auto-imponemos.</p>
<p><noscript><a href="http://www.shredordie.com/videos/4600e35e6f">Dissent TV: Tony with blind skater Tommy Carroll</a> on <a href="http://www.shredordie.com">ShredOrDie.com</a></noscript> </p>
]]></content:encoded>
			<wfw:commentRss>http://pablonoel.com/general/sobre-el-skateboarding-y-la-inspiracion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Videos en Flickr!</title>
		<link>http://pablonoel.com/general/videos-en-flickr/</link>
		<comments>http://pablonoel.com/general/videos-en-flickr/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 05:36:37 +0000</pubDate>
		<dc:creator>Pablo Noel</dc:creator>
				<category><![CDATA[general]]></category>

		<guid isPermaLink="false">http://www.useme.cl/pablo/archivos/668/</guid>
		<description><![CDATA[Si, ahora se puede subir videos a flickr!. Actualmente solo aguanta 90 Segundos de Video o 150MB de peso, en formatos: AVI, WMV, MOV, MPEG (1, 2, y 4) y 3gp. Esta opción solo esta disponible para usuarios con cuentas pagadas.Se ha generado, como siempre, mucho revuelo y discusión al respecto, tanto de usuarios que [...]]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" data="http://www.flickr.com/apps/video/stewart.swf?v=1.167" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" height="380" width="500"><param name="flashvars" value="intl_lang=en-us&amp;photo_secret=440bef89e0&amp;photo_id=2399629135&amp;show_info_box=true"></param><param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=1.167"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.flickr.com/apps/video/stewart.swf?v=1.167" type="application/x-shockwave-flash" bgcolor="#000000" allowfullscreen="true" flashvars="intl_lang=en-us&amp;photo_secret=440bef89e0&amp;photo_id=2399629135&amp;flickr_show_info_box=true" height="380" width="500"></embed></object></p>
<p>Si, ahora se puede <a href="http://www.flickr.com/help/video/" title="Flickr Video Help">subir videos</a> a <a href="http://www.flickr.com" title="Flckr Video and Photo Sharing">flickr!</a>.<br />
Actualmente solo aguanta 90 Segundos de Video o 150MB de peso,  en formatos: AVI, WMV, MOV, MPEG (1, 2, y 4) y 3gp.<br />
Esta opción solo esta disponible para usuarios con <a href="http://www.flickr.com/upgrade/" title="Flickr Pro">cuentas pagadas</a>.Se ha generado, como siempre, mucho revuelo y discusión al respecto, tanto de <a href="http://www.flickr.com/groups/no_video_on_flickr/pool/" title="Flickr Pool - No video!">usuarios que no estan de acuerdo</a> con el cambio, como de usuarios que, como yo, lo <a href="http://www.flickr.com/groups/video/" title="Flickr Pool - Video! Video! Video!">encontramos lo máximo</a>.<small>PD: si se pregunta de donde rayos salio este video, la respuesta corta es: <a href="http://pablonoel.com/archivos/processing/Cubos_video.pde">http://pablonoel.com/archivos/processing/Cubos_video.pde</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://pablonoel.com/general/videos-en-flickr/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

