<?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>DennsiaDennsia - Tecnología, desarrollo, noticias y otras parras...</title>
	<atom:link href="http://www.dennsia.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dennsia.com</link>
	<description>Tecnología, desarrollo, noticias y otras parras...</description>
	<lastBuildDate>Thu, 12 Apr 2012 07:18:27 +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>iPhone: Tint UIImage</title>
		<link>http://www.dennsia.com/codigo/iphone-tint-uiimage/</link>
		<comments>http://www.dennsia.com/codigo/iphone-tint-uiimage/#comments</comments>
		<pubDate>Thu, 12 Apr 2012 07:11:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Código]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.dennsia.com/?p=409</guid>
		<description><![CDATA[<p>Os dejo la rutina de tintar (tint) una UIImage compatible con retina display (@2x) Podéis hacer una Category para la clase UIImage. De esta manera al hacer el impor del archivo lo puedes utilizar modo: Pasos: - Crear un nuevo archivo del tipo Clase : NSObject - Nombre: UIImage+TintColor. UIImage+TintColor.h UIImage+TintColo</p>
 ]]></description>
			<content:encoded><![CDATA[<p>Os dejo la rutina de tintar (tint) una UIImage compatible con retina display (@2x)</p>
<p></p><pre class="crayon-plain-tag">- (UIImage *)tintWithColor:(UIColor *)tintColor;
{
    UIGraphicsBeginImageContextWithOptions(self.size, NO,[UIScreen mainScreen].scale);
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGRect rect = CGRectMake(0, 0, self.size.width, self.size.height);
    
    //.s. original pic
    [self drawInRect:rect blendMode:kCGBlendModeNormal alpha:1.0f];
    
    CGContextSetBlendMode(context, kCGBlendModeOverlay);
    [tintColor setFill];
    CGContextFillRect(context, rect);
    
    //.s. mask by alpha values of original image
    [self drawInRect:rect blendMode:kCGBlendModeDestinationIn alpha:1.0f];
    
    UIImage *tintedImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return tintedImage;
}</pre><p></p>
<p>Podéis hacer una Category para la clase UIImage. De esta manera al hacer el impor del archivo lo puedes utilizar modo:</p>
<p></p><pre class="crayon-plain-tag">UIImage * img = [[UIImage imageNamed:@&quot;miimagen.png&quot;] tintedImageUsingColor:[UIColor redColor]];</pre><p></p>
<p>Pasos:<br />
- Crear un nuevo archivo del tipo Clase : NSObject<br />
- Nombre: UIImage+TintColor.</p>
<p><b>UIImage+TintColor.h</b></p><pre class="crayon-plain-tag">//
//  UIImage+TintColor.h
//  blovery
//
//  Created by Sergio Cano Moreno on 11/04/12.
//  Copyright (c) 2012 Ninecols. All rights reserved.
//

#import &lt;Foundation/Foundation.h&gt;

@interface UIImage(TintColor)

+ (UIImage *)imageNamed:(NSString *)name tintWithColor:(UIColor *)color;

- (UIImage *)tintWithColor:(UIColor *)tintColor;

@end</pre><p></p>
<p><b>UIImage+TintColo</b></p>
<p></p><pre class="crayon-plain-tag">//
//  UIImage+TintColor.m
//  blovery
//
//  Created by Sergio Cano Moreno on 11/04/12.
//  Copyright (c) 2012 Ninecols. All rights reserved.
//

#import &quot;UIImage+TintColor.h&quot;

@implementation UIImage(TintColor)

+ (UIImage *)imageNamed:(NSString *)name tintWithColor:(UIColor *)color {
    UIImage *img = [UIImage imageNamed:name];
    return [img tintWithColor:color];
    
}

- (UIImage *)tintWithColor:(UIColor *)tintColor;
{
    UIGraphicsBeginImageContextWithOptions(self.size, NO,[UIScreen mainScreen].scale);
    CGContextRef context = UIGraphicsGetCurrentContext();
    CGRect rect = CGRectMake(0, 0, self.size.width, self.size.height);
    
    //.s. original pic
    [self drawInRect:rect blendMode:kCGBlendModeNormal alpha:1.0f];
    
    CGContextSetBlendMode(context, kCGBlendModeOverlay);
    [tintColor setFill];
    CGContextFillRect(context, rect);
    
    //.s. mask by alpha values of original image
    [self drawInRect:rect blendMode:kCGBlendModeDestinationIn alpha:1.0f];
    
    UIImage *tintedImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    return tintedImage;
}
@end</pre><p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dennsia.com/codigo/iphone-tint-uiimage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Minutos de paz</title>
		<link>http://www.dennsia.com/videos/minutos-de-paz/</link>
		<comments>http://www.dennsia.com/videos/minutos-de-paz/#comments</comments>
		<pubDate>Tue, 27 Mar 2012 18:40:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Videos]]></category>
		<category><![CDATA[paz]]></category>

		<guid isPermaLink="false">http://www.dennsia.com/?p=404</guid>
		<description><![CDATA[<p>The Arctic Light from TSO Photography on Vimeo.</p>
 ]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://player.vimeo.com/video/24456787?title=0&amp;byline=0&amp;portrait=0" width="640" height="400" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<p><a href="http://vimeo.com/24456787">The Arctic Light</a> from <a href="http://vimeo.com/terjes">TSO Photography</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dennsia.com/videos/minutos-de-paz/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone: Icono de notificaciones (badges)</title>
		<link>http://www.dennsia.com/codigo/iphone-icono-de-notificaciones-badges/</link>
		<comments>http://www.dennsia.com/codigo/iphone-icono-de-notificaciones-badges/#comments</comments>
		<pubDate>Mon, 26 Mar 2012 10:16:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Código]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[codigo]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.dennsia.com/?p=402</guid>
		<description><![CDATA[<p>Es el número que aparece encima del icono de la aplicación:</p>
 ]]></description>
			<content:encoded><![CDATA[<p>Es el número que aparece encima del icono de la aplicación:</p>
<p><img src="http://iphonedevelopertips.com/wp-content/uploads/2009/08/badge1.png" /></p>
<p></p><pre class="crayon-plain-tag">[[UIApplication sharedApplication] setApplicationIconBadgeNumber:99];</pre><p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dennsia.com/codigo/iphone-icono-de-notificaciones-badges/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone: Borde a un UIView (stroke)</title>
		<link>http://www.dennsia.com/codigo/iphone-borde-a-un-uiview-stroke/</link>
		<comments>http://www.dennsia.com/codigo/iphone-borde-a-un-uiview-stroke/#comments</comments>
		<pubDate>Sun, 25 Mar 2012 17:36:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Código]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[codigo]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.dennsia.com/?p=399</guid>
		<description><![CDATA[ ]]></description>
			<content:encoded><![CDATA[<p></p><pre class="crayon-plain-tag">#import &lt;QuartzCore/QuartzCore.h&gt;

//...

img.layer.borderWidth = 0.7;
img.layer.borderColor = [[UIColor colorWithRed:0 green:0 blue:0 alpha:0.7] CGColor];</pre><p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dennsia.com/codigo/iphone-borde-a-un-uiview-stroke/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone: Cantos redondeados (round corners)</title>
		<link>http://www.dennsia.com/codigo/iphone-cantos-redondeados-round-corners/</link>
		<comments>http://www.dennsia.com/codigo/iphone-cantos-redondeados-round-corners/#comments</comments>
		<pubDate>Sun, 25 Mar 2012 17:32:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Código]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[codigo]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.dennsia.com/?p=397</guid>
		<description><![CDATA[<p>Hacer los cantos redondos a cualquier UIView. Requiere el import de QuartzCore:</p>
 ]]></description>
			<content:encoded><![CDATA[<p>Hacer los cantos redondos a cualquier UIView.<br />
Requiere el import de QuartzCore:</p>
<p></p><pre class="crayon-plain-tag">#import &lt;QuartzCore/QuartzCore.h&gt;

//...

view.layer.cornerRadius = 20.0;</pre><p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dennsia.com/codigo/iphone-cantos-redondeados-round-corners/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone: Imágenes con zonas que no se reescalan (NinePatch)</title>
		<link>http://www.dennsia.com/codigo/iphone-imagenes-con-zonas-que-no-se-reescalan-ninepatch/</link>
		<comments>http://www.dennsia.com/codigo/iphone-imagenes-con-zonas-que-no-se-reescalan-ninepatch/#comments</comments>
		<pubDate>Sun, 25 Mar 2012 17:21:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Código]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[codigo]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.dennsia.com/?p=392</guid>
		<description><![CDATA[<p>El tema es una imagen que tiene zonas que no se reescalan (cap). El parámetros son floats y van en orden: top, left, bottom, right. Son las distancias en las que no se aplicará la repetición.</p>
 ]]></description>
			<content:encoded><![CDATA[<p>El tema es una imagen que tiene zonas que no se reescalan (cap). El parámetros son floats y van en orden: <b>top, left, bottom, right</b>. Son las distancias en las que no se aplicará la repetición.</p>
<p><img src="http://iphonedevelopertips.com/wp-content/uploads/2011/12/button0.gif" /><br />
<img src="http://iphonedevelopertips.com/wp-content/uploads/2011/12/button1.gif" /></p>
<p></p><pre class="crayon-plain-tag">UIImage *buttonImage = [[UIImage imageNamed:@&quot;blueButton&quot;]  
   resizableImageWithCapInsets:UIEdgeInsetsMake(0, 16, 0, 16)];

//.s. tambien

[buttonBackgroundImage stretchableImageWithLeftCapWidth:33 topCapHeight:0];</pre><p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dennsia.com/codigo/iphone-imagenes-con-zonas-que-no-se-reescalan-ninepatch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone: repetir una imagen (image tile)</title>
		<link>http://www.dennsia.com/codigo/iphone-repetir-una-imagen-image-tile/</link>
		<comments>http://www.dennsia.com/codigo/iphone-repetir-una-imagen-image-tile/#comments</comments>
		<pubDate>Sun, 25 Mar 2012 17:06:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Código]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[codigo]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.dennsia.com/?p=385</guid>
		<description><![CDATA[<p>El objetivo es hacer que una imagen se repita dentro de una UIView: Antes de iOS 5: iOS 5+</p>
 ]]></description>
			<content:encoded><![CDATA[<p>El objetivo es hacer que una imagen se repita dentro de una UIView:</p>
<p>Antes de iOS 5:</p>
<p></p><pre class="crayon-plain-tag">[uimageview setBackgroundColor:[UIColor colorWithPatternImage:uiimage]];</pre><p></p>
<p>iOS 5+</p><pre class="crayon-plain-tag">imageView.image = [uiimage resizableImageWithCapInsets:UIEdgeInsetsMake(0.0, 0.0, 0.0, 0.0)];</pre><p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dennsia.com/codigo/iphone-repetir-una-imagen-image-tile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone: Añadir sombra UIView</title>
		<link>http://www.dennsia.com/codigo/iphone-anadir-sombra-uiview/</link>
		<comments>http://www.dennsia.com/codigo/iphone-anadir-sombra-uiview/#comments</comments>
		<pubDate>Sun, 25 Mar 2012 16:49:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Código]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[codigo]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.dennsia.com/?p=375</guid>
		<description><![CDATA[<p>Necesitamos el import de QuartzCore que pondremos en el archivo.h Luego, aplicamos la sombra a cualquier UIView</p>
 ]]></description>
			<content:encoded><![CDATA[<p>Necesitamos el import de QuartzCore que pondremos en el <strong>archivo.h</strong></p>
<p></p><pre class="crayon-plain-tag">#import &lt;QuartzCore/QuartzCore.h&gt;</pre><p></p>
<p>Luego, aplicamos la sombra a cualquier UIView</p>
<p></p><pre class="crayon-plain-tag">imageView.layer.shadowColor = [[UIColor blackColor] CGColor];
imageView.layer.shadowOffset = CGSizeMake(0.0, 0.0);
imageView.layer.shadowRadius = 1.0;
imageView.layer.shadowOpacity = 0.3;</pre><p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dennsia.com/codigo/iphone-anadir-sombra-uiview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone: macros</title>
		<link>http://www.dennsia.com/codigo/iphone-macros/</link>
		<comments>http://www.dennsia.com/codigo/iphone-macros/#comments</comments>
		<pubDate>Sun, 25 Mar 2012 16:45:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Código]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[codigo]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.dennsia.com/?p=373</guid>
		<description><![CDATA[ ]]></description>
			<content:encoded><![CDATA[<p></p><pre class="crayon-plain-tag">#define kBtHome	0
#define kElNombre   @&quot;El String&quot;</pre><p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dennsia.com/codigo/iphone-macros/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone: animar un UIView</title>
		<link>http://www.dennsia.com/codigo/iphone-animar-un-uiview/</link>
		<comments>http://www.dennsia.com/codigo/iphone-animar-un-uiview/#comments</comments>
		<pubDate>Sun, 25 Mar 2012 16:41:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Código]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[codigo]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.dennsia.com/?p=369</guid>
		<description><![CDATA[ ]]></description>
			<content:encoded><![CDATA[<p></p><pre class="crayon-plain-tag">[UIView animateWithDuration:1.0
                      delay:0.0
                    options:UIViewAnimationCurveEaseInOut
                 animations:^ {
                     bgDisplay.alpha = 0.0;
                 }
                 completion:^(BOOL finished) {
                     bgDisplay.hidden = YES;
                 }];</pre><p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dennsia.com/codigo/iphone-animar-un-uiview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone: Network Activity Indicator</title>
		<link>http://www.dennsia.com/codigo/iphone-network-activity/</link>
		<comments>http://www.dennsia.com/codigo/iphone-network-activity/#comments</comments>
		<pubDate>Sun, 25 Mar 2012 15:44:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Código]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.dennsia.com/?p=354</guid>
		<description><![CDATA[<p>Es el spinner que aparece en el status bar que se utiliza para indicar actividad:</p>
 ]]></description>
			<content:encoded><![CDATA[<p>Es el spinner que aparece en el status bar que se utiliza para indicar actividad:</p>
<p></p><pre class="crayon-plain-tag">[UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
[UIApplication sharedApplication].networkActivityIndicatorVisible = NO;</pre><p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dennsia.com/codigo/iphone-network-activity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ninecols</title>
		<link>http://www.dennsia.com/default/ninecols/</link>
		<comments>http://www.dennsia.com/default/ninecols/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 11:03:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Default]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[ninecols]]></category>

		<guid isPermaLink="false">http://www.dennsia.com/?p=326</guid>
		<description><![CDATA[<p>Cada vez va cogiendo más forma la web de ninecols Parece que la cosa va cuajando.</p>
 ]]></description>
			<content:encoded><![CDATA[<p>Cada vez va cogiendo más forma la web de <a href="http://www.ninecols.es">ninecols</a></p>
<p>Parece que la cosa va cuajando.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dennsia.com/default/ninecols/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thermaltake Frio</title>
		<link>http://www.dennsia.com/varios/thermaltake-frio/</link>
		<comments>http://www.dennsia.com/varios/thermaltake-frio/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 08:49:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Varios]]></category>
		<category><![CDATA[disipador]]></category>
		<category><![CDATA[frio]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[thermaltake]]></category>

		<guid isPermaLink="false">http://www.dennsia.com/?p=300</guid>
		<description><![CDATA[<p>Aquí os dejo el montaje del Thermaltake Frio:</p>
 ]]></description>
			<content:encoded><![CDATA[<p>Aquí os dejo el montaje del Thermaltake Frio:<br />

<a href='http://www.dennsia.com/varios/thermaltake-frio/attachment/2010-07-21_19-32-11_633-1024x768/' title='2010-07-21_19-32-11_633 [1024x768]'><img src="http://www.dennsia.com/wp-content/uploads/2010/07/2010-07-21_19-32-11_633-1024x768.jpg" class="attachment-thumbnail" alt="2010-07-21_19-32-11_633 [1024x768]" title="2010-07-21_19-32-11_633 [1024x768]" /></a>
<a href='http://www.dennsia.com/varios/thermaltake-frio/attachment/2010-07-21_19-32-24_386-1024x768/' title='2010-07-21_19-32-24_386 [1024x768]'><img src="http://www.dennsia.com/wp-content/uploads/2010/07/2010-07-21_19-32-24_386-1024x768.jpg" class="attachment-thumbnail" alt="2010-07-21_19-32-24_386 [1024x768]" title="2010-07-21_19-32-24_386 [1024x768]" /></a>
<a href='http://www.dennsia.com/varios/thermaltake-frio/attachment/2010-07-21_19-32-44_733-1024x768/' title='2010-07-21_19-32-44_733 [1024x768]'><img src="http://www.dennsia.com/wp-content/uploads/2010/07/2010-07-21_19-32-44_733-1024x768.jpg" class="attachment-thumbnail" alt="2010-07-21_19-32-44_733 [1024x768]" title="2010-07-21_19-32-44_733 [1024x768]" /></a>
<a href='http://www.dennsia.com/varios/thermaltake-frio/attachment/2010-07-21_19-49-45_88-1024x768/' title='2010-07-21_19-49-45_88 [1024x768]'><img src="http://www.dennsia.com/wp-content/uploads/2010/07/2010-07-21_19-49-45_88-1024x768.jpg" class="attachment-thumbnail" alt="2010-07-21_19-49-45_88 [1024x768]" title="2010-07-21_19-49-45_88 [1024x768]" /></a>
<a href='http://www.dennsia.com/varios/thermaltake-frio/attachment/2010-07-21_19-59-47_921-1024x768/' title='2010-07-21_19-59-47_921 [1024x768]'><img src="http://www.dennsia.com/wp-content/uploads/2010/07/2010-07-21_19-59-47_921-1024x768.jpg" class="attachment-thumbnail" alt="2010-07-21_19-59-47_921 [1024x768]" title="2010-07-21_19-59-47_921 [1024x768]" /></a>
<a href='http://www.dennsia.com/varios/thermaltake-frio/attachment/2010-07-21_20-07-06_757-1024x768/' title='2010-07-21_20-07-06_757 [1024x768]'><img src="http://www.dennsia.com/wp-content/uploads/2010/07/2010-07-21_20-07-06_757-1024x768.jpg" class="attachment-thumbnail" alt="2010-07-21_20-07-06_757 [1024x768]" title="2010-07-21_20-07-06_757 [1024x768]" /></a>
<a href='http://www.dennsia.com/varios/thermaltake-frio/attachment/2010-07-21_20-06-42_569-1024x768/' title='2010-07-21_20-06-42_569 [1024x768]'><img src="http://www.dennsia.com/wp-content/uploads/2010/07/2010-07-21_20-06-42_569-1024x768.jpg" class="attachment-thumbnail" alt="2010-07-21_20-06-42_569 [1024x768]" title="2010-07-21_20-06-42_569 [1024x768]" /></a>
<a href='http://www.dennsia.com/varios/thermaltake-frio/attachment/2010-07-21_20-00-36_46-1024x768/' title='2010-07-21_20-00-36_46 [1024x768]'><img src="http://www.dennsia.com/wp-content/uploads/2010/07/2010-07-21_20-00-36_46-1024x768.jpg" class="attachment-thumbnail" alt="2010-07-21_20-00-36_46 [1024x768]" title="2010-07-21_20-00-36_46 [1024x768]" /></a>
<a href='http://www.dennsia.com/varios/thermaltake-frio/attachment/2010-07-21_20-00-22_812-1024x768/' title='2010-07-21_20-00-22_812 [1024x768]'><img src="http://www.dennsia.com/wp-content/uploads/2010/07/2010-07-21_20-00-22_812-1024x768.jpg" class="attachment-thumbnail" alt="2010-07-21_20-00-22_812 [1024x768]" title="2010-07-21_20-00-22_812 [1024x768]" /></a>
<a href='http://www.dennsia.com/varios/thermaltake-frio/attachment/2010-07-21_20-22-37_970-1024x768/' title='2010-07-21_20-22-37_970 [1024x768]'><img src="http://www.dennsia.com/wp-content/uploads/2010/07/2010-07-21_20-22-37_970-1024x768.jpg" class="attachment-thumbnail" alt="2010-07-21_20-22-37_970 [1024x768]" title="2010-07-21_20-22-37_970 [1024x768]" /></a>
<a href='http://www.dennsia.com/varios/thermaltake-frio/attachment/2010-07-21_20-24-56_296-1024x768/' title='2010-07-21_20-24-56_296 [1024x768]'><img src="http://www.dennsia.com/wp-content/uploads/2010/07/2010-07-21_20-24-56_296-1024x768.jpg" class="attachment-thumbnail" alt="2010-07-21_20-24-56_296 [1024x768]" title="2010-07-21_20-24-56_296 [1024x768]" /></a>
<a href='http://www.dennsia.com/varios/thermaltake-frio/attachment/2010-07-21_21-04-56_239-1024x768/' title='2010-07-21_21-04-56_239 [1024x768]'><img src="http://www.dennsia.com/wp-content/uploads/2010/07/2010-07-21_21-04-56_239-1024x768.jpg" class="attachment-thumbnail" alt="2010-07-21_21-04-56_239 [1024x768]" title="2010-07-21_21-04-56_239 [1024x768]" /></a>
<a href='http://www.dennsia.com/varios/thermaltake-frio/attachment/2010-07-21_21-04-43_405-1024x768/' title='2010-07-21_21-04-43_405 [1024x768]'><img src="http://www.dennsia.com/wp-content/uploads/2010/07/2010-07-21_21-04-43_405-1024x768.jpg" class="attachment-thumbnail" alt="2010-07-21_21-04-43_405 [1024x768]" title="2010-07-21_21-04-43_405 [1024x768]" /></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dennsia.com/varios/thermaltake-frio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ssshhh&#8230;</title>
		<link>http://www.dennsia.com/varios/ssshhh/</link>
		<comments>http://www.dennsia.com/varios/ssshhh/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 07:58:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Varios]]></category>

		<guid isPermaLink="false">http://www.dennsia.com/?p=220</guid>
		<description><![CDATA[<p>Es preferible callar y pasar por idiota, que hablar y demostrarlo.</p>
 ]]></description>
			<content:encoded><![CDATA[<blockquote><p>Es preferible callar y pasar por idiota, que hablar y demostrarlo.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.dennsia.com/varios/ssshhh/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

