<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-7330440595119334897</atom:id><lastBuildDate>Wed, 06 Nov 2024 02:46:43 +0000</lastBuildDate><category>acciones</category><category>actions</category><category>Textures</category><category>texturas</category><category>wallpapers</category><category>CSS</category><category>Pensando...</category><category>Tutoriales photoshop</category><category>De sitio en sitio</category><category>Patterns</category><category>Una mirada al mundo</category><category>Vagando en la ciudad</category><category>patrones</category><title>Newbie senses...</title><description>Cosas raras, texturas, patrones, acciones para Photoshop, información, tutoriales... lo que se me ocurra...&#xa;&#xa;Rare things, textures, patterns, Photoshop actions, information, tutorials... Whatever...</description><link>http://newbiesenses.blogspot.com/</link><managingEditor>noreply@blogger.com (Anonymous)</managingEditor><generator>Blogger</generator><openSearch:totalResults>21</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7330440595119334897.post-3578380088199861299</guid><pubDate>Sun, 24 Jun 2012 21:11:00 +0000</pubDate><atom:updated>2012-06-24T16:14:19.827-05:00</atom:updated><title>Obtener tamaño de elementos ocultos con jQuery / Get size of hidden elements with jQuery</title><description>Algunas veces necesitamos obtener el tamaño de elementos ocultos en el html (display:none;) pero podemos  notar que nos regresa un cero.

&lt;span style=&quot;color: #9fc5e8;&quot;&gt;Sometimes we need to get de size of hidden elements in our html (display:none;) but we can notice that get us a zero.

&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;fullpost&quot;&gt;
La solución es simple, en lugar de usar display:none; en nuestro CSS, debemos usar visibility:hidden; (su contrario sería visibility:visible; en lugar del display:block; por ejemplo) debido a que en este último caso las cosas si son medibles.&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;color: #9fc5e8;&quot;&gt;&amp;nbsp;The solution is very simple, instead of use display:none; in our CSS, we can use visibility:hidden; (use visibility:visible; instead of display:block;) because this is measurable.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;Ejemplo: &lt;span style=&quot;color: #9fc5e8;&quot;&gt;Example:&lt;/span&gt;&lt;br /&gt;
&lt;blockquote&gt;
No te olvides de comentar, gracias ;D. &lt;i&gt;Don&#39;t forget to comment, thanks ;D.&lt;/i&gt;&lt;/blockquote&gt;
&lt;/div&gt;</description><link>http://newbiesenses.blogspot.com/2012/06/obtener-tamano-de-elementos-ocultos-con.html</link><author>noreply@blogger.com (Anonymous)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7330440595119334897.post-6795605123024395585</guid><pubDate>Fri, 14 May 2010 22:33:00 +0000</pubDate><atom:updated>2010-05-25T14:28:59.317-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Pensando...</category><title>Modificando esta cosa</title><description>Como ya quiero empezar a trabajar bien este blog ahorita ando modificándole los estilos.&lt;br /&gt;
&lt;br /&gt;
Y agregando una que otra función. Será algo simple.&lt;br /&gt;
&lt;br /&gt;
Haber si ya junto para una maldita tablet quiero dibujar ouó.&lt;br /&gt;
&lt;br /&gt;
Y pues ahi andan más acciones de photoshop en el deviant.&lt;br /&gt;
&lt;br /&gt;
Saludos.&lt;br /&gt;
&lt;br /&gt;
&lt;hr&gt;&lt;br /&gt;
I&#39;m starting to really work in this blog, I&#39;m doing some modifcations.</description><link>http://newbiesenses.blogspot.com/2010/05/modificando-esta-cosa.html</link><author>noreply@blogger.com (Anonymous)</author><thr:total>2</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7330440595119334897.post-4246758983281652511</guid><pubDate>Fri, 14 May 2010 06:15:00 +0000</pubDate><atom:updated>2010-08-06T07:26:03.319-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">CSS</category><title>Cambiando tamaño y ángulo de elementos con CSS3</title><description>Algunas veces queremos que alguna imagen u otro elemento de nuestras páginas HTML reduzca o aumente su tamaño a escala, o quizás que gire un poco. Esto es una tarea sencilla.&lt;br /&gt;
&lt;br /&gt;
Cabe mencionar que lo siguiente es compatible con Mozilla Firefox, Safari, Opera y Google Chrome.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;fullpost&quot;&gt;Si queremos cambiar el tamaño de nuestra imagen, sólo basta añadir lo siguiente a nuestra hoja de estilos o al atributo &quot;style&quot;:&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;-moz-transform:scale(1);&lt;br /&gt;
-webkit-transform:scale(1);&lt;br /&gt;
-o-transform:scale(1);&lt;/blockquote&gt;&lt;br /&gt;
Entiándase que &lt;b&gt;1&lt;/b&gt; representa el 100% de la medida original, así que &lt;b&gt;0.8 sería 80%&lt;/b&gt; y &lt;b&gt;1.2 sería 120%&lt;/b&gt;.&lt;br /&gt;
&lt;br /&gt;
Si queremos cambiar darle un toque de rotación a nuestra imagen:&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;-moz-transform:rotate(1deg);&lt;br /&gt;
-webkit-transform:rotate(1deg);&lt;br /&gt;
-o-transform:rotate(1deg);&lt;/blockquote&gt;&lt;br /&gt;
Entiándase que &lt;b&gt;1deg&lt;/b&gt; representa un giro de 1 grado negativo (en sentido de las manecillas del reloj), pueden usarse giros positivos como &lt;b&gt;-2.3deg&lt;/b&gt; que equivale a 2.3 grados en el sentido contrario de las manecillas del reloj (la forma positiva de medir los grados).&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Ejemplos:&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjf2WpRGhgr3oe4Y6ByATRCoavxPoarHxPzaRFDHqTMYFo2N3HWFuCBbJsL7abkCbEyFdokODZIPsCdXr_I3EeVJUaO-LOmDTDJukJeyBMHq3ADfpnOg032pOItjYHVNU38c9wtDhHWYyA/&quot; /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;&amp;lt;div align=&quot;center&quot; style=&quot;-moz-transform: rotate(10deg); -o-transform: rotate(10deg); -webkit-transform: rotate(10deg);&quot;&amp;gt;&lt;br /&gt;
&amp;lt;img border=&quot;0&quot; src=&quot;linkAtuImagen&quot; /&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div align=&quot;center&quot; style=&quot;-moz-transform: rotate(10deg); -o-transform: rotate(10deg); -webkit-transform: rotate(10deg);&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjf2WpRGhgr3oe4Y6ByATRCoavxPoarHxPzaRFDHqTMYFo2N3HWFuCBbJsL7abkCbEyFdokODZIPsCdXr_I3EeVJUaO-LOmDTDJukJeyBMHq3ADfpnOg032pOItjYHVNU38c9wtDhHWYyA/&quot; /&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
El de scale lo puedes ver al pasar el mouse sobre los enlaces a deviantART y demás que están en la parte superior.&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;No te olvides de comentar, gracias ;D. &lt;i&gt;Don&#39;t forget to comment, thanks ;D.&lt;/i&gt;&lt;/blockquote&gt;&lt;/div&gt;</description><link>http://newbiesenses.blogspot.com/2010/05/cambiando-tamano-y-angulo-de-elementos.html</link><author>noreply@blogger.com (Anonymous)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjf2WpRGhgr3oe4Y6ByATRCoavxPoarHxPzaRFDHqTMYFo2N3HWFuCBbJsL7abkCbEyFdokODZIPsCdXr_I3EeVJUaO-LOmDTDJukJeyBMHq3ADfpnOg032pOItjYHVNU38c9wtDhHWYyA/s72-c" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7330440595119334897.post-4258421869037846942</guid><pubDate>Wed, 14 Apr 2010 07:27:00 +0000</pubDate><atom:updated>2010-05-13T19:59:19.090-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Tutoriales photoshop</category><title>Solución a: photoshop no guarda en ciertos formatos</title><description>¿Te ha pasado alguna vez que photoshop no te deja guardar en formato png?, ¿jpeg, gif, etc.?&lt;br /&gt;
&lt;br /&gt;
Aquí una de las soluciones a dicho problema...&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;fullpost&quot;&gt;Algunas veces que no puedes guardar en photoshop tus trabajos en algun formato de imagen se debe a las opciones de &quot;modo de imagen&quot;, aquí un video explicando al respecto ;D.&lt;br /&gt;
&lt;br /&gt;
&lt;object width=&quot;480&quot; height=&quot;385&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/S77Rm6NDFXg&amp;hl=es_ES&amp;fs=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/S77Rm6NDFXg&amp;hl=es_ES&amp;fs=1&amp;color1=0x2b405b&amp;color2=0x6b8ab6&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;480&quot; height=&quot;385&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;No te olvides de comentar, gracias ;D. &lt;i&gt;Don&#39;t forget to comment, thanks ;D.&lt;/i&gt;&lt;/blockquote&gt;&lt;br /&gt;
&lt;/div&gt;</description><link>http://newbiesenses.blogspot.com/2010/04/solucion-photoshop-no-guarda-en-ciertos.html</link><author>noreply@blogger.com (Anonymous)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7330440595119334897.post-8131138772589697204</guid><pubDate>Tue, 02 Mar 2010 02:24:00 +0000</pubDate><atom:updated>2010-03-01T20:28:44.002-06:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Tutoriales photoshop</category><title>Mejorar calidad de imagen - Photoshop</title><description>&lt;div style=&quot;text-align: justify;&quot;&gt;Aquí dejo un pequeño tutorial sobre como mejorar la calidad de una imagen ;D. Espero les sirva, ahi coméntenle que tal estuvo (si tu conexión no es muy rápida y tarda en cargar es que la imágen mide 600x2800 px y pesa 1.18 MB).&lt;/div&gt;&lt;br /&gt;
&lt;span class=&quot;fullpost&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;fullpost&quot;&gt;&lt;div style=&quot;text-align: center;&quot;&gt;Clic en la imágen para ver en tamaño completo...&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://www.fileden.com/files/2007/7/7/1246601//adsign_improvement.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;http://www.fileden.com/files/2007/7/7/1246601//adsign_improvement.png&quot; width=&quot;68&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://www.fileden.com/files/2007/7/7/1246601//adsign_improvement.png&quot;&gt;Link directo al tutorial&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-style: italic;&quot;&gt;Video que comente en el paso EXTRA, en el inciso c):&lt;/span&gt;&lt;/div&gt;&lt;div align=&quot;center&quot;&gt;&lt;object height=&quot;344&quot; width=&quot;425&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/l1xXfRG2-IM&amp;hl=es&amp;fs=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/l1xXfRG2-IM&amp;hl=es&amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt;&lt;/span&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span class=&quot;fullpost&quot;&gt;&lt;a href=&quot;http://img32.imageshack.us/img32/329/arinthaboutdustcopia2.png&quot;&gt;Otra muestra del resultado da clic&lt;/a&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;fullpost&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span class=&quot;fullpost&quot;&gt;&lt;blockquote&gt;No te olvides de comentar, gracias ;D. &lt;i&gt;Don&#39;t forget to comment, thanks ;D.&lt;/i&gt;&lt;/blockquote&gt;&lt;/span&gt;&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;
&lt;/span&gt;</description><link>http://newbiesenses.blogspot.com/2010/03/mejorar-calidad-de-imagen-photoshop.html</link><author>noreply@blogger.com (Anonymous)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7330440595119334897.post-4174688476646029306</guid><pubDate>Thu, 08 Oct 2009 19:34:00 +0000</pubDate><atom:updated>2009-10-08T14:36:25.385-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">acciones</category><category domain="http://www.blogger.com/atom/ns#">actions</category><title>Photoshop Actions - Shadows with colours</title><description>Un nuevo paquete de acciones @u@.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;319&quot; src=&quot;http://fc09.deviantart.com/fs50/i/2009/280/d/d/Shadows_with_colours_by_ArinThoughts.jpg&quot; width=&quot;420&quot; /&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
Picture: me.&lt;br /&gt;
&lt;br /&gt;
Clic download if you want the actions.&lt;br /&gt;
&lt;br /&gt;
You can put this in a different website, but with a link to this page, not in a pack or direct download.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://www.deviantart.com/download/139533663/Shadows_with_colours_by_ArinThoughts.rar&quot;&gt;Descargar/Download&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;No te olvides de comentar, gracias ;D. &lt;i&gt;Don&#39;t forget to comment, thanks ;D.&lt;/i&gt;&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;</description><link>http://newbiesenses.blogspot.com/2009/10/photoshop-actions-shadows-with-colours.html</link><author>noreply@blogger.com (Anonymous)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7330440595119334897.post-7723018097210331340</guid><pubDate>Tue, 06 Oct 2009 06:33:00 +0000</pubDate><atom:updated>2009-10-06T01:35:03.473-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">acciones</category><category domain="http://www.blogger.com/atom/ns#">actions</category><title>Photoshop Actions - Colours?</title><description>Aquí dejo otro pack de acciones nuevas que acabo de hacer no tiene nucho rato.&lt;br /&gt;
&lt;i&gt;&lt;br /&gt;
A new pack of actions ;D.&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;289&quot; src=&quot;http://fc08.deviantart.com/fs50/i/2009/278/d/4/Colours__by_ArinThoughts.jpg&quot; width=&quot;420&quot; /&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;You can put this in a different website, but with a link to this page, not in a pack or direct download.&lt;/i&gt;&lt;br /&gt;
Tu puedes poner esto en otro sitio web, pero como un link a esta página, no en un paquete o descarga directa.&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.deviantart.com/download/139286740/Colours__by_ArinThoughts.rar&quot;&gt;Descargar/&lt;i&gt;Download&lt;/i&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;No te olvides de comentar, gracias ;D. &lt;i&gt;Don&#39;t forget to comment, thanks ;D.&lt;/i&gt;&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;</description><link>http://newbiesenses.blogspot.com/2009/10/photoshop-actions-colours.html</link><author>noreply@blogger.com (Anonymous)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7330440595119334897.post-7012337457874630458</guid><pubDate>Sat, 26 Sep 2009 20:01:00 +0000</pubDate><atom:updated>2010-05-14T00:52:37.392-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">CSS</category><title>Quitar borde punteado de los links</title><description>Cuando damos clic a un vínculo ya sea encima de un texto o una imagen sale un borde punteado alrededor como en este ejemplo:&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;img3&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhCEergyy8kWl8uKDzez2zmSytCpUaHuf74bgfEgvq4ZXLotCKyzMIKjrdi0XPnv0ytW7NEZO-gvu0zTNRW6spRhKJfPNSrRFe7quwY6xxt0bDf_Y8ryQ_2KWg7vV3kftLXPunhuRCb6qM/&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhCEergyy8kWl8uKDzez2zmSytCpUaHuf74bgfEgvq4ZXLotCKyzMIKjrdi0XPnv0ytW7NEZO-gvu0zTNRW6spRhKJfPNSrRFe7quwY6xxt0bDf_Y8ryQ_2KWg7vV3kftLXPunhuRCb6qM/&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;
Para evitar esto basta con agregar a nuestro link:&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;style=&quot;outline:none;&quot;&amp;nbsp; &lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
O a nuestra hoja de estilos:&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;a:active{&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; outline:none;&lt;br /&gt;
}&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
Y si en firefox no se deja, pues sólo pon: &quot;-moz-outline-style:none;&quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhCEergyy8kWl8uKDzez2zmSytCpUaHuf74bgfEgvq4ZXLotCKyzMIKjrdi0XPnv0ytW7NEZO-gvu0zTNRW6spRhKJfPNSrRFe7quwY6xxt0bDf_Y8ryQ_2KWg7vV3kftLXPunhuRCb6qM/&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; outline-color: -moz-use-text-color; outline-style: none; outline-width: medium;&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhCEergyy8kWl8uKDzez2zmSytCpUaHuf74bgfEgvq4ZXLotCKyzMIKjrdi0XPnv0ytW7NEZO-gvu0zTNRW6spRhKJfPNSrRFe7quwY6xxt0bDf_Y8ryQ_2KWg7vV3kftLXPunhuRCb6qM/&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/span&gt;</description><link>http://newbiesenses.blogspot.com/2009/09/quitar-borde-punteado-de-los-links.html</link><author>noreply@blogger.com (Anonymous)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhCEergyy8kWl8uKDzez2zmSytCpUaHuf74bgfEgvq4ZXLotCKyzMIKjrdi0XPnv0ytW7NEZO-gvu0zTNRW6spRhKJfPNSrRFe7quwY6xxt0bDf_Y8ryQ_2KWg7vV3kftLXPunhuRCb6qM/s72-c" height="72" width="72"/><thr:total>4</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7330440595119334897.post-4751758960648487253</guid><pubDate>Sat, 26 Sep 2009 16:03:00 +0000</pubDate><atom:updated>2009-09-26T20:51:31.953-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Vagando en la ciudad</category><title>Lluvia... Luvia...</title><description>&lt;div style=&quot;text-align: justify;&quot;&gt;Hoy la mañana estuvo fresca y empezó a llover no tendrá mucho, sino fuera porque cuando salgo a la calle y se llenan hasta la altura de la banqueta de agua sus bordes gracias a que las coladeras están tapadas, todo estaría bien.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp; Ahora que lo pienso la gente dice cosas como &quot;es que la gente tira al basura por al calle&quot; y es cierto, pero ahora veamos un detalle: esta ciudad casi no tiene botes para la basura, si acaso en las avenidas grandes y vaya sorpresa: un bote en promedio.&lt;br /&gt;
&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp; Hay zonas donde puedes caminar un buen tramo con una bolsa de cacahuates vacía en la mano y nunca encontrar un misero bote de basura.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp; Tiene un rato que compre goma de mascar en el centro, caminé rumbo a la parada de el camión que me lleva a la escuela, con la envoltura en mano, a medio camino encontré un bote que puso municipio destinado a eso y muy decidido me dispuse a tirar la envoltura de papel laminado y hasta lo tire desde lejos ,el tino fué bueno, la sorpresa vino cuando vi que caía al suelo después de haber entrado tan perfectamente... El tan elegantemente hecho bote para la basura del parque no tenía fondo...&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;</description><link>http://newbiesenses.blogspot.com/2009/09/hoy-la-manana-estuvo-fresca-y-empezo.html</link><author>noreply@blogger.com (Anonymous)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7330440595119334897.post-6274879707132383425</guid><pubDate>Fri, 25 Sep 2009 15:43:00 +0000</pubDate><atom:updated>2009-09-26T20:43:35.419-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">De sitio en sitio</category><title>COLOURlovers</title><description>&lt;div style=&quot;text-align: justify;&quot;&gt;Tiene dos años que vi por primera vez que como se hacían &lt;i&gt;lineart &lt;/i&gt;y vi la curiosa y muy útil página de COLOURlovers, una fuente de recursos como paleta y patrones y muy usada por diseñadores web.&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;img src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjSD_AdaSmVYa-kW5vwJOUSgH4IiRHONtPfp05KaLKykTcsx6xcn6s4uc4vwj_ZnGIchXEGW4I5fBuWyvXdKqr9bokWE3bF10QmXMfSF-7gU34UdkZS4jruz_xT0fsnS7St6Z4dbr5hHd4/s320/COLOURlovers%20--%20Color%20Trends%20+%20Palettes_1253895844141.jpg&quot; /&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;Aquí podras crear paletas de colores y encontrar combinaciones de colores que te sirvan de referencia a la hora de realizar tus combinaciones. Actualmente presenta dos nuevas herramientas, una basada en escoger colores de fotografías desde un conocido &lt;i&gt;image hosting&lt;/i&gt;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://www.colourlovers.com/&quot; target=&quot;_blank&quot;&gt;Clic para visitar&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/span&gt;</description><link>http://newbiesenses.blogspot.com/2009/09/colourlovers.html</link><author>noreply@blogger.com (Anonymous)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjSD_AdaSmVYa-kW5vwJOUSgH4IiRHONtPfp05KaLKykTcsx6xcn6s4uc4vwj_ZnGIchXEGW4I5fBuWyvXdKqr9bokWE3bF10QmXMfSF-7gU34UdkZS4jruz_xT0fsnS7St6Z4dbr5hHd4/s72-c/COLOURlovers%20--%20Color%20Trends%20+%20Palettes_1253895844141.jpg" height="72" width="72"/><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7330440595119334897.post-2736556901206036563</guid><pubDate>Fri, 25 Sep 2009 12:08:00 +0000</pubDate><atom:updated>2009-09-26T21:04:03.339-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">wallpapers</category><title>Wallpapers - Stalagmites</title><description>&lt;div class=&quot;img2&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;125&quot; src=&quot;http://th04.deviantart.net/fs44/300W/f/2009/128/0/1/Stalagmites_by_ArinThoughts.png&quot; width=&quot;200&quot; /&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://www.deviantart.com/download/121897266/Stalagmites_by_ArinThoughts.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot; target=&quot;_blank&quot;&gt;1280x800 px&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;blockquote&gt;No te olvides de comentar, gracias ;D. &lt;i&gt;Don&#39;t forget to comment, thanks ;D.&lt;/i&gt;&lt;br /&gt;
&lt;/blockquote&gt;&lt;/span&gt;</description><link>http://newbiesenses.blogspot.com/2009/09/wallpapers-stalagmites-1280x800-px.html</link><author>noreply@blogger.com (Anonymous)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7330440595119334897.post-5021444658462819956</guid><pubDate>Fri, 25 Sep 2009 11:59:00 +0000</pubDate><atom:updated>2009-09-26T21:04:36.540-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">wallpapers</category><title>Wallpapers - Paradise (1280x800 px)</title><description>&lt;div style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;125&quot; src=&quot;http://th08.deviantart.net/fs42/300W/i/2009/137/3/1/Paradise_by_ArinThoughts.png&quot; width=&quot;200&quot; /&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://www.deviantart.com/download/122855302/Paradise_by_ArinThoughts.rar&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot; target=&quot;_blank&quot;&gt;Descargar/&lt;i&gt;Download&lt;/i&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;blockquote&gt;No te olvides de comentar, gracias ;D. &lt;i&gt;Don&#39;t forget to comment, thanks ;D.&lt;/i&gt;&lt;br /&gt;
&lt;/blockquote&gt;&lt;/span&gt;</description><link>http://newbiesenses.blogspot.com/2009/09/wallpapers-paradise-1280x800-px.html</link><author>noreply@blogger.com (Anonymous)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7330440595119334897.post-1809137220385634922</guid><pubDate>Fri, 25 Sep 2009 10:51:00 +0000</pubDate><atom:updated>2009-09-26T21:07:03.796-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">wallpapers</category><title>Wallpapers - Retro Spring (1024x768 px)</title><description>¿Buscas algo simple y agradable a la vista para tu escritorio? Aquí están de los primeros fondos de escritorio vectoriales que hice. Clic en la imagen que quieras.&lt;br /&gt;
&lt;br /&gt;
&lt;span style=&quot;font-style: italic;&quot;&gt;¿Are you looking for something nice and simple&lt;/span&gt;&lt;span style=&quot;font-style: italic;&quot;&gt; for your PC desktop? &lt;/span&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;These are the first vector wallpapers I made&lt;/span&gt;. &lt;span style=&quot;font-style: italic;&quot;&gt;Click in the image that you like.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://th05.deviantart.net/fs32/150/f/2008/191/d/c/Retro_Spring_by_ArinThoughts.jpg&quot; /&gt; &lt;img border=&quot;0&quot; src=&quot;http://th02.deviantart.net/fs31/150/i/2008/191/2/e/Retro_Spring_2_by_ArinThoughts.jpg&quot; /&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://th09.deviantart.net/fs31/150/f/2008/191/f/7/Retro_Spring_3_by_ArinThoughts.jpg&quot; /&gt; &lt;img border=&quot;0&quot; src=&quot;http://th09.deviantart.net/fs31/150/f/2008/191/8/d/Retro_Spring_4_by_ArinThoughts.jpg&quot; /&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://www.deviantart.com/download/91217585/Retro_Spring_by_ArinThoughts.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot; target=&quot;_blank&quot;&gt;Retro Spring #1&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://www.deviantart.com/download/91219436/Retro_Spring_2_by_ArinThoughts.jpg&quot; target=&quot;_blank&quot;&gt;Retro Spring #2&lt;/a&gt;&lt;span id=&quot;goog_1253875689268&quot;&gt;&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://www.deviantart.com/download/91219772/Retro_Spring_3_by_ArinThoughts.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot; target=&quot;_blank&quot;&gt;Retro Spring #3&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://www.deviantart.com/download/91220089/Retro_Spring_4_by_ArinThoughts.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot; target=&quot;_blank&quot;&gt;Retro Spring #4&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;blockquote&gt;No te olvides de comentar, gracias ;D. &lt;i&gt;Don&#39;t forget to comment, thanks ;D.&lt;/i&gt;&lt;br /&gt;
&lt;/blockquote&gt;&lt;/span&gt;</description><link>http://newbiesenses.blogspot.com/2009/09/wallpapers-retro-spring.html</link><author>noreply@blogger.com (Anonymous)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7330440595119334897.post-379340444506698515</guid><pubDate>Fri, 25 Sep 2009 04:28:00 +0000</pubDate><atom:updated>2009-09-25T08:15:23.519-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Una mirada al mundo</category><title>Andando por ahi... Sindy Rose</title><description>Andaba por ahi checando el deviant y me tope con actualizaciones de la galería de Squirrelondope, ultimamente de mis fotografos favoritos, todo esto de la mano de Sindy Rose originaria de alemania.&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;I was watching my deviant today *u* and i found this pictures from Squirrelondope&#39;s Gallery, Sindy Rose lives in Germany and her pictures are so good.&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://th06.deviantart.net/fs50/150/i/2009/264/9/9/Desire__by_Squirrelondope.jpg&quot; /&gt;&lt;img border=&quot;0&quot; src=&quot;http://th00.deviantart.net/fs51/150/i/2009/267/6/9/Let_there_be_Light_by_Squirrelondope.jpg&quot; /&gt;&lt;img border=&quot;0&quot; src=&quot;http://th05.deviantart.net/fs50/150/i/2009/260/1/6/Beyond__by_Squirrelondope.jpg&quot; /&gt;&lt;br /&gt;
&lt;img border=&quot;0&quot; src=&quot;http://th07.deviantart.net/fs48/150/i/2009/201/1/3/Breathe_by_Squirrelondope.jpg&quot; /&gt;&lt;img border=&quot;0&quot; src=&quot;http://th09.deviantart.net/fs50/150/i/2009/260/5/e/Swirl__by_Squirrelondope.jpg&quot; /&gt;&lt;img border=&quot;0&quot; src=&quot;http://th08.deviantart.net/fs51/150/i/2009/260/7/5/Deep_by_Squirrelondope.jpg&quot; /&gt;&lt;br /&gt;
&lt;img border=&quot;0&quot; src=&quot;http://th07.deviantart.net/fs47/150/i/2009/171/2/a/Let__s_Paint_The_Town_Red_by_Squirrelondope.jpg&quot; /&gt;&lt;img border=&quot;0&quot; src=&quot;http://th05.deviantart.net/fs42/150/i/2009/154/a/0/Summer_ID_by_Squirrelondope.jpg&quot; /&gt;&lt;img border=&quot;0&quot; src=&quot;http://th01.deviantart.net/fs43/150/i/2009/132/a/7/Fill_My_Little_World_by_Squirrelondope.jpg&quot; /&gt;&lt;/div&gt;&lt;br /&gt;
Puedes visitar su galería (&lt;i&gt;click to visit her gallery&lt;/i&gt;):&lt;br /&gt;
&lt;div class=&quot;img2&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://squirrelondope.deviantart.com/gallery/&quot; target=&quot;_blank&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://a.deviantart.net/avatars/s/q/squirrelondope.png?1&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;span id=&quot;goog_1253853233323&quot;&gt;&lt;/span&gt;&lt;span id=&quot;goog_1253853233324&quot;&gt;&lt;/span&gt;</description><link>http://newbiesenses.blogspot.com/2009/09/andando-por-ahi-sindy-rose.html</link><author>noreply@blogger.com (Anonymous)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7330440595119334897.post-809704548598790972</guid><pubDate>Fri, 25 Sep 2009 04:01:00 +0000</pubDate><atom:updated>2009-09-26T21:14:16.212-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">acciones</category><category domain="http://www.blogger.com/atom/ns#">actions</category><title>Photoshop Actions - Something...</title><description>&lt;div class=&quot;img2&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://th03.deviantart.net/fs46/300W/i/2009/246/2/e/Something____just_something____by_ArinThoughts.jpg&quot; /&gt;&lt;br /&gt;
&lt;/div&gt;&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;Picture by (thanks Morgan n_n!): &lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;img2&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://morg44.deviantart.com/&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://a.deviantart.net/avatars/m/o/morg44.jpg?1&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://www.deviantart.com/download/135683071/Something____just_something____by_ArinThoughts.rar&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot; target=&quot;_blank&quot;&gt;Descargar/&lt;i&gt;Download&lt;/i&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;blockquote&gt;No te olvides de comentar, gracias ;D. &lt;i&gt;Don&#39;t forget to comment, thanks ;D.&lt;/i&gt;&lt;/blockquote&gt;&lt;/span&gt;</description><link>http://newbiesenses.blogspot.com/2009/09/something.html</link><author>noreply@blogger.com (Anonymous)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7330440595119334897.post-3791789657455909082</guid><pubDate>Fri, 25 Sep 2009 02:34:00 +0000</pubDate><atom:updated>2009-09-25T04:49:26.838-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Pensando...</category><title>Un rato de ocio</title><description>&lt;div style=&quot;text-align: justify;&quot;&gt;Pensando un poco y escribiendo a ratos en &lt;a href=&quot;http://abismoiluminado.blogspot.com/&quot;&gt;El abismo iluminado&lt;/a&gt; me puse a leer unas frases y me encontré con esta:&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;blockquote style=&quot;font-family: Arial,Helvetica,sans-serif;&quot;&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&quot;Escribe para ti mismo, recogido, asombrado&quot;&lt;b&gt; &lt;/b&gt;- Jean-Louis Jack Kerouac&lt;br /&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhp9dWiISL46z3daq-d0dsyNyt7FnI4C7XbkHHbI8goVWRXQItjglhjwN3YJ_y-WUImzo9Av-VUHFL99FsJCafnvOGXpcUN8auA6ysiZR_artofYUnPA13dGYM8UfZqr7kCGR5oMCFRQC4/s1600-h/happy.PNG&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhp9dWiISL46z3daq-d0dsyNyt7FnI4C7XbkHHbI8goVWRXQItjglhjwN3YJ_y-WUImzo9Av-VUHFL99FsJCafnvOGXpcUN8auA6ysiZR_artofYUnPA13dGYM8UfZqr7kCGR5oMCFRQC4/s320/happy.PNG&quot; /&gt;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Y pues efectivamente no hay mejor manera de escribir que buscando una satisfacción personal. Y pues heme aquí con mi taza de café y una sopa caliente a punto de ser devorada.&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&amp;nbsp;&amp;nbsp; Ahora que lo pienso he escrito poesía desde 6to. de primaria, y en serio que espero el cerebro me dé para seguirlo haciendo de aquí a que muera.&lt;br /&gt;&lt;/div&gt;</description><link>http://newbiesenses.blogspot.com/2009/09/tarde-de-ocio.html</link><author>noreply@blogger.com (Anonymous)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhp9dWiISL46z3daq-d0dsyNyt7FnI4C7XbkHHbI8goVWRXQItjglhjwN3YJ_y-WUImzo9Av-VUHFL99FsJCafnvOGXpcUN8auA6ysiZR_artofYUnPA13dGYM8UfZqr7kCGR5oMCFRQC4/s72-c/happy.PNG" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7330440595119334897.post-6886731948229062422</guid><pubDate>Fri, 25 Sep 2009 02:13:00 +0000</pubDate><atom:updated>2009-09-26T21:19:17.724-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">acciones</category><category domain="http://www.blogger.com/atom/ns#">actions</category><title>Photoshop Actions - My first action pack!</title><description>&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEixtpYpiOAT3fFxvBqurJe5aFkdJe6kzX_CDU8AQxFeCC-K1I63IYzUBd_eOTeD89PG1T9Nkges5Dnfthh-SNahregnghke0K7qN3xVm5R7eC6TpYfVQOhQnpAIK1VjyOOEGEm5yIRnx-I/s1600/myfisrtactionpack.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEixtpYpiOAT3fFxvBqurJe5aFkdJe6kzX_CDU8AQxFeCC-K1I63IYzUBd_eOTeD89PG1T9Nkges5Dnfthh-SNahregnghke0K7qN3xVm5R7eC6TpYfVQOhQnpAIK1VjyOOEGEm5yIRnx-I/s320/myfisrtactionpack.png&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://fc02.deviantart.com/fs46/i/2009/235/e/4/My_first_action_pack_by_ArinThoughts.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;206&quot; src=&quot;http://fc02.deviantart.com/fs46/i/2009/235/e/4/My_first_action_pack_by_ArinThoughts.jpg&quot; width=&quot;254&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://www.deviantart.com/download/134425944/My_first_action_pack_by_ArinThoughts.rar&quot;&gt;Descargar / &lt;i&gt;Download&lt;/i&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;blockquote&gt;No te olvides de comentar, gracias ;D. &lt;i&gt;Don&#39;t forget to comment, thanks ;D.&lt;/i&gt;&lt;br /&gt;
&lt;/blockquote&gt;&lt;/span&gt;</description><link>http://newbiesenses.blogspot.com/2009/09/my-first-action-pack.html</link><author>noreply@blogger.com (Anonymous)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEixtpYpiOAT3fFxvBqurJe5aFkdJe6kzX_CDU8AQxFeCC-K1I63IYzUBd_eOTeD89PG1T9Nkges5Dnfthh-SNahregnghke0K7qN3xVm5R7eC6TpYfVQOhQnpAIK1VjyOOEGEm5yIRnx-I/s72-c/myfisrtactionpack.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7330440595119334897.post-6660515863073512385</guid><pubDate>Fri, 25 Sep 2009 01:34:00 +0000</pubDate><atom:updated>2009-09-26T21:21:25.271-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">texturas</category><category domain="http://www.blogger.com/atom/ns#">Textures</category><title>Neon #1</title><description>&lt;div class=&quot;img2&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;200&quot; src=&quot;http://fc00.deviantart.com/fs32/i/2008/197/f/9/NEON_No__1_by_ArinThoughts.jpg&quot; width=&quot;156&quot; /&gt;&lt;br /&gt;
&lt;/div&gt;&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://www.deviantart.com/download/91734815/NEON_No__1_by_ArinThoughts.rar&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot; target=&quot;_blank&quot;&gt;Descargar/&lt;i&gt;Download&lt;/i&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;blockquote&gt;No te olvides de comentar, gracias ;D. &lt;i&gt;Don&#39;t forget to comment, thanks ;D.&lt;/i&gt;&lt;br /&gt;
&lt;/blockquote&gt;&lt;/span&gt;</description><link>http://newbiesenses.blogspot.com/2009/09/neon-1.html</link><author>noreply@blogger.com (Anonymous)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7330440595119334897.post-3472213191891606922</guid><pubDate>Fri, 25 Sep 2009 01:02:00 +0000</pubDate><atom:updated>2009-09-26T21:41:13.527-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">texturas</category><category domain="http://www.blogger.com/atom/ns#">Textures</category><title>Blur me!</title><description>&lt;div class=&quot;img2&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;79&quot; src=&quot;http://fc07.deviantart.com/fs31/i/2008/197/8/a/Blur_me_by_ArinThoughts.jpg&quot; width=&quot;200&quot; /&gt;&lt;br /&gt;
&lt;/div&gt;&lt;span class=&quot;fullpost&quot;&gt;&lt;br /&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://www.deviantart.com/download/91734118/Blur_me_by_ArinThoughts.rar&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot; target=&quot;_blank&quot;&gt;Descargar/&lt;i&gt;Download&lt;/i&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;blockquote&gt;No te olvides de comentar, gracias ;D. &lt;i&gt;Don&#39;t forget to comment, thanks ;D.&lt;/i&gt;&lt;br /&gt;
&lt;/blockquote&gt;&lt;/span&gt;</description><link>http://newbiesenses.blogspot.com/2009/09/blur-me.html</link><author>noreply@blogger.com (Anonymous)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7330440595119334897.post-2680310243825200444</guid><pubDate>Fri, 25 Sep 2009 00:52:00 +0000</pubDate><atom:updated>2009-09-26T21:46:26.153-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">texturas</category><category domain="http://www.blogger.com/atom/ns#">Textures</category><title>Abstract textures</title><description>&lt;div class=&quot;img2&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;200&quot; src=&quot;http://fc05.deviantart.com/fs32/i/2008/194/1/4/Abstract_Textures_by_ArinThoughts.png&quot; width=&quot;195&quot; /&gt;&lt;br /&gt;
&lt;/div&gt;&lt;span class=&quot;fullpost&quot;&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://www.deviantart.com/download/91501983/Abstract_Textures_by_ArinThoughts.rar&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot; target=&quot;_blank&quot;&gt;Descargar/&lt;i&gt;Download&lt;/i&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;blockquote&gt;No te olvides de comentar, gracias ;D. &lt;i&gt;Don&#39;t forget to comment, thanks ;D.&lt;/i&gt;&lt;br /&gt;
&lt;/blockquote&gt;&lt;/span&gt;</description><link>http://newbiesenses.blogspot.com/2009/09/abstract-textures.html</link><author>noreply@blogger.com (Anonymous)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7330440595119334897.post-1773514374267410148</guid><pubDate>Thu, 24 Sep 2009 23:25:00 +0000</pubDate><atom:updated>2009-09-25T07:04:20.516-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">patrones</category><category domain="http://www.blogger.com/atom/ns#">Patterns</category><title>Pattern pack no. 1</title><description>&lt;div style=&quot;text-align: justify;&quot;&gt;Bueno este es el primer patrón que hice, espero sirva de algo, saludos. Clic para descargar. &lt;br /&gt;
&lt;/div&gt;&lt;div class=&quot;img2&quot; style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://www.deviantart.com/download/91221097/pattern_pack_No__1_by_ArinThoughts.psd&quot; imageanchor=&quot;1&quot; target=&quot;_blank&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;59&quot; src=&quot;http://fc00.deviantart.com/fs31/i/2008/191/4/c/pattern_pack_No__1_by_ArinThoughts.png&quot; width=&quot;200&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style=&quot;text-align: center;&quot;&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;blockquote&gt;No te olvides de comentar, gracias ;D. &lt;i&gt;Don&#39;t forget to comment, thanks ;D.&lt;/i&gt;&lt;br /&gt;
&lt;/blockquote&gt;</description><link>http://newbiesenses.blogspot.com/2009/09/prueba_24.html</link><author>noreply@blogger.com (Anonymous)</author><thr:total>0</thr:total></item></channel></rss>