<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:georss="http://www.georss.org/georss" xmlns:gml="http://www.opengis.net/gml" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" xml:lang="en" xml:base="http://www.forgottenprojects.com/wp-atom.php">
	<title type="text">Blog personal de Fernando F. Gallego</title>
	<subtitle type="text">Devigner: 1/3 developer, 1/3 designer, 1/3 serial killer</subtitle>

	<updated>2010-08-27T11:56:28Z</updated>
	<generator uri="http://wordpress.org/" version="2.8.6">WordPress</generator>

	<link rel="alternate" type="text/html" href="http://www.forgottenprojects.com" />
	<id>http://www.forgottenprojects.com/feed/atom/</id>
	

			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/ThreeHeadedMonkeys" /><feedburner:info uri="threeheadedmonkeys" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Android: Formas de manejar un evento]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/VIzUALgl9L8/" />
		<id>http://www.forgottenprojects.com/?p=650</id>
		<updated>2010-08-27T11:54:40Z</updated>
		<published>2010-08-24T11:57:59Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Programacion" /><category scheme="http://www.forgottenprojects.com" term="android" />		<summary type="html"><![CDATA[Varias formas de manejar eventos en Android]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/android-formas-de-manejar-un-evento/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fandroid-formas-de-manejar-un-evento%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fandroid-formas-de-manejar-un-evento%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=android" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Escribo esto casi como un recordatorio de las posibles formas de manejar eventos en Android, pongo por caso cómo manejar los eventos OnClick de un botón:&lt;/p&gt;
&lt;p&gt;Inline:&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;1
2
3
4
5
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="java" style="font-family:monospace;"&gt;&lt;span style="color: #000000; font-weight: bold;"&gt;this&lt;/span&gt;.&lt;span style="color: #006633;"&gt;btnCalcular&lt;/span&gt;.&lt;span style="color: #006633;"&gt;setOnClickListener&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #000000; font-weight: bold;"&gt;new&lt;/span&gt; &lt;span style="color: #003399;"&gt;View&lt;/span&gt;.&lt;span style="color: #006633;"&gt;OnClickListener&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;
      &lt;span style="color: #000000; font-weight: bold;"&gt;public&lt;/span&gt; &lt;span style="color: #000066; font-weight: bold;"&gt;void&lt;/span&gt; onClick&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #003399;"&gt;View&lt;/span&gt; v&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;
       	calcularRuta&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
      &lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;
&lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Con un delegado:&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;1
2
3
4
5
6
7
8
9
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="java" style="font-family:monospace;"&gt;&lt;span style="color: #000000; font-weight: bold;"&gt;private&lt;/span&gt; OnClickListener btnMyLocation_OnClick &lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #000000; font-weight: bold;"&gt;new&lt;/span&gt; OnClickListener&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;		
	@Override
	&lt;span style="color: #000000; font-weight: bold;"&gt;public&lt;/span&gt; &lt;span style="color: #000066; font-weight: bold;"&gt;void&lt;/span&gt; onClick&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #003399;"&gt;View&lt;/span&gt; v&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;
		&lt;span style="color: #666666; font-style: italic;"&gt;// Desde aquí no tenemos acceso a la clase &lt;/span&gt;
		&lt;span style="color: #666666; font-style: italic;"&gt;// así que podemos llamar a una método de &lt;/span&gt;
		&lt;span style="color: #666666; font-style: italic;"&gt;// la clase para modificarla			&lt;/span&gt;
	&lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;
&lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
&lt;span style="color: #000000; font-weight: bold;"&gt;this&lt;/span&gt;.&lt;span style="color: #006633;"&gt;btnMyLocation&lt;/span&gt;.&lt;span style="color: #006633;"&gt;setOnClickListener&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #000000; font-weight: bold;"&gt;this&lt;/span&gt;.&lt;span style="color: #006633;"&gt;btnMyLocation_OnClick&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Implementando OnClickListener como una interfaz (esta opción no permitiría manejar eventos OnClick diferenetes salvo que hagamos un switch del View en la función OnClick para identificarlo):&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="java" style="font-family:monospace;"&gt;&lt;span style="color: #000000; font-weight: bold;"&gt;public&lt;/span&gt; &lt;span style="color: #000000; font-weight: bold;"&gt;class&lt;/span&gt; ExampleActivity &lt;span style="color: #000000; font-weight: bold;"&gt;extends&lt;/span&gt; Activity &lt;span style="color: #000000; font-weight: bold;"&gt;implements&lt;/span&gt; OnClickListener &lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;
    &lt;span style="color: #000000; font-weight: bold;"&gt;protected&lt;/span&gt; &lt;span style="color: #000066; font-weight: bold;"&gt;void&lt;/span&gt; onCreate&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;Bundle savedValues&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;
        ...
        &lt;span style="color: #003399;"&gt;Button&lt;/span&gt; button &lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #003399;"&gt;Button&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;findViewById&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;R.&lt;span style="color: #006633;"&gt;id&lt;/span&gt;.&lt;span style="color: #006633;"&gt;corky&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
        button.&lt;span style="color: #006633;"&gt;setOnClickListener&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #000000; font-weight: bold;"&gt;this&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
    &lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;
&amp;nbsp;
    &lt;span style="color: #666666; font-style: italic;"&gt;// Implement the OnClickListener callback&lt;/span&gt;
    &lt;span style="color: #000000; font-weight: bold;"&gt;public&lt;/span&gt; &lt;span style="color: #000066; font-weight: bold;"&gt;void&lt;/span&gt; onClick&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #003399;"&gt;View&lt;/span&gt; v&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;
      &lt;span style="color: #000000; font-weight: bold;"&gt;switch&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;v.&lt;span style="color: #006633;"&gt;getId&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;
      &lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;
          &lt;span style="color: #000000; font-weight: bold;"&gt;case&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;R.&lt;span style="color: #006633;"&gt;id&lt;/span&gt;.&lt;span style="color: #006633;"&gt;corky&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;:&lt;/span&gt;
          ...
      &lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;
    &lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;
    ...
&lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;En el XML del layout:&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;1
2
3
4
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="xml" style="font-family:monospace;"&gt;&lt;span style="color: #009900;"&gt;&lt;span style="color: #000000; font-weight: bold;"&gt;&amp;lt;Button&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #009900;"&gt;&lt;span style="color: #000066;"&gt;android:onClick&lt;/span&gt;=&lt;span style="color: #ff0000;"&gt;&amp;quot;metodo&amp;quot;&lt;/span&gt;&lt;/span&gt;
&lt;span style="color: #009900;"&gt;... &lt;/span&gt;
&lt;span style="color: #009900;"&gt;&lt;span style="color: #000000; font-weight: bold;"&gt;/&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;


&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;1
2
3
4
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="java" style="font-family:monospace;"&gt;&lt;span style="color: #000000; font-weight: bold;"&gt;public&lt;/span&gt; &lt;span style="color: #000066; font-weight: bold;"&gt;void&lt;/span&gt; metodo&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #003399;"&gt;View&lt;/span&gt; v&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;
&lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;
   &lt;span style="color: #666666; font-style: italic;"&gt;//hacer algo&lt;/span&gt;
&lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;(fuente: &lt;a href="http://developer.android.com/guide/topics/ui/ui-events.html"&gt;http://developer.android.com/guide/topics/ui/ui-events.html&lt;/a&gt;)&lt;br /&gt;
&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-2763697777571772";
/* 300x250, creado 27/08/10 */
google_ad_slot = "6462200057";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ukGc7kT7WnJFi4NiCpD-9fMbg90/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ukGc7kT7WnJFi4NiCpD-9fMbg90/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ukGc7kT7WnJFi4NiCpD-9fMbg90/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ukGc7kT7WnJFi4NiCpD-9fMbg90/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=VIzUALgl9L8:HiuxNmykHgg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/VIzUALgl9L8" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/android-formas-de-manejar-un-evento/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/android-formas-de-manejar-un-evento/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/android-formas-de-manejar-un-evento/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Android: Cambiar el color de un botón sin alterar su comportamiento]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/1Uqwr3ytbgU/" />
		<id>http://www.forgottenprojects.com/?p=642</id>
		<updated>2010-08-27T11:55:21Z</updated>
		<published>2010-08-23T13:42:14Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Programacion" /><category scheme="http://www.forgottenprojects.com" term="android" />		<summary type="html"><![CDATA[Cómo cambiar el color de un botón predefinido sin tener que redibujarlo entero a mano]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/android-cambiar-el-color-de-un-boton/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fandroid-cambiar-el-color-de-un-boton%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fandroid-cambiar-el-color-de-un-boton%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=android" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Últimamente ando con temas de Android en el curro y estoy aprendiendo un montón, tanto que tengo pensados unas serie de posts sobre Android donde contaré cómo hacer aquellas cosas que no están demasiado bien explicadas en la documentación, o que hay que investigar un poco para conseguir hacerlas.&lt;/p&gt;
&lt;p&gt;Como aún sigo trasteando, voy a empezar con una entrada cortita.&lt;/p&gt;
&lt;p&gt;En este caso queremos pintar un botón de un color que no sea el del tema que estemos usando pero no queremos coger el photoshop y currarnos un botón bonito y sombreado desde cero y todos sus estados de seleccionado, pulsado, etc. solo para cambiarle el color, así que tiraremos de una función muy sencilla integrada en Android que consiste en aplicarle un &lt;a href="http://en.wikipedia.org/wiki/Alpha_compositing"&gt;filtro de color alpha&lt;/a&gt; al botón en cuestión partiendo de la base del típico botón gris:&lt;/p&gt;
&lt;p&gt;&lt;img src="http://img.skitch.com/20091005-bhadhc9e1e4uigqn9ca513cu8k.png" alt="boton coloreado" /&gt;&lt;/p&gt;
&lt;p&gt;Para lograr esto sólo tenemos que aplicar esta línea:&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;1
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="java" style="font-family:monospace;"&gt;button.&lt;span style="color: #006633;"&gt;getBackground&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;.&lt;span style="color: #006633;"&gt;setColorFilter&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;0xFFFF0000, PorterDuff.&lt;span style="color: #006633;"&gt;Mode&lt;/span&gt;.&lt;span style="color: #006633;"&gt;MULTIPLY&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Siendo 0xFFFF0000 el color en formato ARGB que queremos aplicar, en este caso, rojo.&lt;/p&gt;
&lt;p&gt;Es muy interesante poder aplicar este tipo de filtros porque nos permite hacer un montón de efectos sobre los controles predefinidos en Android. Esta técnica no es exclusiva de Android, sino que también es muy usada en Photoshop para cambiar colores por ejemplo.&lt;/p&gt;
&lt;p&gt;Aquí una tablita con las operaciones que se pueden hacer (no se si Android soporta todas)&lt;br /&gt;
&lt;img src="http://www.svgopen.org/2005/papers/abstractsvgopen/porterduff.png" alt="alpha composition" /&gt;&lt;/p&gt;
&lt;p&gt;(fuente: &lt;a href="http://stackoverflow.com/questions/1521640/standard-android-button-with-a-different-color"&gt;Stack Overflow&lt;/a&gt;)&lt;br /&gt;
&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-2763697777571772";
/* 300x250, creado 27/08/10 */
google_ad_slot = "6462200057";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/J_pd_R8iZbeSewNuJ2snjQbv4HE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/J_pd_R8iZbeSewNuJ2snjQbv4HE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/J_pd_R8iZbeSewNuJ2snjQbv4HE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/J_pd_R8iZbeSewNuJ2snjQbv4HE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=1Uqwr3ytbgU:Z0dfytSJiU8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/1Uqwr3ytbgU" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/android-cambiar-el-color-de-un-boton/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/android-cambiar-el-color-de-un-boton/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/android-cambiar-el-color-de-un-boton/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Empezando con PhoneGap + Windows]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/p7FSHs_ZVME/" />
		<id>http://www.forgottenprojects.com/?p=635</id>
		<updated>2010-08-27T11:56:28Z</updated>
		<published>2010-07-28T19:04:44Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Programacion" /><category scheme="http://www.forgottenprojects.com" term="android" /><category scheme="http://www.forgottenprojects.com" term="phonegap" />		<summary type="html"><![CDATA[
			
				
			
		
En la Campus Party 2010 he asistido a una charla de espresso-team relacionada con aplicaciones web para móviles que se ejecutan como si fueran nativas. En este ámbito PhoneGap se lleva la palma y dado que las instrucciones de la web no son todo lo aclaratorias que deberían ser, voy a a indicar algunos consejos [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/empezando-con-phonegap-windows/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fempezando-con-phonegap-windows%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fempezando-con-phonegap-windows%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=android,phonegap" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;En la Campus Party 2010 he asistido a una charla de &lt;a href="http://github.com/espresso-team/charlacampus2010"&gt;espresso-team&lt;/a&gt; relacionada con aplicaciones web para móviles que se ejecutan como si fueran nativas. En este ámbito &lt;a href="http://phonegap.com/"&gt;PhoneGap&lt;/a&gt; se lleva la palma y dado que las instrucciones de la web no son todo lo aclaratorias que deberían ser, voy a a indicar algunos consejos que me han ayudado a compilar el .jar con las librerías y a crear el proyecto de prueba:&lt;/p&gt;
&lt;p&gt;Pasos:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;1. Instalar el Java JDK:&lt;/strong&gt;&lt;br /&gt;
&lt;a href="http://java.sun.com/javase/downloads/index.jsp"&gt;http://java.sun.com/javase/downloads/index.jsp&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;2. Instalar Eclipse:&lt;/strong&gt;&lt;br /&gt;
&lt;a href="http://www.eclipse.org/downloads/"&gt;http://www.eclipse.org/downloads/&lt;/a&gt; (extraer en algún sitio)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;3. Instalar Android SDK:&lt;/strong&gt;&lt;br /&gt;
&lt;a href="http://developer.android.com/sdk/index.html"&gt;http://developer.android.com/sdk/index.html&lt;/a&gt; (descomprimir en alguna ruta sin espacios, ej e:\android-sdk)&lt;br /&gt;
Importante para evitar dolores de cabeza después, añadir a la variable de entorno PATH la ruta hasta la carpeta del SDK (ej e:\android-sdk) &lt;strong&gt;y&lt;/strong&gt; a la carpeta tools (ej. e:\android-sdk\tools) &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;4. Instalar el plugin ADT para Eclipse:&lt;/strong&gt;&lt;br /&gt;
&lt;a href="http://developer.android.com/sdk/eclipse-adt.html"&gt;http://developer.android.com/sdk/eclipse-adt.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;5. Añadir componentes del SDK:&lt;/strong&gt;&lt;br /&gt;
&lt;a href="http://developer.android.com/sdk/adding-components.html"&gt;http://developer.android.com/sdk/adding-components.html &lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Si hay alguna duda hasta aquí, es como seguir la guía de Android para desarrolladores: &lt;a href="http://developer.android.com/sdk/index.html"&gt;http://developer.android.com/sdk/index.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;6. Instalar Apache ANT:&lt;/strong&gt;&lt;br /&gt;
&lt;a href="http://ant.apache.org/index.html"&gt;http://ant.apache.org/index.html&lt;/a&gt; (descomprimir en una carpeta sin espacios ej. e:\apache-ant)&lt;br /&gt;
IMPORTANTE: Crear dos variables de entorno, JAVA_HOME con la ruta al java_sdk (ej. C:\Program Files (x86)\Java\jdk1.6.0_20) y ANT_HOME con la ruta a la carpeta de ANT (ej. e:\apache-ant), además, añadir la ruta al /bin de ANT al PATH (ej. e:\apache-ant\bin)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;7. Instalar ruby&lt;/strong&gt;&lt;br /&gt;
Con instalador: &lt;a href="http://rubyinstaller.org/"&gt;http://rubyinstaller.org/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;8. Instalar PhoneGap:&lt;/strong&gt;&lt;br /&gt;
Hay dos opciones, instalar un cliente de github y bajárselo con él, o descargarte la última versión a mano de &lt;a href="http://github.com/phonegap/phonegap-android"&gt;http://github.com/phonegap/phonegap-android&lt;/a&gt; (descomprimir en una carpeta)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;9. Correr el comando mágico que creará tu .jar y el proyecto de ejemplo:&lt;/strong&gt;&lt;br /&gt;
Dentro de la carpeta de phonegap-android:&lt;br /&gt;
ruby ./droidgap [ruta al android sdk] [nombre aplicacion] [nombre del package] [ruta al www] [ruta al proyecto de prueba]&lt;/p&gt;
&lt;p&gt;dónde:&lt;br /&gt;
[ruta al android sdk] = ruta donde has descomprimido el SDK de android&lt;br /&gt;
[nombre aplicacion] = el que quieras, será el nombre de la aplicación&lt;br /&gt;
[nombre del package] = el que quieras, será el nombre del paquete&lt;br /&gt;
[ruta al www] = ruta donde están las fuentes html, que si no tienes, puedes poner la carpeta example de phonegap-android&lt;br /&gt;
[ruta al proyecto de prueba] = carpeta donde se creará el proyecto para abrir con Eclipse&lt;/p&gt;
&lt;p&gt;En mi caso:&lt;br /&gt;
ruby ./droidgap e:\\Android\\android-sdk-windows test com.forgotten example/ e:\\Android\\proyectos\\phonegap1&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;10. Abrir Eclipse&lt;/strong&gt;, crear un nuevo proyecto Android e indicar que lo queremos crear a partir de un código fuente existente, que será el que hemos indicado en [ruta al proyecto de prueba]&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;11. En el árbol de ficheros&lt;/strong&gt;, clic derecho en libs/phonegap.jar &gt; Build path &gt; Add to build path&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;12. Clic derecho en la carpeta del proyecto&lt;/strong&gt; dentro de Ecplise &gt; Run As &gt; Android Aplication.&lt;br /&gt;
Debes tener configurado un AVD compatible con el build target indicado en el manifest.xml.&lt;br /&gt;
Para más info sobre esto mejor ver el quick start de http://developers.android.com&lt;/p&gt;
&lt;p&gt;Posibles errores:&lt;br /&gt;
./droidgap:37:in &amp;#8220;&amp;#8217;: No such file or directory &amp;#8211; ant jar (Errno::ENOENT)&lt;br /&gt;
Solución, añadir la ruta de ANT a la variable de entorno PATH.&lt;/p&gt;
&lt;p&gt;./droidgap:49:in &amp;#8220;&amp;#8217;: No such file or directory &amp;#8211; android create project&lt;br /&gt;
Solución, añadir la ruta a las tools de Android SDK a la variable de entorno PATH.&lt;/p&gt;
&lt;p&gt;Esto me ha llevado un montón conseguirlo por no leer las cosas, así que espero que sirva de ayuda&lt;br /&gt;
&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-2763697777571772";
/* 300x250, creado 27/08/10 */
google_ad_slot = "6462200057";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/oXOOBx9gXYq-jFAS3yZDWbbe8AM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/oXOOBx9gXYq-jFAS3yZDWbbe8AM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/oXOOBx9gXYq-jFAS3yZDWbbe8AM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/oXOOBx9gXYq-jFAS3yZDWbbe8AM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=p7FSHs_ZVME:i6ipLiDhg4o:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/p7FSHs_ZVME" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/empezando-con-phonegap-windows/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/empezando-con-phonegap-windows/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/empezando-con-phonegap-windows/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[España campeona del Mundo 2010. Porque no todo es fútbol]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/Bsloxyx_Ywk/" />
		<id>http://www.forgottenprojects.com/?p=625</id>
		<updated>2010-07-13T09:23:12Z</updated>
		<published>2010-07-13T09:23:12Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Personal" />		<summary type="html"><![CDATA[
			
				
			
		
Este pasado domingo 11 de Julio, la selección española de fútbol se proclamaba como la mejor selección de fútbol del mundo. Puede gustarte o no el fútbol, pero el sentimiento colectivo de estos últimos días es algo que se vive. Yo no soy muy futbolero, no sigo la liga, ni vi la fase clasificatoria (no [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/espana-campeona-del-mundo-2010-porque-no-todo-es-futbol/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fespana-campeona-del-mundo-2010-porque-no-todo-es-futbol%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fespana-campeona-del-mundo-2010-porque-no-todo-es-futbol%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Este pasado domingo 11 de Julio, la selección española de fútbol se proclamaba como la mejor selección de fútbol del mundo. Puede gustarte o no el fútbol, pero el sentimiento colectivo de estos últimos días es algo que se vive. Yo no soy muy futbolero, no sigo la liga, ni vi la fase clasificatoria (no se, es algo que daba por hecho supongo) pero reconozco que me gusta ver los partidos de la selección ya que me parecen mucho más emocionantes.&lt;/p&gt;
&lt;p&gt;Lo que he vivido estos días no lo he visto en la vida, decidí ver los últimos partidos en un bar por el centro de Madrid y me alegro de haberlo hecho. Compartir con tanta gente desconocida la pasión por la roja ha sido algo que merece la pena alguna vez en la vida. Sobre todo me ha sorprendido la cantidad de extranjeros que lo daban todo por nuestra selección, ingleses, franceses, alemanes,&amp;#8230; pese a haber sido eliminados en fases previas, animaban a España a ganar este mundial tanto o más que cualquier español.&lt;/p&gt;
&lt;p&gt;Resulta increíble como se puede unir tanta gente, ver la felicidad en las caras de los aficionados en la calle celebrando que Iniesta marcaba el gol que nos daba la copa del mundo a 3 minutos del final de la segunda prórroga. Tanta gente celebrando una victoria hace que se te olviden los problemas y los prejuicios unos días para vivir el momento todos juntos. &lt;/p&gt;
&lt;p&gt;Puede no gustarte el fútbol, pero ya no se trata de un montón de tíos detrás de un balón para meterlo en una portería, se trata de un trabajo en equipo, de un trabajo bien hecho, de perseverancia, pasión, emoción, ímpetu, de darlo todo por aquello que quieres y lograrlo. Para mí es un claro ejemplo de consecución de un éxito, extrapolable a la vida cotidiana. No hay excusa para no celebrarlo todos juntos.&lt;/p&gt;
&lt;p&gt;Gracias España, ha sido inolvidable.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.forgottenprojects.com/wp-content/uploads/2010/07/españa-mundial1.jpg"&gt;&lt;img src="http://www.forgottenprojects.com/wp-content/uploads/2010/07/españa-mundial1.jpg" alt="españa-campeona-del-mundo" title="españa-campeona-del-mundo" width="600" height="350" class="aligncenter size-full wp-image-626" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;object width="640" height="505"&gt;&lt;param name="movie" value="http://www.youtube.com/v/6bM7xURFkhc&amp;amp;hl=es_ES&amp;amp;fs=1?color1=0x3a3a3a&amp;amp;color2=0x999999"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/6bM7xURFkhc&amp;amp;hl=es_ES&amp;amp;fs=1?color1=0x3a3a3a&amp;amp;color2=0x999999" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="505"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;&lt;object width="640" height="505"&gt;&lt;param name="movie" value="http://www.youtube.com/v/3nw7ifU2WwA&amp;amp;hl=es_ES&amp;amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/3nw7ifU2WwA&amp;amp;hl=es_ES&amp;amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="505"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;&lt;object width="640" height="505"&gt;&lt;param name="movie" value="http://www.youtube.com/v/DvWeNRq8AWE&amp;amp;hl=es_ES&amp;amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/DvWeNRq8AWE&amp;amp;hl=es_ES&amp;amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="505"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;Y aquí unas fotos de mi amigo &lt;a href="http://albertoconcejal.com"&gt;Alberto &lt;/a&gt;que reflejan muy bien la alegría de la gente en la calle:&lt;br /&gt;
&lt;object width="600" height="450"&gt;&lt;param name="flashvars" value="offsite=true&amp;#038;lang=en-us&amp;#038;page_show_url=%2Fphotos%2Fgimmenine%2Fsets%2F72157624478803884%2Fshow%2Fwith%2F4786733759%2F&amp;#038;page_show_back_url=%2Fphotos%2Fgimmenine%2Fsets%2F72157624478803884%2Fwith%2F4786733759%2F&amp;#038;set_id=72157624478803884&amp;#038;jump_to=4786733759"&gt;&lt;/param&gt;&lt;param name="movie" value="http://www.flickr.com/apps/slideshow/show.swf?v=71649"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/slideshow/show.swf?v=71649" allowFullScreen="true" flashvars="offsite=true&amp;#038;lang=en-us&amp;#038;page_show_url=%2Fphotos%2Fgimmenine%2Fsets%2F72157624478803884%2Fshow%2Fwith%2F4786733759%2F&amp;#038;page_show_back_url=%2Fphotos%2Fgimmenine%2Fsets%2F72157624478803884%2Fwith%2F4786733759%2F&amp;#038;set_id=72157624478803884&amp;#038;jump_to=4786733759" width="600" height="450"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/WfOdoZ4m2oJzsC2eU9q_YfXy0YM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/WfOdoZ4m2oJzsC2eU9q_YfXy0YM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/WfOdoZ4m2oJzsC2eU9q_YfXy0YM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/WfOdoZ4m2oJzsC2eU9q_YfXy0YM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=Bsloxyx_Ywk:x0zsxwAUnNU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/Bsloxyx_Ywk" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/espana-campeona-del-mundo-2010-porque-no-todo-es-futbol/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/espana-campeona-del-mundo-2010-porque-no-todo-es-futbol/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/espana-campeona-del-mundo-2010-porque-no-todo-es-futbol/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Nuevo blog sobre Realidad Aumentada]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/3av0N_Yo8oQ/" />
		<id>http://www.forgottenprojects.com/?p=619</id>
		<updated>2010-06-17T19:08:30Z</updated>
		<published>2010-06-17T19:07:48Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Tecnología" />		<summary type="html"><![CDATA[Nuevo blog sobre realidad aumentada en http://ar.forgottenprojects.com]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/nuevo-blog-sobre-realidad-aumentada/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fnuevo-blog-sobre-realidad-aumentada%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fnuevo-blog-sobre-realidad-aumentada%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Sólo escribo este mensaje para informaros de que he creado un nuevo blog sobre &lt;a href="http://ar.forgottenprojects.com"&gt;Realidad Aumentada&lt;/a&gt; dónde escribiré noticias y artículos sobre técnicas, avances y productos basados en esta tecnología.&lt;br /&gt;
&lt;a href="http://ar.forgottenprojects.com"&gt;&lt;img alt="" src="http://packaos.files.wordpress.com/2009/04/3551.jpg" title="Realidad Aumentada"  width="475" height="330" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://ar.forgottenprojects.com"&gt;Ir al Blog de Realidad Aumentada&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/CU98jt1t_TflEI0AyvqnesYi8xw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/CU98jt1t_TflEI0AyvqnesYi8xw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/CU98jt1t_TflEI0AyvqnesYi8xw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/CU98jt1t_TflEI0AyvqnesYi8xw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=3av0N_Yo8oQ:XZGSe6hB9FY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/3av0N_Yo8oQ" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/nuevo-blog-sobre-realidad-aumentada/#comments" thr:count="2" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/nuevo-blog-sobre-realidad-aumentada/feed/atom/" thr:count="2" />
		<thr:total>2</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/nuevo-blog-sobre-realidad-aumentada/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Interfaces como en Minority Report dentro de 5 años]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/hwL5vUkJTRM/" />
		<id>http://www.forgottenprojects.com/?p=615</id>
		<updated>2010-06-14T18:57:57Z</updated>
		<published>2010-06-14T18:57:25Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Tecnología" /><category scheme="http://www.forgottenprojects.com" term="hci" /><category scheme="http://www.forgottenprojects.com" term="natal" /><category scheme="http://www.forgottenprojects.com" term="ted" />		<summary type="html"><![CDATA[Las interfaces de Minority Report dentro de 5 años]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/interfaces-como-en-minority-report-dentro-de-5-anos/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Finterfaces-como-en-minority-report-dentro-de-5-anos%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Finterfaces-como-en-minority-report-dentro-de-5-anos%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=hci,natal,ted" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;!--copy and paste--&gt;&lt;object width="446" height="326"&gt;&lt;param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;param name="allowScriptAccess" value="always"/&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="bgColor" value="#ffffff"&gt;&lt;/param&gt;&lt;param name="flashvars" value="vu=http://video.ted.com/talks/dynamic/JohnUnderkoffler_2010-medium.flv&amp;#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/JohnUnderkoffler-2010.embed_thumbnail.jpg&amp;#038;vw=432&amp;#038;vh=240&amp;#038;ap=0&amp;#038;ti=872&amp;#038;introDuration=15330&amp;#038;adDuration=4000&amp;#038;postAdDuration=830&amp;#038;adKeys=talk=john_underkoffler_drive_3d_data_with_a_gesture;year=2010;theme=tales_of_invention;theme=what_s_next_in_tech;theme=a_taste_of_ted2010;theme=presentation_innovation;theme=new_on_ted_com;theme=technology_history_and_destiny;event=TED2010;&amp;#038;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" /&gt;&lt;embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgColor="#ffffff" width="446" height="326" allowFullScreen="true" allowScriptAccess="always" flashvars="vu=http://video.ted.com/talks/dynamic/JohnUnderkoffler_2010-medium.flv&amp;#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/JohnUnderkoffler-2010.embed_thumbnail.jpg&amp;#038;vw=432&amp;#038;vh=240&amp;#038;ap=0&amp;#038;ti=872&amp;#038;introDuration=15330&amp;#038;adDuration=4000&amp;#038;postAdDuration=830&amp;#038;adKeys=talk=john_underkoffler_drive_3d_data_with_a_gesture;year=2010;theme=tales_of_invention;theme=what_s_next_in_tech;theme=a_taste_of_ted2010;theme=presentation_innovation;theme=new_on_ted_com;theme=technology_history_and_destiny;event=TED2010;"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;Así lo dice John Underkoffler, diseñador de la interfaz gestual de la película &lt;em&gt;Minority Report&lt;/em&gt; y que hizo esta tecnología hará unos 15 años en el Media Lab del MIT (madre mía, quién pudiera estar ahí). &lt;a href="http://www.ted.com/speakers/john_underkoffler.html"&gt;Aqui &lt;/a&gt;hay mas información de este señor &lt;/p&gt;
&lt;p&gt;Para los que saben de visión artificial no les resultará especialmente impresionantes los ejemplos que aparecen al principio ya que con un poco de detección de colores y un proyector se puede hacer mas o menos lo mismo. &lt;/p&gt;
&lt;p&gt;Lo impresionante es el montaje del final que por lo que se observa, son varias cámaras alrededor de la persona se encargan de seguir los gestos y movimientos de sus manos. Éstas cámaras parecen estar rodeadas de leds infrarrojos por lo que parece que la visión 3D se realiza mediante seguimiento de infrarrojos más que por colores o luces como se veía en la película.&lt;/p&gt;
&lt;p&gt;&lt;object width="480" height="385"&gt;&lt;param name="movie" value="http://www.youtube.com/v/NwVBzx0LMNQ&amp;#038;hl=es_ES&amp;#038;fs=1&amp;#038;color1=0x2b405b&amp;#038;color2=0x6b8ab6"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/NwVBzx0LMNQ&amp;#038;hl=es_ES&amp;#038;fs=1&amp;#038;color1=0x2b405b&amp;#038;color2=0x6b8ab6" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;Esto es muy parecido a cómo funciona el mando de la Wii, y más aún a cómo funciona el projectl Natal de Microsoft (ahora llamado Kinetics).&lt;/p&gt;
&lt;p&gt;&lt;object width="640" height="385"&gt;&lt;param name="movie" value="http://www.youtube.com/v/jVrwzcEHyIA&amp;#038;hl=es_ES&amp;#038;fs=1&amp;#038;color1=0x2b405b&amp;#038;color2=0x6b8ab6"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/jVrwzcEHyIA&amp;#038;hl=es_ES&amp;#038;fs=1&amp;#038;color1=0x2b405b&amp;#038;color2=0x6b8ab6" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;
&lt;!--adsense#piedepost--&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/T6RenQSuvZFJQR_We0rOoS4_ohE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/T6RenQSuvZFJQR_We0rOoS4_ohE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/T6RenQSuvZFJQR_We0rOoS4_ohE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/T6RenQSuvZFJQR_We0rOoS4_ohE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=hwL5vUkJTRM:W02hjtHCmlQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/hwL5vUkJTRM" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/interfaces-como-en-minority-report-dentro-de-5-anos/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/interfaces-como-en-minority-report-dentro-de-5-anos/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/interfaces-como-en-minority-report-dentro-de-5-anos/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Qype: Tommy Mel&#8217;s en Madrid]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/6-gsIEJRatE/" />
		<id>http://www.forgottenprojects.com/qype-tommy-mels-en-madrid/</id>
		<updated>2010-06-14T08:54:03Z</updated>
		<published>2010-06-14T08:54:03Z</published>
		<category scheme="http://www.forgottenprojects.com" term="General" />		<summary type="html"><![CDATA[
			
				
			
		
Madrid &#8211; Comida y copas &#8211; Restaurantes &#8211; Americanos
  Famosa hamburguesería estilo americano, con enormes hambuguesas a la parrilla, nachos, sandwiches, etc.
Lo particular de este sitio es la decoración, ambientado en los Estados Unidos de los años 50, es como si te metieses en la película Grease.
Las camareras visten el típico vestido rosa con [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/qype-tommy-mels-en-madrid/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-tommy-mels-en-madrid%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-tommy-mels-en-madrid%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;a href="http://www.qype.es/es300-madrid-tetuan"&gt;Madrid&lt;/a&gt; &amp;#8211; &lt;a href="http://www.qype.es/es300-madrid-tetuan/categories/883-comida-y-copas-in-tetuan"&gt;Comida y copas&lt;/a&gt; &amp;#8211; &lt;a href="http://www.qype.es/es300-madrid-tetuan/categories/1-restaurantes"&gt;Restaurantes&lt;/a&gt; &amp;#8211; &lt;a href="http://www.qype.es/es300-madrid-tetuan/categories/61-restaurantes-de-comida-rapida-in-tetuan"&gt;Americanos&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;  Famosa hamburguesería estilo americano, con enormes hambuguesas a la parrilla, nachos, sandwiches, etc.&lt;br /&gt;
Lo particular de este sitio es la decoración, ambientado en los Estados Unidos de los años 50, es como si te metieses en la película Grease.&lt;br /&gt;
Las camareras visten el típico vestido rosa con el nombre en letras de carta de boda y el gorrito, lo asientos son como sacados de un cadillac y hay frases simpáticas escritas en las paredes a modo de citas.&lt;br /&gt;
Es un sitio al que al menos hay que ir una vez para verlo (y comer allí, claro)&lt;/p&gt;
&lt;p&gt;Echa un vistazo a mi reseña de &lt;a href="http://www.qype.es/place/1469551-Tommy-Mels-Madrid"&gt;Tommy Mel&amp;#8217;s&lt;/a&gt; &amp;#8211; Yo soy &lt;a href="http://www.qype.es/people/ferdy182"&gt;ferdy182&lt;/a&gt; &amp;#8211; en &lt;a href="http://www.qype.es/"&gt;Qype&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/x2BpB02ATJ39WpT8Uf-zxSfSFGU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/x2BpB02ATJ39WpT8Uf-zxSfSFGU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/x2BpB02ATJ39WpT8Uf-zxSfSFGU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/x2BpB02ATJ39WpT8Uf-zxSfSFGU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=6-gsIEJRatE:OgC1jNtHimI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/6-gsIEJRatE" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/qype-tommy-mels-en-madrid/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/qype-tommy-mels-en-madrid/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/qype-tommy-mels-en-madrid/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[BumpTop: escritorio 3D]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/HheikH1H9CM/" />
		<id>http://www.forgottenprojects.com/?p=598</id>
		<updated>2010-05-18T09:17:18Z</updated>
		<published>2010-05-18T07:00:35Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Tecnología" /><category scheme="http://www.forgottenprojects.com" term="hci" /><category scheme="http://www.forgottenprojects.com" term="multitouch" />		<summary type="html"><![CDATA[Evolución de BumpTop, escritorio 3D adquirido por Google]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/bumptop-escritorio-3d/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fbumptop-escritorio-3d%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fbumptop-escritorio-3d%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=hci,multitouch" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;!--adsense#piedepost--&gt;&lt;/p&gt;
&lt;p&gt;&lt;object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;param name="allowscriptaccess" value="always" /&gt;&lt;param name="src" value="http://www.youtube.com/v/6jhoWsHwU7w&amp;amp;hl=es_ES&amp;amp;fs=1&amp;amp;" /&gt;&lt;param name="allowfullscreen" value="true" /&gt;&lt;embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/6jhoWsHwU7w&amp;amp;hl=es_ES&amp;amp;fs=1&amp;amp;" allowscriptaccess="always" allowfullscreen="true"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;BumpTop es un entorno de escritorio en 3D que lleva unos 3 años circulando en internet y es impresionante como ha mejorado. Tanto que recientemente &lt;a href="http://www.dosbit.com/general/google-adquiere-bumptop-entorno-grafico-en-3d"&gt;Google ha adquirido el producto&lt;/a&gt;, no sabemos para qué fin pero apuesto a que tiene que ver con Android.&lt;/p&gt;
&lt;p&gt;Es una nueva forma de trabajar con entornos multitouch añadiendo 3D al concepto de escritorio, pareciéndose aun más a un escritorio real y añadiendo algunas funciones interesantes para la gestión de archivos y documentos como si fueran objetos con sus propiedades que cumplen las leyes de la física, interacción con redes sociales, visualización de fotos, etc.&lt;/p&gt;
&lt;p&gt;&lt;object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="545" height="327" id="viddler_ac06e7aa"&gt;&lt;param name="movie" value="http://www.viddler.com/simple/ac06e7aa/" /&gt;&lt;param name="allowScriptAccess" value="always" /&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;embed src="http://www.viddler.com/simple/ac06e7aa/" width="545" height="327" type="application/x-shockwave-flash" allowScriptAccess="always" allowFullScreen="true" name="viddler_ac06e7aa"&gt;&lt;/embed&gt;&lt;/object&gt; &lt;/p&gt;
&lt;p&gt;Y aquí tenemos el vídeo que fue presentado en el TED en Marzo de 2007, donde puedes ver la evolución que ha sufrido hasta ahora, desde un simple plano inclinado con &amp;#8220;piezas&amp;#8221; por encima hasta un completo escritorio funcional con paredes y todo.&lt;/p&gt;
&lt;p&gt;&lt;object width="446" height="326"&gt;&lt;param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;param name="allowScriptAccess" value="always"/&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="bgColor" value="#ffffff"&gt;&lt;/param&gt;&lt;param name="flashvars" value="vu=http://video.ted.com/talks/dynamic/AnandAgarawala_2007-medium.flv&amp;#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/AnandAgarawala-2007.embed_thumbnail.jpg&amp;#038;vw=432&amp;#038;vh=240&amp;#038;ap=0&amp;#038;ti=131&amp;#038;introDuration=16500&amp;#038;adDuration=4000&amp;#038;postAdDuration=2000&amp;#038;adKeys=talk=anand_agarawala_demos_his_bumptop_desktop;year=2007;theme=presentation_innovation;theme=what_s_next_in_tech;theme=not_business_as_usual;event=TED2007;&amp;#038;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" /&gt;&lt;embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgColor="#ffffff" width="446" height="326" allowFullScreen="true" allowScriptAccess="always" flashvars="vu=http://video.ted.com/talks/dynamic/AnandAgarawala_2007-medium.flv&amp;#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/AnandAgarawala-2007.embed_thumbnail.jpg&amp;#038;vw=432&amp;#038;vh=240&amp;#038;ap=0&amp;#038;ti=131&amp;#038;introDuration=16500&amp;#038;adDuration=4000&amp;#038;postAdDuration=2000&amp;#038;adKeys=talk=anand_agarawala_demos_his_bumptop_desktop;year=2007;theme=presentation_innovation;theme=what_s_next_in_tech;theme=not_business_as_usual;event=TED2007;"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/o6Qp8u3XOu7u0VPRnlFAxaeaLLU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/o6Qp8u3XOu7u0VPRnlFAxaeaLLU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/o6Qp8u3XOu7u0VPRnlFAxaeaLLU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/o6Qp8u3XOu7u0VPRnlFAxaeaLLU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=HheikH1H9CM:jtmpbXTQZNQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/HheikH1H9CM" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/bumptop-escritorio-3d/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/bumptop-escritorio-3d/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/bumptop-escritorio-3d/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Realidad aumentada en Google Earth y Bing Maps]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/PCeQTSZvSo8/" />
		<id>http://www.forgottenprojects.com/?p=592</id>
		<updated>2010-05-17T13:08:00Z</updated>
		<published>2010-05-17T13:03:44Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Tecnología" /><category scheme="http://www.forgottenprojects.com" term="geolocalizacion" /><category scheme="http://www.forgottenprojects.com" term="google" /><category scheme="http://www.forgottenprojects.com" term="microsoft" /><category scheme="http://www.forgottenprojects.com" term="Realidad Aumentada" />		<summary type="html"><![CDATA[Varios ejemplos de Google y Microsoft empleando Realidad Aumentada en sus productos]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/realidad-aumentada-en-google-earth-y-bing-maps/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Frealidad-aumentada-en-google-earth-y-bing-maps%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Frealidad-aumentada-en-google-earth-y-bing-maps%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=geolocalizacion,google,microsoft,Realidad+Aumentada" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;!--adsense#piedepost--&gt;&lt;br /&gt;
La realidad aumentada es un concepto que está en auge últimamente, tanto que la cantidad de aplicaciones que están surgiendo a raíz de ésta, crece exponencialmente. Tanto que Google y Microsoft están integrándola en sus propios visores de mapas. &lt;/p&gt;
&lt;p&gt;¿En qué consiste la realidad aumentada? Pues como su nombre indica, coger la realidad y ampliar la información que vemos con información que no vemos, para aumentar los datos que percibimos del mundo real. Aunque más bien en este caso deberíamos hablar de realidad virtual aumentada puesto que se basa en meter información real en mundos &amp;#8220;virtuales&amp;#8221; (entre comillas porque virtuales tampoco sería la palabra) como son Google Earth y Bing Maps.&lt;/p&gt;
&lt;p&gt;En los dos vídeos que acompañan esta entrada, puedes ver dos aproximaciones de estas dos compañías para llevar la realidad a sus mundos virtuales, cada uno a su manera pero ambos muy interesantes técnicamente.&lt;/p&gt;
&lt;p&gt;En el primer vídeo puedes ver una presentación de Microsoft en el &lt;a href="http://www.ted.com"&gt;TED&lt;/a&gt; en la que se muestra el &amp;#8220;Street View&amp;#8221; de Bing Maps en el que aparte de poder meterse en un mercado, se puede ver una ventanita con un streaming de vídeo con lo que está ocurriendo en tiempo real grabado a través de una cámara dónde lo que se está enfocando corresponde con las fotos de la calle que existen previamente.&lt;/p&gt;
&lt;p&gt;&lt;object width="446" height="326"&gt;&lt;param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;param name="allowScriptAccess" value="always"/&gt;&lt;param name="wmode" value="transparent"&gt;&lt;/param&gt;&lt;param name="bgColor" value="#ffffff"&gt;&lt;/param&gt;&lt;param name="flashvars" value="vu=http://video.ted.com/talks/dynamic/BlaiseAguerayArcas_2010-medium.mp4&amp;#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/BlaiseAgueraYArcas-2010.embed_thumbnail.jpg&amp;#038;vw=432&amp;#038;vh=240&amp;#038;ap=0&amp;#038;ti=766&amp;#038;introDuration=16500&amp;#038;adDuration=4000&amp;#038;postAdDuration=2000&amp;#038;adKeys=talk=blaise_aguera;year=2010;theme=new_on_ted_com;theme=the_creative_spark;theme=a_taste_of_ted2010;event=TED2010;&amp;#038;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" /&gt;&lt;embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgColor="#ffffff" width="446" height="326" allowFullScreen="true" allowScriptAccess="always" flashvars="vu=http://video.ted.com/talks/dynamic/BlaiseAguerayArcas_2010-medium.mp4&amp;#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/BlaiseAgueraYArcas-2010.embed_thumbnail.jpg&amp;#038;vw=432&amp;#038;vh=240&amp;#038;ap=0&amp;#038;ti=766&amp;#038;introDuration=16500&amp;#038;adDuration=4000&amp;#038;postAdDuration=2000&amp;#038;adKeys=talk=blaise_aguera;year=2010;theme=new_on_ted_com;theme=the_creative_spark;theme=a_taste_of_ted2010;event=TED2010;"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;Este otro ejemplo de Google Earth me resulta más impresionante aún, aquí puedes ver como empleando webcams públicas, también podemos ver en tiempo real lo que ocurre en la zona que están enfocando, mapeando la visualización con la superficie del mapa que correspondería de forma que parece que podamos estar observando desde nuestra casa lo que ocurre en el mundo, cómo por ejemplo, ver lo que ocurre en un estadio en el que además, podemos ver una cámara u otra según el ángulo desde el que estemos mirando. Y mejor aún, si hay varias cámaras dispuestas en un tramo, vemos una representación virtual de las personas y vehículos que transitan por delante de la cámara e incluso interpolar las zonas de las que no se dispone imagen, como por ejemplo, en tramos de una autopista.&lt;/p&gt;
&lt;p&gt;&lt;center&gt;&lt;object width="560" height="340"&gt;&lt;param name="movie" value="http://www.youtube.com/v/TPk88soc2qw&amp;#038;hl=en&amp;#038;fs=1&amp;#038;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/TPk88soc2qw&amp;#038;hl=en&amp;#038;fs=1&amp;#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/center&gt; &lt;/p&gt;
&lt;p&gt;En definitiva, poco a poco vamos viendo más maravillas tecnológicas y utilidades de las herramientas que ya conocemos como son Google Earth y Bing Maps, y nos damos cuenta de las posibilidades que tienen de cara al futuro y no en vano estamos en la era de la información, puesto que tenemos toda al alcance del ratón.&lt;br /&gt;
&lt;!--adsense#piedepost--&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/L4719ErsQEjJ0ofvDujcMPCiPhs/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/L4719ErsQEjJ0ofvDujcMPCiPhs/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/L4719ErsQEjJ0ofvDujcMPCiPhs/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/L4719ErsQEjJ0ofvDujcMPCiPhs/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=PCeQTSZvSo8:wuFSSqw3L6g:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/PCeQTSZvSo8" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/realidad-aumentada-en-google-earth-y-bing-maps/#comments" thr:count="2" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/realidad-aumentada-en-google-earth-y-bing-maps/feed/atom/" thr:count="2" />
		<thr:total>2</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/realidad-aumentada-en-google-earth-y-bing-maps/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[PHP: explode vs split]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/8Gt2NdH9bZ4/" />
		<id>http://www.forgottenprojects.com/?p=583</id>
		<updated>2010-05-14T10:50:25Z</updated>
		<published>2010-05-14T10:44:23Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Programacion" /><category scheme="http://www.forgottenprojects.com" term="php" />		<summary type="html"><![CDATA[Diferencias entre las funciones explode y split de PHP]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/php-explode-vs-split/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fphp-explode-vs-split%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fphp-explode-vs-split%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=php" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;!--adsense#piedepost--&gt;&lt;br /&gt;
El otro día, hablando con mi compañero de curro, le planteé la duda de por qué usaba split en lugar de explode para separar cadenas en un array dado un delimitador, cómo no supo responderme ni yo tampoco sabía la diferencia, fui a mirar el manual en php.net y la diferencia realmente es que:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;explode()&lt;/strong&gt; toma como parámetros la &lt;strong&gt;cadena&lt;/strong&gt; con el delimitador, la cadena sobre la que se aplica y un parámetro opcional para limitar el número de elementos que se van a separar conteniendo el último el resto de la cadena sin partir&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;split()&lt;/strong&gt; toma como parámetro una &lt;strong&gt;expresión regular&lt;/strong&gt; cómo delimitador,  la cadena sobre la que se aplica y un parámetro opcional para limitar el número de elementos.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;La función split en realidad es mucho más flexible para según que cosas pero &lt;strong&gt;más costoso&lt;/strong&gt; si sólo queremos partir por un carácter que suele ser lo habitual, entonces es mejor usar explode(). Además, &lt;strong&gt;desde PHP 5.3, split() está obsoleta&lt;/strong&gt; (por lo que provocará un Warning) y se recomienda usar &lt;strong&gt;preg_split()&lt;/strong&gt; en su lugar, que además admite otro parámetro flag para modificar su comportamiento.&lt;/p&gt;
&lt;p&gt;Espero que hayáis aprendido una cosa más &lt;img src='http://www.forgottenprojects.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /&gt; &lt;/p&gt;
&lt;p&gt;Referencias:&lt;br /&gt;
&lt;a href="http://php.net/manual/es/function.explode.php"&gt;explode()&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://php.net/manual/es/function.split.php"&gt;split()&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://es2.php.net/manual/en/function.preg-split.php"&gt;preg_split()&lt;/a&gt;&lt;br /&gt;
&lt;!--adsense#mediopost--&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/AifLFi735rQpY9AoNVDP3LMl64w/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/AifLFi735rQpY9AoNVDP3LMl64w/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/AifLFi735rQpY9AoNVDP3LMl64w/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/AifLFi735rQpY9AoNVDP3LMl64w/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=8Gt2NdH9bZ4:qyR4K00h8eQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/8Gt2NdH9bZ4" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/php-explode-vs-split/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/php-explode-vs-split/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/php-explode-vs-split/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Usa protector solar]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/-vAavT2V_so/" />
		<id>http://www.forgottenprojects.com/?p=575</id>
		<updated>2010-05-11T21:06:40Z</updated>
		<published>2010-05-11T21:00:26Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Interesante" /><category scheme="http://www.forgottenprojects.com" term="motivacion" />		<summary type="html"><![CDATA[Este es un video motivacional que vi hace algún tiempo y me gusta mucho su mensaje, el cual transcribo bajo el vídeo y creo que todo el mundo debería verlo al menos una vez.]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/usa-protector-solar/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fusa-protector-solar%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fusa-protector-solar%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=motivacion" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Este es un video motivacional que vi hace algún tiempo y me gusta mucho su mensaje, el cual transcribo bajo el vídeo y creo que todo el mundo debería verlo al menos una vez.&lt;/p&gt;
&lt;p&gt;&lt;object width="480" height="385"&gt;&lt;param name="movie" value="http://www.youtube.com/v/YDRId6QmNTA&amp;#038;hl=es_ES&amp;#038;fs=1&amp;#038;color1=0x3a3a3a&amp;#038;color2=0x999999"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/YDRId6QmNTA&amp;#038;hl=es_ES&amp;#038;fs=1&amp;#038;color1=0x3a3a3a&amp;#038;color2=0x999999" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;Señores y señoras usen protector solar. Si pudiera ofrecerles sólo un consejo para el futuro, sería éste: Usen protector solar.&lt;/p&gt;
&lt;p&gt;Los científicos han comprobado sus beneficios a largo plazo mientras que los consejos que les voy a dar, no tienen ninguna base fiable y se basan únicamente en mi propia experiencia. He aquí mis consejos:&lt;/p&gt;
&lt;p&gt;Disfruta de la fuerza y belleza de tu juventud. No me hagas caso. Nunca entenderás la fuerza y belleza de tu juventud hasta que no se haya marchitado. Pero créeme, dentro de veinte años, cuando en fotos te veas a ti mismo comprenderás, de una forma que no puedes comprender ahora, cuántas posibilidades tenías ante ti y lo guapo que eras en realidad. No estás tan gordo como imaginas. No te preocupes por el futuro. O preocúpate sabiendo que preocuparse es tan efectivo como tratar de resolver una ecuación de álgebra masticando chicle. Lo que sí es cierto es que los problemas que realmente tienen importancia en la vida son aquellos que nunca pasaron por tu mente, de ésos que te sorprenden a las cuatro de la tarde de un martes cualquiera.&lt;/p&gt;
&lt;p&gt;Todos los días haz algo a lo que temas. Canta. No juegues con los sentimientos de los demás. No toleres que la gente juegue con los tuyos. Relájate. No pierdas el tiempo sintiendo celos. A veces se gana y a veces se pierde. La competencia es larga y, al final, sólo compites contra ti mismo. Recuerda los elogios que recibas. Olvida los insultos (pero si consigues hacerlo, dime cómo hacerlo). Guarda tus cartas de amor. Tira las cartas del banco. Estírate. No te sientas culpable si no sabes muy bien qué quieres de la vida. Las personas más interesantes que he conocido no sabían qué hacer con su vida cuando tenían veintidós años. Es más, algunas de las personas que conozco tampoco lo sabían a los cuarenta.&lt;/p&gt;
&lt;p&gt;Toma mucho calcio. Cuida tus rodillas sentirás la falta que te hacen cuando te fallen. Quizá te cases, quizá no. Quizá tengas hijos, quizá no. Quizá te divorcies a los cuarenta, quizá no. Quizá bailes el vals en tu setenta y cinco aniversario de bodas. Hagas lo que hagas no te enorgullezcas ni te critiques demasiado. Optarás por una cosa u otra, como todos los demás.&lt;/p&gt;
&lt;p&gt;Disfruta de tu cuerpo. Aprovéchalo de todas las formas que puedas. No tengas miedo ni te preocupes por lo que piensen los demás porque es el mejor instrumento que jamás tendrás. Baila, aunque tengas que hacerlo en el salón de tu casa. Lee las instrucciones aunque no las sigas. No leas revistas de belleza pues para lo único que sirven es para hacerte sentir feo.&lt;/p&gt;
&lt;p&gt;Aprende a entender a tus padres. Será tarde cuando ellos ya no estén. Llévate bien con tus hermanos. Son el mejor vínculo con tu pasado y, probablemente, serán los que te acompañen en el futuro. Entiende que los amigos vienen y se van pero hay un puñado de ellos que debes conservar con mucho cariño. Esfuérzate por no desvincularte de algunos lugares y costumbres porque, cuando pase el tiempo, más los necesitarás. Vive en una ciudad alguna vez pero múdate antes de que te endurezcas. Vive en un pueblo alguna vez pero múdate antes de que te ablandes.&lt;/p&gt;
&lt;p&gt;Viaja. Acepta algunas verdades ineludibles: los precios siempre subirán, los políticos siempre mentirán y tú también envejecerás. Y, cuando seas viejo, añorarás los tiempos en que eras joven: los precios eran razonables, los políticos eran honestos y los niños respetaban a los mayores. Respeta a los mayores. No esperes que nadie te mantenga pues tal vez recibas una herencia o, tal vez te cases con alguien rico pero, nunca sabrás cuánto durará. No te hagas demasiadas cosas en el pelo porque cuando tengas cuarenta años parecerá el de alguien de ochenta y cinco.&lt;/p&gt;
&lt;p&gt;Sé cauto con los consejos que recibes y ten paciencia con quienes te los dan. Los consejos son una forma de nostalgia. Dar consejos es una forma de sacar el pasado del cubo de la basura, limpiarlo, ocultar las partes feas y reciclarlo dándole más valor del que tiene. Pero hazme caso en lo del protector solar.&lt;/p&gt;
&lt;p&gt;&lt;!--adsense#piedepost--&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/3ypTr5qbOHWZVLh1lBPv3lwFVHg/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/3ypTr5qbOHWZVLh1lBPv3lwFVHg/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/3ypTr5qbOHWZVLh1lBPv3lwFVHg/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/3ypTr5qbOHWZVLh1lBPv3lwFVHg/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=-vAavT2V_so:s1usxEcDZVc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/-vAavT2V_so" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/usa-protector-solar/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/usa-protector-solar/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/usa-protector-solar/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Second Light, futura versión de la Microsoft Surface]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/sxUhYOj7cmc/" />
		<id>http://www.forgottenprojects.com/?p=564</id>
		<updated>2010-04-19T10:38:17Z</updated>
		<published>2010-04-19T17:00:37Z</published>
		<category scheme="http://www.forgottenprojects.com" term="CampusParty" /><category scheme="http://www.forgottenprojects.com" term="Tecnología" /><category scheme="http://www.forgottenprojects.com" term="campus party" /><category scheme="http://www.forgottenprojects.com" term="multitouch" /><category scheme="http://www.forgottenprojects.com" term="surface" />		<summary type="html"><![CDATA[Funcionamiento de la nueva versión de Microsoft Surface: Second Light]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/second-light-futura-version-microsoft-surface/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fsecond-light-futura-version-microsoft-surface%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fsecond-light-futura-version-microsoft-surface%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=campus+party,multitouch,surface" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;En la Campus Party Europa tuvimos la visita de un técnico de Microsoft Research de Cambridge el cual nos presentó en primicia la nueva mesa multitáctil sobre la que está trabajando Microsoft.&lt;/p&gt;
&lt;p&gt;Las principal novedad de esta nueva mesa es que dispone de una superficie LCD que permite variar su grado de transparencia, pudiendo pasar en una fracción de segundo de un estado translúcido sobre el que proyectar una imagen en su superficie a un estado totalmente transparente que permite proyectar y ver cosas a cierta distancia de su superficie, y esto lo hace tan rápido que consigue un efecto de estar proyectando dos cosas simultáneamente. &lt;/p&gt;
&lt;p&gt;Esta superficie es muy similar a la que &lt;a href="http://www.forgottenprojects.com/como-funciona-el-cine-3d/"&gt;se usa en algunos cines 3D&lt;/a&gt; donde cada lente tiene un cristal LCD que se hace opaco o transparente en función de si el fotograma que se visualiza corresponde el mismo ojo o al otro, mostrando imágenes diferentes para cada ojo dando la sensación de 3D como se explica en otro artículo de este blog &lt;a href="http://www.forgottenprojects.com/como-funciona-el-cine-3d/"&gt;&amp;#8220;Cómo funciona el cine 3D&amp;#8221;&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Mediante ésta técnica, se puede proyectar una imagen sobre un papel que movamos sobre la mesa sin tocarla, a la vez que se muestra otra imagen en la propia mesa, por ejemplo, podemos ver una foto aérea de una ciudad en la mesa mientras que sobre el papel que tenemos en la mano sobre la mesa, vemos el callejero.&lt;/p&gt;
&lt;p&gt;A continuación hay un vídeo donde se ve mejor cómo funciona:&lt;/p&gt;
&lt;p&gt;&lt;!--adsense#mediopost--&gt;&lt;/p&gt;
&lt;p&gt;&lt;object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="545" height="478" id="viddler_b3ff46de"&gt;&lt;param name="movie" value="http://www.viddler.com/player/b3ff46de/" /&gt;&lt;param name="allowScriptAccess" value="always" /&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;embed src="http://www.viddler.com/player/b3ff46de/" width="545" height="478" type="application/x-shockwave-flash" allowScriptAccess="always" allowFullScreen="true" name="viddler_b3ff46de"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/J5ZA2KkrCXahIj3ac210wrRJi8w/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/J5ZA2KkrCXahIj3ac210wrRJi8w/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/J5ZA2KkrCXahIj3ac210wrRJi8w/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/J5ZA2KkrCXahIj3ac210wrRJi8w/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=sxUhYOj7cmc:t7_RTKyqDLs:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/sxUhYOj7cmc" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/second-light-futura-version-microsoft-surface/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/second-light-futura-version-microsoft-surface/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/second-light-futura-version-microsoft-surface/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Campus Party Europa 2010]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/0yPT49h-M_E/" />
		<id>http://www.forgottenprojects.com/?p=562</id>
		<updated>2010-04-19T13:53:33Z</updated>
		<published>2010-04-17T16:04:53Z</published>
		<category scheme="http://www.forgottenprojects.com" term="CampusParty" /><category scheme="http://www.forgottenprojects.com" term="Tecnología" /><category scheme="http://www.forgottenprojects.com" term="campus party" /><category scheme="http://www.forgottenprojects.com" term="hci" /><category scheme="http://www.forgottenprojects.com" term="MTablev1" /><category scheme="http://www.forgottenprojects.com" term="multitouch" /><category scheme="http://www.forgottenprojects.com" term="surface" /><category scheme="http://www.forgottenprojects.com" term="touch" />		<summary type="html"><![CDATA[Nuevo vídeo de nuestra mesa multitouch presentada en Campus Party Europa ]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/campus-party-europa-2010/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcampus-party-europa-2010%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcampus-party-europa-2010%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=campus+party,hci,MTablev1,multitouch,surface,touch" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Este año se ha celebrado una edición especial de Campus Party del que está considerado el mayor evento de tecnología, creatividad y cultura digital en red del mundo. En esta ocasión, 800 participantes han sido invitados por su contribución a la innovación, ciencia y creatividad, ya sea desarrollando proyectos nuevos, haciendo robots, modding, blogs, etc.&lt;/p&gt;
&lt;p&gt;En nuestro caso hemos llevado la mesa multitáctil que llevamos un tiempo desarrollando. Aunque trabajamos muy de vez en cuando, se puede decir que el coste temporal efectivo vendría a ser una semana de trabajo a un coste de 500€+ coste de un ordenador actual que mueva el software de reconocimiento.&lt;/p&gt;
&lt;p&gt;Más abajo podéis encontrar un vídeo corriendo la demo creada por NUIgroup.com pero se debe comprender que nosotros podemos desarrollar cualquier tipo de aplicaciones para esta mesa bajo cualquier plataforma y empleando cualquier lenguaje de programación.&lt;/p&gt;
&lt;p&gt;Espero que lo disfrutes y si deseas ponerte en contacto con nosotros, puedes hacerlo escribiendo un comentario o un correo o enviándome un mensaje a través de &lt;a href="http://formspring.me/ferdy182"&gt;http://formspring.me/ferdy182&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;object width="480" height="385"&gt;&lt;param name="movie" value="http://www.youtube.com/v/YJaOJJ3Viw4&amp;#038;hl=es_ES&amp;#038;fs=1&amp;#038;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/YJaOJJ3Viw4&amp;#038;hl=es_ES&amp;#038;fs=1&amp;#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/F2aKJ1JQznvUfykC0ObMg_f6itU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/F2aKJ1JQznvUfykC0ObMg_f6itU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/F2aKJ1JQznvUfykC0ObMg_f6itU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/F2aKJ1JQznvUfykC0ObMg_f6itU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=0yPT49h-M_E:nB14WRyoQBc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/0yPT49h-M_E" height="1" width="1"/&gt;</content>
	<georss:point featurename="la caja magica">40.3688 -3.68445</georss:point>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/campus-party-europa-2010/#comments" thr:count="3" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/campus-party-europa-2010/feed/atom/" thr:count="3" />
		<thr:total>3</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/campus-party-europa-2010/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Autenticarse en Google a través de un proxy y PHP]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/saVxN3lXCwc/" />
		<id>http://74.220.219.74/~forgotu9/?p=556</id>
		<updated>2010-03-28T13:45:16Z</updated>
		<published>2010-03-16T13:40:43Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Programacion" />		<summary type="html"><![CDATA[Cómo autenticarse con Google usando su API a través de un proxy]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/autenticarse-en-google-a-traves-de-un-proxy-y-php/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fautenticarse-en-google-a-traves-de-un-proxy-y-php%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fautenticarse-en-google-a-traves-de-un-proxy-y-php%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Como en los otros posts (I  y II) sobre la API de Google Calendar no quedó muy claro el proceso de conexión y autenticación Google, voy a pegarte un trocito de código que además de cargar las librerías necesarias para usar las APIs de Google, también te enseña como hacerlo a través de un proxy, como es el caso de mi empresa.&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="php" style="font-family:monospace;"&gt;&lt;span style="color: #000000; font-weight: bold;"&gt;&amp;lt;?php&lt;/span&gt;
	&lt;span style="color: #b1b100;"&gt;require_once&lt;/span&gt; &lt;span style="color: #0000ff;"&gt;'Zend/Loader.php'&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	Zend_Loader&lt;span style="color: #339933;"&gt;::&lt;/span&gt;&lt;span style="color: #004000;"&gt;loadClass&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #0000ff;"&gt;'Zend_Gdata_App_HttpException'&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;  
	Zend_Loader&lt;span style="color: #339933;"&gt;::&lt;/span&gt;&lt;span style="color: #004000;"&gt;loadClass&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #0000ff;"&gt;'Zend_Gdata_ClientLogin'&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;  	  
	Zend_Loader&lt;span style="color: #339933;"&gt;::&lt;/span&gt;&lt;span style="color: #004000;"&gt;loadClass&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #0000ff;"&gt;'Zend_Http_Client_Exception'&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;  
	Zend_Loader&lt;span style="color: #339933;"&gt;::&lt;/span&gt;&lt;span style="color: #004000;"&gt;loadClass&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #0000ff;"&gt;'Zend_Http_Client'&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;  
	Zend_Loader&lt;span style="color: #339933;"&gt;::&lt;/span&gt;&lt;span style="color: #004000;"&gt;loadClass&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #0000ff;"&gt;'Zend_Http_Client_Adapter_Proxy'&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt; 
	Zend_Loader&lt;span style="color: #339933;"&gt;::&lt;/span&gt;&lt;span style="color: #004000;"&gt;loadClass&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #0000ff;"&gt;'Zend_Gdata_Calendar'&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
&amp;nbsp;
	&lt;span style="color: #000088;"&gt;$config&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #990000;"&gt;array&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;  
	    &lt;span style="color: #0000ff;"&gt;'adapter'&lt;/span&gt;    &lt;span style="color: #339933;"&gt;=&amp;gt;&lt;/span&gt; &lt;span style="color: #0000ff;"&gt;'Zend_Http_Client_Adapter_Proxy'&lt;/span&gt;&lt;span style="color: #339933;"&gt;,&lt;/span&gt;  
	    &lt;span style="color: #0000ff;"&gt;'proxy_host'&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&amp;gt;&lt;/span&gt; &lt;span style="color: #0000ff;"&gt;'proxy.empresa.es'&lt;/span&gt;&lt;span style="color: #339933;"&gt;,&lt;/span&gt;  
	    &lt;span style="color: #0000ff;"&gt;'proxy_port'&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&amp;gt;&lt;/span&gt; &lt;span style="color: #cc66cc;"&gt;8080&lt;/span&gt;  &lt;span style="color: #339933;"&gt;,&lt;/span&gt;
		&lt;span style="color: #0000ff;"&gt;'proxy_user'&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&amp;gt;&lt;/span&gt; &lt;span style="color: #0000ff;"&gt;'usuario_proxy'&lt;/span&gt;&lt;span style="color: #339933;"&gt;,&lt;/span&gt;
		&lt;span style="color: #0000ff;"&gt;'proxy_pass'&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&amp;gt;&lt;/span&gt; &lt;span style="color: #0000ff;"&gt;'contraseña_proxy'&lt;/span&gt;&lt;span style="color: #339933;"&gt;,&lt;/span&gt;
		&lt;span style="color: #0000ff;"&gt;'proxy_auth'&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&amp;gt;&lt;/span&gt; Zend_Http_Client&lt;span style="color: #339933;"&gt;::&lt;/span&gt;&lt;span style="color: #004000;"&gt;AUTH_BASIC&lt;/span&gt;
	&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt; 
&amp;nbsp;
	&lt;span style="color: #000088;"&gt;$proxiedHttpClient&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #000000; font-weight: bold;"&gt;new&lt;/span&gt; Zend_Gdata_HttpClient&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #0000ff;"&gt;'http://www.google.com:443'&lt;/span&gt;&lt;span style="color: #339933;"&gt;,&lt;/span&gt; &lt;span style="color: #000088;"&gt;$config&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt; 
&amp;nbsp;
&amp;nbsp;
	&lt;span style="color: #000088;"&gt;$service&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; Zend_Gdata_Calendar&lt;span style="color: #339933;"&gt;::&lt;/span&gt;&lt;span style="color: #004000;"&gt;AUTH_SERVICE_NAME&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	&lt;span style="color: #000088;"&gt;$user&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #0000ff;"&gt;&amp;quot;usuario@gmail.com&amp;quot;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	&lt;span style="color: #000088;"&gt;$pass&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #0000ff;"&gt;&amp;quot;password&amp;quot;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
&amp;nbsp;
	try &lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;  
		&lt;span style="color: #000088;"&gt;$httpClient&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; Zend_Gdata_ClientLogin&lt;span style="color: #339933;"&gt;::&lt;/span&gt;&lt;span style="color: #004000;"&gt;getHttpClient&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #000088;"&gt;$user&lt;/span&gt;&lt;span style="color: #339933;"&gt;,&lt;/span&gt; &lt;span style="color: #000088;"&gt;$pass&lt;/span&gt; &lt;span style="color: #339933;"&gt;,&lt;/span&gt; &lt;span style="color: #000088;"&gt;$service&lt;/span&gt;&lt;span style="color: #339933;"&gt;,&lt;/span&gt;  &lt;span style="color: #000088;"&gt;$proxiedHttpClient&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;  
	&lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt; catch &lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;Zend_Gdata_App_HttpException &lt;span style="color: #000088;"&gt;$httpException&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;  
	&lt;span style="color: #990000;"&gt;exit&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #0000ff;"&gt;&amp;quot;An error occurred trying to connect to the proxy server&lt;span style="color: #000099; font-weight: bold;"&gt;\n&lt;/span&gt;&amp;quot;&lt;/span&gt; &lt;span style="color: #339933;"&gt;.&lt;/span&gt;          
		&lt;span style="color: #000088;"&gt;$httpException&lt;/span&gt;&lt;span style="color: #339933;"&gt;-&amp;gt;&lt;/span&gt;&lt;span style="color: #004000;"&gt;getMessage&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt; &lt;span style="color: #339933;"&gt;.&lt;/span&gt; &lt;span style="color: #0000ff;"&gt;&amp;quot;&lt;span style="color: #000099; font-weight: bold;"&gt;\n&lt;/span&gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;  
	&lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;  
&amp;nbsp;
&amp;nbsp;
	&lt;span style="color: #666666; font-style: italic;"&gt;// Create an instance of the Calendar service&lt;/span&gt;
	&lt;span style="color: #000088;"&gt;$service&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #000000; font-weight: bold;"&gt;new&lt;/span&gt; Zend_Gdata_Calendar&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #000088;"&gt;$proxiedHttpClient&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;En caso de que el proxy no requiera usuario y contraseña, omitiremos las líneas de proxy_user y proxy_pass.&lt;/p&gt;
&lt;p&gt;Una vez auténticados, ya podemos operar con el objeto $service para operar con Google Calendar en este caso pero también sirve para Google Docs, Youtube, etc. añadiendo las librerías correspondientes.&lt;/p&gt;
&lt;p&gt;Cabe destacar que si te da un error de SSL (&lt;strong&gt;stream_socket_enable_crypto() [streams.crypto]: this stream does not support SSL/crypto in …&lt;/strong&gt;) debes incluir la extensión OpenSSL en el php.ini añadiendo la linea&lt;em&gt; extension=”openssl.so”&lt;/em&gt; y reiniciando el servidor para que se active.&lt;/p&gt;
&lt;p&gt;También es posible que de un error &lt;strong&gt;Fatal error: Call to undefined method Zend_Http_Client::setClientLoginToken() in C:\xampp\php\ZendGdata\library\Zend\Gdata\ClientLogin.php on line ***&lt;/strong&gt;, por eso he cambiado una línea que ponía&lt;br /&gt;
&lt;em&gt;new Zend_Http_Client(’http://www.google.com:443?, $config);&lt;/em&gt;&lt;br /&gt;
por la que pone&lt;br /&gt;
&lt;em&gt;new Zend_Gdata_HttpClient(’http://www.google.com:443?, $config);&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Ahora ya podemos por ejemplo listar todos nuestros calendarios así:&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;36
37
38
39
40
41
42
43
44
45
46
47
48
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="php" style="font-family:monospace;"&gt;try &lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;
	    &lt;span style="color: #000088;"&gt;$listFeed&lt;/span&gt;&lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #000088;"&gt;$service&lt;/span&gt;&lt;span style="color: #339933;"&gt;-&amp;gt;&lt;/span&gt;&lt;span style="color: #004000;"&gt;getCalendarListFeed&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	&lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt; catch &lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;Zend_Gdata_App_Exception &lt;span style="color: #000088;"&gt;$e&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;
	    &lt;span style="color: #b1b100;"&gt;echo&lt;/span&gt; &lt;span style="color: #0000ff;"&gt;&amp;quot;Error: &amp;quot;&lt;/span&gt; &lt;span style="color: #339933;"&gt;.&lt;/span&gt; &lt;span style="color: #000088;"&gt;$e&lt;/span&gt;&lt;span style="color: #339933;"&gt;-&amp;gt;&lt;/span&gt;&lt;span style="color: #004000;"&gt;getMessage&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	&lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;
&amp;nbsp;
	&lt;span style="color: #b1b100;"&gt;echo&lt;/span&gt; &lt;span style="color: #0000ff;"&gt;&amp;quot;&amp;lt;h1&amp;gt;Calendar List Feed&amp;lt;/h1&amp;gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	&lt;span style="color: #b1b100;"&gt;echo&lt;/span&gt; &lt;span style="color: #0000ff;"&gt;&amp;quot;&amp;lt;ul&amp;gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	&lt;span style="color: #b1b100;"&gt;foreach&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #000088;"&gt;$listFeed&lt;/span&gt; &lt;span style="color: #b1b100;"&gt;as&lt;/span&gt; &lt;span style="color: #000088;"&gt;$calendar&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;
	    &lt;span style="color: #b1b100;"&gt;echo&lt;/span&gt; &lt;span style="color: #0000ff;"&gt;&amp;quot;&amp;lt;li&amp;gt;&amp;quot;&lt;/span&gt; &lt;span style="color: #339933;"&gt;.&lt;/span&gt; &lt;span style="color: #000088;"&gt;$calendar&lt;/span&gt;&lt;span style="color: #339933;"&gt;-&amp;gt;&lt;/span&gt;&lt;span style="color: #004000;"&gt;title&lt;/span&gt; &lt;span style="color: #339933;"&gt;.&lt;/span&gt;
	         &lt;span style="color: #0000ff;"&gt;&amp;quot; (Event Feed: &amp;quot;&lt;/span&gt; &lt;span style="color: #339933;"&gt;.&lt;/span&gt; &lt;span style="color: #000088;"&gt;$calendar&lt;/span&gt;&lt;span style="color: #339933;"&gt;-&amp;gt;&lt;/span&gt;&lt;span style="color: #004000;"&gt;id&lt;/span&gt; &lt;span style="color: #339933;"&gt;.&lt;/span&gt; &lt;span style="color: #0000ff;"&gt;&amp;quot;)&amp;lt;/li&amp;gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	&lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;
	&lt;span style="color: #b1b100;"&gt;echo&lt;/span&gt; &lt;span style="color: #0000ff;"&gt;&amp;quot;&amp;lt;/ul&amp;gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Fuentes:&lt;br /&gt;
&lt;a href="http://gdatatips.blogspot.com/2008/09/using-php-client-library-through-proxy.html"&gt;GData Tips&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://framework.zend.com/manual/en/zend.http.client.adapters.html"&gt;Zend Framework&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://archive.netbsd.se/?ml=squirrelmail-plugins&amp;#038;a=2007-07&amp;#038;t=4669364"&gt;http://archive.netbsd.se/?ml=squirrelmail-plugins&amp;#038;a=2007-07&amp;#038;t=4669364&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;!--adsense#piedepost--&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/tE8k0J6TXZRi9CPkP3SbUWov7PI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/tE8k0J6TXZRi9CPkP3SbUWov7PI/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/tE8k0J6TXZRi9CPkP3SbUWov7PI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/tE8k0J6TXZRi9CPkP3SbUWov7PI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=saVxN3lXCwc:iXCNsXS0xf8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/saVxN3lXCwc" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/autenticarse-en-google-a-traves-de-un-proxy-y-php/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/autenticarse-en-google-a-traves-de-un-proxy-y-php/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/autenticarse-en-google-a-traves-de-un-proxy-y-php/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Android Developer Lab Madrid 2010]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/6WeFW1kDfDs/" />
		<id>http://74.220.219.74/~forgotu9/?p=552</id>
		<updated>2010-03-28T13:37:00Z</updated>
		<published>2010-02-15T13:27:38Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Programacion" /><category scheme="http://www.forgottenprojects.com" term="Tecnología" />		<summary type="html"><![CDATA[
			
				
			
		
Este sábado pasado asistí al Android Developer Lab organizado por Google y que se celebró en Fuenlabrada, en la Universidad Rey Juan Carlos I.
El día antes corría el rumor por twitter de que Google estaba regalando su nuevo móvil Nexus One a los asistentes de los demás eventos de Android que estaban haciendo por Europa. [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/android-developer-lab-madrid-2010/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fandroid-developer-lab-madrid-2010%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fandroid-developer-lab-madrid-2010%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Este sábado pasado asistí al Android Developer Lab organizado por Google y que se celebró en Fuenlabrada, en la Universidad Rey Juan Carlos I.&lt;/p&gt;
&lt;p&gt;El día antes corría el rumor por twitter de que Google estaba regalando su nuevo móvil Nexus One a los asistentes de los demás eventos de Android que estaban haciendo por Europa. Ese rumor se volvió confirmación mientras se celebraban los eventos de Paris y NY (sólo que en Nueva York regalaban Motorola Droid). Así que con ese aliciente, el madrugón del Sábado para estar allí a las 10 de la mañana no sabía tan mal.&lt;/p&gt;
&lt;p&gt;Al llegar lo primero que hicieron fue repartir los teléfonos a los asistentes registrados que éramos bastantes y llenamos la sala de conferencias.&lt;br /&gt;
&lt;img alt="" src="http://lh5.ggpht.com/_GsirukKY5SA/S3aYLi7MQWI/AAAAAAAAGD4/i-wmQgpH5Zg/15.jpg" class="alignleft" width="640" height="480" /&gt;&lt;/p&gt;
&lt;p&gt;El evento en sí, me resulto un poco decepcionante, puede ser que fuese influenciado en que el inglés del ponente me resultaba más difícil de entender que el de su compañero que hablaba menos. También porque no hicimos nada de networking (iba con &lt;a href="http://twitter.com/mr_villa"&gt;@mr_villa&lt;/a&gt; y su amigo &lt;a href="http://twitter.com/olerud"&gt;@olerud&lt;/a&gt;). Parece ser que hubo gente de And.roid.es, de &lt;a href="http://www.geeksphone.com/en/"&gt;GeeksPhone&lt;/a&gt;, &lt;a href="http://droiders.com/"&gt;Droiders &lt;/a&gt;y de &lt;a href="http://www.inizziativa.com/"&gt;Inizziativa &lt;/a&gt;(ganadores del ADC2). Pero especialmente porque pedían que llevásemos un portátil con el SDK 2.1 instalado, supuestamente para ver algo de código, pero de eso nada.&lt;/p&gt;
&lt;p&gt;Después de la charla de introducción con datos de lo bueno que es Android y de lo que está creciendo y de ver cómo los usuarios de Android usan más sus aplicaciones y las borran menos que respecto al iPhone, nos invitaron a comer unos sandwiches y unas cocacolas para seguir después con otra pequeña charlita sobre el SDK y las APIs de desarrollo donde enseñaron un par de snippets de código para emplear geolocalización y fondos animados.&lt;/p&gt;
&lt;p&gt;En general, si no hubiese sido por el Nexus One del cual haré una reseña en breve, la charla me habría resultado decepcionante aunque doy por hecho que otras personas la habrán aprovechado mucho más que yo desvirtualizando otros usuarios de twitter con los que se comunican, al estilo de lo que hicimos nosotros en el &lt;a href="http://www.forgottenprojects.com/congreso-webmasters-2009/"&gt;congreso de webmasters&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;!--adsense#piedepost--&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/foudDMZjcsWrMXCrp7Z6NQ2uUYA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/foudDMZjcsWrMXCrp7Z6NQ2uUYA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/foudDMZjcsWrMXCrp7Z6NQ2uUYA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/foudDMZjcsWrMXCrp7Z6NQ2uUYA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=6WeFW1kDfDs:2J9canRUdKA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/6WeFW1kDfDs" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/android-developer-lab-madrid-2010/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/android-developer-lab-madrid-2010/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/android-developer-lab-madrid-2010/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Cómo cargarse el aviso de reiniciar el equipo]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/B6MLEnUmPiA/" />
		<id>http://www.forgottenprojects.com/como-cargarse-el-aviso-de-reiniciar-el-equipo/</id>
		<updated>2010-02-11T15:47:56Z</updated>
		<published>2010-02-11T15:47:56Z</published>
		<category scheme="http://www.forgottenprojects.com" term="General" /><category scheme="http://www.forgottenprojects.com" term="trucos" />		<summary type="html"><![CDATA[
			
				
			
		
Si estás harto de que aparezca el cartelito de windows que indica que debes reiniciar el equipo para aplicar las actualizaciones, que sepas que puede matarlo para siempre con el siguiente comando: sc stop wuauserv
De este modo dejará de molestar y se aplicarán las actualizaciones cuando reinicies el PC voluntariamente
]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/como-cargarse-el-aviso-de-reiniciar-el-equipo/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcomo-cargarse-el-aviso-de-reiniciar-el-equipo%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcomo-cargarse-el-aviso-de-reiniciar-el-equipo%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=trucos" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Si estás harto de que aparezca el cartelito de windows que indica que debes reiniciar el equipo para aplicar las actualizaciones, que sepas que puede matarlo para siempre con el siguiente comando: &lt;b&gt;sc stop wuauserv&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;De este modo dejará de molestar y se aplicarán las actualizaciones cuando reinicies el PC voluntariamente&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/u1Qf1bljVfek3J036o8M23fdIYU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/u1Qf1bljVfek3J036o8M23fdIYU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/u1Qf1bljVfek3J036o8M23fdIYU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/u1Qf1bljVfek3J036o8M23fdIYU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=B6MLEnUmPiA:TcGJcUTjUMs:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/B6MLEnUmPiA" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/como-cargarse-el-aviso-de-reiniciar-el-equipo/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/como-cargarse-el-aviso-de-reiniciar-el-equipo/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/como-cargarse-el-aviso-de-reiniciar-el-equipo/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Mésa multitáctil, reconociendo dedos + proyección de imagen]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/rHhODObM5q0/" />
		<id>http://www.forgottenprojects.com/?p=546</id>
		<updated>2010-04-19T13:53:48Z</updated>
		<published>2010-01-30T13:55:23Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Freaks" /><category scheme="http://www.forgottenprojects.com" term="Programacion" /><category scheme="http://www.forgottenprojects.com" term="Tecnología" /><category scheme="http://www.forgottenprojects.com" term="hci" /><category scheme="http://www.forgottenprojects.com" term="MTablev1" /><category scheme="http://www.forgottenprojects.com" term="multitouch" /><category scheme="http://www.forgottenprojects.com" term="surface" /><category scheme="http://www.forgottenprojects.com" term="touch" />		<summary type="html"><![CDATA[Video demostrando el funcionamiento de nuestra propia mesa multitáctil con reconocimiento de dedos y retroproyección]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/mesa-multitactil-reconociendo-dedos-y-proyeccion-de-imagen/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fmesa-multitactil-reconociendo-dedos-y-proyeccion-de-imagen%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fmesa-multitactil-reconociendo-dedos-y-proyeccion-de-imagen%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=hci,MTablev1,multitouch,surface,touch" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Pues por fin hemos integrado ambas partes, el reconocimiento de dedos y tracking con la retroproyección de la imagen en pantalla y la verdad es que funciona bastante bien. En el vídeo que hay más abajo se puede ver el resultado. Va bastante lento debido a que el ordenador que hemos conectado es un netbook con un procesador Atom de 1Gb de RAM y una gráfica Intel GMA de las báscias, aún así, hace el tratamiento de imagen bastante bien pero cuando hagamos la prueba con el Core2Duo será otro cantar y la aplicación de demostración irá como un avión. Entre tanto dejo aquí el vídeo.&lt;/p&gt;
&lt;p&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/YoVa5d12m10&amp;#038;hl=es_ES&amp;#038;fs=1&amp;#038;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/YoVa5d12m10&amp;#038;hl=es_ES&amp;#038;fs=1&amp;#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;&lt;!--adsense#piedepost--&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/MDGIgzjv-2-wBiCO-6a9OtsEGn4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/MDGIgzjv-2-wBiCO-6a9OtsEGn4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/MDGIgzjv-2-wBiCO-6a9OtsEGn4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/MDGIgzjv-2-wBiCO-6a9OtsEGn4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=rHhODObM5q0:ZpVyU8-3rxo:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/rHhODObM5q0" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/mesa-multitactil-reconociendo-dedos-y-proyeccion-de-imagen/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/mesa-multitactil-reconociendo-dedos-y-proyeccion-de-imagen/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/mesa-multitactil-reconociendo-dedos-y-proyeccion-de-imagen/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Qype: compañía del tropico cafe &amp; te en Santander]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/81zAOrrt2y8/" />
		<id>http://www.forgottenprojects.com/qype-compania-del-tropico-cafe-te-en-santander/</id>
		<updated>2010-01-04T15:42:38Z</updated>
		<published>2010-01-04T15:42:38Z</published>
		<category scheme="http://www.forgottenprojects.com" term="General" />		<summary type="html"><![CDATA[
			
				
			
		
Santander
  No sé os ocurra tomar nada aquí. Una hora para que te sirvan en un vaso sucio y roto por una tipa impertinente que habría que despedir.  Una hamburguesa en un pan de pita correoso porque no hay de hamburguesa. En definitiva, un lugar a evitar.
Echa un vistazo a mi reseña de [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/qype-compania-del-tropico-cafe-te-en-santander/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-compania-del-tropico-cafe-te-en-santander%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-compania-del-tropico-cafe-te-en-santander%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;a href="http://www.qype.es/es130-santander"&gt;Santander&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;  No sé os ocurra tomar nada aquí. Una hora para que te sirvan en un vaso sucio y roto por una tipa impertinente que habría que despedir.  Una hamburguesa en un pan de pita correoso porque no hay de hamburguesa. En definitiva, un lugar a evitar.&lt;/p&gt;
&lt;p&gt;Echa un vistazo a mi reseña de &lt;a href="http://www.qype.es/place/1176158-compania-del-tropico-cafe-te-Santander"&gt;compañía del tropico cafe &amp;amp; te&lt;/a&gt; &amp;#8211; Yo soy &lt;a href="http://www.qype.es/people/ferdy182"&gt;ferdy182&lt;/a&gt; &amp;#8211; en &lt;a href="http://www.qype.es/"&gt;Qype&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/Vna-98xbipoodbwMzx1dLjUFHdg/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Vna-98xbipoodbwMzx1dLjUFHdg/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/Vna-98xbipoodbwMzx1dLjUFHdg/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Vna-98xbipoodbwMzx1dLjUFHdg/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=81zAOrrt2y8:vhN9r9I5Wq0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/81zAOrrt2y8" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/qype-compania-del-tropico-cafe-te-en-santander/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/qype-compania-del-tropico-cafe-te-en-santander/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/qype-compania-del-tropico-cafe-te-en-santander/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Propósitos para el 2010]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/34OM94GInMA/" />
		<id>http://www.forgottenprojects.com/?p=497</id>
		<updated>2010-01-04T01:39:39Z</updated>
		<published>2010-01-04T00:56:50Z</published>
		<category scheme="http://www.forgottenprojects.com" term="La nueva vida" /><category scheme="http://www.forgottenprojects.com" term="Personal" />		<summary type="html"><![CDATA[Mis buenos propósitos para el 2010, de obligado cumplimiento]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/propositos-para-el-2010/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fpropositos-para-el-2010%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fpropositos-para-el-2010%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Como otros bloggers, voy a escribir mis propósitos de este año 2010 y según los vaya cumpliendo, voy a ir editando este post para ir reflejándolo y así motivarme a mi mismo para conseguirlos:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Perder peso, el más importante de todos, por salud y por sentirme bien conmigo mismo, voy a intentar hacer más deporte, salir más a correr y jugar al padel y a jugar más con la alfombra de baile, que se suda mucho &lt;img src='http://www.forgottenprojects.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /&gt;&lt;br /&gt;
&lt;img alt="" src="http://espadadedamocles.files.wordpress.com/2007/05/ddr.jpg" title="DDR Badges" class="aligncenter" width="50%"/&gt;&lt;/li&gt;
&lt;li&gt;Sacarme la certificación en .NET que estoy estudiando. Son 4 certificaciones, MCTS y MCPD en ASP.NET y Windows Forms. Ya que me ha costado una pasta, espero sacármela sin problemas, y además, recuperar la inversión en mi próximo empleo &lt;img src='http://www.forgottenprojects.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /&gt;&lt;br /&gt;
&lt;img alt="" src="http://www.aisysweb.com/Portals/2/images/microsoft/Certification/MCPD.gif" title="MCPD" class="aligncenter" width="150" height="93" /&gt;&lt;img alt="" src="http://www.dascarlchen.de/Qualifikationen/Logos/mcts-logo.gif" title="MCTS" class="aligncenter" width="150" height="93"   /&gt;&lt;/li&gt;
&lt;li&gt;Terminar los proyectos personales que tengo abiertos, entre ellos, acabar GeoTurista antes de que quede obsoleto (si no lo está ya) y &lt;a href="http://www.readcomicsonline.net"&gt;ReadComicsOnline.net&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.forgottenprojects.com/wp-content/uploads/2010/01/draft01.jpg"&gt;&lt;img src="http://www.forgottenprojects.com/wp-content/uploads/2010/01/draft01-300x93.jpg" alt="Geoturista Logo" title="Geoturista Logo" width="300" height="93" class="aligncenter size-medium wp-image-519" /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Irme de viaje a Irlanda y de paso ver como está el tema laboral por allí. Puede ser un destino interesante para dar el salto de aquí a un tiempo. Aunque primero engañar a alguien para que venga conmigo &lt;img src='http://www.forgottenprojects.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /&gt; &lt;img alt="" src="http://www.nerve.com/CS/blogs/modernmaterialist/2009/03/GOR-068~Irish-Coffee-Posters.jpg" title="Irish coffee" class="aligncenter"  width="50%" /&gt;&lt;/li&gt;
&lt;li&gt;Aprender de una vez a programar para Android e iPhone. Sobre todo el primero que es gratis probar en el terminal&amp;#8230; en el iPhone te cobran 99$/año por poder firmar la aplicación y correrla en un iPhone que no tengo &lt;img src='http://www.forgottenprojects.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /&gt; &lt;img alt="" src="http://pillateunlinux.files.wordpress.com/2009/09/androidgoogle.jpg" class="aligncenter" width="50%" /&gt;&lt;/li&gt;
&lt;li&gt;Empezar un blog sobre realidad aumentada, visión por computador y procesamiento de imagen. Uno de los temas que más me gustan en la informática actual y que más futuro le veo &lt;img alt="" src="http://blog.dmklee.com/wp-content/uploads/2009/03/09topps450.jpg" title="Augmented Reality Baseball Card" class="aligncenter" width="50%" /&gt;&lt;/li&gt;
&lt;li&gt;Seguir vendiendo camisetas como churros en &lt;a href="http://www.camisetafriki.com/?ref=post"&gt;www.camisetafriki.com&lt;/a&gt; &lt;a href="http://www.forgottenprojects.com/wp-content/uploads/2010/01/camisetas-pedido1.jpg"&gt;&lt;img src="http://www.forgottenprojects.com/wp-content/uploads/2010/01/camisetas-pedido1-300x225.jpg" alt="Camisetas Suit Up www.camisetafriki.com" title="Camisetas Suit Up www.camisetafriki.com" width="300" height="225" class="aligncenter size-medium wp-image-517" /&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Y que este año que viene, sea el año de los emprendedores, el año de las buenas ideas y mejores ejecuciones, el año en que los sueños se hacen realidad y las cosas empiezan a rodar, el año en que conoceremos a mucha gente interesante de la que aprenderemos un monton, el año de los negocios y el año de la productividad. A todos vosotros que hacéis esto posible: Productivo Año 2010&lt;/p&gt;
&lt;p&gt;&lt;!--adsense#piedepost--&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/8lOz-PQQj9CtGvf2I1cAW8aBFD8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/8lOz-PQQj9CtGvf2I1cAW8aBFD8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/8lOz-PQQj9CtGvf2I1cAW8aBFD8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/8lOz-PQQj9CtGvf2I1cAW8aBFD8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=34OM94GInMA:YPkBxewVff4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/34OM94GInMA" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/propositos-para-el-2010/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/propositos-para-el-2010/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/propositos-para-el-2010/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Cómo funciona el cine 3D]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/UVIT0eRaKLs/" />
		<id>http://www.forgottenprojects.com/?p=493</id>
		<updated>2010-07-14T08:14:16Z</updated>
		<published>2009-12-29T10:00:32Z</published>
		<category scheme="http://www.forgottenprojects.com" term="General" />		<summary type="html"><![CDATA[
			
				
			
		

Después de ver varias pelis en 3D, entre ellas Avatar, la cual os recomiendo, el tema de como funciona el cine 3D ha sido algo recurrente entre mis amigos. Como soy muy curioso, hacía ya un tiempo que me había documentado en cómo funciona este tipo de sistemas de proyección, que a estas alturas supongo [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/como-funciona-el-cine-3d/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcomo-funciona-el-cine-3d%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcomo-funciona-el-cine-3d%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;img alt="" src="http://vocaleyes.files.wordpress.com/2009/12/jake-and-neytiri_517x291.jpg" title="Avatar-Neytiri" class="alignright" width="60%"  /&gt;&lt;br /&gt;
Después de ver varias pelis en 3D, entre ellas Avatar, la cual os recomiendo, el tema de como funciona el cine 3D ha sido algo recurrente entre mis amigos. Como soy muy curioso, hacía ya un tiempo que me había documentado en cómo funciona este tipo de sistemas de proyección, que a estas alturas supongo que la gente ya sabe que las gafitas con las lentes roja y azul ya no se usan, pero el principio es el mismo, os cuento&amp;#8230;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Teoría de la visión tridimensional&lt;/strong&gt;&lt;br /&gt;
Como habréis podido observar, los humanos (la mayoría) tenemos 2 ojos, separados unos centímetros uno de otro. Nuestros ojos captan dos imágenes desde dos puntos de vista dferentes que el cerebro se encarga de combinar, pudiendo tener la sensación de profundidad y volumen, muy útil para calcular distancias (cuando los primates iban de rama en rama les sería muy útil calcular la distancia, digo yo..). Si probáis a taparos un ojo e intentar coger un lapiz de un bote de lápices veréis como cuesta acertar.&lt;/p&gt;
&lt;p&gt;Como en el cine, las imagenes se proyectan sobre una pantalla plana, es requisito indispensable que cada ojo perciba una imagen ligeramente diferente, de forma que engañemos al cerebro para crear sensación de profundidad.&lt;/p&gt;
&lt;p&gt;Todos recordamos que en las primeras imagenes 3D, era necesario usar unas gafas con un plástico azul en un lado y un plástico rojo en el otro. Con esto solo se podían mirar imagenes formadas por dos ilustraciones de colores rojo y azul superpuestas. Cada imagen era tomada desde un punto de vista ligeramente separado del otro, de forma que al verla con las gafas, el ojo con el plastico azul no veia la imagen azul por ser del mismo color, y el ojo del plastico rojo no veia la imagen en rojo, por lo mismo. De esta forma, se consigue que cada ojo vea una imagen diferente. Como primera aproximación estaba bien pero ver una peli en 3D así sería impensable, veríamos la imagen en un color que no sería real.&lt;/p&gt;
&lt;p&gt;Sin adentrarme mucho en las técnicas que se han estado usando hasta ahora, voy a contaros la técnica más usada a día de hoy, que consiste en aplicar filtros a la luz para polarizarla. Esta técnica se llama RealD 3D&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;RealD 3D&lt;/strong&gt;&lt;br /&gt;
Como necesitamos imagenes diferentes para cada ojo, se graban dos películas, una para el ojo izquierdo y una para el ojo derecho, como comentaba antes, el punto de vista de las imagenes para cada ojo están separadas unos centimetros. Como ahora casi todo está hecho por ordenador, realmente no tiene sobrecoste, salvo las escenas de imagen real, que requieren una cámara estereoscópica (es decir, que graba dos imagenes separadas, simultáneamente), o directamente, se graban en 2D y al componerlas sobre fondos 3D, quedan como si estuvieran en distintos planos de profundidad.&lt;/p&gt;
&lt;p&gt;A la hora de proyectar la imagen en el cine, se proyectan las dos películas de forma que se intercalen los fotogramas para el ojo izquierdo y para el ojo derecho, por eso sin las gafas, vemos la imagen doble, ya que se proyectan los fotogramas muy rápidamente, 144 fotogramas por segundo frente a los 24 que ve el ojo humano, esto se hace para eliminar el parpadeo de la imagen, y da la sensación de ver dos imágenes superpuestas, pero la magia realmente sucede en la polarización de la luz.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;¿Que es la luz polarizada?&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;La luz no polarizada está compuesta por ondas que vibran en todos los ángulos, al llegar a un medio polarizador, sólo las ondas que vibran en un ángulo determinado consiguen atravesar el medio, al poner otro polarizador a continuación, si el ángulo que deja pasar el medio coincide con el ángulo de vibración de la onda, la luz pasará íntegra, si no sólo una parte pasará hasta llegar a un ángulo de 90º entre los dos polarizadores, donde no pasará nada de luz.&lt;br /&gt;
Como una imagen vale mas que mil palabras&amp;#8230;&lt;br /&gt;
&lt;div class="wp-caption alignnone" style="width: 402px"&gt;&lt;a href="http://www.uned.es/cristamine/crist_opt/cropt_luz_crist.htm"&gt;&lt;img alt="Polarización de la luz" src="http://www.uned.es/cristamine/crist_opt/polarizador.gif" title="Polarización de la luz" width="392" height="242" /&gt;&lt;/a&gt;&lt;p class="wp-caption-text"&gt;Polarización de la luz&lt;/p&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;En cine 3D la luz se polariza en forma circular, en sentido de las agujas del reloj y en sentido contrario (ver &lt;a href="http://es.wikipedia.org/wiki/Polarizaci%C3%B3n_electromagn%C3%A9tica"&gt;Wikipedia&lt;/a&gt; para más detalles)&lt;br /&gt;
&lt;img alt="" src="http://upload.wikimedia.org/wikipedia/commons/a/af/Animation_polariseur_2.gif" title="Polarizador" class="alignnone" width="260" height="195" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;De acuerdo ¿cómo se produce el 3D?&lt;/strong&gt;&lt;br /&gt;
Pues básicamente se pone un cristal polarizador delante de la lente del proyector que hace que la luz se polarice en una direccion u otra dependiendo de si la imagen va a ser para el ojo izquierdo o para el derecho. Si se usa un proyector, es un disco con ambos cristales que gira delante del cañon con la misma frecuencia que este para que los fotogramas correspondan con el cristal correspondiente.&lt;br /&gt;
&lt;strong&gt;&lt;br /&gt;
¿Y para qué sirven las gafas?&lt;/strong&gt;&lt;br /&gt;
(En el caso de la técnica RealD) Las gafas tienen un filtro de luz polarizada en cada lente, de tal modo que la lente izquierda solo deja pasar la luz polarizada en una direccion y la lente derecha solo deja pasar la luz polariza en dirección contraria. Así volvemos a conseguir que cada ojo vea una imagen diferente y el cerebro hace el resto.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;¿Y esto me vale en casa?¿y si me bajo una peli 3D de internet?&lt;/strong&gt;&lt;br /&gt;
Bueno, este tema lo ibamos hablando a la salida del cine. La respuesta es que no, como hemos dicho, hace falta un polarizador de luz, una tele que emita luz polarizada de manera distinta para cada fotograma, o un proyector 3D que proyecte luz polarizada, si la luz no está polarizada, las gafas no valen para nada (ya que solo es un filtro de luz). Si grabas la película con una cámara, la imagen que grabes será a menor velocidad y verás la mezcla de ambas, de modo que al reproducirla en casa, no se verá con luz polarizada, se verá con luz natural y por tanto las gafas no harán nada.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Pero venden teles y proyectores 3D&lt;/strong&gt;&lt;br /&gt;
Si, pero estas teles y proyectores llevan unas gafas del estilo de las que explico en el siguiente apartado, unas gafas conectadas al reproductor que se sincronizan para mostrar una imagen u otra mediante un filtrado activo (con alimentación eléctrica)&lt;br /&gt;
&lt;strong&gt;&lt;br /&gt;
Otras técnicas&lt;/strong&gt;&lt;br /&gt;
Leyendo por ahí, hay otras técnicas mucho más caras. Una es poniendo un filtro de cristal liquido en cada lente de las gafas, de modo que se oscurecen y aclaran alternativamente para mostrar una imagen u otra pero necesitan baterías y sincronizarse con el proyector, lo que las encarece.&lt;/p&gt;
&lt;p&gt;Otra tecnica es el Dolby 3D, que consiste en saturar las imagenes mas hacia el rojo y mas hacia el verde (en función del ojo que la vaya a ver) pero de forma imperceptiva a simple vista, y usar unas gafas con 50 cristales en cada lente que filtran el color correspondiente, como aquellas de plástico pero muy mejorado. Esto también es caro &lt;img src='http://www.forgottenprojects.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /&gt; &lt;/p&gt;
&lt;p&gt;Espero haberos aclarado, para más información:&lt;br /&gt;
&lt;a href="http://www.gamefilia.com/sayancatx/10-02-2009/19170/tecnologia-del-cine-cine-en-3d"&gt;http://www.gamefilia.com/sayancatx/10-02-2009/19170/tecnologia-del-cine-cine-en-3d&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.uned.es/cristamine/crist_opt/cropt_luz_crist.htm"&gt;http://www.uned.es/cristamine/crist_opt/cropt_luz_crist.htm&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://es.wikipedia.org/wiki/Polarizaci%C3%B3n_electromagn%C3%A9tica"&gt;http://es.wikipedia.org/wiki/Polarizaci%C3%B3n_electromagn%C3%A9tica&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;!--adsense#piedepost--&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/hCCmz4RYCxTDBJiPqBOakToDz7M/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/hCCmz4RYCxTDBJiPqBOakToDz7M/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/hCCmz4RYCxTDBJiPqBOakToDz7M/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/hCCmz4RYCxTDBJiPqBOakToDz7M/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=UVIT0eRaKLs:UvP-9FaJGT0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/UVIT0eRaKLs" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/como-funciona-el-cine-3d/#comments" thr:count="23" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/como-funciona-el-cine-3d/feed/atom/" thr:count="23" />
		<thr:total>23</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/como-funciona-el-cine-3d/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Manifiesto «En defensa de los derechos fundamentales en internet»]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/gRBX9W9JP5A/" />
		<id>http://www.forgottenprojects.com/manifiesto-%c2%aben-defensa-de-los-derechos-fundamentales-en-internet%c2%bb/</id>
		<updated>2009-12-02T11:42:19Z</updated>
		<published>2009-12-02T11:29:09Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Interesante" /><category scheme="http://www.forgottenprojects.com" term="Tecnología" /><category scheme="http://www.forgottenprojects.com" term="derechos" />		<summary type="html"><![CDATA[Manifiesto «En defensa de los derechos fundamentales en internet»]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/manifiesto-%c2%aben-defensa-de-los-derechos-fundamentales-en-internet%c2%bb/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fmanifiesto-%25c2%25aben-defensa-de-los-derechos-fundamentales-en-internet%25c2%25bb%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fmanifiesto-%25c2%25aben-defensa-de-los-derechos-fundamentales-en-internet%25c2%25bb%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=derechos" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Ante la inclusión en el Anteproyecto de Ley de Economía sostenible de modificaciones legislativas que afectan al libre ejercicio de las libertades de expresión, información y el derecho de acceso a la cultura a través de Internet, los periodistas, bloggers, usuarios, profesionales y creadores de internet manifestamos nuestra firme oposición al proyecto, y declaramos que…&lt;/p&gt;
&lt;p&gt;1.- &lt;strong&gt;Los derechos de autor no pueden situarse por encima de los derechos fundamentales de los ciudadanos&lt;/strong&gt;, como el derecho a la privacidad, a la seguridad, a la presunción de inocencia, a la tutela judicial efectiva y a la libertad de expresión.&lt;/p&gt;
&lt;p&gt;2.- &lt;strong&gt;La suspensión de derechos fundamentales es y debe seguir siendo competencia exclusiva del poder judicial&lt;/strong&gt;. Ni un cierre sin sentencia. Este anteproyecto, en contra de lo establecido en el artículo 20.5 de la Constitución, pone en manos de un órgano no judicial -un organismo dependiente del ministerio de Cultura-, la potestad de impedir a los ciudadanos españoles el acceso a cualquier página web.&lt;/p&gt;
&lt;p&gt;3.- &lt;strong&gt;La nueva legislación creará inseguridad jurídica en todo el sector tecnológico español&lt;/strong&gt;, perjudicando uno de los pocos campos de desarrollo y futuro de nuestra economía, entorpeciendo la creación de empresas, introduciendo trabas a la libre competencia y ralentizando su proyección internacional.&lt;/p&gt;
&lt;p&gt;4.- &lt;strong&gt;La nueva legislación propuesta amenaza a los nuevos creadores y entorpece la creación cultural&lt;/strong&gt;. Con Internet y los sucesivos avances tecnológicos se ha democratizado extraordinariamente la creación y emisión de contenidos de todo tipo, que ya no provienen prevalentemente de las industrias culturales tradicionales, sino de multitud de fuentes diferentes.&lt;/p&gt;
&lt;p&gt;5.- &lt;strong&gt;Los autores, como todos los trabajadores, tienen derecho a vivir de su trabajo con nuevas ideas creativas, modelos de negocio y actividades asociadas a sus creaciones&lt;/strong&gt;. Intentar sostener con cambios legislativos a una industria obsoleta que no sabe adaptarse a este nuevo entorno no es ni justo ni realista. Si su modelo de negocio se basaba en el control de las copias de las obras y en Internet no es posible sin vulnerar derechos fundamentales, deberían buscar otro modelo.&lt;/p&gt;
&lt;p&gt;6.- &lt;strong&gt;Consideramos que las industrias culturales necesitan para sobrevivir alternativas modernas, eficaces, creíbles y asequibles y que se adecuen a los nuevos usos sociales&lt;/strong&gt;, en lugar de limitaciones tan desproporcionadas como ineficaces para el fin que dicen perseguir.&lt;/p&gt;
&lt;p&gt;7.- &lt;strong&gt;Internet debe funcionar de forma libre y sin interferencias políticas&lt;/strong&gt; auspiciadas por sectores que pretenden perpetuar obsoletos modelos de negocio e imposibilitar que el saber humano siga siendo libre.&lt;/p&gt;
&lt;p&gt;8.-&lt;strong&gt; Exigimos que el Gobierno garantice por ley la neutralidad de la Red en España&lt;/strong&gt;, ante cualquier presión que pueda producirse, como marco para el desarrollo de una economía sostenible y realista de cara al futuro.&lt;/p&gt;
&lt;p&gt;9.- Proponemos una verdadera reforma del derecho de propiedad intelectual orientada a su fin: &lt;strong&gt;devolver a la sociedad el conocimiento, promover el dominio público y limitar los abusos de las entidades gestoras&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;10.- &lt;strong&gt;En democracia las leyes y sus modificaciones deben aprobarse tras el oportuno debate público y habiendo consultado previamente a todas las partes implicadas&lt;/strong&gt;. No es de recibo que se realicen cambios legislativos que afectan a derechos fundamentales en una ley no orgánica y que versa sobre otra materia&lt;/p&gt;
&lt;p&gt;Léelo, pásalo, cópialo, compártelo&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/dbF_cTCkXMsxbL0FcsGdgpXAMWc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/dbF_cTCkXMsxbL0FcsGdgpXAMWc/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/dbF_cTCkXMsxbL0FcsGdgpXAMWc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/dbF_cTCkXMsxbL0FcsGdgpXAMWc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=gRBX9W9JP5A:4TmPHffmuVI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/gRBX9W9JP5A" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/manifiesto-%c2%aben-defensa-de-los-derechos-fundamentales-en-internet%c2%bb/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/manifiesto-%c2%aben-defensa-de-los-derechos-fundamentales-en-internet%c2%bb/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/manifiesto-%c2%aben-defensa-de-los-derechos-fundamentales-en-internet%c2%bb/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Uso del gps para encontrar plaza de aparcamiento]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/rheBrGLknzE/" />
		<id>http://www.forgottenprojects.com/?p=483</id>
		<updated>2009-12-01T15:38:51Z</updated>
		<published>2009-12-01T15:38:51Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Interesante" /><category scheme="http://www.forgottenprojects.com" term="ideas4all" />		<summary type="html"><![CDATA[Esta tecnología permitiría a los conductores encontrar plazas de aparcamiento disponibles cercanas al lugar al que se dirigen y en tiempo real, lo que les permitiría ahorrar combustible, tiempo y emitir menos CO2 a la atmósfera que emplean mientras dan vueltas buscando un sitio libre.]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/uso-del-gps-para-encontrar-plaza-de-aparcamiento/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fuso-del-gps-para-encontrar-plaza-de-aparcamiento%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fuso-del-gps-para-encontrar-plaza-de-aparcamiento%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=ideas4all" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;(Si te gusta esta idea puedes &lt;a href="http://es.ideas4all.com/ideas/42775-uso_del_gps_para_encontrar_plaza_de_aparcamiento?comment_link=59745#comment_link_59745"&gt;votarla en ideas4all pinchando aquí&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Resumen&lt;/strong&gt;&lt;br /&gt;
Mi idea pretende resolver el problema de encontrar aparcamiento que tienen todos los conductores de forma generalizada, cuando tienen que acercarse al centro de la ciudad y encontrar un estacionamiento libre.&lt;/p&gt;
&lt;p&gt;Esta tecnología permitiría a los conductores encontrar plazas de aparcamiento disponibles cercanas al lugar al que se dirigen y en tiempo real, lo que les permitiría ahorrar combustible, tiempo y emitir menos CO2 a la atmósfera que emplean mientras dan vueltas buscando un sitio libre.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Funcionamiento&lt;/strong&gt;&lt;br /&gt;
La idea consiste en instalar sensores de presencia cada pocos centímetros a lo largo de las plazas de aparcamiento de pago, ya sean al aire libre o en subterráneos, que se encuentran en nuestras ciudades. Estos sensores de presencia podrían ser medidores de distancia basados en infrarrojos, presión o algún tipo de sensor de proximidad.&lt;/p&gt;
&lt;p&gt;-  &lt;a href="http://es.ideas4all.com/ideas/42775-uso_del_gps_para_encontrar_plaza_de_aparcamiento?comment_link=59745#comment_link_59745"&gt;Léela completa en ideas4all pinchando aquí&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/a0ih-LHrnOA-fj6hkgDAb-Nqc0Q/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/a0ih-LHrnOA-fj6hkgDAb-Nqc0Q/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/a0ih-LHrnOA-fj6hkgDAb-Nqc0Q/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/a0ih-LHrnOA-fj6hkgDAb-Nqc0Q/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=rheBrGLknzE:zdH9Vfgp4_A:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/rheBrGLknzE" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/uso-del-gps-para-encontrar-plaza-de-aparcamiento/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/uso-del-gps-para-encontrar-plaza-de-aparcamiento/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/uso-del-gps-para-encontrar-plaza-de-aparcamiento/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Reconociendo dedos en la mesa táctil]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/2KAiJvgnmxI/" />
		<id>http://www.forgottenprojects.com/?p=461</id>
		<updated>2010-04-19T13:54:36Z</updated>
		<published>2009-11-24T18:49:05Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Freaks" /><category scheme="http://www.forgottenprojects.com" term="Interesante" /><category scheme="http://www.forgottenprojects.com" term="Programacion" /><category scheme="http://www.forgottenprojects.com" term="Tecnología" /><category scheme="http://www.forgottenprojects.com" term="hci" /><category scheme="http://www.forgottenprojects.com" term="MTablev1" /><category scheme="http://www.forgottenprojects.com" term="multitouch" /><category scheme="http://www.forgottenprojects.com" term="surface" /><category scheme="http://www.forgottenprojects.com" term="touch" />		<summary type="html"><![CDATA[Resumen del montaje de la mesa multitáctil casera, prueba de tracking de los dedos.]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/reconociendo-dedos-en-la-mesa-tactil/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Freconociendo-dedos-en-la-mesa-tactil%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Freconociendo-dedos-en-la-mesa-tactil%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=hci,MTablev1,multitouch,surface,touch" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Como algunos ya sabéis, &lt;a href="http://www.fjfnaranjo.com"&gt;Naranjo &lt;/a&gt;y yo andamos montando una mesa multitáctil al estilo de la Microsoft Surface, pero en plan casero, y ahorrarnos unos 11000€ que vale el bicho.&lt;/p&gt;
&lt;p&gt;El caso es que estamos construyéndola desde cero, montando nosotros la estructura de la mesa, a nuestro gusto, pensada para sentarse alrededor con sillas normales como si fuese una mesa de comedor. La idea original es usarla para juegos de rol, donde en el centro tengamos la pantalla y desde la posición sentada podamos llegar a cualquier punto de la mesa. Así podríamos mostrar mapas de las regiones, del campo de batalla, la cuadrícula de combate, etc. Pero por supuesto nuestra ambición va más allá, queremos terminarla y ofrecerla como un producto terminado a cualquiera que esté interesado en disponer de una mesa multitáctil. Además, queremos desarrollar más aplicaciones que hagan un uso innovador de esta tecnología y convertirlo en algo a tener en cuenta de cara al futuro de las nuevas tecnologías e interfaces multitouch.&lt;/p&gt;
&lt;p&gt;Hay unas cuantas fotos de la construcción de la mesa más abajo y también encontrarás el vídeo que he colgado en YouTube en el que se ve como la aplicación creada por &lt;a href="http://www.nuigroup.com/"&gt;NuiGroup &lt;/a&gt;reconoce los dedos con el montaje que tenemos hecho que de momento no son más que un monton de leds infrarrojos dispuestos en 8 grupos de 8 leds un poco al tuntún y una webcam modificada para que filtre la luz natural y vea la infraroja.&lt;/p&gt;
&lt;p&gt;&lt;object width="400" height="300"&gt;&lt;param name="flashvars" value="offsite=true&amp;#038;lang=es-us&amp;#038;page_show_url=%2Fphotos%2Fferdy182%2Fsets%2F72157622813192400%2Fshow%2F&amp;#038;page_show_back_url=%2Fphotos%2Fferdy182%2Fsets%2F72157622813192400%2F&amp;#038;set_id=72157622813192400&amp;#038;jump_to="&gt;&lt;/param&gt;&lt;param name="movie" value="http://www.flickr.com/apps/slideshow/show.swf?v=71649"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/slideshow/show.swf?v=71649" allowFullScreen="true" flashvars="offsite=true&amp;#038;lang=es-us&amp;#038;page_show_url=%2Fphotos%2Fferdy182%2Fsets%2F72157622813192400%2Fshow%2F&amp;#038;page_show_back_url=%2Fphotos%2Fferdy182%2Fsets%2F72157622813192400%2F&amp;#038;set_id=72157622813192400&amp;#038;jump_to=" width="400" height="300"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;Vídeo de la primera prueba de tracking con un portátil&lt;br /&gt;
&lt;object width="580" height="360"&gt;&lt;param name="movie" value="http://www.youtube.com/v/UOpzFXPZrVM&amp;#038;hl=es_ES&amp;#038;fs=1&amp;#038;rel=0&amp;#038;color1=0x2b405b&amp;#038;color2=0x6b8ab6&amp;#038;hd=1&amp;#038;border=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/UOpzFXPZrVM&amp;#038;hl=es_ES&amp;#038;fs=1&amp;#038;rel=0&amp;#038;color1=0x2b405b&amp;#038;color2=0x6b8ab6&amp;#038;hd=1&amp;#038;border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="580" height="360"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/os0QU18bJxMvvloMhhARyKXf4uY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/os0QU18bJxMvvloMhhARyKXf4uY/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/os0QU18bJxMvvloMhhARyKXf4uY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/os0QU18bJxMvvloMhhARyKXf4uY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=2KAiJvgnmxI:4yPyl0xCqzI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/2KAiJvgnmxI" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/reconociendo-dedos-en-la-mesa-tactil/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/reconociendo-dedos-en-la-mesa-tactil/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/reconociendo-dedos-en-la-mesa-tactil/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[iWeekend Madrid]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/xSssIcG0g4M/" />
		<id>http://www.forgottenprojects.com/?p=462</id>
		<updated>2009-11-21T23:22:26Z</updated>
		<published>2009-11-21T23:22:26Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Interesante" /><category scheme="http://www.forgottenprojects.com" term="Programacion" /><category scheme="http://www.forgottenprojects.com" term="Tecnología" />		<summary type="html"><![CDATA[Crónica del iweekend madrid de 2009 ]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/iweekend-madrid/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fiweekend-madrid%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fiweekend-madrid%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Hacía tiempo que no escribía por aquí!&lt;/p&gt;
&lt;p&gt;Estan siendo unos días intensos, desde que terminó en congreso he estado hablando con gente muy interesante a través de twitter, y me he ido enterando a través de ellos de otros eventos orientados al negocio en internet, muy en auge, y otro tipo de iniciativas emprendedoras. &lt;/p&gt;
&lt;p&gt;Después de perderme el Evento Blog España de Sevilla que pintaba muy muy bien, y el FICOD en Madrid por ser entre semana, a los cuales me habría encantado ir y que al menos pude seguir por twitter e internet, al menos estoy asistiendo al &lt;a href="http://www.iweekend.org"&gt;iWeekend&lt;/a&gt;. &lt;/p&gt;
&lt;p&gt;Consiste en juntarnos 50 personas interesadas en emprender un proyecto y elegir entre todos, una de las ideas propuestas para ser lanzada durante los días que dura el evento. El domingo tiene que haber una versión funcional muy básica de la idea, y esto se está haciendo en 10 lugares simultáneamente, lo cual es un indicador de que la iniciativa está gustando. En Madrid es la segunda edición ya.&lt;/p&gt;
&lt;p&gt;La idea que se ha seleccionado para Madrid es un sitio web donde emprendedores buscan microinversiones de instituciones y particulares colgando sus ideas de empresa para ser revisadas por dichos inversiones que pueden elegir cuanto invertir en cada propuesta. Yo, para no ser menos, estoy en la parte de desarrollo, pero es un gustazo trabajar en equipo, con los demás desarrolladores y con los demás equipos, sobre todo los de diseño, que son los directamente relacionados con nosotros. Esperamos lanzar una beta funcional para el domingo a última hora.&lt;/p&gt;
&lt;p&gt;Además, estoy aprendiendo mucho sobre como lanzar una empresa, cosas a tener en cuenta, modelos de financiación, gente que ya ha emprendido, etc. Hoy nos ha dado una charla uno de los fundadores de BuyVip y nos ha contado su experiencia y la verdad es que me parece apasionante todo este mundo. ¡Mamá! ¡quiero ser emprendedor!&lt;/p&gt;
&lt;p&gt;Por otra parte, a través de twitter se puede seguir los comentarios del resto de iWeekends que se están desarrollando en paralelo siguiendo las etiquetas de #iweekend, #iw_mad, #iwcs, etc&amp;#8230; &lt;/p&gt;
&lt;p&gt;Cuando tenga un rato colgaré fotos pero se pueden ir viendo algunas en el &lt;a href="http://www.patriciaaraque.es/blog/2009/11/21/iweekend-madrid-en-imagenes/"&gt;Blog de Patricia Araque&lt;/a&gt;.También puedes ver una &lt;a href="http://twitter.com/javimonsalupe/iweekendmadrid2009"&gt;lista de twitteros del iWeekend de Madrid aquí&lt;/a&gt;&lt;/p&gt;
&lt;div class="wp-caption alignnone" style="width: 510px"&gt;&lt;img alt="@laurixi y yo agotados tras el segundo dia de iWeekend y viendo la presentación del plan de negocio" src="http://img113.yfrog.com/img113/6033/mmv.jpg" title="@laurixi y yo agotados tras el segundo dia de iWeekend y viendo la presentación del plan de negocio" width="75%" height="75%" /&gt;&lt;p class="wp-caption-text"&gt;@laurixi y yo agotados tras el segundo dia de iWeekend y viendo la presentación del plan de negocio&lt;/p&gt;&lt;/div&gt;
&lt;div id="attachment_468" class="wp-caption aligncenter" style="width: 296px"&gt;&lt;a href="http://www.forgottenprojects.com/wp-content/uploads/2009/11/logo_emprendemas.jpg"&gt;&lt;img src="http://www.forgottenprojects.com/wp-content/uploads/2009/11/logo_emprendemas-286x300.jpg" alt="Diseño elegido para el logo de emprendemás" title="logo_emprendemas" width="286" height="300" class="size-medium wp-image-468" /&gt;&lt;/a&gt;&lt;p class="wp-caption-text"&gt;Diseño elegido para el logo de emprendemás&lt;/p&gt;&lt;/div&gt;
&lt;p&gt;&lt;embed type="application/x-shockwave-flash" src="http://picasaweb.google.es/s/c/bin/slideshow.swf" width="600" height="400" flashvars="host=picasaweb.google.es&amp;#038;hl=es&amp;#038;feat=flashalbum&amp;#038;RGB=0x000000&amp;#038;feed=http%3A%2F%2Fpicasaweb.google.es%2Fdata%2Ffeed%2Fapi%2Fuser%2Faraque.patricia%2Falbumid%2F5406583970210268225%3Falt%3Drss%26kind%3Dphoto%26hl%3Des" pluginspage="http://www.macromedia.com/go/getflashplayer"&gt;&lt;/embed&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/Cv0jSgYjf_ri2MJRBMOToXE0koo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Cv0jSgYjf_ri2MJRBMOToXE0koo/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/Cv0jSgYjf_ri2MJRBMOToXE0koo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Cv0jSgYjf_ri2MJRBMOToXE0koo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=xSssIcG0g4M:Fpt1V85dLIA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/xSssIcG0g4M" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/iweekend-madrid/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/iweekend-madrid/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/iweekend-madrid/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Dominio para la tienda]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/9Abzvq354Z0/" />
		<id>http://www.forgottenprojects.com/?p=457</id>
		<updated>2009-10-20T07:55:05Z</updated>
		<published>2009-10-16T15:29:07Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Interesante" /><category scheme="http://www.forgottenprojects.com" term="camiseta" /><category scheme="http://www.forgottenprojects.com" term="friki" />		<summary type="html"><![CDATA[Buenas, solo comunicar que se puede acceder a la tienda de camisetas a través de la siguiente URL: <a href="http://www.camisetafriki.com">http://www.camisetafriki.com</a> para promocionar la tienda de camisetas que he montado. También he creado una tienda para el mercado americano en <a href="http://www.camisetafriki.info">http://www.camisetafriki.info</a> para que se puedan hacer pedidos desde USA.]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/camisetafriki-com/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcamisetafriki-com%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcamisetafriki-com%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=camiseta,friki" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Buenas, solo comunicar que se puede acceder a la tienda de camisetas a través de la siguiente URL: &lt;a href="http://www.camisetafriki.com"&gt;http://www.camisetafriki.com&lt;/a&gt; para promocionar la tienda de camisetas que he montado. También he creado una tienda para el mercado americano en &lt;a href="http://www.camisetafriki.info"&gt;http://www.camisetafriki.info&lt;/a&gt; para que se puedan hacer pedidos desde USA.&lt;/p&gt;
&lt;p&gt;&lt;!--adsense#piedepost--&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ZskGgIqgbaFkLBrnxcyNPmDx0b0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ZskGgIqgbaFkLBrnxcyNPmDx0b0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ZskGgIqgbaFkLBrnxcyNPmDx0b0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ZskGgIqgbaFkLBrnxcyNPmDx0b0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=9Abzvq354Z0:0NLMNNPOwO4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/9Abzvq354Z0" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/camisetafriki-com/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/camisetafriki-com/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/camisetafriki-com/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Congreso Webmasters 2009]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/NfARGTr6d2o/" />
		<id>http://www.forgottenprojects.com/?p=453</id>
		<updated>2009-10-04T20:59:01Z</updated>
		<published>2009-10-04T20:59:01Z</published>
		<category scheme="http://www.forgottenprojects.com" term="General" /><category scheme="http://www.forgottenprojects.com" term="congreso webmasters" /><category scheme="http://www.forgottenprojects.com" term="desarrollo" /><category scheme="http://www.forgottenprojects.com" term="diseño web" /><category scheme="http://www.forgottenprojects.com" term="seo" /><category scheme="http://www.forgottenprojects.com" term="web" />		<summary type="html"><![CDATA[Resumen de lo que ha sido para mi el Congreso de Webmasters de Madrid del 2009]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/congreso-webmasters-2009/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcongreso-webmasters-2009%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcongreso-webmasters-2009%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=congreso+webmasters,desarrollo,dise%C3%B1o+web,seo,web" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Pues acabo de volver del fin de semana del congreso de webmasters de Madrid de este año 2009. Un congreso dirigido, más que a webmasters, a personas con negocios en internet ya que las charlas comprenden varios temas focalizados sobre todo en el marketing online, SEO y promoción web, más que en el desarrollo.&lt;/p&gt;
&lt;p&gt;Las ponencias en general han estado muy bien, se han tratado muchos temas pero predominantemente marketing online, SEO, etc. Tambien ha habido alguna sobre seguridad en internet, bloging, Microsoft&amp;#8230;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.congresodewebmasters.com/"&gt;&lt;img alt="" src="http://www.congresodewebmasters.com/images/logo-index.gif" title="Congreso de Webmasters 2009" class="alignnone" width="276" height="66" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Pero lo mejor de todo ha sido sin duda la gente que he conocido en twitter. Se propuso hacer una quedada los twitteros para comer el sábado y al final nos juntamos 20 personas en un Ginos conociéndonos unos a otros y comentando nuestras inquietudes y proyectos. Ha estado genial porque uno siempre echa de menos encontrar gente con intereses comunes, o al menos, con intereses por crear cosas por uno mismo. Casi más que con las ponencias (que también han estado genial) me quedo con esos momentos con los twitteros, las cañas de después del congreso, hablar con ellos por los pasillos, el hecho de conocer gente así siempre te aporta gran satisfacción y tiene un valor incalculable puesto que luego estas personas se convierten en contactos que en un futuro pueden ser gente con la que hacer proyectos en conjunto. Además éramos muy diversos, programadores, diseñadores, gente de marketing, SEOs&amp;#8230;  en fin, espero volver a ver a esta gente o al menos a los que vivan por Madrid.&lt;/p&gt;
&lt;p&gt;Hasta el próximo congreso amigos!&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/smikGbfVjaF3QSIupQQHdkca9ms/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/smikGbfVjaF3QSIupQQHdkca9ms/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/smikGbfVjaF3QSIupQQHdkca9ms/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/smikGbfVjaF3QSIupQQHdkca9ms/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=NfARGTr6d2o:QTrBr3qcj_w:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/NfARGTr6d2o" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/congreso-webmasters-2009/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/congreso-webmasters-2009/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/congreso-webmasters-2009/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Mapas aéreos aumentados mediante información dinámica]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/3FMU5lcD7CA/" />
		<id>http://www.forgottenprojects.com/448/</id>
		<updated>2009-09-27T10:46:23Z</updated>
		<published>2009-09-26T21:06:00Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Interesante" /><category scheme="http://www.forgottenprojects.com" term="Tecnología" />		<summary type="html"><![CDATA[
			
				
			
		
Augmenting Aerial Earth Maps with Dynamic Information (augearth)
Me ha dejado impactado este video de cómo aumentan la readlidad estática de Google Earth y la hacen dinámica, añadiendo fuentes de información en forma de videos en tiempo real que se muestran sobre Google Earth en el mismo momento en que ocurren. Impresionante también como interpolan la [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/448/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2F448%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2F448%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;b&gt;Augmenting Aerial Earth Maps with Dynamic Information (augearth)&lt;/b&gt;&lt;br /&gt;
&lt;object width="425" height="350"&gt;&lt;param name="movie" value="http://youtube.com/v/TPk88soc2qw"&gt;&lt;/param&gt;&lt;embed src="http://youtube.com/v/TPk88soc2qw" type="application/x-shockwave-flash" width="425" height="350"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;Me ha dejado impactado este video de cómo aumentan la readlidad estática de Google Earth y la hacen dinámica, añadiendo fuentes de información en forma de videos en tiempo real que se muestran sobre Google Earth en el mismo momento en que ocurren. Impresionante también como interpolan la información de tráfico en las zonas de las que no se dispone de vídeo.&lt;br /&gt;
Me parece increíble este tipo de uso que se le da a la visión artificial, que ya sabéis que es una de mis áreas favoritas.&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ajHFu-dHZv46P_DpuMdSokeJz8s/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ajHFu-dHZv46P_DpuMdSokeJz8s/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ajHFu-dHZv46P_DpuMdSokeJz8s/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ajHFu-dHZv46P_DpuMdSokeJz8s/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=3FMU5lcD7CA:jtOrgR3ibGs:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/3FMU5lcD7CA" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/448/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/448/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/448/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Nueva camiseta sobre la serie How I Met Your Mother]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/qLzMzv35MQs/" />
		<id>http://www.forgottenprojects.com/?p=443</id>
		<updated>2009-11-24T13:15:13Z</updated>
		<published>2009-09-21T22:50:12Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Freaks" /><category scheme="http://www.forgottenprojects.com" term="Graficos" /><category scheme="http://www.forgottenprojects.com" term="barney" /><category scheme="http://www.forgottenprojects.com" term="camiseta" /><category scheme="http://www.forgottenprojects.com" term="how i met your mother" /><category scheme="http://www.forgottenprojects.com" term="stinson" />		<summary type="html"><![CDATA[Tenemos una nueva y gran diseñadora entre nosotros que ha creado <a href="http://forgottenprojects.spreadshirt.net/es/ES/Shop/Article/Index/article/camiseta-barney-stinson-suit-up-how-i-met-your-mother-10658972">esta maravilla de camiseta</a>. Una caricatura de nuestro querido<a href="http://www.cbs.com/primetime/how_i_met_your_mother/community/barney_blog/index.php"> Barney Stinson</a>.]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/camiseta-serie-how-i-met-your-mother/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcamiseta-serie-how-i-met-your-mother%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcamiseta-serie-how-i-met-your-mother%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=barney,camiseta,how+i+met+your+mother,stinson" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Fanses de Como Conocí a Vuestra Madre! estais de enhorabuena. Tenemos una nueva y gran diseñadora entre nosotros que ha creado &lt;a href="http://forgottenprojects.spreadshirt.net/es/ES/Shop/Article/Index/article/camiseta-barney-stinson-suit-up-how-i-met-your-mother-10658972"&gt;esta maravilla de camiseta&lt;/a&gt;. Una caricatura de nuestro querido&lt;a href="http://www.cbs.com/primetime/how_i_met_your_mother/community/barney_blog/index.php"&gt; Barney Stinson&lt;/a&gt;. La puedes adquirir ya desde &lt;a href="http://forgottenprojects.spreadshirt.net/es/ES/Shop/Index/index"&gt;la tienda de camisetas frikis de Forgotten Projects&lt;/a&gt;. Además, ahora tenemos &lt;a href="http://forgottenprojectsshirts.spreadshirt.net/"&gt;nueva tienda de camisetas freaks en inglés&lt;/a&gt;!&lt;/p&gt;
&lt;p&gt;&lt;a href="http://forgottenprojects.spreadshirt.net/es/ES/Shop/Index/index/category/How-I-Met-Your-Mother-124994/"&gt;&lt;img alt="" src="http://image.spreadshirt.net/image-server/image/product/15604300/view/1/type/png/width/280/height/280" class="aligncenter" width="280" height="280" /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/F4yg0yvOdsSzxHyULF1uwIGUKi8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/F4yg0yvOdsSzxHyULF1uwIGUKi8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/F4yg0yvOdsSzxHyULF1uwIGUKi8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/F4yg0yvOdsSzxHyULF1uwIGUKi8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=qLzMzv35MQs:Rb5TJfFSmnU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/qLzMzv35MQs" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/camiseta-serie-how-i-met-your-mother/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/camiseta-serie-how-i-met-your-mother/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/camiseta-serie-how-i-met-your-mother/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Nuevo color para la camiseta de rubik is a lie: Azul intenso]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/lTNK6jDvs14/" />
		<id>http://www.forgottenprojects.com/?p=440</id>
		<updated>2010-01-11T17:53:44Z</updated>
		<published>2009-09-11T10:38:14Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Freaks" /><category scheme="http://www.forgottenprojects.com" term="Graficos" />		<summary type="html"><![CDATA[
			
				
			
		

¡Hemos subido un nuevo color para la camiseta de Rubik is a Lie, además ahora puedes pedirla de cualquier otro color con solo configurarlo en la tienda!
]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/nuevo-color-para-la-camiseta-de-rubik-is-a-lie-azul-intenso/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fnuevo-color-para-la-camiseta-de-rubik-is-a-lie-azul-intenso%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fnuevo-color-para-la-camiseta-de-rubik-is-a-lie-azul-intenso%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;a href="http://forgottenprojects.spreadshirt.net/es/ES/Shop/Article/Index/article/camiseta-rubik-is-a-lie-azul-intenso-10562880"&gt;&lt;img alt="camiseta-rubik-is-a-lie-azul-intenso" src="http://image.spreadshirt.net/image-server/image/product/15470745/view/1/type/png/width/280/height/280" title="camiseta-rubik-is-a-lie-azul-intenso" width="280" height="280" /&gt;&lt;/a&gt;&lt;br /&gt;
¡Hemos subido un nuevo color para la camiseta de Rubik is a Lie, además ahora puedes pedirla de cualquier otro color con solo configurarlo en la &lt;a href="http://www.camisetafriki.com/?ref=postrubik"&gt;tienda&lt;/a&gt;!&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/hafUWHa9GrphBj6CFnG0tS5dlQA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/hafUWHa9GrphBj6CFnG0tS5dlQA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/hafUWHa9GrphBj6CFnG0tS5dlQA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/hafUWHa9GrphBj6CFnG0tS5dlQA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=lTNK6jDvs14:QOpO9D_pHoE:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/lTNK6jDvs14" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/nuevo-color-para-la-camiseta-de-rubik-is-a-lie-azul-intenso/#comments" thr:count="2" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/nuevo-color-para-la-camiseta-de-rubik-is-a-lie-azul-intenso/feed/atom/" thr:count="2" />
		<thr:total>2</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/nuevo-color-para-la-camiseta-de-rubik-is-a-lie-azul-intenso/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Probar una web en 90 navegadores distintos]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/g4Y6Mevguro/" />
		<id>http://www.forgottenprojects.com/?p=430</id>
		<updated>2009-08-31T14:44:11Z</updated>
		<published>2009-08-31T14:44:11Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Freaks" /><category scheme="http://www.forgottenprojects.com" term="Interesante" /><category scheme="http://www.forgottenprojects.com" term="Linux" /><category scheme="http://www.forgottenprojects.com" term="browsershots" /><category scheme="http://www.forgottenprojects.com" term="css" /><category scheme="http://www.forgottenprojects.com" term="diseño web" /><category scheme="http://www.forgottenprojects.com" term="maquetacion" />		<summary type="html"><![CDATA[Prueba tu diseño web en 90 navegadores de los 3 sistemas operativos más usados.]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/probar-una-web-en-90-navegadores-distintos/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fprobar-una-web-en-90-navegadores-distintos%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fprobar-una-web-en-90-navegadores-distintos%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=browsershots,css,dise%C3%B1o+web,maquetacion" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Pues si, ya no hace falta instalarse las 8 versiones de explorer, las 4 de firefox, nosecuantas del chrome, opera, safari, etc.&lt;/p&gt;
&lt;p&gt;En la web &lt;a href="http://browsershots.org/"&gt;http://browsershots.org/&lt;/a&gt; podemos generar capturas de pantalla de hasta 90 navegadores web diferentes y en diferentes sistemas operativos, ni yo sabía que existían tantos&amp;#8230;. Sólo hay que poner la URL del sitio y esperar un rato porque el proceso cuesta un poquito, pero el resultado es un pasote, puedes ver como tu página queda destrozada por mil sitios diferentes. Muy útil para diseñadores web que quieran ver como quedaría su diseño en todos los navegadores.&lt;/p&gt;
&lt;p&gt;&lt;!--adsense--&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/hZmYBk40Ta6UwG6voYL1ExjZ3nc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/hZmYBk40Ta6UwG6voYL1ExjZ3nc/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/hZmYBk40Ta6UwG6voYL1ExjZ3nc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/hZmYBk40Ta6UwG6voYL1ExjZ3nc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=g4Y6Mevguro:Zxh996xhkHg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/g4Y6Mevguro" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/probar-una-web-en-90-navegadores-distintos/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/probar-una-web-en-90-navegadores-distintos/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/probar-una-web-en-90-navegadores-distintos/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Nuevo diseño de camiseta friki en la tienda: Rubik is a lie!]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/uPmtLwh6J08/" />
		<id>http://www.forgottenprojects.com/?p=422</id>
		<updated>2009-08-30T16:11:43Z</updated>
		<published>2009-08-29T18:30:25Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Freaks" />		<summary type="html"><![CDATA[Nueva camiseta friki sobre el cubo de rubik: Rubik... ...is a lie. Cómprala ya en la tienda de camisetas frikis de ForgottenProjects http://forgottenprojects.spreadshirt.net/es/ES/Shop/Article/Index/article/rubik-is-a-lie-10446965]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/camiseta-friki-cubo-rubik/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcamiseta-friki-cubo-rubik%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcamiseta-friki-cubo-rubik%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Para aquellos que como yo, odiais el cubo de rubik a la vez que os intriga, he creado un nuevo diseño rompedor para la &lt;a href="http://forgottenprojects.spreadshirt.net/es/ES/Shop/Article/Index/article/rubik-is-a-lie-10446965"&gt;tienda de camisetas&lt;/a&gt;, que además ahora podéis adquirir en un mayor surtido de productos. De todos modos, si el diseño no está disponible en algún tipo de prenda, comentadlo y lo incluiremos.&lt;/p&gt;
&lt;p&gt;Disfrutad de la nueva camiseta friki sobre el cubo de rubik!&lt;br /&gt;
&lt;a href="http://forgottenprojects.spreadshirt.net/es/ES/Shop/Article/Index/article/rubik-is-a-lie-10446965"&gt;&lt;img src="http://www.forgottenprojects.com/wp-content/uploads/2009/08/camiseta-friki-Rubik-mini.png" alt="camiseta-friki-Rubik-mini" title="camiseta-friki-Rubik-mini" width="400" height="295" class="size-full wp-image-425" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;!--adsense--&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/QjNvkcZf3H4u5aClkkEhIUP4hmA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/QjNvkcZf3H4u5aClkkEhIUP4hmA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/QjNvkcZf3H4u5aClkkEhIUP4hmA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/QjNvkcZf3H4u5aClkkEhIUP4hmA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=uPmtLwh6J08:HxqkokFykpk:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/uPmtLwh6J08" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/camiseta-friki-cubo-rubik/#comments" thr:count="2" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/camiseta-friki-cubo-rubik/feed/atom/" thr:count="2" />
		<thr:total>2</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/camiseta-friki-cubo-rubik/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[[Blog Recomendado] Ambiental-hito de la semana]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/LR7HhFvWfNg/" />
		<id>http://www.forgottenprojects.com/?p=414</id>
		<updated>2009-08-28T16:52:38Z</updated>
		<published>2009-08-28T16:52:38Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Interesante" />		<summary type="html"><![CDATA[Ambiental-hito de la semana]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/blog-recomendado-ambiental-hito-de-la-semana/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fblog-recomendado-ambiental-hito-de-la-semana%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fblog-recomendado-ambiental-hito-de-la-semana%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;a href="http://www.ambiental-hitos.com/laimagen/"&gt;http://www.ambiental-hitos.com&lt;/a&gt; ha publicado un nuevo ambiental-hito de la semana.&lt;br /&gt;
Ambiental-hitos es una web dedicada al medio ambiente y los espacios naturales que cada semana saca a la portada la mejor foto subida por sus usuarios.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.ambiental-hitos.com/laimagen/"&gt;&lt;img alt="Ambiental hito de la semana" src="http://www.ambiental-hitos.com/4images/data/media/199/Chamonix_II_122_copia-1.jpg" width="400" height="266" /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/v2y9TSoPXKeio55YKMLVDY_bmuk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/v2y9TSoPXKeio55YKMLVDY_bmuk/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/v2y9TSoPXKeio55YKMLVDY_bmuk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/v2y9TSoPXKeio55YKMLVDY_bmuk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=LR7HhFvWfNg:mQwXmAL6h9Q:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/LR7HhFvWfNg" height="1" width="1"/&gt;</content>
	<georss:point featurename="chamonix">45.9253406 6.8697867</georss:point>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/blog-recomendado-ambiental-hito-de-la-semana/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/blog-recomendado-ambiental-hito-de-la-semana/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/blog-recomendado-ambiental-hito-de-la-semana/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[[Blog recomendado] Geovisualización]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/16B8dXrOPw8/" />
		<id>http://www.forgottenprojects.com/?p=410</id>
		<updated>2009-08-28T16:53:00Z</updated>
		<published>2009-08-28T08:06:51Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Interesante" /><category scheme="http://www.forgottenprojects.com" term="Reseñas" />		<summary type="html"><![CDATA[Conoce el blog de geovisualización de Alberto Concejal]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/blog-recomendado-alberto-concejal-geovisualizacion/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fblog-recomendado-alberto-concejal-geovisualizacion%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fblog-recomendado-alberto-concejal-geovisualizacion%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;a href="http://geovisualization.wordpress.com/"&gt;&lt;img alt="Alberto Concejal Geovisualización" src="http://geovisualization.files.wordpress.com/2009/07/caratula014.png" width="400" height="104" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://geovisualization.wordpress.com/"&gt;Geovisuazlización&lt;/a&gt; es el blog personal de Alberto Concejal. Alberto es un experto geógrafo especializado en sistemas de información geográfica. Además no se queda ahí, también hace diseño gráfico y multimedia y unas fotos impresionantes.&lt;br /&gt;
&lt;a href="http://www.flickr.com/photos/gimmenine/3779471090/in/set-72157621919612444/"&gt;&lt;img alt="Alberto Concejal Geovisualizacion Fotografia Madrid" src="http://farm3.static.flickr.com/2626/3779471090_8191549f97.jpg" width="500" height="337" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;También controla de SketchUp, el editor 3D de Google para realizar modelados de edificios para mapas virtuales en 3D&lt;br /&gt;
&lt;a href="http://geovisualization.wordpress.com/about/"&gt;&lt;img alt="Alberto Concejal Visualizacion SketchUp" src="http://geovisualization.files.wordpress.com/2008/07/image0841.jpg?w=450&amp;#038;h=313" width="450" height="313" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;No dudéis en visitarle en su blog:&lt;br /&gt;
&lt;a href="http://geovisualization.wordpress.com/"&gt;Geovisualización&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/o31h0KX2oeeZiq89Vuoqb_oltpA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/o31h0KX2oeeZiq89Vuoqb_oltpA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/o31h0KX2oeeZiq89Vuoqb_oltpA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/o31h0KX2oeeZiq89Vuoqb_oltpA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=16B8dXrOPw8:4jdaIc-aQdo:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/16B8dXrOPw8" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/blog-recomendado-alberto-concejal-geovisualizacion/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/blog-recomendado-alberto-concejal-geovisualizacion/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/blog-recomendado-alberto-concejal-geovisualizacion/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Aniversario del telescopio Galileo]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/7bkZZDeN0Sw/" />
		<id>http://www.forgottenprojects.com/aniversario-del-telescopio-galileo/</id>
		<updated>2009-08-25T12:41:49Z</updated>
		<published>2009-08-25T07:47:31Z</published>
		<category scheme="http://www.forgottenprojects.com" term="General" />		<summary type="html"><![CDATA[
			
				
			
		
Pues hoy es el 400 aniversario del telescopio galileo, y Google lo celebra con una portada especial.

Tenéis más información sobre Galileo Galilei en ]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/aniversario-del-telescopio-galileo/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Faniversario-del-telescopio-galileo%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Faniversario-del-telescopio-galileo%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Pues hoy es el 400 aniversario del telescopio galileo, y Google lo celebra con una portada especial.&lt;br /&gt;
&lt;img alt="Galileo Google" src="http://www.google.es/logos/galileo09.gif" title="Galileo Google" class="alignnone" width="302" height="121" /&gt;&lt;/p&gt;
&lt;p&gt;Tenéis más información sobre Galileo Galilei en &lt;a href="http://es.wikipedia.org/wiki/Galileo /&gt;Wikipedia&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Unas fotos por &lt;a href="http://www.biografiasyvidas.com/monografia/galileo/fotos6.htm"&gt;aquí&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Y un video de un telescopio casero por acá:&lt;br /&gt;
&lt;a href='http://www.google.es/url?sa=t&amp;#038;source=web&amp;#038;oi=video_result&amp;#038;ct=res&amp;#038;cd=3&amp;#038;url=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DVCBVtlp4MUM&amp;#038;ei=jJaTSp-XNtzajQe3v6zsDQ&amp;#038;rct=j&amp;#038;q=Telescopio+de+Galileo&amp;#038;usg=AFQjCNGL0KhFX5RnfWCdi51R3VNm0TcsWg&amp;#038;sig2=71jhaqOtKnNJRf-_FhH9cA' &gt;Telescopio casero&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;!--adsense--&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/1v6OxSDntayHesS6qLcsAAjeU6U/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/1v6OxSDntayHesS6qLcsAAjeU6U/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/1v6OxSDntayHesS6qLcsAAjeU6U/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/1v6OxSDntayHesS6qLcsAAjeU6U/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=7bkZZDeN0Sw:ZzkudRTqu0U:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/7bkZZDeN0Sw" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/aniversario-del-telescopio-galileo/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/aniversario-del-telescopio-galileo/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/aniversario-del-telescopio-galileo/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[[Javascript] Crear objetos en Javascript]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/cKYWQsZg4f4/" />
		<id>http://www.forgottenprojects.com/?p=404</id>
		<updated>2009-08-19T16:37:16Z</updated>
		<published>2009-08-19T16:37:16Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Programacion" />		<summary type="html"><![CDATA[Cómo se crean nuevos objetos o clases en javascript usando el método prototype para añadirle métodos.]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/crear-objetos-en-javascript/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcrear-objetos-en-javascript%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcrear-objetos-en-javascript%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Como siempre se me olvida, voy a apuntar aquí cómo se hacen objetos o clases nuevas en javascript.&lt;/p&gt;
&lt;p&gt;Lo primero es crear una función con el nombre del objeto, ya demás puede llevar parámetros, por ejemplo:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;function miObjeto(parametro1, parametro2)&lt;br /&gt;
{&lt;br /&gt;
   this.primerParam = parametro1;&lt;br /&gt;
   this.segundoPara = parametro2;&lt;br /&gt;
}&lt;br /&gt;
&lt;/strong&gt;&lt;br /&gt;
Fijarse que para añadir atributos, se usa this.atributo.&lt;/p&gt;
&lt;p&gt;Con eso podemos crear instancias de esa clase así:&lt;br /&gt;
&lt;strong&gt;var instancia1 = new miObjeto(&amp;#8221;p1&amp;#8243;,&amp;#8221;p2&amp;#8243;);&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Si ahora hiciesmos un &lt;strong&gt;alert(instancia1.primerParam);&lt;/strong&gt; nos saldría &amp;#8220;&lt;strong&gt;p1&lt;/strong&gt;&amp;#8220;.&lt;/p&gt;
&lt;p&gt;Hasta ahora esto vendría a ser como un struct de C, pero si queremos convertirlo en un objeto, con métodos, se declaran así:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;miObjeto.prototype.metodo = function(parametro1,parametro2)&lt;br /&gt;
{&lt;br /&gt;
   this.primerParam = parametro1;&lt;br /&gt;
   this.segundoParam = parametro2;&lt;br /&gt;
}&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;ahora podemos llamar así:&lt;br /&gt;
&lt;strong&gt;instancia1.metodo(&amp;#8221;a1&amp;#8243;,&amp;#8221;a2&amp;#8243;);&lt;/strong&gt;&lt;br /&gt;
y al hacer el&lt;strong&gt; alert(instancia1.primerParam);&lt;/strong&gt; nos daría &amp;#8220;&lt;strong&gt;a1&lt;/strong&gt;&amp;#8220;.&lt;/p&gt;
&lt;p&gt;Así de simple se usa el método prototype, para prototipar nuevas funciones a un objeto, hale, ya os he desvelado el secreto de esas webs tan chulas en javascript, ¡a trabajar!.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/t56CZwG-CrcRzgZ3zglpcNATFrc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/t56CZwG-CrcRzgZ3zglpcNATFrc/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/t56CZwG-CrcRzgZ3zglpcNATFrc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/t56CZwG-CrcRzgZ3zglpcNATFrc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=cKYWQsZg4f4:CKVISDgvwE8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/cKYWQsZg4f4" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/crear-objetos-en-javascript/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/crear-objetos-en-javascript/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/crear-objetos-en-javascript/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[True Blood]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/kCll33Hvldk/" />
		<id>http://www.forgottenprojects.com/?p=399</id>
		<updated>2009-08-17T15:43:29Z</updated>
		<published>2009-08-17T15:43:29Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Freaks" /><category scheme="http://www.forgottenprojects.com" term="ana paquin" /><category scheme="http://www.forgottenprojects.com" term="true blood" />		<summary type="html"><![CDATA[True Blood, la serie de vampiros y tetas]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/true-blood/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Ftrue-blood%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Ftrue-blood%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=ana+paquin,true+blood" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;img alt="True Blood" src="http://2.bp.blogspot.com/_1UMxOycyI-k/SjYAhza-FTI/AAAAAAAAA9Y/5LdLiPoB7hY/s400/TrueBlood2.jpg" title="True Blood Logo" width="400" height="56" /&gt;
&lt;p&gt;Hace unas semanas empecé a ver esta serie, True Blood, me habían hablado de ella, en plan, es de vampiros y tetas, y si, había vampiros, y habíta tetas, bastantes de echo.&lt;/p&gt;
&lt;p&gt;El argumento es algo así como que unos japoneses han ideado una sangre sintética por lo que los vampiros ya no tienen que matar personas para alimentarse y pueden &amp;#8220;salir del ataúd&amp;#8221; como quién sale del armario&amp;#8230;&lt;/p&gt;
&lt;p&gt;La mayoría de los que salen no les mola mucho el hecho de convivir con humanos así que siguen siendo un poco cabroncetes, menos el prota, que tiene la cara más tiesa que los pechos de carmen de mairena, que le tira a la Sangre Fresca (o True Blood, que es la bebida que toman en los bares) y a la camarera del típico bar, que no es otra que Ana Paquin, cuya separación entre los incisivos es equiparable al estrecho de Gibraltar.&lt;/p&gt;
&lt;p&gt;Desde aquí la serie es una especie de Crepúsculo (hahaha, he dicho culo) a lo duro, con escenas de sexo explícito (casi todos los capítulos).&lt;/p&gt;
&lt;p&gt;De momento he visto la primera temporada, que ni fu ni fa, pero ya que la empecé, pues la seguiré viendo.&lt;/p&gt;
&lt;p&gt;Hoy sale el capítulo 2&amp;#215;09 en USA, y lo podéis bajar de aquí si os hace ilusión:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://karchedon.blogspot.com/2009/08/true-blood-s02e09-2x09-209.html"&gt;http://karchedon.blogspot.com/2009/08/true-blood-s02e09-2&amp;#215;09-209.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;!--adsense#piedepost--&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/Kl4uKt5QxB0pguOVtPmleGGKK-k/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Kl4uKt5QxB0pguOVtPmleGGKK-k/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/Kl4uKt5QxB0pguOVtPmleGGKK-k/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Kl4uKt5QxB0pguOVtPmleGGKK-k/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=kCll33Hvldk:41v1QmD4RFU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/kCll33Hvldk" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/true-blood/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/true-blood/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/true-blood/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Proyectos]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/cg4IYqgfqRo/" />
		<id>http://www.forgottenprojects.com/?p=396</id>
		<updated>2009-08-16T21:01:34Z</updated>
		<published>2009-08-16T21:01:19Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Personal" />		<summary type="html"><![CDATA[Nuestro proyecto GeoTurista, ganador del concurso de Nokia, ahora, queremos más...]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/proyectos/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fproyectos%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fproyectos%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Nos hemos emocionado tanto con la aplicación que hemos hecho para el concurso de la campus que estas semanas andamos dándole vueltas a crear más y a montar algo más serio.&lt;/p&gt;
&lt;p&gt;Andamos pensando en una aplicación basada en redes sociales aparte de mejorar la existente. Nos hemos dado cuenta que hemos trabajado bien juntos, y aunque nos conocemos desde hace mucho, nunca nos habíamos puesto a hacer algo en serio y parece que ha funcionado bien y que juntos podemos hacer algo guapo. Así que iremos informando de los progresos, por lo pronto, tenemos unas cuantas cosas que arreglar de GeoTurista, la aplicación que hemos hecho para la Campus Party, y los de Nokia no han vuelto a dar señales de vida, ya que prometieron contactar para hablar de venderla en el Ovi Store, la tienda de Nokia, y de las directrices para subirla y venderla&amp;#8230;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/f-Sa3hQPWQSsTEBPzFagga0B7ZE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/f-Sa3hQPWQSsTEBPzFagga0B7ZE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/f-Sa3hQPWQSsTEBPzFagga0B7ZE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/f-Sa3hQPWQSsTEBPzFagga0B7ZE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=cg4IYqgfqRo:huApYVrdt_c:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/cg4IYqgfqRo" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/proyectos/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/proyectos/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/proyectos/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[[CP2k9:Viernes] Hemos ganado!!]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/c0aSpFprjqM/" />
		<id>http://www.forgottenprojects.com/?p=388</id>
		<updated>2009-11-27T11:51:19Z</updated>
		<published>2009-08-02T20:03:52Z</published>
		<category scheme="http://www.forgottenprojects.com" term="CampusParty" /><category scheme="http://www.forgottenprojects.com" term="Tecnología" /><category scheme="http://www.forgottenprojects.com" term="campus party" />		<summary type="html"><![CDATA[
			
				
			
		
Al final ganamos el concurso de Nokia, estamos entusiasmados, nos han dado un N97 a cada participante y a nosotros además, dinero en metálico y la posibilidad de subir la aplicación al Ovi Store de Nokia e incluso ponerla de serie en futuros terminales una vez esté más depurada y con mejor acabado.
Además han hablado [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/cp2k9viernes-hemos-ganado/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcp2k9viernes-hemos-ganado%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcp2k9viernes-hemos-ganado%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=campus+party" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Al final ganamos el concurso de Nokia, estamos entusiasmados, nos han dado un N97 a cada participante y a nosotros además, dinero en metálico y la posibilidad de subir la aplicación al Ovi Store de Nokia e incluso ponerla de serie en futuros terminales una vez esté más depurada y con mejor acabado.&lt;/p&gt;
&lt;p&gt;Además han hablado con nosotros sobre un par de ofertas que nos podrían interesar, parece que a Nokia le ha salido bien el concurso para buscar nuevos talentos (que a fin de cuentas por eso se hacen los concursos en la Campus).&lt;/p&gt;
&lt;p&gt;Después de esto el resto de la campus ya me la he tomado mas light, jugando al starcraft y viendo los premios Desarrollador_ES y la compo rápida de juegos en la que participé el año pasado con &lt;a href="http://www.forgottenprojects.com/campus-party-3-horas-para-la-deadline/"&gt;Tama-yu&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;!--adsense#piedepost--&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/4frYY_qoRRD2QDeXAxR6mA_00rA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/4frYY_qoRRD2QDeXAxR6mA_00rA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/4frYY_qoRRD2QDeXAxR6mA_00rA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/4frYY_qoRRD2QDeXAxR6mA_00rA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=c0aSpFprjqM:9jNip0h3CLY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/c0aSpFprjqM" height="1" width="1"/&gt;</content>
	<georss:point featurename="valencia">39.4702393 -0.3768049</georss:point>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/cp2k9viernes-hemos-ganado/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/cp2k9viernes-hemos-ganado/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/cp2k9viernes-hemos-ganado/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[[CP2k9: Jueves] Fin de plazo]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/1QhAGdM8I7A/" />
		<id>http://www.forgottenprojects.com/?p=370</id>
		<updated>2009-08-03T12:57:39Z</updated>
		<published>2009-07-31T08:42:20Z</published>
		<category scheme="http://www.forgottenprojects.com" term="CampusParty" /><category scheme="http://www.forgottenprojects.com" term="Tecnología" /><category scheme="http://www.forgottenprojects.com" term="arduino" /><category scheme="http://www.forgottenprojects.com" term="campus party" /><category scheme="http://www.forgottenprojects.com" term="symbian" />		<summary type="html"><![CDATA[
			
				
			
		
HoyAyer finalizaba el plazo de entrega de las aplicaciones para Nokia N97. Participamos Mou y yo haciendo un widget que te muestra los 10 lugares más cercanos a tu ubicación que tienen artículo en wikipedia, lo cual significa que puedes leer acerca de los monumentos y lugares importantes que tienes alrededor en un momento dado. [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/cp2k9-jueves-fin-de-plazo/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcp2k9-jueves-fin-de-plazo%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcp2k9-jueves-fin-de-plazo%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=arduino,campus+party,symbian" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;stroke&gt;Hoy&lt;/stroke&gt;Ayer finalizaba el plazo de entrega de las aplicaciones para Nokia N97. Participamos Mou y yo haciendo un widget que te muestra los 10 lugares más cercanos a tu ubicación que tienen artículo en &lt;a href="http://es.wikipedia.org/wiki/Wikipedia:Portada"&gt;wikipedia&lt;/a&gt;, lo cual significa que puedes leer acerca de los monumentos y lugares importantes que tienes alrededor en un momento dado. Además, le añadimos la posibilidad de ver fotos sacadas de &lt;a href="http://www.panoramio.com/"&gt;panoramio &lt;/a&gt;tomadas cerca de donde estás. Esta aplicación se llama GeoTurista y espero que se haga popular &lt;img src='http://www.forgottenprojects.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /&gt; &lt;/p&gt;
&lt;p&gt;Si la mejoramos un poco podría entrar a la tienda &lt;a href="https://store.ovi.com/"&gt;Ovi Store de Nokia&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;También mejoramos el arduino pong de ayer poniendo un accelerómetro en la protoboard para jugara como si fuera un mando de Wii, mañana os lo enseño&lt;/p&gt;
&lt;div id="attachment_371" class="wp-caption aligncenter" style="width: 370px"&gt;&lt;a href="http://www.forgottenprojects.com/wp-content/uploads/2009/07/Scr000001.jpg"&gt;&lt;img src="http://www.forgottenprojects.com/wp-content/uploads/2009/07/Scr000001.jpg" alt="geoturista1" title="geoturista1" width="360" height="640" class="size-full wp-image-371" /&gt;&lt;/a&gt;&lt;p class="wp-caption-text"&gt;geoturista1&lt;/p&gt;&lt;/div&gt;&lt;a href="http://www.forgottenprojects.com/wp-content/uploads/2009/07/Scr000002.jpg"&gt;&lt;img src="http://www.forgottenprojects.com/wp-content/uploads/2009/07/Scr000002.jpg" alt="geoturista2" title="geoturista2" width="360" height="640" class="size-full wp-image-372" /&gt;&lt;/a&gt;&lt;div id="attachment_373" class="wp-caption aligncenter" style="width: 370px"&gt;&lt;a href="http://www.forgottenprojects.com/wp-content/uploads/2009/07/Scr000003.jpg"&gt;&lt;img src="http://www.forgottenprojects.com/wp-content/uploads/2009/07/Scr000003.jpg" alt="geoturista3" title="geoturista3" width="360" height="640" class="size-full wp-image-373" /&gt;&lt;/a&gt;&lt;p class="wp-caption-text"&gt;geoturista3&lt;/p&gt;&lt;/div&gt;
&lt;p&gt;&lt;!--adsense#piedepost--&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/IqSJKxKe2KU4xuXkqAocntbeP6c/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/IqSJKxKe2KU4xuXkqAocntbeP6c/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/IqSJKxKe2KU4xuXkqAocntbeP6c/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/IqSJKxKe2KU4xuXkqAocntbeP6c/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=1QhAGdM8I7A:e0OyIy2mTus:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/1QhAGdM8I7A" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/cp2k9-jueves-fin-de-plazo/#comments" thr:count="2" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/cp2k9-jueves-fin-de-plazo/feed/atom/" thr:count="2" />
		<thr:total>2</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/cp2k9-jueves-fin-de-plazo/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[[CP2k9:Miercoles] Un poco tarde!]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/lNW3SJy9PJQ/" />
		<id>http://www.forgottenprojects.com/?p=367</id>
		<updated>2009-08-03T12:57:59Z</updated>
		<published>2009-07-31T08:17:24Z</published>
		<category scheme="http://www.forgottenprojects.com" term="CampusParty" /><category scheme="http://www.forgottenprojects.com" term="Tecnología" /><category scheme="http://www.forgottenprojects.com" term="arduino" /><category scheme="http://www.forgottenprojects.com" term="campus party" /><category scheme="http://www.forgottenprojects.com" term="pong" />		<summary type="html"><![CDATA[
			
				
			
		
Buenas, estoy escribiendo este post pero en realidad es de ayer]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/cp2k9miercoles-un-poco-tarde/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcp2k9miercoles-un-poco-tarde%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcp2k9miercoles-un-poco-tarde%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=arduino,campus+party,pong" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Buenas, estoy escribiendo este post pero en realidad es de &lt;stroke&gt;ayer&lt;/stroke antes de ayer...&lt;/p&gt;
&lt;p&gt;Me pasé el día con la aplicación para el concurso de Nokia y salvo el taller de arduino donde hicimos un pong manejado por un controlador hardware de arduino que contaba con dos potenciómetros, no presté atención a mucho más.&lt;/p&gt;
&lt;p&gt;Os dejo un vídeo aunque no se ve muy bien, es la pantalla del pong y la placa arduino conectada a modo de controlador con dos potenciómetros para mover las palas.&lt;/p&gt;
&lt;p&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/Ytkk4uSDkPc&amp;#038;hl=es&amp;#038;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/Ytkk4uSDkPc&amp;#038;hl=es&amp;#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;&lt;!--adsense#piedepost--&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/GBoPaj4xJn0MZYcJ4QGvMWbD6ZM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/GBoPaj4xJn0MZYcJ4QGvMWbD6ZM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/GBoPaj4xJn0MZYcJ4QGvMWbD6ZM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/GBoPaj4xJn0MZYcJ4QGvMWbD6ZM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=lNW3SJy9PJQ:qPZAvzweJVU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/lNW3SJy9PJQ" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/cp2k9miercoles-un-poco-tarde/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/cp2k9miercoles-un-poco-tarde/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/cp2k9miercoles-un-poco-tarde/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[[CP2k9:Martes] Dia de charlas y talleres]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/dD85u8X5gJc/" />
		<id>http://www.forgottenprojects.com/?p=362</id>
		<updated>2009-08-03T12:58:16Z</updated>
		<published>2009-07-29T00:27:54Z</published>
		<category scheme="http://www.forgottenprojects.com" term="CampusParty" /><category scheme="http://www.forgottenprojects.com" term="Tecnología" /><category scheme="http://www.forgottenprojects.com" term="campus party" />		<summary type="html"><![CDATA[
			
				
			
		

Hoy es el segundo día, el primero oficial desde la inauguración anoche a las 00:00. Hoy ya había unas cuantas charlas y talleres interesantes, entre los que destaco las de Arduino, que es una placa para prototipos hardware la mar de interesante, opensource y barata con la que trastear con componentes electrónicos, comunicaciones, leds y [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/cp2k9-martes-charlas-talleres/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcp2k9-martes-charlas-talleres%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcp2k9-martes-charlas-talleres%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=campus+party" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;a href="http://www.forgottenprojects.com/wp-content/uploads/2009/07/28072009217.jpg"&gt;&lt;img src="http://www.forgottenprojects.com/wp-content/uploads/2009/07/28072009217-300x225.jpg" alt="campus-party-nokia-widgets" title="campus-party-nokia-widgets" width="300" height="225" class="alignnone size-medium wp-image-363" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Hoy es el segundo día, el primero oficial desde la &lt;a href="http://www.forgottenprojects.com/cp2k9lunesestamos-en-la-campus-party-2009/"&gt;inauguración&lt;/a&gt; anoche a las 00:00. Hoy ya había unas cuantas charlas y talleres interesantes, entre los que destaco las de Arduino, que es una placa para prototipos hardware la mar de interesante, opensource y barata con la que trastear con componentes electrónicos, comunicaciones, leds y demás experimentos electroculinarios.&lt;/p&gt;
&lt;p&gt;Por otra parte también han habido unas cuantas charlas interesantes de videojuegos así como la showcase de proyectos de juegos que participan este año, estos son los juegos que se han desarrollado durante más tiempo y fuera de la campus, no como la de fast programming que empezó ayer con unos cuantos temas a elegir y de la que se dispone de 72 horas para crear un juego con los temas propuestos, y que sinceramente, me parece un infierno, ya que participé el año pasado y me perdí muchas cosas interesantes de la party aunque también aprendí unas cuantas y salió un amago de juego que pienso portar al iPhone con mi nuevo Mac y forrarme muahahaha!&lt;/p&gt;
&lt;p&gt;Por otra parte quiero dejar constancia de lo cerda que es la gente, que no se puede ir al vater agusto sin que huela a mierda y esté todo meado por fuera y los zurullos flotando, por favor, ¿la gente hace esto en su casa? Un poco de civismo &lt;a href="http://www.forgottenprojects.com/estupidez-humana-global/"&gt;por el bien común&lt;/a&gt;, a nadie le gusta que las cosas estén asquerosas. En cambio un punto a favor de la chica que limpia una de las zonas de baños, que no podía ser más guapa &lt;img src='http://www.forgottenprojects.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /&gt; &lt;/p&gt;
&lt;p&gt;Por mi parte, estamos participando Mou y yo en el reto de Nokia para hacer widgets para el N97 y la verdad es que parece muy sencillo y espero que ganemos un terminal (pour moi) y parece ser que también habrá pasta a repartir &lt;img src='http://www.forgottenprojects.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /&gt; &lt;/p&gt;
&lt;p&gt;&lt;!--adsense#piedepost--&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/R8Yjo0qlnShGTGMhj2QTeouzvCg/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/R8Yjo0qlnShGTGMhj2QTeouzvCg/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/R8Yjo0qlnShGTGMhj2QTeouzvCg/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/R8Yjo0qlnShGTGMhj2QTeouzvCg/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=dD85u8X5gJc:e1WYYdFRFM8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/dD85u8X5gJc" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/cp2k9-martes-charlas-talleres/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/cp2k9-martes-charlas-talleres/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/cp2k9-martes-charlas-talleres/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[[CP2k9:Lunes]Estamos en la Campus Party 2009!!]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/6-AC5G22LGo/" />
		<id>http://www.forgottenprojects.com/?p=360</id>
		<updated>2009-08-03T12:58:37Z</updated>
		<published>2009-07-27T22:28:29Z</published>
		<category scheme="http://www.forgottenprojects.com" term="CampusParty" /><category scheme="http://www.forgottenprojects.com" term="Tecnología" /><category scheme="http://www.forgottenprojects.com" term="campus party" />		<summary type="html"><![CDATA[
			
				
			
		

Ya estamos en la campus! Nos ha costado un montón de horas desplazarnos de Madrid hasta aquí, montar los equipos, montar la tienda de campaña. y hacer la compra. Hace apenas 20 minutos que se ha inaugurado esta nueva edición que intentaré ir narrando por aquí los días sucesivos. Mientras tanto, puedes ver en la [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/cp2k9lunesestamos-en-la-campus-party-2009/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcp2k9lunesestamos-en-la-campus-party-2009%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcp2k9lunesestamos-en-la-campus-party-2009%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=campus+party" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;object type='application/x-shockwave-flash' allowfullscreen='true' width='640' height='360' data='http://www.campus-party.es/tl_files/Campus-valencia/2009/campustv/CP_videoplayer_v3.swf?c=10096&amp;#038;idsite=300011&amp;#038;autoplay=0'&gt;&lt;param name='allowFullScreen' value='true' /&gt;&lt;param name='movie' value='http://www.campus-party.es/tl_files/Campus-valencia/2009/campustv/CP_videoplayer_v3.swf?c=10096&amp;#038;idsite=300011&amp;#038;autoplay=0' /&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;Ya estamos en la &lt;a href="http://www.campus-party.org/"&gt;campus&lt;/a&gt;! Nos ha costado un montón de horas desplazarnos de Madrid hasta aquí, montar los equipos, montar la tienda de campaña. y hacer la compra. Hace apenas 20 minutos que se ha inaugurado esta nueva edición que intentaré ir narrando por aquí los días sucesivos. Mientras tanto, puedes ver en la parte superior de esta entrada, la gadget de campus tv donde se irán emitiendo los eventos de la party.&lt;/p&gt;
&lt;p&gt;De momento he fijado mi ojo en varios concursos de desarrollo pero esta vez no haré la tontería de pasarme 3 días programando sin poder ir a nada. Esta vez solo 2.&lt;/p&gt;
&lt;p&gt;De momento voy a ir enredando con los Nokia Widgets mientras planeo a que charlas voy a ir, que serán casi todas.&lt;/p&gt;
&lt;p&gt;&lt;!--adsense#piedepost--&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/JaYRLgzlJ6Yx-ao9M4nQcMvml1c/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/JaYRLgzlJ6Yx-ao9M4nQcMvml1c/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/JaYRLgzlJ6Yx-ao9M4nQcMvml1c/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/JaYRLgzlJ6Yx-ao9M4nQcMvml1c/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=6-AC5G22LGo:hCPduv04-ns:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/6-AC5G22LGo" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/cp2k9lunesestamos-en-la-campus-party-2009/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/cp2k9lunesestamos-en-la-campus-party-2009/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/cp2k9lunesestamos-en-la-campus-party-2009/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[San Fermines]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/iT16aWCeA3E/" />
		<id>http://www.forgottenprojects.com/?p=358</id>
		<updated>2009-07-10T13:53:12Z</updated>
		<published>2009-07-10T13:53:12Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Personal" />		<summary type="html"><![CDATA[
			
				
			
		
Todos los años me siento igual de frustrado a ver por la tele los heridos por los San Fermines. Nunca entenderé como se puede permitir una fiesta en la que puede morir gente tan fácilmente y sin que nadie pueda hacer nada. Es como si hubiera una fiesta en la que cualquier chalado pudiera coger [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/san-fermines/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fsan-fermines%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fsan-fermines%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Todos los años me siento igual de frustrado a ver por la tele los heridos por los San Fermines. Nunca entenderé como se puede permitir una fiesta en la que puede morir gente tan fácilmente y sin que nadie pueda hacer nada. Es como si hubiera una fiesta en la que cualquier chalado pudiera coger su coche y dedicarse a hacer carreras (espera, Gran Premio de Jerez?) y luego pasa lo que pasa. 15 personas han perdido la vida en San Fermines desde 1922, da un muerto casi cada 6 años, eso sin contar los heridos más o menos graves que provocan estos encierros.&lt;/p&gt;
&lt;p&gt;No digo que no haya fiesta, no digo que no haya alcohol, ni cachondeo, ni nada de eso, solo digo que se controle más la gente que participa o directamente, que se cambie esta parte de la celebración por una menos peligrosa.&lt;/p&gt;
&lt;p&gt;Si no, que se lo digan a la familia de &lt;strong&gt;Daniel Jimeno Romero&lt;/strong&gt;, que en paz descanse, al que hemos visto morir por la televisión (bastante explícito y a cámara lenta, todo hay que decirlo). Me imagino la preocupación de su madre porque su hijo fuese a este tipo de fiestas, para que acabe así&amp;#8230;&lt;/p&gt;
&lt;p&gt;El mundo está loco&amp;#8230;.&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/kn0co8BUvx0rmyLTttjr3yxo7gw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/kn0co8BUvx0rmyLTttjr3yxo7gw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/kn0co8BUvx0rmyLTttjr3yxo7gw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/kn0co8BUvx0rmyLTttjr3yxo7gw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=iT16aWCeA3E:M8lNjDCRX-4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/iT16aWCeA3E" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/san-fermines/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/san-fermines/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/san-fermines/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Google Calendar API + PHP (II), consultar eventos de otros calendarios]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/QDQfVtSLxHA/" />
		<id>http://www.forgottenprojects.com/?p=341</id>
		<updated>2009-07-10T07:06:10Z</updated>
		<published>2009-07-09T18:39:17Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Programacion" /><category scheme="http://www.forgottenprojects.com" term="Tecnología" /><category scheme="http://www.forgottenprojects.com" term="google calendar api" /><category scheme="http://www.forgottenprojects.com" term="php" /><category scheme="http://www.forgottenprojects.com" term="zend" />		<summary type="html"><![CDATA[Cómo hacer una query a un calendario distinto del de por defecto.]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/google-calendar-api-consultar-eventos-de-otros-calendarios-ii/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fgoogle-calendar-api-consultar-eventos-de-otros-calendarios-ii%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fgoogle-calendar-api-consultar-eventos-de-otros-calendarios-ii%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=google+calendar+api,php,zend" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Bueno, sigo en mis trece de hacer que esto funcione, y quién sabe, hacer algo rentable de ello.&lt;/p&gt;
&lt;p&gt;El caso es que como ya conseguí insetar los eventos en mi calendario recién creado, quería ver que los eventos que iba a meter no existían ya.&lt;/p&gt;
&lt;p&gt;Para esto lo más cómodo es averiguar la cadena que identifica al calendario, pero ojo, porque no es ni el id del calendario ($calFeed[i]-&gt;id-&gt;text) ni la URL ($calFeed[i]-&gt;link[0]-&gt;href) sino una cadena que las contiene. Lo más rapido es quitar la URL base que no nos interesa para que nos quede el userID del calendario (que parece ser distinto para cada calendario).&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;div class="code"&gt;&lt;pre class="php" style="font-family:monospace;"&gt;&lt;span style="color: #000088;"&gt;$user&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #990000;"&gt;str_replace&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;Zend_Gdata_Calendar&lt;span style="color: #339933;"&gt;::&lt;/span&gt;&lt;span style="color: #004000;"&gt;CALENDAR_FEED_URI&lt;/span&gt;&lt;span style="color: #339933;"&gt;.&lt;/span&gt;&lt;span style="color: #0000ff;"&gt;'/default/'&lt;/span&gt;&lt;span style="color: #339933;"&gt;,&lt;/span&gt; &lt;span style="color: #0000ff;"&gt;&amp;quot;&amp;quot;&lt;/span&gt;&lt;span style="color: #339933;"&gt;,&lt;/span&gt; &lt;span style="color: #000088;"&gt;$calFeed&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#91;&lt;/span&gt;&lt;span style="color: #cc66cc;"&gt;6&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#93;&lt;/span&gt;&lt;span style="color: #339933;"&gt;-&amp;gt;&lt;/span&gt;&lt;span style="color: #004000;"&gt;id&lt;/span&gt;&lt;span style="color: #339933;"&gt;-&amp;gt;&lt;/span&gt;&lt;span style="color: #004000;"&gt;text&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Después, hacemos una query a ESE calendario:&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;1
2
3
4
5
6
7
8
9
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="php" style="font-family:monospace;"&gt;&lt;span style="color: #000088;"&gt;$gdataCal&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #000000; font-weight: bold;"&gt;new&lt;/span&gt; Zend_Gdata_Calendar&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #000088;"&gt;$client&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	&lt;span style="color: #000088;"&gt;$query&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #000088;"&gt;$gdataCal&lt;/span&gt;&lt;span style="color: #339933;"&gt;-&amp;gt;&lt;/span&gt;&lt;span style="color: #004000;"&gt;newEventQuery&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	&lt;span style="color: #000088;"&gt;$query&lt;/span&gt;&lt;span style="color: #339933;"&gt;-&amp;gt;&lt;/span&gt;&lt;span style="color: #004000;"&gt;setUser&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #000088;"&gt;$user&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	&lt;span style="color: #000088;"&gt;$query&lt;/span&gt;&lt;span style="color: #339933;"&gt;-&amp;gt;&lt;/span&gt;&lt;span style="color: #004000;"&gt;setVisibility&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #0000ff;"&gt;'private'&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	&lt;span style="color: #000088;"&gt;$query&lt;/span&gt;&lt;span style="color: #339933;"&gt;-&amp;gt;&lt;/span&gt;&lt;span style="color: #004000;"&gt;setProjection&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #0000ff;"&gt;'full'&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	&lt;span style="color: #000088;"&gt;$query&lt;/span&gt;&lt;span style="color: #339933;"&gt;-&amp;gt;&lt;/span&gt;&lt;span style="color: #004000;"&gt;setOrderby&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #0000ff;"&gt;'starttime'&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	&lt;span style="color: #000088;"&gt;$query&lt;/span&gt;&lt;span style="color: #339933;"&gt;-&amp;gt;&lt;/span&gt;&lt;span style="color: #004000;"&gt;setStartMin&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #000088;"&gt;$fechaIni&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	&lt;span style="color: #000088;"&gt;$query&lt;/span&gt;&lt;span style="color: #339933;"&gt;-&amp;gt;&lt;/span&gt;&lt;span style="color: #004000;"&gt;setStartMax&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #000088;"&gt;$fechafin&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	&lt;span style="color: #000088;"&gt;$eventFeed&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #000088;"&gt;$gdataCal&lt;/span&gt;&lt;span style="color: #339933;"&gt;-&amp;gt;&lt;/span&gt;&lt;span style="color: #004000;"&gt;getCalendarEventFeed&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #000088;"&gt;$query&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Y luego ya, podemos reccorer sus eventos:&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;10
11
12
13
14
15
16
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="php" style="font-family:monospace;"&gt;&lt;span style="color: #b1b100;"&gt;foreach&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #000088;"&gt;$eventFeed&lt;/span&gt; &lt;span style="color: #b1b100;"&gt;as&lt;/span&gt; &lt;span style="color: #000088;"&gt;$event&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;
	&lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;
	 	&lt;span style="color: #b1b100;"&gt;echo&lt;/span&gt; &lt;span style="color: #0000ff;"&gt;&amp;quot;Comprobando &amp;quot;&lt;/span&gt;&lt;span style="color: #339933;"&gt;.&lt;/span&gt;&lt;span style="color: #000088;"&gt;$event&lt;/span&gt;&lt;span style="color: #339933;"&gt;-&amp;gt;&lt;/span&gt;&lt;span style="color: #004000;"&gt;title&lt;/span&gt;&lt;span style="color: #339933;"&gt;-&amp;gt;&lt;/span&gt;&lt;span style="color: #004000;"&gt;text&lt;/span&gt;&lt;span style="color: #339933;"&gt;.&lt;/span&gt;&lt;span style="color: #0000ff;"&gt;&amp;quot;&amp;lt;br&amp;gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;	    
		&lt;span style="color: #b1b100;"&gt;foreach&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #000088;"&gt;$event&lt;/span&gt;&lt;span style="color: #339933;"&gt;-&amp;gt;&lt;/span&gt;&lt;span style="color: #004000;"&gt;when&lt;/span&gt; &lt;span style="color: #b1b100;"&gt;as&lt;/span&gt; &lt;span style="color: #000088;"&gt;$when&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;
			&lt;span style="color: #b1b100;"&gt;echo&lt;/span&gt; &lt;span style="color: #000088;"&gt;$when&lt;/span&gt;&lt;span style="color: #339933;"&gt;-&amp;gt;&lt;/span&gt;&lt;span style="color: #004000;"&gt;startTime&lt;/span&gt;&lt;span style="color: #339933;"&gt;.&lt;/span&gt;&lt;span style="color: #0000ff;"&gt;&amp;quot;&amp;lt;br&amp;gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
		&lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;
	&lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Si no queremos hacer una búsqueda por parámetros sino sacarlos todos, es más fácil, primero sacamos el enlace al calendario:&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;1
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="php" style="font-family:monospace;"&gt;&lt;span style="color: #000088;"&gt;$url&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #000088;"&gt;$calFeed&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#91;&lt;/span&gt;&lt;span style="color: #cc66cc;"&gt;1&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#93;&lt;/span&gt;&lt;span style="color: #339933;"&gt;-&amp;gt;&lt;/span&gt;&lt;span style="color: #004000;"&gt;link&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#91;&lt;/span&gt;&lt;span style="color: #cc66cc;"&gt;0&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#93;&lt;/span&gt;&lt;span style="color: #339933;"&gt;-&amp;gt;&lt;/span&gt;&lt;span style="color: #004000;"&gt;href&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Y después pedimos los eventos:&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;2
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="php" style="font-family:monospace;"&gt;&lt;span style="color: #000088;"&gt;$events&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #000088;"&gt;$gdataCal&lt;/span&gt;&lt;span style="color: #339933;"&gt;-&amp;gt;&lt;/span&gt;&lt;span style="color: #004000;"&gt;getCalendarEventFeed&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #000088;"&gt;$url&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;(Fuente: &lt;a href="http://www.zfforums.com/zend-framework-components-13/web-web-services-22/gdata-how-get-other-calendar-than-default-one-245.html"&gt;http://www.zfforums.com/zend-framework-components-13/web-web-services-22/gdata-how-get-other-calendar-than-default-one-245.html&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;De verdad que no se por qué la API esta está tan mal documentada&amp;#8230;&lt;br /&gt;
&lt;!--adsense#piedepost--&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ArhUxJ0WrPz2aAn4-JVVknV1VDk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ArhUxJ0WrPz2aAn4-JVVknV1VDk/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ArhUxJ0WrPz2aAn4-JVVknV1VDk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ArhUxJ0WrPz2aAn4-JVVknV1VDk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=QDQfVtSLxHA:bUujRWE2tp4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/QDQfVtSLxHA" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/google-calendar-api-consultar-eventos-de-otros-calendarios-ii/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/google-calendar-api-consultar-eventos-de-otros-calendarios-ii/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/google-calendar-api-consultar-eventos-de-otros-calendarios-ii/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Google Calendar API + PHP (I)]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/84TNQ7r4p_U/" />
		<id>http://www.forgottenprojects.com/?p=333</id>
		<updated>2009-07-31T08:45:21Z</updated>
		<published>2009-07-05T15:29:12Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Programacion" /><category scheme="http://www.forgottenprojects.com" term="Tecnología" /><category scheme="http://www.forgottenprojects.com" term="api" /><category scheme="http://www.forgottenprojects.com" term="calendar" /><category scheme="http://www.forgottenprojects.com" term="create" /><category scheme="http://www.forgottenprojects.com" term="feed" /><category scheme="http://www.forgottenprojects.com" term="google" /><category scheme="http://www.forgottenprojects.com" term="include_path" /><category scheme="http://www.forgottenprojects.com" term="new" /><category scheme="http://www.forgottenprojects.com" term="php" /><category scheme="http://www.forgottenprojects.com" term="wamp" /><category scheme="http://www.forgottenprojects.com" term="xml" /><category scheme="http://www.forgottenprojects.com" term="zend" />		<summary type="html"><![CDATA[Como crear un calendario de Google Calendar con php y Zend]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/google-calendar-api-php-i/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fgoogle-calendar-api-php-i%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fgoogle-calendar-api-php-i%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=api,calendar,create,feed,google,include_path,new,php,wamp,xml,zend" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Bueno, llevo un par de días pegándome con una chorrada  de aplicación que se me había ocurrido hacer por entretenimiento y al final ha resultado la mar de estresante, aunque eso si, puedo decir que he aprendido algunos entresijos de las APIs de Google, en concreto de la de calendar, aunque en definitiva son todas parecedas, ya que se basan en el &lt;strong&gt;envío de XML a través de métodos POST previa autenticación con Google&lt;/strong&gt; por 3 vías diferentes.&lt;/p&gt;
&lt;p&gt;Como hay miles de tutoriales por ahí para empezar, prefiero comentar problemas que haya ido encontrando, además, como todo buen programador masoquista, paso de usar la libreria-para-tontos de PHP basada en Zend Framework que hay creada para usar, aunque al final he tenido que sucumbir, no por voluntad propia, sino por un&lt;strong&gt; error &lt;em&gt;411 Length Required&lt;/em&gt; que no hacía más que salirme por mucho que cambiase las cabeceras del POST&lt;/strong&gt;, así que solución 1, pasarse a la librería Zend, solución 2, ver como porras lo hace la librería para copiarlo xD&lt;/p&gt;
&lt;p&gt;Para mas inri, el error me lo estaba dando al crear un nuevo calendario enviando por POST el xml que hace falta para indicar que se desea crearlo, me pasé a la librería Zend pensando que ahí habría algún método mágico tipo createCalendar al igual que hay uno para crear eventos. Craso error amigo mío, cuando veo que ni por asomo hay una función para crear calendarios. Menos mal que rebuscando por ahí, un alma caritativa da una solución que ya se me había ocurrido y no sabía hacer, que es, nuevamente, enviar por POST el xml a pelo (pero esta vez con la libreria Zend) y voilá! funcionó &lt;img src='http://www.forgottenprojects.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /&gt; &lt;/p&gt;
&lt;p&gt;Para crear un calendario nuevo, se debe escribir el XML correspondiente, se puede usar una plantilla como la siguiente:&lt;br /&gt;
&lt;code&gt;$xmlEntry = "&amp;lt;entry xmlns='http://www.w3.org/2005/Atom' xmlns:gd='http://schemas.google.com/g/2005' xmlns:gCal='http://schemas.google.com/gCal/2005'&amp;gt;  &amp;lt;title type='text'&amp;gt;[TITLE]&amp;lt;/title&amp;gt;  &amp;lt;summary type='text'&amp;gt;[SUMMARY]&amp;lt;/summary&amp;gt;  &amp;lt;gCal:timezone value='Spain/Madrid'&amp;gt;&amp;lt;/gCal:timezone&amp;gt;  &amp;lt;gCal:hidden value='false'&amp;gt;&amp;lt;/gCal:hidden&amp;gt;  &amp;lt;gCal:color value='[COLOR]'&amp;gt;&amp;lt;/gCal:color&amp;gt;  &amp;lt;gd:where rel='' label='' valueString='Madrid'&amp;gt;&amp;lt;/gd:where&amp;gt; &amp;lt;/entry&amp;gt;";&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;De ahí solo hay que rellenar 3 cosas, &lt;strong&gt;[TITLE]&lt;/strong&gt; que es el nombre del calendario, &lt;strong&gt;[SUMMARY]&lt;/strong&gt; que es el resumen (y no es importante) y &lt;strong&gt;[COLOR]&lt;/strong&gt; que define el color de la etiqueta del calendario &lt;strong&gt;y no puede ser cualquier color&lt;/strong&gt; sino uno de estos:&lt;br /&gt;
&lt;code&gt;'#A32929'&lt;br /&gt;
'#B1365F',&lt;br /&gt;
'#7A367A',&lt;br /&gt;
'#5229A3',&lt;br /&gt;
'#29527A',&lt;br /&gt;
'#2952A3',&lt;br /&gt;
'#1B887A',&lt;br /&gt;
'#28754E',&lt;br /&gt;
'#0D7813',&lt;br /&gt;
'#528800',&lt;br /&gt;
'#88880E',&lt;br /&gt;
'#AB8B00',&lt;br /&gt;
'#BE6D00',&lt;br /&gt;
'#B1440E',&lt;br /&gt;
'#865A5A',&lt;br /&gt;
'#705770',&lt;br /&gt;
'#4E5D6C',&lt;br /&gt;
'#5A6986',&lt;br /&gt;
'#4A716C',&lt;br /&gt;
'#6E6E41',&lt;br /&gt;
'#8D6F47',&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;(que no se cual es cual&amp;#8230;)&lt;/p&gt;
&lt;p&gt;Total, que una vez sustituidos los campos de la plantilla con nuestros datos del calendario, pues hay que autenticarse si no lo estamos ya, y enviar el POST así:&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;div class="code"&gt;&lt;pre class="php" style="font-family:monospace;"&gt;&lt;span style="color: #000000; font-weight: bold;"&gt;function&lt;/span&gt; crearCalendario&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #000088;"&gt;$nombre&lt;/span&gt;&lt;span style="color: #339933;"&gt;,&lt;/span&gt; &lt;span style="color: #000088;"&gt;$resumen&lt;/span&gt;&lt;span style="color: #339933;"&gt;,&lt;/span&gt; &lt;span style="color: #000088;"&gt;$client&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;
&lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;
	&lt;span style="color: #000088;"&gt;$gdataCal&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #000000; font-weight: bold;"&gt;new&lt;/span&gt; Zend_Gdata_Calendar&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #000088;"&gt;$client&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	&lt;span style="color: #000088;"&gt;$uri&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #0000ff;"&gt;'http://www.google.com/calendar/feeds/default/owncalendars/full'&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;	
	&lt;span style="color: #000088;"&gt;$xmlEntry&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #990000;"&gt;str_replace&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #0000ff;"&gt;'[TITLE]'&lt;/span&gt;&lt;span style="color: #339933;"&gt;,&lt;/span&gt; &lt;span style="color: #000088;"&gt;$nombre&lt;/span&gt;&lt;span style="color: #339933;"&gt;,&lt;/span&gt; &lt;span style="color: #000088;"&gt;$xmlEntry&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	&lt;span style="color: #000088;"&gt;$xmlEntry&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #990000;"&gt;str_replace&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #0000ff;"&gt;'[SUMMARY]'&lt;/span&gt;&lt;span style="color: #339933;"&gt;,&lt;/span&gt;	&lt;span style="color: #000088;"&gt;$resumen&lt;/span&gt;&lt;span style="color: #339933;"&gt;,&lt;/span&gt; &lt;span style="color: #000088;"&gt;$xmlEntry&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	&lt;span style="color: #000088;"&gt;$gdataCal&lt;/span&gt;&lt;span style="color: #339933;"&gt;-&amp;gt;&lt;/span&gt;&lt;span style="color: #004000;"&gt;post&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #000088;"&gt;$xmlEntry&lt;/span&gt;&lt;span style="color: #339933;"&gt;,&lt;/span&gt; &lt;span style="color: #000088;"&gt;$uri&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
&lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;También se puede guardar el xml en un archivo plantilla, por ejemplo createcal.xml y cargarlo antes de sustituir:&lt;br /&gt;
&lt;code&gt;$xml = file_get_contents('createcal.xml');&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Después de ejecutar esto vamos a Google Calendar (o listamos de nuevo los calendarios) y vemos que el calendario que le hemos dicho se ha creado correctamente.&lt;/p&gt;
&lt;p&gt;Por cierto, para los que usan &lt;strong&gt;WAMP &lt;/strong&gt;como servidor local de prueba, para usar las librerias Zend hay que ir al php.ini pero no el de la carpeta PHP sino &lt;strong&gt;al de Apache (C:\wamp\bin\apache\Apache2.2.11\bin\php.ini)&lt;/strong&gt; y buscar la línea que empieza por ;include_path, quitarle el ; del principio y añadir al final la ruta del disco duro hasta la carpeta library del directorio donde hemos descargado el Zend (&lt;strong&gt;línea 528: include_path = &amp;#8220;.;c:\php\includes;C:\wamp\apps\ZendGdata-1.8.4\library&amp;#8221;&lt;/strong&gt;)&lt;/p&gt;
&lt;p&gt;&lt;!--adsense#piedepost--&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/cJFLG0AJq27Moq4PazasdyqPyjA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/cJFLG0AJq27Moq4PazasdyqPyjA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/cJFLG0AJq27Moq4PazasdyqPyjA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/cJFLG0AJq27Moq4PazasdyqPyjA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=84TNQ7r4p_U:LcIs_gVJF8U:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/84TNQ7r4p_U" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/google-calendar-api-php-i/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/google-calendar-api-php-i/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/google-calendar-api-php-i/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[¡Nuevo producto en la tienda! Camiseta RSS personalizable]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/XC_oIQZ6xPI/" />
		<id>http://www.forgottenprojects.com/?p=322</id>
		<updated>2009-06-09T11:47:51Z</updated>
		<published>2009-06-09T11:47:03Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Freaks" /><category scheme="http://www.forgottenprojects.com" term="General" /><category scheme="http://www.forgottenprojects.com" term="Interesante" /><category scheme="http://www.forgottenprojects.com" term="Tecnología" />		<summary type="html"><![CDATA[Nuevo producto en la tienda. Camiseta RSS personalizable con tu blog.]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/camiseta-rss-personalizable/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcamiseta-rss-personalizable%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcamiseta-rss-personalizable%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;¿Planeas ir al próximo &lt;a href="http://www.congresodewebmasters.com/"&gt;Congreso de Webmaster de Madrid&lt;/a&gt; que se celebra este año el 2,3, y 4 de Octubre?&lt;br /&gt;
&lt;a href="http://www.congresodewebmasters.com/"&gt;&lt;img alt="Logo congreso webmaster" src="http://www.congresodewebmasters.com/images/banner-index.png" width="90%" height="90%" /&gt;&lt;/a&gt;&lt;br /&gt;
Pues tanto si vas a participar en el networking como si no, tal vez deberías ir con ésta camiseta para que aquellas personas tímidas que no se atreven a preguntarte por tu blog sepan cual es.&lt;br /&gt;
&lt;a href="http://forgottenprojects.spreadshirt.net/es/ES/Shop/Article/Index/article/Camiseta-personalizable-RSS-Feed-9724060"&gt;&lt;img alt="Camiseta RSS Personalizable" src="http://image.spreadshirt.net/image-server/image/product/10941546/view/1/type/png/width/190/height/190" width="190" height="190" /&gt;&lt;/a&gt;&lt;br /&gt;
Por 21.99€ es tuya. Pincha en la imagen para entrar en la tienda.&lt;/p&gt;
&lt;p&gt;&lt;!--adsense#piedepost--&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/625qXttUTGmdp0_weiicKi_6qyk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/625qXttUTGmdp0_weiicKi_6qyk/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/625qXttUTGmdp0_weiicKi_6qyk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/625qXttUTGmdp0_weiicKi_6qyk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=XC_oIQZ6xPI:_R6TuTg2DmI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/XC_oIQZ6xPI" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/camiseta-rss-personalizable/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/camiseta-rss-personalizable/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/camiseta-rss-personalizable/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Tienda de camisetas frikis y geeks]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/Ve6EZMCRtqM/" />
		<id>http://www.forgottenprojects.com/?p=318</id>
		<updated>2009-06-09T11:19:00Z</updated>
		<published>2009-06-09T11:19:00Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Freaks" /><category scheme="http://www.forgottenprojects.com" term="General" /><category scheme="http://www.forgottenprojects.com" term="Interesante" /><category scheme="http://www.forgottenprojects.com" term="Tecnología" />		<summary type="html"><![CDATA[Nueva tienda de camisetas y ropa friki. Elige la que más te guste y haz tu pedido online.]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/tienda-camisetas-frikis-geeks/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Ftienda-camisetas-frikis-geeks%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Ftienda-camisetas-frikis-geeks%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Buenas!&lt;br /&gt;
Hoy toca actualización inesperada, no tengo mucho tiempo últimamente pero con esto de la crisis uno se busca alternativas para sacarse un sobresueldo, dado que parece imposible que éste aumente lo más mínimo. Así que por eso he creado una &lt;a href="http://forgottenprojects.spreadshirt.net/es/ES/Shop"&gt;tienda de camisetas en Spreadshirt&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Desde aquí puedes comprar tu ropa friki o geek, incluso accesorios, con motivos de internet, rol o videojuegos. Nosotros nos encargamos de los diseños y spreadshirt se encarga de la impresión y envío.&lt;/p&gt;
&lt;p&gt;Adjunto algunos de los diseños que tenemos en venta actualmente y si te gusta no dudes en &lt;a href="http://forgottenprojects.spreadshirt.net/es/ES/Shop"&gt;entrar en la tienda.&lt;/a&gt;&lt;/p&gt;
&lt;div class="wp-caption alignnone" style="width: 200px"&gt;&lt;a href="http://forgottenprojects.spreadshirt.net/es/ES/Shop/Article/Index/article/Comecocos-chica-azul-marino-9711315"&gt;&lt;img alt="Camiseta comecocos azul marino chica" src="http://image.spreadshirt.net/image-server/image/product/10927443/view/1/type/png/width/190/height/190" title="Camiseta comecocos azul marino chica" width="190" height="190" /&gt;&lt;/a&gt;&lt;p class="wp-caption-text"&gt;Camiseta comecocos azul marino chica&lt;/p&gt;&lt;/div&gt;[caption id="" align="alignnone" width="190" caption="Camiseta PI brilla en la oscuridad"]&lt;a href="http://forgottenprojects.spreadshirt.net/es/ES/Shop/Article/Index/article/Camiseta-PI-brilla-en-la-oscuridad-9712508"&gt;&lt;img alt="Camiseta PI brilla en la oscuridad" src="http://image.spreadshirt.net/image-server/image/product/10928676/view/1/type/png/width/190/height/190" title="Camiseta PI brilla en la oscuridad" width="190" height="190" /&gt;&lt;/a&gt;[/caption]&lt;br /&gt;
&lt;div class="wp-caption alignnone" style="width: 200px"&gt;&lt;a href="http://forgottenprojects.spreadshirt.net/es/ES/Shop/Article/Index/article/Gorra-error-404-9712572"&gt;&lt;img alt="Gorra Error 404 Brain not found" src="http://image.spreadshirt.net/image-server/image/product/10928738/view/1/type/png/width/190/height/190" title="Gorra Error 404 Brain not found" width="190" height="190" /&gt;&lt;/a&gt;&lt;p class="wp-caption-text"&gt;Gorra Error 404 Brain not found&lt;/p&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="wp-caption alignnone" style="width: 200px"&gt;&lt;a href="http://forgottenprojects.spreadshirt.net/es/ES/Shop/Article/Index/article/Chapa-RSS-Feed-9723803"&gt;&lt;img alt="Chapa RSS Feed Me" src="http://image.spreadshirt.net/image-server/image/product/10941221/view/1/type/png/width/190/height/190" title="Chapa RSS Feed Me" width="190" height="190" /&gt;&lt;/a&gt;&lt;p class="wp-caption-text"&gt;Chapa RSS Feed Me&lt;/p&gt;&lt;/div&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/QWIm7TaBYitWWJxLcMSUgLHkfjI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/QWIm7TaBYitWWJxLcMSUgLHkfjI/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/QWIm7TaBYitWWJxLcMSUgLHkfjI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/QWIm7TaBYitWWJxLcMSUgLHkfjI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=Ve6EZMCRtqM:ARS4rsKGlN0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/Ve6EZMCRtqM" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/tienda-camisetas-frikis-geeks/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/tienda-camisetas-frikis-geeks/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/tienda-camisetas-frikis-geeks/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Ausencia]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/oBVo9o8bR8Q/" />
		<id>http://www.forgottenprojects.com/?p=315</id>
		<updated>2009-05-27T15:07:07Z</updated>
		<published>2009-05-27T15:04:15Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Personal" />		<summary type="html"><![CDATA[
			
				
			
		
Últimamente he andado un poco alejado del blog, salvo la entrada anterior que se escribe automáticamente al reseñar algo en Qype.
Estoy preparando una entrada sobre el viaje que hice a Japón a finales de Marzo y quiero que sea un buen artículo y que sirva para gente que vaya a ir ya que parece ser [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/ausencia/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fausencia%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fausencia%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Últimamente he andado un poco alejado del blog, salvo la entrada anterior que se escribe automáticamente al reseñar algo en &lt;a href="http://www.qype.es"&gt;Qype&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Estoy preparando una entrada sobre el viaje que hice a Japón a finales de Marzo y quiero que sea un buen artículo y que sirva para gente que vaya a ir ya que parece ser un destino de moda últimamente&amp;#8230;&lt;br /&gt;
Si quieres un adelanto de las fotos, puedes ver algunas en &lt;a href="http://www.facebook.com/people/Fernando_Fernandez_Gallego/559780680"&gt;mi perfil de Facebook&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;También quería preparar algún post sobre gadgets, en especial del Sony Reader PRS-505 que tengo desde hace mucho tiempo y que aún no he reseñado, y es que los lectores de tinta electrónica están empezando a verse cada vez más y son unos aparatos realmente útiles como ya os enseñaré, así que permaneced atentos a los próximos días.&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/2pPMWUSzhh5DIlCFjTrX4jWAhqM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/2pPMWUSzhh5DIlCFjTrX4jWAhqM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/2pPMWUSzhh5DIlCFjTrX4jWAhqM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/2pPMWUSzhh5DIlCFjTrX4jWAhqM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=oBVo9o8bR8Q:0-q-NcWWev0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/oBVo9o8bR8Q" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/ausencia/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/ausencia/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/ausencia/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[LuUcH]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/6SKrb2PNh_U/" />
		<id>http://www.forgottenprojects.com/314/</id>
		<updated>2009-07-31T09:26:17Z</updated>
		<published>2009-05-26T14:55:44Z</published>
		<category scheme="http://www.forgottenprojects.com" term="General" />		<summary type="html"><![CDATA[
			
				
			
		
Madrid
Este sitio está por la zona de las tablas, a unos 3 minutos de la boca del metro y es ideal para la gente del barrio que quiera salir a tomar algo en alguna terraza de la zona. 
Las cañas son grandes y baratas pero no solo es un bar, además tienen helados (desde 1.80€ [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/luuch/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fluuch%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fluuch%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;a href="http://www.qype.es/es300-madrid-fuencarral-el-pardo"&gt;Madrid&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Este sitio está por la zona de las tablas, a unos 3 minutos de la boca del metro y es ideal para la gente del barrio que quiera salir a tomar algo en alguna terraza de la zona. &lt;/p&gt;
&lt;p&gt;Las cañas son grandes y baratas pero no solo es un bar, además tienen helados (desde 1.80€ el pequeño), batidos de frutas sin alcohol (3.50€), también sirven cenas y comidas, brunch, y dispone de Wifi gratis. &lt;/p&gt;
&lt;p&gt;También tienen un proyector donde retransmiten el fútbol o videos musicales y la terracita en verano está muy bien.&lt;br /&gt;
Echa un vistazo a mi reseña de &lt;a href="http://www.qype.es/place/598031-LuUcH-Madrid"&gt;LuUcH&lt;/a&gt; &amp;#8211; Yo soy &lt;a href="http://www.qype.es/people/ferdy182"&gt;ferdy182&lt;/a&gt; &amp;#8211; en &lt;a href="http://www.qype.es/"&gt;Qype&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/jLETuHBUCh4CL_Z9ehWuOyuEnkU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/jLETuHBUCh4CL_Z9ehWuOyuEnkU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/jLETuHBUCh4CL_Z9ehWuOyuEnkU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/jLETuHBUCh4CL_Z9ehWuOyuEnkU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=6SKrb2PNh_U:w2qM2im1wqM:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/6SKrb2PNh_U" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/luuch/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/luuch/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/luuch/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Tooltip en css y javascript para menu desplegable que funciona en internet explorer 6]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/Aet5cRsjxJs/" />
		<id>http://www.forgottenprojects.com/?p=302</id>
		<updated>2009-03-16T17:23:18Z</updated>
		<published>2009-03-19T09:00:08Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Programacion" /><category scheme="http://www.forgottenprojects.com" term="explorer" /><category scheme="http://www.forgottenprojects.com" term="javascript" /><category scheme="http://www.forgottenprojects.com" term="tooltip" />		<summary type="html"><![CDATA[Cómo implementar un tooltip en IE6]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/tooltip-en-css-y-javascript-para-menu-desplegable-que-funciona-en-internet-explorer-6/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Ftooltip-en-css-y-javascript-para-menu-desplegable-que-funciona-en-internet-explorer-6%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Ftooltip-en-css-y-javascript-para-menu-desplegable-que-funciona-en-internet-explorer-6%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=explorer,javascript,tooltip" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Antes de que sigas leyendo, no, no es posible hacer un tooltip en cada opción del desplegable en IE6 ya que ni el atributo title ni los eventos de ratón están disponibles para la etiqueta option. Para otros navegadores consulta &lt;a href="http://www.forgottenprojects.com/tooltip-desplegables-select-combo-dropdown/"&gt;mi post anterior&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Para hacer un tooltip funcional en IE6, se debe incluir el código siguiente:&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;1
2
3
4
5
6
7
8
9
10
11
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="css" style="font-family:monospace;"&gt;&amp;lt;style&lt;span style="color: #00AA00;"&gt;&amp;gt;&lt;/span&gt;
&lt;span style="color: #cc00cc;"&gt;#tooltip&lt;/span&gt; &lt;span style="color: #00AA00;"&gt;&amp;#123;&lt;/span&gt;
  &lt;span style="color: #000000; font-weight: bold;"&gt;position&lt;/span&gt;&lt;span style="color: #00AA00;"&gt;:&lt;/span&gt; &lt;span style="color: #993333;"&gt;absolute&lt;/span&gt;&lt;span style="color: #00AA00;"&gt;;&lt;/span&gt;
  &lt;span style="color: #000000; font-weight: bold;"&gt;display&lt;/span&gt;&lt;span style="color: #00AA00;"&gt;:&lt;/span&gt;&lt;span style="color: #993333;"&gt;none&lt;/span&gt;&lt;span style="color: #00AA00;"&gt;;&lt;/span&gt;
  &lt;span style="color: #000000; font-weight: bold;"&gt;padding&lt;/span&gt;&lt;span style="color: #00AA00;"&gt;:&lt;/span&gt;&lt;span style="color: #933;"&gt;1px&lt;/span&gt; &lt;span style="color: #933;"&gt;2px&lt;/span&gt; &lt;span style="color: #933;"&gt;1px&lt;/span&gt; &lt;span style="color: #933;"&gt;2px&lt;/span&gt;&lt;span style="color: #00AA00;"&gt;;&lt;/span&gt;
  &lt;span style="color: #000000; font-weight: bold;"&gt;border&lt;/span&gt;&lt;span style="color: #00AA00;"&gt;:&lt;/span&gt; &lt;span style="color: #933;"&gt;1px&lt;/span&gt; &lt;span style="color: #993333;"&gt;solid&lt;/span&gt; &lt;span style="color: #000000; font-weight: bold;"&gt;black&lt;/span&gt;&lt;span style="color: #00AA00;"&gt;;&lt;/span&gt;
  &lt;span style="color: #000000; font-weight: bold;"&gt;background-color&lt;/span&gt;&lt;span style="color: #00AA00;"&gt;:&lt;/span&gt;&lt;span style="color: #cc00cc;"&gt;#FFFF99&lt;/span&gt;&lt;span style="color: #00AA00;"&gt;;&lt;/span&gt;
  &lt;span style="color: #000000; font-weight: bold;"&gt;width&lt;/span&gt;&lt;span style="color: #00AA00;"&gt;:&lt;/span&gt;&lt;span style="color: #933;"&gt;400px&lt;/span&gt;&lt;span style="color: #00AA00;"&gt;;&lt;/span&gt;
  &lt;span style="color: #000000; font-weight: bold;"&gt;z-index&lt;/span&gt;&lt;span style="color: #00AA00;"&gt;:&lt;/span&gt;&lt;span style="color: #cc66cc;"&gt;1000&lt;/span&gt;&lt;span style="color: #00AA00;"&gt;;&lt;/span&gt;
&lt;span style="color: #00AA00;"&gt;&amp;#125;&lt;/span&gt;			
&amp;lt;/style&lt;span style="color: #00AA00;"&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Esto crea la clase tooltip en CSS para asignar al div que almacenerá el texto del tooltip.&lt;/p&gt;
&lt;p&gt;Ahora incluimos las funciones en javascript:&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="javascript" style="font-family:monospace;"&gt;&lt;span style="color: #339933;"&gt;&amp;lt;&lt;/span&gt;script language&lt;span style="color: #339933;"&gt;=&lt;/span&gt;&lt;span style="color: #3366CC;"&gt;&amp;quot;javascript&amp;quot;&lt;/span&gt; type&lt;span style="color: #339933;"&gt;=&lt;/span&gt;&lt;span style="color: #3366CC;"&gt;&amp;quot;text/javascript&amp;quot;&lt;/span&gt;&lt;span style="color: #339933;"&gt;&amp;gt;&lt;/span&gt;
&lt;span style="color: #006600; font-style: italic;"&gt;// This function checks the mouse event&lt;/span&gt;
&lt;span style="color: #003366; font-weight: bold;"&gt;function&lt;/span&gt; checkEvent&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;e&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;
	&lt;span style="color: #000066; font-weight: bold;"&gt;if&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #339933;"&gt;!&lt;/span&gt;e&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt; &lt;span style="color: #003366; font-weight: bold;"&gt;var&lt;/span&gt; e &lt;span style="color: #339933;"&gt;=&lt;/span&gt; window.&lt;span style="color: #660066;"&gt;event&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	&lt;span style="color: #000066; font-weight: bold;"&gt;if&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;e.&lt;span style="color: #660066;"&gt;target&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt; targ &lt;span style="color: #339933;"&gt;=&lt;/span&gt; e.&lt;span style="color: #660066;"&gt;target&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	&lt;span style="color: #000066; font-weight: bold;"&gt;else&lt;/span&gt; &lt;span style="color: #000066; font-weight: bold;"&gt;if&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;e.&lt;span style="color: #660066;"&gt;srcElement&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt; targ &lt;span style="color: #339933;"&gt;=&lt;/span&gt; e.&lt;span style="color: #660066;"&gt;srcElement&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	showHideToolTip&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;targ&lt;span style="color: #339933;"&gt;,&lt;/span&gt; e&lt;span style="color: #339933;"&gt;,&lt;/span&gt; e.&lt;span style="color: #660066;"&gt;type&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;
&lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;
&lt;span style="color: #006600; font-style: italic;"&gt;// This function shows/hides the tooltip&lt;/span&gt;
&lt;span style="color: #003366; font-weight: bold;"&gt;function&lt;/span&gt; showHideToolTip &lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;theDropDown&lt;span style="color: #339933;"&gt;,&lt;/span&gt; e&lt;span style="color: #339933;"&gt;,&lt;/span&gt; eType&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;
&lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;
 &lt;span style="color: #003366; font-weight: bold;"&gt;var&lt;/span&gt; toolTipObj &lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #003366; font-weight: bold;"&gt;new&lt;/span&gt; Object&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
 toolTipObj &lt;span style="color: #339933;"&gt;=&lt;/span&gt; document.&lt;span style="color: #660066;"&gt;getElementById&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #3366CC;"&gt;&amp;quot;tooltip&amp;quot;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
 toolTipObj.&lt;span style="color: #660066;"&gt;innerHTML&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; theDropDown.&lt;span style="color: #660066;"&gt;options&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#91;&lt;/span&gt;theDropDown.&lt;span style="color: #660066;"&gt;selectedIndex&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#93;&lt;/span&gt;.&lt;span style="color: #660066;"&gt;text&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
 &lt;span style="color: #000066; font-weight: bold;"&gt;if&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;eType &lt;span style="color: #339933;"&gt;==&lt;/span&gt; &lt;span style="color: #3366CC;"&gt;&amp;quot;mouseout&amp;quot;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;
  toolTipObj.&lt;span style="color: #660066;"&gt;style&lt;/span&gt;.&lt;span style="color: #660066;"&gt;display&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #3366CC;"&gt;&amp;quot;none&amp;quot;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
   &lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt; &lt;span style="color: #000066; font-weight: bold;"&gt;else&lt;/span&gt;
 &lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;
  toolTipObj.&lt;span style="color: #660066;"&gt;style&lt;/span&gt;.&lt;span style="color: #660066;"&gt;display&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #3366CC;"&gt;&amp;quot;inline&amp;quot;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
  toolTipObj.&lt;span style="color: #660066;"&gt;style&lt;/span&gt;.&lt;span style="color: #660066;"&gt;top&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; e.&lt;span style="color: #660066;"&gt;y&lt;/span&gt; &lt;span style="color: #339933;"&gt;+&lt;/span&gt; &lt;span style="color: #CC0000;"&gt;15&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
  toolTipObj.&lt;span style="color: #660066;"&gt;style&lt;/span&gt;.&lt;span style="color: #660066;"&gt;left&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; e.&lt;span style="color: #660066;"&gt;x&lt;/span&gt; &lt;span style="color: #339933;"&gt;+&lt;/span&gt; &lt;span style="color: #CC0000;"&gt;10&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
 &lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;
&lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Esto sirve para comprobar el evento sobre el control y para mostrar u ocultar el tooltip.&lt;/p&gt;
&lt;p&gt;Luego solo hay que añadir en el html el siguiente div&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;div class="code"&gt;&lt;pre class="html" style="font-family:monospace;"&gt;&amp;lt;div id=&amp;quot;tooltip&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Y añadir al select o dropdown que tengamos lo siguiente antes de cerrar el tag (&gt;):&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;div class="code"&gt;&lt;pre class="javascript" style="font-family:monospace;"&gt;onMouseOver&lt;span style="color: #339933;"&gt;=&lt;/span&gt;&lt;span style="color: #3366CC;"&gt;&amp;quot;checkEvent(this.event);&amp;quot;&lt;/span&gt; 
onMouseOut&lt;span style="color: #339933;"&gt;=&lt;/span&gt;&lt;span style="color: #3366CC;"&gt;&amp;quot;checkEvent(this.event);&amp;quot;&lt;/span&gt; 
onMouseMove&lt;span style="color: #339933;"&gt;=&lt;/span&gt;&lt;span style="color: #3366CC;"&gt;&amp;quot;checkEvent(this.event);&amp;quot;&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Ver &lt;a href="http://www.forgottenprojects.com/ferdy182/ejemplo/select2.html"&gt;demo &lt;/a&gt;(solo IE7+)&lt;/p&gt;
&lt;p&gt;&lt;!--adsense#piedepost--&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/AidmuXG-tBtUqNTl_L2YPl5S1SU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/AidmuXG-tBtUqNTl_L2YPl5S1SU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/AidmuXG-tBtUqNTl_L2YPl5S1SU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/AidmuXG-tBtUqNTl_L2YPl5S1SU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=Aet5cRsjxJs:ZQ5AoNPRRX4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/Aet5cRsjxJs" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/tooltip-en-css-y-javascript-para-menu-desplegable-que-funciona-en-internet-explorer-6/#comments" thr:count="2" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/tooltip-en-css-y-javascript-para-menu-desplegable-que-funciona-en-internet-explorer-6/feed/atom/" thr:count="2" />
		<thr:total>2</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/tooltip-en-css-y-javascript-para-menu-desplegable-que-funciona-en-internet-explorer-6/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Tooltip en menús desplegables tipo select,combo y dropdown]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/RvOOEU1YM8k/" />
		<id>http://www.forgottenprojects.com/?p=297</id>
		<updated>2009-06-23T14:44:55Z</updated>
		<published>2009-03-18T09:00:30Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Programacion" /><category scheme="http://www.forgottenprojects.com" term="Viaje a italia" /><category scheme="http://www.forgottenprojects.com" term="fotolog" /><category scheme="http://www.forgottenprojects.com" term="explorer" /><category scheme="http://www.forgottenprojects.com" term="javascript" /><category scheme="http://www.forgottenprojects.com" term="tooltip" />		<summary type="html"><![CDATA[Cómo hacer un tooltip en menus desplegables con javascript]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/tooltip-desplegables-select-combo-dropdown/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Ftooltip-desplegables-select-combo-dropdown%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Ftooltip-desplegables-select-combo-dropdown%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=explorer,javascript,tooltip" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Buenas, siguiendo estos días unos posts dedicados al infernal Internet Explorer y cómo algunas empresas, no sólo se empeñan en jorobar empleandolo, sino además manteniendo la versión 6 como &amp;#8220;corporativa&amp;#8221;, hoy vamos a aprender como implementar un tooltip para menús desplegables tipo select (html) o dropdown(asp.net)&lt;/p&gt;
&lt;p&gt;Para IE7 y navegadores que funcionan bien como Firefox, podemos hacer uso del atributo title de los elementos html ya que se dispara el tooltip en el evento mouseover automáticamente (cosa que en IE6 no ocurre por eso hay que hacerlo de otra manera).&lt;/p&gt;
&lt;p&gt;Si tenemos un desplegable que se llena dinámicamente, no podemos poner el title a cada option, ya que aun no existen a la hora de diseñar el formulario, por esto se puede echar mano de javascript con la siguiente funcion:&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;1
2
3
4
5
6
7
8
9
10
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="javascript" style="font-family:monospace;"&gt;&lt;span style="color: #003366; font-weight: bold;"&gt;function&lt;/span&gt; tooltips&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;			
        items &lt;span style="color: #339933;"&gt;=&lt;/span&gt; document.&lt;span style="color: #660066;"&gt;getElementsByTagName&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #3366CC;"&gt;&amp;quot;option&amp;quot;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	&lt;span style="color: #000066; font-weight: bold;"&gt;for&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;i&lt;span style="color: #339933;"&gt;=&lt;/span&gt;&lt;span style="color: #CC0000;"&gt;0&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt; i&lt;span style="color: #339933;"&gt;&amp;lt;&lt;/span&gt;items.&lt;span style="color: #660066;"&gt;length&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt; i&lt;span style="color: #339933;"&gt;++&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;
	&lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;
	       items&lt;span style="color: #009900;"&gt;&amp;#91;&lt;/span&gt;i&lt;span style="color: #009900;"&gt;&amp;#93;&lt;/span&gt;.&lt;span style="color: #660066;"&gt;title&lt;/span&gt;&lt;span style="color: #339933;"&gt;=&lt;/span&gt;items&lt;span style="color: #009900;"&gt;&amp;#91;&lt;/span&gt;i&lt;span style="color: #009900;"&gt;&amp;#93;&lt;/span&gt;.&lt;span style="color: #660066;"&gt;text&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;				
	&lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;
	drop &lt;span style="color: #339933;"&gt;=&lt;/span&gt; document.&lt;span style="color: #660066;"&gt;getElementById&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #3366CC;"&gt;&amp;quot;select&amp;quot;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	drop.&lt;span style="color: #660066;"&gt;onchange&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; tooltipselect&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	tooltipselect&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
&lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;llamando a esta funcion en el body así:&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;1
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="html" style="font-family:monospace;"&gt;&amp;lt;body onload=&amp;quot;javascript:tooltips()&amp;quot;;&amp;gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Con esto añadiremos el title a todos los dropdowns de la página así al desplegar el select, nos aparecerá un tooltip para cada option.&lt;/p&gt;
&lt;p&gt;Para añadir también un tooltip a la opción seleccionada se incluye la siguiente función, que como se ve, es llamada al final de la anterior (asumiendo que el select tiene como id=&amp;#8221;select&amp;#8221;):&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;1
2
3
4
5
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="javascript" style="font-family:monospace;"&gt;&lt;span style="color: #003366; font-weight: bold;"&gt;function&lt;/span&gt; tooltipselect&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;
&lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;
	drop &lt;span style="color: #339933;"&gt;=&lt;/span&gt; document.&lt;span style="color: #660066;"&gt;getElementById&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #3366CC;"&gt;&amp;quot;select&amp;quot;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	drop.&lt;span style="color: #660066;"&gt;title&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; drop.&lt;span style="color: #660066;"&gt;options&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#91;&lt;/span&gt;drop.&lt;span style="color: #660066;"&gt;selectedIndex&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#93;&lt;/span&gt;.&lt;span style="color: #660066;"&gt;text&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
&lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Esto hace que al cambiar la opción, se actualice el tooltip del desplegable cerrado.&lt;/p&gt;
&lt;p&gt;Ver una &lt;a href="http://www.forgottenprojects.com/ferdy182/ejemplo/select.html"&gt;demo&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;!--adsense#piedepost --&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/XVqQWp6SiafUZkoLteMSmRKcwQE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/XVqQWp6SiafUZkoLteMSmRKcwQE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/XVqQWp6SiafUZkoLteMSmRKcwQE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/XVqQWp6SiafUZkoLteMSmRKcwQE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=RvOOEU1YM8k:KkYRfLYTpkY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/RvOOEU1YM8k" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/tooltip-desplegables-select-combo-dropdown/#comments" thr:count="3" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/tooltip-desplegables-select-combo-dropdown/feed/atom/" thr:count="3" />
		<thr:total>3</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/tooltip-desplegables-select-combo-dropdown/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Instalar múltiples versiones de Internet Explorer]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/AMPIVo2cb8Q/" />
		<id>http://www.forgottenprojects.com/?p=292</id>
		<updated>2009-03-25T09:00:27Z</updated>
		<published>2009-03-17T14:00:12Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Programacion" /><category scheme="http://www.forgottenprojects.com" term="Tecnología" /><category scheme="http://www.forgottenprojects.com" term="explorer" /><category scheme="http://www.forgottenprojects.com" term="internet" /><category scheme="http://www.forgottenprojects.com" term="multiple" />		<summary type="html"><![CDATA[Cómo tener mútiples versiones de internet explorer en windows xp]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/instalar-multiples-versiones-internet-explorer/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Finstalar-multiples-versiones-internet-explorer%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Finstalar-multiples-versiones-internet-explorer%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=explorer,internet,multiple" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;!-- adsense#piepost --&gt;&lt;/p&gt;
&lt;p&gt;A raíz del post anterior donde podemos detectar la version del internet explorer, hoy podemos instalar más de una versión simultánea del mismo con el fin de probar distintas maquetaciones, dada la gran afición del Internet Explorer 6 a &lt;del datetime="2009-03-16T16:20:40+00:00"&gt;joder&lt;/del&gt; modificar la maquetación debido a mútiples &lt;del datetime="2009-03-16T16:20:40+00:00"&gt;bugs&lt;/del&gt; features, siempre viene bien tener distintas versiones a mano para optimizar el diseño y aplicación a mútiples navegadores con sus &lt;del datetime="2009-03-16T16:20:40+00:00"&gt;tocahuevos &lt;/del&gt; usuarios detrás.&lt;/p&gt;
&lt;p&gt;No voy a explicar como funciona, para eso lo veis &lt;a href="http://tredosoft.com/Multiple_IE"&gt;aquí&lt;/a&gt; pero se puede instalar descargandolo de &lt;a href="http://tredosoft.com/files/multi-ie/multiple-ie-setup.exe"&gt;Multiple IE Setup&lt;/a&gt;(10,3 MB sólo Win XP )&lt;/p&gt;
&lt;p&gt;Como sólo te instala hasta el IE6, recomiendo instalar el 7 de forma normal y luego instalar esto para disponer de las demás versiones.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://tredosoft.com/files/multi-ie/setup1.png" alt="Menu de instalacion de multiples IE" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Forgotten Projects recomienda encarecidamente usar &lt;a href="http://www.mozilla-europe.org/es/firefox/"&gt;Mozilla Firefox&lt;/a&gt; que es más seguro, más estable, más útil, más bonito, más ampliable, más opensource y más más&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/5arf3rvdsi7wc5T3q0V0lmKw1FM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5arf3rvdsi7wc5T3q0V0lmKw1FM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/5arf3rvdsi7wc5T3q0V0lmKw1FM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5arf3rvdsi7wc5T3q0V0lmKw1FM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=AMPIVo2cb8Q:tOmGHX3kfWI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/AMPIVo2cb8Q" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/instalar-multiples-versiones-internet-explorer/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/instalar-multiples-versiones-internet-explorer/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/instalar-multiples-versiones-internet-explorer/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Javascript, detectar la versión de Internet Explorer]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/H6ySMSspIoA/" />
		<id>http://www.forgottenprojects.com/?p=282</id>
		<updated>2010-02-03T09:24:49Z</updated>
		<published>2009-03-16T16:18:32Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Programacion" />		<summary type="html"><![CDATA[Cómo averiguar la versión de internet explorer desde javascript]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/javascript-detectar-version-internet-explorer/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fjavascript-detectar-version-internet-explorer%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fjavascript-detectar-version-internet-explorer%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;!--adsense#piedepost--&gt;&lt;/p&gt;
&lt;p&gt;Como hace mucho que no escribo, voy a hacerlo comentando algo que he necesitado hoy en el curro, que es identificar la versión de internet explorer para poder realizar una función u otra, que sabemos que no va a ser compatible en una versión y en otra si, vamos, lo típico.&lt;/p&gt;
&lt;p&gt;Una manera es a partir de la versión de javascript, la cual &lt;strong&gt;no es muy fiable&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;El código que nos sirve para almacenar la versión en una variable es el siguiente:&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;1
2
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="javascript" style="font-family:monospace;"&gt;&lt;span style="color: #003366; font-weight: bold;"&gt;var&lt;/span&gt; ieVer&lt;span style="color: #339933;"&gt;=&lt;/span&gt;&lt;span style="color: #006600; font-style: italic;"&gt;/*@cc_on function(){ switch(@_jscript_version){ case 1.0:return 1; case 3.0:return 3; case 5.0:return 5; case 5.1:return 5; case 5.5:return 5.5; case 5.6:return 6; case 5.7:return 7; case 5.8:return 5.8; }}()||@*/&lt;/span&gt;&lt;span style="color: #CC0000;"&gt;0&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
&lt;span style="color: #000066; font-weight: bold;"&gt;if&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009966; font-style: italic;"&gt;/MSIE 6.0/i&lt;/span&gt;.&lt;span style="color: #660066;"&gt;test&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;navigator.&lt;span style="color: #660066;"&gt;userAgent&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;ieVer&lt;span style="color: #339933;"&gt;=&lt;/span&gt;&lt;span style="color: #CC0000;"&gt;6&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Las instrucciones entre /*@cc_on  y */ son comentarios condicionales (y que ni yo sabía que existía tal cosa) y por lo visto es tan poco estándar que sólo internet explorer lo lee, así que de entrada ignoramos que otros navegadores se metan por ahí y la lien. De este modo valdrá 0 para el resto de navegadores (y podemos entonces comparar la versión de éstos de otras maneras).&lt;/p&gt;
&lt;p&gt;La parte de dentro del comentario chungo, asocia un valor a cada versión del IE, de este modo, la versión 1 devuelve 1, la versión 3 devuelve 3, etc&amp;#8230;&lt;/p&gt;
&lt;p&gt;Se comprueba hasta el 5.8, luego el 6 se comprueba fuera del comentario. La versión 7 y 8 del Internet Explorer devuelve 7 u 8 según proceda pese a no estar contemplado en el código (intuyo que va implícito en la versión de javascript que implementen).&lt;/p&gt;
&lt;p&gt;Así, para comprobar si el navegador es inferior a una versión, solo hay que hacer:&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;1
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="javascript" style="font-family:monospace;"&gt;&lt;span style="color: #000066; font-weight: bold;"&gt;if&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;ieVer&lt;span style="color: #339933;"&gt;&amp;lt;=&lt;/span&gt;&lt;span style="color: #CC0000;"&gt;6&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;funcionEjecutada&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Otro método &lt;b&gt;más fiable&lt;/b&gt; es parsear con una expresión regular la versión del navegador. El código es el siguiente:&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;1
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="javascript" style="font-family:monospace;"&gt;&lt;span style="color: #003366; font-weight: bold;"&gt;function&lt;/span&gt; vIE&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;&lt;span style="color: #000066; font-weight: bold;"&gt;return&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;navigator.&lt;span style="color: #660066;"&gt;appName&lt;/span&gt;&lt;span style="color: #339933;"&gt;==&lt;/span&gt;&lt;span style="color: #3366CC;"&gt;'Microsoft Internet Explorer'&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;?&lt;/span&gt;parseFloat&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #003366; font-weight: bold;"&gt;new&lt;/span&gt; RegExp&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #3366CC;"&gt;&amp;quot;MSIE ([0-9]{1,}[.0-9]{0,})&amp;quot;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;.&lt;span style="color: #660066;"&gt;exec&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;navigator.&lt;span style="color: #660066;"&gt;userAgent&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#91;&lt;/span&gt;&lt;span style="color: #CC0000;"&gt;1&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#93;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;:-&lt;/span&gt;&lt;span style="color: #CC0000;"&gt;1&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Devuelve la versión de internet explorer devuelta por la variable UserAgent en caso de ser Internet Explorer o -1 para el resto de navegadores (curioso que el appName del firefox sea el difunto Netscape aunque luego en el userAgent se indique Firefox).&lt;/p&gt;
&lt;p&gt;Fuente:&lt;a href="http://outbook.blogspot.com/2007/12/detectar-la-versin-de-internet-explorer.html"&gt;outbook&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/56FzmIUakv6DOx3gAHV3zXqSsJo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/56FzmIUakv6DOx3gAHV3zXqSsJo/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/56FzmIUakv6DOx3gAHV3zXqSsJo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/56FzmIUakv6DOx3gAHV3zXqSsJo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=H6ySMSspIoA:ULK8iP8EhYU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/H6ySMSspIoA" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/javascript-detectar-version-internet-explorer/#comments" thr:count="4" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/javascript-detectar-version-internet-explorer/feed/atom/" thr:count="4" />
		<thr:total>4</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/javascript-detectar-version-internet-explorer/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Googlocausto!]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/G6LOMQ0lQLI/" />
		<id>http://www.forgottenprojects.com/?p=278</id>
		<updated>2009-02-25T13:58:41Z</updated>
		<published>2009-02-25T08:56:10Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Freaks" /><category scheme="http://www.forgottenprojects.com" term="Humor" /><category scheme="http://www.forgottenprojects.com" term="Tecnología" /><category scheme="http://www.forgottenprojects.com" term="gmail" /><category scheme="http://www.forgottenprojects.com" term="google" /><category scheme="http://www.forgottenprojects.com" term="googlocaust" /><category scheme="http://www.forgottenprojects.com" term="googlocausto" /><category scheme="http://www.forgottenprojects.com" term="offline" /><category scheme="http://www.forgottenprojects.com" term="zombies" />		<summary type="html"><![CDATA[Caida de GMail el 24 de febrero]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/googlocausto/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fgooglocausto%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fgooglocausto%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=gmail,google,googlocaust,googlocausto,offline,zombies" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Así he decidido definir lo acontecido ayer con GMail, ya que todo el mundo hace referencia a ello como el fin del mundo ¿pues yo no voy a ser menos no?&lt;/p&gt;
&lt;p&gt;Parafraseando a Jack Sparrow:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&amp;#8220;Todos recordarán este, como el día en que cayó GMail&amp;#8221; &lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Vemos aquí como se tomaron los usuarios los trágicos sucesos&lt;br /&gt;
&lt;img src="http://farm1.static.flickr.com/57/219515706_8bec62f9c6.jpg" alt="googlocausto1" /&gt;&lt;br /&gt;
&lt;em&gt;-¡Que no funciona GMail!&lt;br /&gt;
-¿A ti te va GMail?&lt;br /&gt;
-Nooooooooooo&amp;#8230;..GMaaaaaaaail&amp;#8230;.!&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://farm4.static.flickr.com/3064/2600475662_d790d8cc74.jpg?v=0" alt="Googlocausto2" /&gt;&lt;br /&gt;
Las multitudes se apilaban en grupo frente a una cuenta de correo de GMail.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://farm4.static.flickr.com/3015/2600338910_957ca0987f.jpg?v=0" alt="googlocausto3" /&gt;&lt;br /&gt;
Responsables de Google intentan calmar a las masas. No os preocupéis, el final está cerca, todo volverá a funcionar.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://farm4.static.flickr.com/3154/2600378644_f17276ec1c_b.jpg" alt="googlocausto4" /&gt;&lt;br /&gt;
El responsable de Google que se tropezó con el cable de red.&lt;/p&gt;
&lt;p&gt;Y tal como se fue, volvió.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Imágenes de &lt;a href="http://econsultancy.com/blog/3354-the-2009-gmail-outage-in-pictures"&gt;http://econsultancy.com/blog/3354-the-2009-gmail-outage-in-pictures&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;!--adsense--&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/OC7Lb_eYQQouQKpnf7pwGcMN5W4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/OC7Lb_eYQQouQKpnf7pwGcMN5W4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/OC7Lb_eYQQouQKpnf7pwGcMN5W4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/OC7Lb_eYQQouQKpnf7pwGcMN5W4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=G6LOMQ0lQLI:t1_RYsxabS4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/G6LOMQ0lQLI" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/googlocausto/#comments" thr:count="2" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/googlocausto/feed/atom/" thr:count="2" />
		<thr:total>2</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/googlocausto/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Fotos + GPS + Accelerometro II]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/mr0G4IdaFzU/" />
		<id>http://www.forgottenprojects.com/?p=274</id>
		<updated>2009-02-23T18:33:43Z</updated>
		<published>2009-02-23T18:33:43Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Tecnología" />		<summary type="html"><![CDATA[
			
				
			
		
¿Os acordáis de lo que decía el otro día sobre almacenar la orientación de la foto además de su posición geográfica? Seguramente no porque esto no lo lee ni Dios pero quería comentar que tal vez me deberían contratar en un puesto algo más tipo I+D ya que Nokia ha presentado en el World Mobile [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/fotos-gps-accelerometro-ii/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Ffotos-gps-accelerometro-ii%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Ffotos-gps-accelerometro-ii%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;¿Os acordáis de lo que decía el otro día sobre &lt;a href="http://www.forgottenprojects.com/fotos-gps-acelerometro/"&gt;almacenar la orientación de la foto además de su posición geográfica&lt;/a&gt;? Seguramente no porque esto no lo lee ni Dios pero quería comentar que tal vez me deberían contratar en un puesto algo más tipo I+D ya que Nokia ha presentado en el World Mobile Congress de Barcelona justo lo que comentaba en mi blog &lt;a href="http://www.forgottenprojects.com/fotos-gps-acelerometro/"&gt;aquí&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Lo podéis ver &lt;a href="http://goponygo.com/blog/aplicaciones-symbian/mwc-nokia-image-space-videos/"&gt;aquí&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Y un par de videos&lt;br /&gt;
&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/4IdcdpQimj8&amp;#038;color1=0xb1b1b1&amp;#038;color2=0xcfcfcf&amp;#038;feature=player_embedded&amp;#038;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/4IdcdpQimj8&amp;#038;color1=0xb1b1b1&amp;#038;color2=0xcfcfcf&amp;#038;feature=player_embedded&amp;#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/fGFo_XwA5GM&amp;#038;color1=0xb1b1b1&amp;#038;color2=0xcfcfcf&amp;#038;feature=player_embedded&amp;#038;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/fGFo_XwA5GM&amp;#038;color1=0xb1b1b1&amp;#038;color2=0xcfcfcf&amp;#038;feature=player_embedded&amp;#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;(Si alguien está interesado en contratarme para idear cosas de estas que me pida el CV &lt;img src='http://www.forgottenprojects.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /&gt; )&lt;/p&gt;
&lt;p&gt;&lt;!--adsense--&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/RrTXLDDcACNIkXAuOF6IgyUDses/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RrTXLDDcACNIkXAuOF6IgyUDses/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/RrTXLDDcACNIkXAuOF6IgyUDses/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RrTXLDDcACNIkXAuOF6IgyUDses/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=mr0G4IdaFzU:RD1B8iu3gZk:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/mr0G4IdaFzU" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/fotos-gps-accelerometro-ii/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/fotos-gps-accelerometro-ii/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/fotos-gps-accelerometro-ii/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Fotos + GPS + Acelerómetro]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/hjJu2e4PogI/" />
		<id>http://www.forgottenprojects.com/?p=269</id>
		<updated>2009-02-11T18:51:39Z</updated>
		<published>2009-02-11T18:51:39Z</published>
		<category scheme="http://www.forgottenprojects.com" term="General" /><category scheme="http://www.forgottenprojects.com" term="Interesante" /><category scheme="http://www.forgottenprojects.com" term="Tecnología" /><category scheme="http://www.forgottenprojects.com" term="3g" /><category scheme="http://www.forgottenprojects.com" term="acelerometro" /><category scheme="http://www.forgottenprojects.com" term="camara" /><category scheme="http://www.forgottenprojects.com" term="fotos" /><category scheme="http://www.forgottenprojects.com" term="gps" />		<summary type="html"><![CDATA[Vaticino que en poco tiempo las cámaras no solo almacenarán la posición de la foto sino la orientacion de la cámara para saber el campo de visión de ésta y ver en un mapa que elementos aparecen en la foto sobre el terreno.]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/fotos-gps-acelerometro/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Ffotos-gps-acelerometro%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Ffotos-gps-acelerometro%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=3g,acelerometro,camara,fotos,gps" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Últimamente está de moda eso de geolocalizar las fotos y videos que hacemos, los móviles com cámara y gps ya hacen geotagging (o sea, decirle a la foto dónde se hizo), y para las cámaras que no traen GPS (aún) venden aparatitos como &lt;a href="http://www.xataka.com/2009/02/10-sony-gps-cs3ka-otro-localizador-de-las-fotos-que-hacemos"&gt;éste que permiten almacenar la posicion al momento de hacer la foto&lt;/a&gt;. Luego al subirlas en sitios como Picasa o Flickr, se puede mostrar sobre un mapa dónde se tomó la foto, automáticamente.&lt;/p&gt;
&lt;p&gt;Esto se logra porque en los datos EXIF (metadatos) de los archivos de imagen se escriben coordenadas de latitud y longitud que quedan almacenados dentro de la información de la imagen.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;¿Y a nadie se le ha ocurrido almacenar también la dirección y ángulo con el que se hizo la foto?&lt;/strong&gt; Ahora disponémos de &lt;a href="http://en.wikipedia.org/wiki/Accelerometer"&gt;acelerómetros&lt;/a&gt; (como los del mando de la wii)  que son componentes realmente baratos y ya hay móviles que los traen (pero al parecer no los usan cuando se hacen fotos). Con estos accelerómetros sabríamos la orientación de la cámara y con el gps la posición en el globo de ésta, lo que no sólo permitiría saber la posición exacta en la que se hizo, sino además, con el ángulo de apertura de la lente, &lt;b&gt;saber sobre un mapa cual es el campo de visión de la cámara, es decir, saber que elementos del mapa aparecerían en la fotografía&lt;/b&gt;.&lt;/p&gt;
&lt;p&gt;Una simulación de esta técnica sería la siguiente imagen y su correspondencia sobre el mapa, con su cono de visión:&lt;br /&gt;
&lt;img src="http://www.forgottenprojects.com/ferdy182/webcam/ScreenShot009.jpg" alt="image field" /&gt;&lt;/p&gt;
&lt;p&gt;Los datos de los ángulos de la cámara se podían guardar junto a los demás datos del EXIF y representar en google maps o en servicios como flickr, no solo la posicion sino lo que se ve en la foto.&lt;/p&gt;
&lt;p&gt;Y ya puestos, teniendo en cuenta que al arrancar un GPS en frío, éste puede tardar bastante tiempo en inicializarse y empezar a reconocer la posición en la que nos encontramos, o incluso en edificios donde la señal del GPS no llega, sería interesante contar con &lt;a href="http://noticiastech.com/wordpress/?p=11386"&gt;geolocalización por celda de teléfono, al estilo de google maps&lt;/a&gt;, que aunque sea aproximada, podríamos tener geolocalizada la foto instantáneamente.&lt;br /&gt;
¿por qué aun no se comercializan más cámaras con gps o con bluetooth (que permitan aprovechar gps externos) para hacer este tipo de trucos?&lt;/p&gt;
&lt;p&gt;Yo vaticino que este tipo de cosas se van a popularizar&amp;#8230; y si no al tiempo.&lt;/p&gt;
&lt;p&gt;&lt;!--adsense--&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/7aXKkN_RP0g5atF-QIhIHBAcNsk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/7aXKkN_RP0g5atF-QIhIHBAcNsk/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/7aXKkN_RP0g5atF-QIhIHBAcNsk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/7aXKkN_RP0g5atF-QIhIHBAcNsk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=hjJu2e4PogI:mPK7opXXdYE:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/hjJu2e4PogI" height="1" width="1"/&gt;</content>
	<georss:point featurename="[40.50779563417473, -3.665914535522461]">40.50779563417473 -3.665914535522461</georss:point>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/fotos-gps-acelerometro/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/fotos-gps-acelerometro/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/fotos-gps-acelerometro/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Music while coding]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/nifOE3-q4j8/" />
		<id>http://www.forgottenprojects.com/?p=266</id>
		<updated>2009-01-28T11:39:22Z</updated>
		<published>2009-01-28T11:39:22Z</published>
		<category scheme="http://www.forgottenprojects.com" term="La nueva vida" /><category scheme="http://www.forgottenprojects.com" term="Musica" /><category scheme="http://www.forgottenprojects.com" term="Programacion" /><category scheme="http://www.forgottenprojects.com" term="coding" /><category scheme="http://www.forgottenprojects.com" term="matrix" />		<summary type="html"><![CDATA[¿Qué musica oyes mientras programas o haces deporte?]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/music-while-coding/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fmusic-while-coding%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fmusic-while-coding%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=coding,matrix,Musica" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Estaba escuchando en &lt;a href="http://www.spotify.com/en/download/windows/"&gt;Spotify&lt;/a&gt; la banda sonora de Matrix Revolutions mientras escribo código en el curro y he llegado a la canción &amp;#8220;&lt;a href="http://open.spotify.com/track/1m92ngkxEKnE8nBzH4iafY"&gt;Tetsujin&lt;/a&gt;&amp;#8220;, de &lt;a href="http://es.wikipedia.org/wiki/Juno_Reactor"&gt;Juno Reactor&lt;/a&gt; vs. &lt;a href="http://es.wikipedia.org/wiki/Don_Davis"&gt;Don Davis&lt;/a&gt; y he pensado, &amp;#8216;que canción más cojonuda para programar&amp;#8217;, lo que me ha llevado a buscar en internet que oye la gente mientras programa. &lt;/p&gt;
&lt;p&gt;Programar es una tarea que requiere concentración pero al ser bastante mecánico, se puede hacer oyendo música sin problemas, no es como estudiar, que puede ser un poco contraproducente según lo que se oiga.&lt;/p&gt;
&lt;p&gt;Cuando programo me gusta escuchar música cañera que me espabile, que tenga un ritmo muy marcado más o menos constante y además me motive a programar a toda pastilla. La música electrónica es un buen aliado en este sentido pero como no soy muy fan y no conozco muchos grupos buenos, intento oir cosas que me suenen. Por ejemplo, la banda sonora de las tres películas de &lt;a href="http://es.wikipedia.org/wiki/The_Matrix"&gt;Matrix &lt;/a&gt;me parecen estupendas para programar. Ahora mismo estoy oyendo &amp;#8216;&lt;a href="http://open.spotify.com/track/1Bjgk8W01w4wx2SMCldsYZ"&gt;Navras&lt;/a&gt;&amp;#8216; y me está motivando. También me gusta escuchar &lt;a href="http://open.spotify.com/album/4VqPuC0LLhgb1Gp3SVEd1u"&gt;Nightwish &lt;/a&gt;o &lt;a href="http://open.spotify.com/album/6hPkbAV3ZXpGZBGUvL6jVM"&gt;Linkin Park&lt;/a&gt; ya que tienen ritmos que motivan a darle caña a lo que estemos haciendo.&lt;/p&gt;
&lt;p&gt;Por eso animo a los lectores y visitantes que me digan que oyen mientras programan o hacen ejercicio y así descubrir nuevos temas interesantes &lt;img src='http://www.forgottenprojects.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /&gt; &lt;/p&gt;
&lt;p&gt;&lt;!-- adsense --&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/IsNXL702CARaw1BKKeDGLKE9Ut4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/IsNXL702CARaw1BKKeDGLKE9Ut4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/IsNXL702CARaw1BKKeDGLKE9Ut4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/IsNXL702CARaw1BKKeDGLKE9Ut4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=nifOE3-q4j8:fFd61ExMfEQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/nifOE3-q4j8" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/music-while-coding/#comments" thr:count="2" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/music-while-coding/feed/atom/" thr:count="2" />
		<thr:total>2</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/music-while-coding/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Qype: Wild Thing Bar en Madrid]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/8nIcWvMUaX0/" />
		<id>http://www.forgottenprojects.com/qype-wild-thing-bar-en-madrid/</id>
		<updated>2009-01-27T15:14:23Z</updated>
		<published>2009-01-27T15:14:23Z</published>
		<category scheme="http://www.forgottenprojects.com" term="General" />		<summary type="html"><![CDATA[
			
				
			
		
Madrid &#8211; Bares y pubs
Estupendo bar de rock clásico y otra música más o menos variada donde ir con los colegas a tomarse un copazo después de una cena por la zona. 
El sitio está ambientado con carteles de conciertos y cuadros de grupos de música a los que algunos no conoce ni su madre [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/qype-wild-thing-bar-en-madrid/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-wild-thing-bar-en-madrid%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-wild-thing-bar-en-madrid%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;a href="http://www.qype.es/es300-madrid"&gt;Madrid&lt;/a&gt; &amp;#8211; &lt;a href="http://www.qype.es/es300-madrid/categories/609-bares-y-pubs-in-madrid"&gt;Bares y pubs&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Estupendo bar de rock clásico y otra música más o menos variada donde ir con los colegas a tomarse un copazo después de una cena por la zona. &lt;/p&gt;
&lt;p&gt;El sitio está ambientado con carteles de conciertos y cuadros de grupos de música a los que algunos no conoce ni su madre pero que están firmados, luego alguna vez existieron.&lt;/p&gt;
&lt;p&gt;Tienen un billar y gran variedad en copas (a 7€) pero lo que destaca es el ambiente y su música.&lt;br /&gt;
Echa un vistazo a mi reseña de &lt;a href="http://www.qype.es/place/390300-Wild-Thing-Bar-Madrid"&gt;Wild Thing Bar&lt;/a&gt; &amp;#8211; Yo soy &lt;a href="http://www.qype.es/people/ferdy182"&gt;ferdy182&lt;/a&gt; &amp;#8211; en &lt;a href="http://www.qype.es/"&gt;Qype&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/BSgEETVWZVAsBCoy7k5Q_9evbgQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/BSgEETVWZVAsBCoy7k5Q_9evbgQ/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/BSgEETVWZVAsBCoy7k5Q_9evbgQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/BSgEETVWZVAsBCoy7k5Q_9evbgQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=8nIcWvMUaX0:KY4hEhgN-ok:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/8nIcWvMUaX0" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/qype-wild-thing-bar-en-madrid/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/qype-wild-thing-bar-en-madrid/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/qype-wild-thing-bar-en-madrid/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Qype: Nagoya en Madrid]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/ho1oMgR4w9s/" />
		<id>http://www.forgottenprojects.com/qype-nagoya-en-madrid/</id>
		<updated>2009-01-27T14:51:31Z</updated>
		<published>2009-01-27T14:51:31Z</published>
		<category scheme="http://www.forgottenprojects.com" term="General" />		<summary type="html"><![CDATA[
			
				
			
		
Madrid &#8211; Restaurantes
Restaurante japonés del que me habían hablado maravillas y la verdad ni fun ni fa. Un servicio bastante pésimo que te golpean en los palillos al servirte y que recogen toda la mesa, manteles incluidos, antes del postre.
El sushi, aparte de muy caro, dejaba bastante que desear. Puede que sea un exquisito pero [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/qype-nagoya-en-madrid/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-nagoya-en-madrid%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-nagoya-en-madrid%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;a href="http://www.qype.es/es300-madrid"&gt;Madrid&lt;/a&gt; &amp;#8211; &lt;a href="http://www.qype.es/es300-madrid/categories/1-restaurantes"&gt;Restaurantes&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Restaurante japonés del que me habían hablado maravillas y la verdad ni fun ni fa. Un servicio bastante pésimo que te golpean en los palillos al servirte y que recogen toda la mesa, manteles incluidos, antes del postre.&lt;/p&gt;
&lt;p&gt;El sushi, aparte de muy caro, dejaba bastante que desear. Puede que sea un exquisito pero después de probar varios sitios como el Sakura de Santander, esté se queda muy por debajo, y espero que no sea de lo mejor de Madrid.&lt;/p&gt;
&lt;p&gt;El helado frito que pedimos de postre ni de lejos está recién hecho, más bien lo congelan rebozado en pan rallado y te lo flambean al servirlo. Ni comparación con el helado frito de toda la vida que se hace con masa de tempura y se mete en aceite hirviendo unos segundos y que se sirve recién hecho, aun caliente y con el helado deshaciendose por dentro. Esto más bien parecía una croqueta rellena de helado.&lt;/p&gt;
&lt;p&gt;Espero que el otro local que tienen en Trafalgar 7 sea mejor&amp;#8230;&lt;br /&gt;
Echa un vistazo a mi reseña de &lt;a href="http://www.qype.es/place/475780-Nagoya-Madrid"&gt;Nagoya&lt;/a&gt; &amp;#8211; Yo soy &lt;a href="http://www.qype.es/people/ferdy182"&gt;ferdy182&lt;/a&gt; &amp;#8211; en &lt;a href="http://www.qype.es/"&gt;Qype&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/mpw80fC3lHpHT08IgePtCghw7WA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/mpw80fC3lHpHT08IgePtCghw7WA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/mpw80fC3lHpHT08IgePtCghw7WA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/mpw80fC3lHpHT08IgePtCghw7WA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=ho1oMgR4w9s:pG7mfWhuoQk:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/ho1oMgR4w9s" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/qype-nagoya-en-madrid/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/qype-nagoya-en-madrid/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/qype-nagoya-en-madrid/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Estupidez humana global]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/676MhF7xWj4/" />
		<id>http://www.forgottenprojects.com/?p=261</id>
		<updated>2009-01-27T11:04:06Z</updated>
		<published>2009-01-27T11:04:06Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Interesante" /><category scheme="http://www.forgottenprojects.com" term="estupidez" />		<summary type="html"><![CDATA[La gente que edita la wikipedia introduciendo errores deliberadamente son estupidos y peligrosos]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/estupidez-humana-global/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Festupidez-humana-global%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Festupidez-humana-global%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=estupidez" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Buenos días, estaba leyendo un artículo sobre la Wikipedia en el que se comenta que van a modificar su sistema de edición de artículos para que los cambios que hagan los usuarios dejen de ser inmediatos (es decir, que deja de ser un wiki, ya que recordemos que wiki es la palabra hawaiana para &amp;#8220;rápido&amp;#8221;, refiriendose así a la rapidez con la que se reflejan los cambios en el artículo), pasando a ser revisados por un equipo de editores autorizados que den el visto bueno a los cambios. &lt;/p&gt;
&lt;p&gt;Esto de sebe a que los usuarios, en alardes de inteligencia suprema, &lt;a href="http://www.tuexperto.com/2009/01/26/la-wikipedia-eliminara-la-posibilidad-de-modificar-articulos-al-instante/"&gt;editan artículos insertando deliberadamente datos erróneos&lt;/a&gt; con el fin de hacer bromas o incordiar. Señores, la wikipedia es la mayor fuente de información y cultura de la que se dispone pública y gratuitamente y es algo muy serio como para andar jugando con ella.&lt;/p&gt;
&lt;p&gt;Esto me lleva a recordar un gráfico que vi una vez sobre los tipos de estupidez humana. Es un cuadro en el que se divide en 4 regiones a modo de matriz, en la cual, el eje x representa el beneficio personal y el eje y representa el beneficio colectivo.&lt;/p&gt;
&lt;div id="attachment_262" class="wp-caption alignleft" style="width: 410px"&gt;&lt;a href="http://www.forgottenprojects.com/wp-content/uploads/2009/01/matriz-estupidez-grafica.gif"&gt;&lt;img src="http://www.forgottenprojects.com/wp-content/uploads/2009/01/matriz-estupidez-grafica.gif" alt="Matriz de estupidez" title="matriz-estupidez-grafica" width="400" height="400" class="size-full wp-image-262" /&gt;&lt;/a&gt;&lt;p class="wp-caption-text"&gt;Matriz de estupidez&lt;/p&gt;&lt;/div&gt;
&lt;p&gt;Se distinguen 4 tipos de personas, cada uno en un cuadrante. Tenemos en el cuadrante inferior izquierdo al tipo más estúpido que podemos encontrar (y en el que meteríamos a la gente que edita la wikipedia con datos incrrectos a propósito). Este tipo no solo perjudica al colectivo sino que además se perjudica él mismo. Podría sacar beneficio propio a costa de perjudicar a los demás, lo que lo convertiría en malvado y estaría en el cuadrante inferior derecho. De las personas que se perjudican a sí mismas pero benefician a los demás decimos que son bondadosas, eso es lo que me pasa a mi, que bueno que soy, soy tonto perdío. Y luego estaría la persona realmente inteligente que no sólo saca beneficio para sí mismo sino que además lo hace para el beneficio del resto (como &lt;a href="http://es.wikipedia.org/wiki/Linux"&gt;Linus Torvalds&lt;/a&gt; o el &lt;a href="http://meneame.net/story/canonical-punto-ser-rentable"&gt;fundador de Ubuntu&lt;/a&gt; por poner un ejemplo)&lt;/p&gt;
&lt;p&gt;&lt;!-- adsense --&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/S3H-claG-ND9mLwUEs11kioh-bw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/S3H-claG-ND9mLwUEs11kioh-bw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/S3H-claG-ND9mLwUEs11kioh-bw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/S3H-claG-ND9mLwUEs11kioh-bw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=676MhF7xWj4:9cEHIDqTPEY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/676MhF7xWj4" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/estupidez-humana-global/#comments" thr:count="3" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/estupidez-humana-global/feed/atom/" thr:count="3" />
		<thr:total>3</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/estupidez-humana-global/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Samsung NC-10]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/h7metYcP_cM/" />
		<id>http://www.forgottenprojects.com/?p=239</id>
		<updated>2009-01-14T15:13:45Z</updated>
		<published>2009-01-14T15:11:39Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Tecnología" />		<summary type="html"><![CDATA[Impresiones del netbook samsung nc-10]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/netbook-samsung-nc-10/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fnetbook-samsung-nc-10%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fnetbook-samsung-nc-10%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Pues al final ha sido el Samsung NC-10, del que dicen que su genialmente optimizada batería puede llegar hasta las 7 horas y media de duración, el que me ha enamorado y he adquirido.&lt;/p&gt;
&lt;p&gt;Debo decir de las 3 semanas que llevo con él, que estoy  encantadísimo con el aparato. Monta un intel &lt;strong&gt;Atom N270 a 1.6Ghz, con 1 Gb de RAM ampliable, 160Gb de disco duro, Wifi b/g y pantalla de 10.2&amp;#8243;&lt;/strong&gt;.&lt;br /&gt;
&lt;img src="http://farm4.static.flickr.com/3024/3059254810_5d79d312eb.jpg?v=0" alt="Samsung nc10 blue" /&gt;&lt;br /&gt;
Realmente corroboro la increible duración de la batería, que si bien no he medido en tiempo real su duración, permite un montón de horas de uso con la tarjeta inalámbrica activada y el brillo en la posición 3 de 7 que es realmente suficiente. La &lt;strong&gt;pantalla LED&lt;/strong&gt; es impresionante ya que en el nivel 7 de brillo casi deslumbra por su intensidad.&lt;/p&gt;
&lt;p&gt;El teclado es bastánte cómodo por su tamaño, que pese a ser compacto, es un &lt;strong&gt;82% del tamaño total&lt;/strong&gt;, pero esto no se nota ya que casi todas las teclas tienen su tamaño normal, menos algunos símbolos cuyo tamaño se ha reducido y además su configuración es estupenda ya que apenas cambia algún botón de sitio (cosa que a los programadores nos joroba mucho).&lt;/p&gt;
&lt;p&gt;Además el touchpad es multitáctil, cosa que dado su diminuto tamaño, no es algo que se aproveche demasiado y que además, no se nota demasiado el borde de éste, con lo que a veces lo queremos tocar sin mirar para bajar el scroll y no acertamos a darle. También ocurre que el movimiento chiral motion de synaptics que se usa haciendo círculos con el dedo para imitar la rueda del ratón se activa sin querer por lo que el cursor no se mueve, aunque esta característica se puede desactivar.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://farm4.static.flickr.com/3010/3058417433_5036d2cf16.jpg?v=0" alt="Samsung nc10 blue" /&gt;&lt;br /&gt;
El portátil carece de comunicaciones bluetooth, cosa que he solventado comprando un diminuto módulo USB (es más grande el conector que el propio dispositivo) de Anycom, que dota al aparato con Bluetooth 2.1 + EDR (dicen que el 2.1 consume 5 veces menos que el 2.0, ideal para un netbook).&lt;/p&gt;
&lt;p&gt;Me llevé el cacharrito a Santander en lugar de mi Asus con Core 2 Duo y la verdad que no lo eché de menos. Funcionan juegos sencillos como el &lt;a href="http://www.vidaextra.com/2008/10/28-world-of-goo-primer-contacto"&gt;World of Goo&lt;/a&gt; y complejos como el Half-Life 1. Se pueden ver películas y series bastante bien, pero la pequeña tarjeta gráfica intel GMA950 no es capaz de mover fluidamente videos en alta definición a 720p, y mucho menos a 1080p (o al menos yo no he podido). El firefox va un poco lento a la hora de ver videos en flash, imagino que se debe a la cantidad de complementos y pestañas que suelo tener cargados al tiempo&amp;#8230;.&lt;/p&gt;
&lt;p&gt;Otro inconveniente que tiene es que los altavoces integrados están situados bajo el ordenador, en la parte más cercana al usuario, bajo el teclado, en la zona donde la curva empieza a subir para que no estén de cara a la mesa, pero es un sonido deficiente y por lo visto es algo común en todos los netbooks, pero con auriculares o altavoces externos se oye de vicio.&lt;/p&gt;
&lt;p&gt;Trae un &lt;strong&gt;lector de tarjetas SD/SDHC/MMC&lt;/strong&gt; integrado pero de dificil acceso y una &lt;strong&gt;salida VGA&lt;/strong&gt; que funciona perfectamente a una resolución de 1050 de alto.&lt;/p&gt;
&lt;p&gt;En resumen:&lt;br /&gt;
&lt;strong&gt;Lo mejor:&lt;/strong&gt;&lt;br /&gt;
- Pantalla de 10.2&amp;#8243; LED muy brillante que en el nivel 3 es más que suficiente.&lt;br /&gt;
- Teclado muy cómodo.&lt;br /&gt;
- Batería extra larga.&lt;br /&gt;
- Ampliable a 2Gb&lt;br /&gt;
- Peso de 1.3Kg dentro de lo razonable&lt;br /&gt;
- Diseño&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Lo peor:&lt;/strong&gt;&lt;br /&gt;
- Sin bluetooth&lt;br /&gt;
- Wifi &amp;#8216;g&amp;#8217; cuando ya está en el mercado la &amp;#8216;n&amp;#8217;&lt;br /&gt;
- Lector de tarjetas poco accesible&lt;br /&gt;
- Touchpad pequeño&lt;br /&gt;
- Sin 3G integrado&lt;/p&gt;
&lt;p&gt;Estos días subiré algunas fotos. Mientras tanto lo puedes ver en &lt;a href="http://www.flickr.com/photos/nobbynobody/sets/72157610372769463/"&gt;esta galería&lt;/a&gt; que encontré por flickr y es el mismo modelo.&lt;/p&gt;
&lt;p&gt;&lt;!--adsense--&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/crb9PWG7oUYParspZD0VzhU4hCQ/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/crb9PWG7oUYParspZD0VzhU4hCQ/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/crb9PWG7oUYParspZD0VzhU4hCQ/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/crb9PWG7oUYParspZD0VzhU4hCQ/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=h7metYcP_cM:vTVJAmctKaY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/h7metYcP_cM" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/netbook-samsung-nc-10/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/netbook-samsung-nc-10/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/netbook-samsung-nc-10/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Qype: Cafe Pub Floridita en Santander]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/A78h2lLaNAM/" />
		<id>http://www.forgottenprojects.com/qype-cafe-pub-floridita-en-santander/</id>
		<updated>2009-01-14T09:23:42Z</updated>
		<published>2009-01-14T09:23:42Z</published>
		<category scheme="http://www.forgottenprojects.com" term="General" />		<summary type="html"><![CDATA[
			
				
			
		
Santander &#8211; Cafeterias y coffee shops &#8211; Cafeterias
Medio pub medio discoteca pequeña, es el lugar donde tomarse un mojito por el centro, habiendo también otros cocktails como caipirinhas y daikiris.
Lo bueno del sitio es que dispone de conexión wifi y mesas en el exterior ya que por dentro no es muy amplio y se llena [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/qype-cafe-pub-floridita-en-santander/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-cafe-pub-floridita-en-santander%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-cafe-pub-floridita-en-santander%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;a href="http://www.qype.es/es130-santander"&gt;Santander&lt;/a&gt; &amp;#8211; &lt;a href="http://www.qype.es/es130-santander/categories/332-cafeterias-y-coffee-shops-in-santander"&gt;Cafeterias y coffee shops&lt;/a&gt; &amp;#8211; &lt;a href="http://www.qype.es/es130-santander/categories/73-cafeterias-in-santander"&gt;Cafeterias&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Medio pub medio discoteca pequeña, es el lugar donde tomarse un mojito por el centro, habiendo también otros cocktails como caipirinhas y daikiris.&lt;/p&gt;
&lt;p&gt;Lo bueno del sitio es que dispone de conexión wifi y mesas en el exterior ya que por dentro no es muy amplio y se llena con facilidad.&lt;/p&gt;
&lt;p&gt;Además en invierno ponen estufas fuera por lo que se está muy bien.&lt;/p&gt;
&lt;p&gt;La pega es que ponen música del año de la tarara y se llena de gente mayor con espirítu joven haciendo el ganso pero por lo demás está bien para tomarse una copa.&lt;br /&gt;
Echa un vistazo a mi reseña de &lt;a href="http://www.qype.es/place/358214-Cafe-Pub-Floridita-Santander"&gt;Cafe Pub Floridita&lt;/a&gt; &amp;#8211; Yo soy &lt;a href="http://www.qype.es/people/ferdy182"&gt;ferdy182&lt;/a&gt; &amp;#8211; en &lt;a href="http://www.qype.es/"&gt;Qype&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/sYpRcJvlZYknM6yRb47MvmeK1a8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/sYpRcJvlZYknM6yRb47MvmeK1a8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/sYpRcJvlZYknM6yRb47MvmeK1a8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/sYpRcJvlZYknM6yRb47MvmeK1a8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=A78h2lLaNAM:r5198NRzoPE:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/A78h2lLaNAM" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/qype-cafe-pub-floridita-en-santander/#comments" thr:count="2" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/qype-cafe-pub-floridita-en-santander/feed/atom/" thr:count="2" />
		<thr:total>2</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/qype-cafe-pub-floridita-en-santander/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Qype: Medievo en Santander]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/QO657_jm0PM/" />
		<id>http://www.forgottenprojects.com/qype-medievo-en-santander/</id>
		<updated>2009-01-14T09:18:52Z</updated>
		<published>2009-01-14T09:18:52Z</published>
		<category scheme="http://www.forgottenprojects.com" term="General" />		<summary type="html"><![CDATA[
			
				
			
		
Santander
Genial pub de ambientación medieval con espadas y armaduras colgadas de las paredes. Es un sitio realmente pequeño y acogedor donde sentarte a una mesa a tomarte unas cañas con los amigos antes de ir a cenar o de marcha.
Hay una pequeña variedad de cervezas internacionales y antiguamente ponían unos pinchos de acompañamiento de tortilla [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/qype-medievo-en-santander/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-medievo-en-santander%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-medievo-en-santander%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;a href="http://www.qype.es/es130-santander"&gt;Santander&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Genial pub de ambientación medieval con espadas y armaduras colgadas de las paredes. Es un sitio realmente pequeño y acogedor donde sentarte a una mesa a tomarte unas cañas con los amigos antes de ir a cenar o de marcha.&lt;/p&gt;
&lt;p&gt;Hay una pequeña variedad de cervezas internacionales y antiguamente ponían unos pinchos de acompañamiento de tortilla o patatas fritas pero parece que ya no.&lt;/p&gt;
&lt;p&gt;La música también era buena pero últimamente ha decaido hasta el punto de que ponen cosas tipo Camela pero confío en que solo sea una racha.&lt;/p&gt;
&lt;p&gt;El horario es bastante reducido, habiéndolo encontrado cerrado varias veces a horas no tan indecentes pero parece ser algo común de la ciudad.&lt;br /&gt;
Echa un vistazo a mi reseña de &lt;a href="http://www.qype.es/place/439093-Medievo-Santander"&gt;Medievo&lt;/a&gt; &amp;#8211; Yo soy &lt;a href="http://www.qype.es/people/ferdy182"&gt;ferdy182&lt;/a&gt; &amp;#8211; en &lt;a href="http://www.qype.es/"&gt;Qype&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/fMdkqqcjf-BtD5_7agm9Qz-r27Q/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/fMdkqqcjf-BtD5_7agm9Qz-r27Q/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/fMdkqqcjf-BtD5_7agm9Qz-r27Q/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/fMdkqqcjf-BtD5_7agm9Qz-r27Q/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=QO657_jm0PM:CovYV7gobZw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/QO657_jm0PM" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/qype-medievo-en-santander/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/qype-medievo-en-santander/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/qype-medievo-en-santander/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Qype: Tragaluz en Santander]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/_RsAo_6REFM/" />
		<id>http://www.forgottenprojects.com/qype-tragaluz-en-santander/</id>
		<updated>2009-01-14T09:10:48Z</updated>
		<published>2009-01-14T09:10:48Z</published>
		<category scheme="http://www.forgottenprojects.com" term="General" />		<summary type="html"><![CDATA[
			
				
			
		
Santander
Pequeño y acogedor sitio donde tomarte algo con tus amigos. No es un sitio muy concurrido y por eso mismo se está bien. Ponen pipas y cortezas con lo que pidas para tomar, dispone de una diana para jugar a los dardos y unas cuantas mesas para sentarte a charlar con los amigos.
Ideal cuando quieres [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/qype-tragaluz-en-santander/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-tragaluz-en-santander%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-tragaluz-en-santander%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;a href="http://www.qype.es/es130-santander"&gt;Santander&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Pequeño y acogedor sitio donde tomarte algo con tus amigos. No es un sitio muy concurrido y por eso mismo se está bien. Ponen pipas y cortezas con lo que pidas para tomar, dispone de una diana para jugar a los dardos y unas cuantas mesas para sentarte a charlar con los amigos.&lt;/p&gt;
&lt;p&gt;Ideal cuando quieres tomar algo por el centro y está todo cerrado&lt;br /&gt;
Echa un vistazo a mi reseña de &lt;a href="http://www.qype.es/place/439085-Tragaluz-Santander"&gt;Tragaluz&lt;/a&gt; &amp;#8211; Yo soy &lt;a href="http://www.qype.es/people/ferdy182"&gt;ferdy182&lt;/a&gt; &amp;#8211; en &lt;a href="http://www.qype.es/"&gt;Qype&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/J3GKiI33fOJ0Dlw3WV7E1rrOHQ8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/J3GKiI33fOJ0Dlw3WV7E1rrOHQ8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/J3GKiI33fOJ0Dlw3WV7E1rrOHQ8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/J3GKiI33fOJ0Dlw3WV7E1rrOHQ8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=_RsAo_6REFM:K8NcYr4_hTI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/_RsAo_6REFM" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/qype-tragaluz-en-santander/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/qype-tragaluz-en-santander/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/qype-tragaluz-en-santander/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Qype: the old cormoran tavern en Santander]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/cvQAIe8Qiic/" />
		<id>http://www.forgottenprojects.com/qype-the-old-cormoran-tavern-en-santander/</id>
		<updated>2009-01-13T17:04:56Z</updated>
		<published>2009-01-13T17:04:56Z</published>
		<category scheme="http://www.forgottenprojects.com" term="General" />		<summary type="html"><![CDATA[
			
				
			
		
Santander &#8211; Bares y pubs
Estupenda taberna irlandesa que dispone de dos plantas, una para fumadores y otra para no fumadores. Se encuentra ubicada al borde de la playa del sardinero.
Este sitio es amplio y perfecto para ir con tus amigos a echarte unas cañas con vistas al mar. Dispone de juegos de mesa para echar [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/qype-the-old-cormoran-tavern-en-santander/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-the-old-cormoran-tavern-en-santander%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-the-old-cormoran-tavern-en-santander%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;a href="http://www.qype.es/es130-santander"&gt;Santander&lt;/a&gt; &amp;#8211; &lt;a href="http://www.qype.es/es130-santander/categories/609-bares-y-pubs-in-santander"&gt;Bares y pubs&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Estupenda taberna irlandesa que dispone de dos plantas, una para fumadores y otra para no fumadores. Se encuentra ubicada al borde de la playa del sardinero.&lt;/p&gt;
&lt;p&gt;Este sitio es amplio y perfecto para ir con tus amigos a echarte unas cañas con vistas al mar. Dispone de juegos de mesa para echar la tarde, una pantalla gigante donde emiten partidos y videos y además a veces hacen torneos de videojuegos.&lt;/p&gt;
&lt;p&gt;Ponen música actual aunque es un poco caro, disponen de gran variedad de cervezas distintas. Antaño daban cacahuetes y maicitos (kikos para el resto de España) con la consumición, pero esos eran otros tiempos&amp;#8230;&lt;br /&gt;
Echa un vistazo a mi reseña de &lt;a href="http://www.qype.es/place/356025-the-old-cormoran-tavern-Santander"&gt;the old cormoran tavern&lt;/a&gt; &amp;#8211; Yo soy &lt;a href="http://www.qype.es/people/ferdy182"&gt;ferdy182&lt;/a&gt; &amp;#8211; en &lt;a href="http://www.qype.es/"&gt;Qype&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/RGa7p48RCNCWzcXHTNgKbglTqec/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RGa7p48RCNCWzcXHTNgKbglTqec/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/RGa7p48RCNCWzcXHTNgKbglTqec/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/RGa7p48RCNCWzcXHTNgKbglTqec/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=cvQAIe8Qiic:EPEh7vHg6TI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/cvQAIe8Qiic" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/qype-the-old-cormoran-tavern-en-santander/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/qype-the-old-cormoran-tavern-en-santander/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/qype-the-old-cormoran-tavern-en-santander/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Qype: la Rana Verde en Santander]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/40XwLUfDZA4/" />
		<id>http://www.forgottenprojects.com/qype-la-rana-verde-en-santander/</id>
		<updated>2009-01-13T16:54:52Z</updated>
		<published>2009-01-13T16:54:52Z</published>
		<category scheme="http://www.forgottenprojects.com" term="General" />		<summary type="html"><![CDATA[
			
				
			
		
Santander &#8211; Restaurantes &#8211; Cervecerias
Sitio indispensable para todo catador de patatas bravas. A mi gusto, las mejores patatas que he probado y que pueden ser acompañadas con una variedad de salsas a gusto de todo el mundo, desde muy picante (atómicas) a nada picante (con mayonesa) así que no hay excusa para probar las patatas [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/qype-la-rana-verde-en-santander/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-la-rana-verde-en-santander%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-la-rana-verde-en-santander%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;a href="http://www.qype.es/es130-santander"&gt;Santander&lt;/a&gt; &amp;#8211; &lt;a href="http://www.qype.es/es130-santander/categories/1-restaurantes"&gt;Restaurantes&lt;/a&gt; &amp;#8211; &lt;a href="http://www.qype.es/es130-santander/categories/195-cervecerias-in-santander"&gt;Cervecerias&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Sitio indispensable para todo catador de patatas bravas. A mi gusto, las mejores patatas que he probado y que pueden ser acompañadas con una variedad de salsas a gusto de todo el mundo, desde muy picante (atómicas) a nada picante (con mayonesa) así que no hay excusa para probar las patatas bravas de este sitio ya que gracias a su particular forma de cocinarlas, estas tienen un sabor excelente.&lt;/p&gt;
&lt;p&gt;Además no sólo tienen patatas bravas (aunque si es conocido por ellas), también disponen de perritos calientes, hamburguesas y sandwiches a precios realmente buenos. &lt;/p&gt;
&lt;p&gt;La única pega de este sitio es que no es muy amplio y se llena siempre, pero si vienes de visita a Santander debes venir aquí.&lt;br /&gt;
Echa un vistazo a mi reseña de &lt;a href="http://www.qype.es/place/293386-la-Rana-Verde-Santander"&gt;la Rana Verde&lt;/a&gt; &amp;#8211; Yo soy &lt;a href="http://www.qype.es/people/ferdy182"&gt;ferdy182&lt;/a&gt; &amp;#8211; en &lt;a href="http://www.qype.es/"&gt;Qype&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/-cCJXf0JenoubqvXNE9KJazRFMc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/-cCJXf0JenoubqvXNE9KJazRFMc/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/-cCJXf0JenoubqvXNE9KJazRFMc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/-cCJXf0JenoubqvXNE9KJazRFMc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=40XwLUfDZA4:6OQVtCuimZA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/40XwLUfDZA4" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/qype-la-rana-verde-en-santander/#comments" thr:count="3" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/qype-la-rana-verde-en-santander/feed/atom/" thr:count="3" />
		<thr:total>3</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/qype-la-rana-verde-en-santander/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Qype: Restaurante Beer Station en Madrid]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/kmCMV806TkM/" />
		<id>http://www.forgottenprojects.com/qype-restaurante-beer-station-en-madrid/</id>
		<updated>2009-01-13T14:25:51Z</updated>
		<published>2009-01-13T14:25:51Z</published>
		<category scheme="http://www.forgottenprojects.com" term="General" />		<summary type="html"><![CDATA[
			
				
			
		
Madrid &#8211; Restaurantes
Un lugar amplio y muy bien ambientado simulando una antigua estación de tren, tiene una carta de cervezas internacionales además de comidas, pizzas, hamburguesas, nachos, etc. aunque a precios un poco altos. Tiene pantallas donde retransmiten eventos deportivos pero el sitio está muy bien para tomar algo de vez en cuando.
Echa un vistazo [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/qype-restaurante-beer-station-en-madrid/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-restaurante-beer-station-en-madrid%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-restaurante-beer-station-en-madrid%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;a href="http://www.qype.es/es300-madrid"&gt;Madrid&lt;/a&gt; &amp;#8211; &lt;a href="http://www.qype.es/es300-madrid/categories/1-restaurantes"&gt;Restaurantes&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Un lugar amplio y muy bien ambientado simulando una antigua estación de tren, tiene una carta de cervezas internacionales además de comidas, pizzas, hamburguesas, nachos, etc. aunque a precios un poco altos. Tiene pantallas donde retransmiten eventos deportivos pero el sitio está muy bien para tomar algo de vez en cuando.&lt;br /&gt;
Echa un vistazo a mi reseña de &lt;a href="http://www.qype.es/place/266651-Restaurante-Beer-Station-Madrid"&gt;Restaurante Beer Station&lt;/a&gt; &amp;#8211; Yo soy &lt;a href="http://www.qype.es/people/ferdy182"&gt;ferdy182&lt;/a&gt; &amp;#8211; en &lt;a href="http://www.qype.es/"&gt;Qype&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/wygUMCUCVAcYgyeGFxYQKdxIt5E/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/wygUMCUCVAcYgyeGFxYQKdxIt5E/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/wygUMCUCVAcYgyeGFxYQKdxIt5E/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/wygUMCUCVAcYgyeGFxYQKdxIt5E/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=kmCMV806TkM:3gw1FatFYH4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/kmCMV806TkM" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/qype-restaurante-beer-station-en-madrid/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/qype-restaurante-beer-station-en-madrid/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/qype-restaurante-beer-station-en-madrid/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Apocalyptica feat. Sandra Nasic &#8211; Path]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/NJmT6k5vyrw/" />
		<id>http://www.forgottenprojects.com/?p=243</id>
		<updated>2009-08-04T08:44:55Z</updated>
		<published>2009-01-08T17:15:40Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Musica" />		<summary type="html"><![CDATA[
			
				
			
		

Genial canción donde las haya que descubrí a través del servicio de recomendaciones de last.fm, el cual es un sitio donde te recomiendan canciones que te puedan gustar en base a un perfil musical que se crea automáticamente, instalándote un complemento a tus reproductores de audio y que registra en tu perfil la música que [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/apocalyptica-feat-sandra-nasic-path/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fapocalyptica-feat-sandra-nasic-path%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fapocalyptica-feat-sandra-nasic-path%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;embed src="http://www.odeo.com/flash/audio_player_standard_gray.swf" quality="high" allowscriptaccess="always" wmode="transparent" type="application/x-shockwave-flash" flashvars="valid_sample_rate=true&amp;amp;external_url=http://www.forgottenprojects.com/ferdy182/apocalyptica%20feat%20sandra%20nasic%20from%20guano%20apes%20-%20path.mp3" pluginspage="http://www.macromedia.com/go/getflashplayer" height="52" width="300"&gt;&lt;/p&gt;
&lt;p&gt;Genial canción donde las haya que descubrí a través del servicio de recomendaciones de &lt;a href="http://www.last.fm/"&gt;last.fm&lt;/a&gt;, el cual es un sitio donde te recomiendan canciones que te puedan gustar en base a un perfil musical que se crea automáticamente, instalándote un complemento a tus reproductores de audio y que registra en tu perfil la música que escuchas. Gracias a esto, puedes escuchar una emisora de radio con canciones y grupos que encajan con tu perfil musical.&lt;/p&gt;
&lt;p&gt;Por otra parte, &lt;a href="http://es.wikipedia.org/wiki/Apocalyptica"&gt;Apocalyptica&lt;/a&gt; es una banda que toca heavy metal con violonchelos, lo cual no deja de tener mucho mérito y que me recuerda a &lt;a href="http://www.youtube.com/watch?v=CuHFhSUBsKM&amp;#038;hl=es"&gt;cierta pareja que ganó el concurso de &amp;#8220;Tu si que vales&amp;#8221;&amp;#8230;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://es.wikipedia.org/wiki/Sandra_Nasic"&gt;Sandra Nasic&lt;/a&gt; es la cantante principal de Guano Apes y que canta esta canción de Apocalyptica.&lt;br /&gt;
&lt;img src="http://musicheadquarter.de/images/artist_event/sandra-nasic/sandra-nasic.jpg" /&gt;&lt;br /&gt;
Letra:&lt;br /&gt;
&lt;span id="more-243"&gt;&lt;/span&gt;&lt;br /&gt;
I want to live in fire&lt;br /&gt;
with all the taste I desire&lt;br /&gt;
it’s all good if you let me dive&lt;br /&gt;
with sharks on the ground&lt;/p&gt;
&lt;p&gt;you loose your routine&lt;br /&gt;
you loose your routine&lt;br /&gt;
you loose your routine&lt;br /&gt;
cause I found my path&lt;/p&gt;
&lt;p&gt;what the hell are you trying&lt;br /&gt;
now I know there is something more&lt;br /&gt;
what happened to you&lt;br /&gt;
still staying on my path&lt;br /&gt;
are you still denying&lt;br /&gt;
now I know there is something more&lt;br /&gt;
that this is the truth&lt;br /&gt;
it’s all in you&lt;/p&gt;
&lt;p&gt;what do you came for&lt;br /&gt;
what did you expect to find&lt;br /&gt;
what do you came for&lt;br /&gt;
what did you expect to find&lt;br /&gt;
what do you came for&lt;br /&gt;
what did you expect to find&lt;br /&gt;
what do you came for&lt;br /&gt;
what did you expect to find&lt;/p&gt;
&lt;p&gt;so boundless I feel&lt;br /&gt;
and boundless all my fears&lt;br /&gt;
stop running back to old times&lt;/p&gt;
&lt;p&gt;you loose your routine&lt;br /&gt;
cause I found my path&lt;/p&gt;
&lt;p&gt;what the hell are you trying&lt;br /&gt;
now I know there is something more&lt;br /&gt;
what happened to you&lt;br /&gt;
still staying on my path&lt;br /&gt;
are you still denying&lt;br /&gt;
now I know there is something more&lt;br /&gt;
that this is the truth&lt;br /&gt;
it’s all in you&lt;/p&gt;
&lt;p&gt;what the hell are you trying&lt;br /&gt;
now I know there is something more&lt;br /&gt;
what happened to you&lt;br /&gt;
still staying on my path&lt;br /&gt;
are you still denying&lt;br /&gt;
now I know there is something more&lt;br /&gt;
that this is the truth&lt;br /&gt;
it’s all in you&lt;/p&gt;
&lt;p&gt;&lt;!--adsense#piedepost--&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/fMY1Ri3CFRF8bN9hVgJO0HubAFA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/fMY1Ri3CFRF8bN9hVgJO0HubAFA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/fMY1Ri3CFRF8bN9hVgJO0HubAFA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/fMY1Ri3CFRF8bN9hVgJO0HubAFA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=NJmT6k5vyrw:1jPKTlJp6Bk:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/NJmT6k5vyrw" height="1" width="1"/&gt;</content>
<link href="http://www.forgottenprojects.com/ferdy182/apocalyptica%20feat%20sandra%20nasic%20from%20guano%20apes%20-%20path.mp3" rel="enclosure" length="4890624" type="audio/mpeg" />
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/apocalyptica-feat-sandra-nasic-path/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/apocalyptica-feat-sandra-nasic-path/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/apocalyptica-feat-sandra-nasic-path/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Feliz año nueve!]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/Dpn13LK_5OE/" />
		<id>http://www.forgottenprojects.com/?p=237</id>
		<updated>2009-01-01T16:43:57Z</updated>
		<published>2009-01-01T16:43:57Z</published>
		<category scheme="http://www.forgottenprojects.com" term="La nueva vida" /><category scheme="http://www.forgottenprojects.com" term="Personal" />		<summary type="html"><![CDATA[
			
				
			
		
Una vez más, un año que termina y uno que empieza. El año pasado en estas fechas no sabía que iba a ser de mi vida&#8230; ahora ya sé que por lo menos estaré trabajando en Madrid una temporada más.
El caso es que cada vez las Navidades y el fin de año me hacen menos [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/feliz-ano-nueve/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Ffeliz-ano-nueve%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Ffeliz-ano-nueve%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Una vez más, un año que termina y uno que empieza. El año pasado en estas fechas no sabía que iba a ser de mi vida&amp;#8230; ahora ya sé que por lo menos estaré trabajando en Madrid una temporada más.&lt;/p&gt;
&lt;p&gt;El caso es que cada vez las Navidades y el fin de año me hacen menos ilusión. Más mogollón de gente gastandose el dinero que no tiene en regalos y cenas que parece que nunca nos han dado de comer, y es que para comer bien no hace falta comer mucho, pero año tras año nos hartamos a comer y esque esto ya no puede ser&amp;#8230; Cuando llegué a Madrid empecé a perder peso con aquello de comer en la empresa, pero después de un tiempo esto fue al revés y empecé a ganar peso, hasta ahora, que ya estoy como una foca y no puede ser que aumente más. Es por eso que uno de los propósitos de este año va a ser&lt;strong&gt; hacer ejercicio a diario &lt;/strong&gt;hasta llegar a un peso decente. &lt;/p&gt;
&lt;p&gt;Otro de los cambios que he percibido en mi desde que estoy en Madrid es que cada vez frikeo menos, si señores, cada vez tengo menos interés en proyectos personales, muchas ideas si, pero eso de ponerme a ellas&amp;#8230; no ecuentro el momento ni la ocasión, después de 10 horas de curro todos los días, a uno no le apetece ponerse a seguir programando/dibujando/diseñando/modeland/aprendiendo haciendo honores a los forgotten projects, o esos proyectos que se empiezan pero no se llegan a terminar. Y es que lo difícil de un proyecto no es empezarlo, sino acabarlo. &lt;/p&gt;
&lt;p&gt;Es por eso que otro de los propósitos de este año va a ser el de &lt;strong&gt;finalizar los proyectos&lt;/strong&gt; que tengo en mente, entre los que se hayan un webcomic, un juego en flash y aprender a programar para el iPhone/iPod. Esto no hay otra forma de conseguirlo más que llevar una buena planificación de tareas diaria y abandonar los ratos muertos para dar paso a los ratos activos.&lt;/p&gt;
&lt;p&gt;¡Por un año de constancia y de proyectos!&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/iHk8tyLtfleBvNVYb439gYI0Xt4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/iHk8tyLtfleBvNVYb439gYI0Xt4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/iHk8tyLtfleBvNVYb439gYI0Xt4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/iHk8tyLtfleBvNVYb439gYI0Xt4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=Dpn13LK_5OE:dwn_j9Wp7sI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/Dpn13LK_5OE" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/feliz-ano-nueve/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/feliz-ano-nueve/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/feliz-ano-nueve/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Netbooks, comparativa de ultraportatiles]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/SDxELgCj6lY/" />
		<id>http://www.forgottenprojects.com/?p=227</id>
		<updated>2008-12-10T16:19:25Z</updated>
		<published>2008-12-08T22:49:40Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Freaks" /><category scheme="http://www.forgottenprojects.com" term="Interesante" /><category scheme="http://www.forgottenprojects.com" term="Tecnología" /><category scheme="http://www.forgottenprojects.com" term="netbooks" />		<summary type="html"><![CDATA[Comparativa de diversos ultraportatiles]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/netbooks-comparativa-ultraportatiles/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fnetbooks-comparativa-ultraportatiles%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fnetbooks-comparativa-ultraportatiles%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=netbooks" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Después de pasarme un mes dilucidando que netbook adquirir para estas navidades, he decidido montarme una comparativa ya que no hay muchos sitios donde poder contrastar varios de los pequeñines más populares.&lt;/p&gt;
&lt;p&gt;Para no repetir las mismas especificaciones para todos ellos, parto de la base de una configuración compuesta por un &lt;strong&gt;Intel Atom N270 a 1,6 Ghz, 1 Gb de memoria RAM a 667Mhz, 120 o 160 Gb de disco duro, wifi b/g, bluetooth, pantalla LED de 10&amp;#8243; con 1024&amp;#215;600 pixeles movida por una tarjeta gráfica Intel GMA 950 con 128 Mb, chipset Intel 945, 3 USB, salida VGA, Ethernet RJ45, altavoces, salida de auriculares, webcam entre 0.3 y 1.3 Megapixeles, lector de tarjetas y una batería de 3 celdas&lt;/strong&gt;. Así que comentare solo la parte que difiera de cada uno de ellos.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.informaticenter.es/b2c/index.php?page=pp_producto.php&amp;#038;md=0&amp;#038;codp=2122"&gt;&lt;strong&gt;LG x110 (xNOTE)&lt;/strong&gt;&lt;/a&gt; pesa 1.2 Kg con 3 celdas, dicen que tiene un módem 3G integrado pero no he encontrado ninguna tienda en España que lo incluya (si alguien lo encuentra que me comente). Tiene dos antenas Wifi b/g que proporciona mejor señal además es el único con refrigeración líquida. Se rumorea que no permite ampliar a 2 Gb de RAM dado que la RAM va soldada en placa, pero al ser un clon del MSI Wind, debería tener un zócalo libre aparte del módulo que trae pero no lo puedo confirmar. El diseño es muy bonito, en blanco, rosa o negro piano.&lt;br /&gt;
&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/sogswHh-S3Y&amp;#038;hl=es&amp;#038;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/sogswHh-S3Y&amp;#038;hl=es&amp;#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.alternate.es/html/product/details.html?artno=PN9UZ0&amp;#038;showTechData=true"&gt;&lt;strong&gt;Samsung NC-10&lt;/strong&gt;&lt;/a&gt;, Alemania y España son los únicos sitios donde no tiene bluetooth (por lo que aconsejaría usar este bluetooth pero perdiendo un puerto USB http://www.alternate.es/html/productDetails.html?artno=LBUV58), pesa 1.33Kg con 6 celdas pero es el que mejor uso da a la batería llegando a 7 horas. Por lo visto los altavoces son muy malos pero la &lt;a href="http://www.laptopmag.com/advice/how-to/nc10-ram.aspx?step=1"&gt;RAM es fácilmente ampliable&lt;/a&gt; abriendo una puertecita.&lt;br /&gt;
&lt;object width="480" height="295"&gt;&lt;param name="movie" value="http://www.youtube.com/v/UDrEPjzqRgw&amp;#038;hl=es&amp;#038;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/UDrEPjzqRgw&amp;#038;hl=es&amp;#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.alternate.es/html/product/details.html?artno=PN9MZ4&amp;#038;showTechData=true"&gt;&lt;strong&gt;MSI Wind U100-2&lt;/strong&gt;&lt;/a&gt;, es un poco más feo, pero tiene 160Gb y 6 celdas por 1.1Kg y es bastante completo.&lt;br /&gt;
&lt;object width="480" height="295"&gt;&lt;param name="movie" value="http://www.youtube.com/v/zPjeO-8-HG8&amp;#038;hl=es&amp;#038;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/zPjeO-8-HG8&amp;#038;hl=es&amp;#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;
&lt;!--adsense--&gt;&lt;br /&gt;
&lt;a href="http://www.reghardware.co.uk/2008/10/20/review_netbook_advent_4213/"&gt;&lt;strong&gt;Advent 4213&lt;/strong&gt;&lt;/a&gt; es otro clónico del MSI Wind que supuestamente si tiene 3G pero pesa 1.4Kg con 6 celdas y el teclado en mi opinión no era gran cosa. En algunos sitios se puede comprar con 2 Gb directamente.&lt;br /&gt;
&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/9uTT2DuoJKg&amp;#038;hl=es&amp;#038;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/9uTT2DuoJKg&amp;#038;hl=es&amp;#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.javipas.com/2008/08/19/medion-akoya-mini-el-hardware/"&gt;&lt;strong&gt;Akoya Mini&lt;/strong&gt;&lt;/a&gt; que no tiene bluetooth integrado (ver el apartado del Samsung NC-10) y pesa 1.04Kg&lt;br /&gt;
&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/OIl__F9aarc&amp;#038;hl=es&amp;#038;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/OIl__F9aarc&amp;#038;hl=es&amp;#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.alternate.es/html/product/details.html?artno=PN9VZ6&amp;#038;showTechData=true"&gt;&lt;strong&gt;ASUS Eee 1000H&lt;/strong&gt;&lt;/a&gt; igual de completo que el MSI Wind U100-2 pero con WiFi N y 6 celdas pero pesa 1.45Kg y el diseño pese a robusto, es un poco mas feo.&lt;br /&gt;
&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/Z0qEbHgX8Lg&amp;#038;hl=es&amp;#038;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/Z0qEbHgX8Lg&amp;#038;hl=es&amp;#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;
&lt;!--adsense--&gt;&lt;br /&gt;
&lt;a href="http://www.informaticenter.es/b2c/index.php?page=pp_producto.php&amp;#038;md=0&amp;#038;codp=2110"&gt;&lt;strong&gt;Toshiba NB100&lt;/strong&gt;&lt;/a&gt; que tiene 4 celdas y 8.9&amp;#8243;, pesa 1kg y creo que no tiene Bluetooth. A mi entender es el más bonito de todos&lt;br /&gt;
&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/FR2cEDgV7zQ&amp;#038;hl=es&amp;#038;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/FR2cEDgV7zQ&amp;#038;hl=es&amp;#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.informaticenter.es/b2c/index.php?page=pp_producto.php&amp;#038;md=0&amp;#038;codp=2192"&gt;&lt;strong&gt;Packard Bell Dot&lt;/strong&gt;&lt;/a&gt;, por lo visto tiene modulo 3G opcional y lo hay en una tienda de Madrid que parece que lo incluye. Tiene 8.9&amp;#8243; y es un clon del Acer Aspire One &lt;object width="480" height="295"&gt;&lt;param name="movie" value="http://www.youtube.com/v/XUYNsrU4Q6M&amp;#038;hl=es&amp;#038;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/XUYNsrU4Q6M&amp;#038;hl=es&amp;#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.pixmania.com/es/es/1577927/art/acer/aspire-one-a150bb-color-a.html"&gt;&lt;strong&gt;Acer Aspire One 150&lt;/strong&gt;&lt;/a&gt;, pesa 995 gramos y no se vende con Linux y Windows en azul, blanco y negro y realmente no tiene nada de especial salvo un touchpad incomodísimo.&lt;br /&gt;
&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/FnTKnFvtCxs&amp;#038;hl=es&amp;#038;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/FnTKnFvtCxs&amp;#038;hl=es&amp;#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p&gt;&lt;!--adsense--&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/oHlBsGeWAcoJXE0kybToqE98T7w/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/oHlBsGeWAcoJXE0kybToqE98T7w/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/oHlBsGeWAcoJXE0kybToqE98T7w/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/oHlBsGeWAcoJXE0kybToqE98T7w/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=SDxELgCj6lY:KAKpRJxcSOc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/SDxELgCj6lY" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/netbooks-comparativa-ultraportatiles/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/netbooks-comparativa-ultraportatiles/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/netbooks-comparativa-ultraportatiles/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Qype: Korintho en Castellón de la Plana]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/fXaWvZ0wpPk/" />
		<id>http://www.forgottenprojects.com/qype-korintho-en-castellon-de-la-plana/</id>
		<updated>2008-11-30T12:56:23Z</updated>
		<published>2008-12-04T12:54:41Z</published>
		<category scheme="http://www.forgottenprojects.com" term="General" />		<summary type="html"><![CDATA[
			
				
			
		
Castellon de la Plana &#8211; Restaurantes
Si quieres comer comida griega a buen precio este es tu sitio.
Llevado por griegos auténticos, este restaurante ofrece unos platos típicos a un precio estupendo.
Un derroche de calidad acompañado de muy buen trato y abundante comida.
Tendremos para elgir platos como musaka (lasaña griega con berenjena), giros (parecido al kebab), pasticho, [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/qype-korintho-en-castellon-de-la-plana/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-korintho-en-castellon-de-la-plana%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-korintho-en-castellon-de-la-plana%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;a href="http://www.qype.es/es522-castellon-de-la-plana"&gt;Castellon de la Plana&lt;/a&gt; &amp;#8211; &lt;a href="http://www.qype.es/es522-castellon-de-la-plana/categories/1-restaurantes"&gt;Restaurantes&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Si quieres comer comida griega a buen precio este es tu sitio.&lt;br /&gt;
Llevado por griegos auténticos, este restaurante ofrece unos platos típicos a un precio estupendo.&lt;/p&gt;
&lt;p&gt;Un derroche de calidad acompañado de muy buen trato y abundante comida.&lt;/p&gt;
&lt;p&gt;Tendremos para elgir platos como musaka (lasaña griega con berenjena), giros (parecido al kebab), pasticho, suvlaki (pincho moruno pero griego), dolmadakia (arroz envuelto en parra), pitas (hojaldre con queso feta), hummus (pasta de garbanzos) todo acompañado también de bebidas típicas de importación como el ouzo (parecido al anis) y la retsina, el mejor vino griego.&lt;/p&gt;
&lt;p&gt;Un sitio altamente recomendable&lt;br /&gt;
Echa un vistazo a mi reseña de &lt;a href="http://www.qype.es/place/364540-Korintho-Castellon-de-la-Plana"&gt;Korintho&lt;/a&gt; &amp;#8211; Yo soy &lt;a href="http://www.qype.es/people/ferdy182"&gt;ferdy182&lt;/a&gt; &amp;#8211; en &lt;a href="http://www.qype.es/"&gt;Qype&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/YIW3lXsoJYkd8KvC14uI6YVLuIY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/YIW3lXsoJYkd8KvC14uI6YVLuIY/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/YIW3lXsoJYkd8KvC14uI6YVLuIY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/YIW3lXsoJYkd8KvC14uI6YVLuIY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=fXaWvZ0wpPk:c8QplS0qtGY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/fXaWvZ0wpPk" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/qype-korintho-en-castellon-de-la-plana/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/qype-korintho-en-castellon-de-la-plana/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/qype-korintho-en-castellon-de-la-plana/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Qype: Juvi en Toledo]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/hSAP0yp5bE8/" />
		<id>http://www.forgottenprojects.com/qype-juvi-en-toledo/</id>
		<updated>2008-11-30T10:15:26Z</updated>
		<published>2008-12-03T09:33:52Z</published>
		<category scheme="http://www.forgottenprojects.com" term="General" />		<summary type="html"><![CDATA[
			
				
			
		
Toledo &#8211; Compras &#8211; Regalos y tarjetas
Increíble tienda de regalos al ladito de la Catedral donde compré un juego de katanas a un buen precio y que además me regalaron un soporte para colgarlas.
Tenían multitud de armas y objetos de decoración en un local bastante amplio. Todo artesanía Toledana con motivos medievales. Una buena atención [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/qype-juvi-en-toledo/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-juvi-en-toledo%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-juvi-en-toledo%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;a href="http://www.qype.es/es425-toledo"&gt;Toledo&lt;/a&gt; &amp;#8211; &lt;a href="http://www.qype.es/es425-toledo/categories/3-compras"&gt;Compras&lt;/a&gt; &amp;#8211; &lt;a href="http://www.qype.es/es425-toledo/categories/330-tiendas-de-regalos-y-tarjetas-in-toledo"&gt;Regalos y tarjetas&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Increíble tienda de regalos al ladito de la Catedral donde compré un juego de katanas a un buen precio y que además me regalaron un soporte para colgarlas.&lt;/p&gt;
&lt;p&gt;Tenían multitud de armas y objetos de decoración en un local bastante amplio. Todo artesanía Toledana con motivos medievales. Una buena atención al cliente y muy bien situado. Recomendado si vas a comprar alguna espada.&lt;br /&gt;
Echa un vistazo a mi reseña de &lt;a href="http://www.qype.es/place/364245-Juvi-Toledo"&gt;Juvi&lt;/a&gt; &amp;#8211; Yo soy &lt;a href="http://www.qype.es/people/ferdy182"&gt;ferdy182&lt;/a&gt; &amp;#8211; en &lt;a href="http://www.qype.es/"&gt;Qype&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/aB7nITj3P3s9KG4XpbF-KCJROvc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/aB7nITj3P3s9KG4XpbF-KCJROvc/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/aB7nITj3P3s9KG4XpbF-KCJROvc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/aB7nITj3P3s9KG4XpbF-KCJROvc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=hSAP0yp5bE8:_p8m74nNkWc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/hSAP0yp5bE8" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/qype-juvi-en-toledo/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/qype-juvi-en-toledo/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/qype-juvi-en-toledo/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Qype: Pink Sushiman en Madrid]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/al22ktf0FMM/" />
		<id>http://www.forgottenprojects.com/qype-pink-sushiman-en-madrid/</id>
		<updated>2008-12-01T11:44:31Z</updated>
		<published>2008-12-02T09:42:13Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Reseñas" />		<summary type="html"><![CDATA[Reseña de pink sushiman en Madrid]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/qype-pink-sushiman-en-madrid/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-pink-sushiman-en-madrid%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-pink-sushiman-en-madrid%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;a href="http://www.qype.es/es300-madrid" rel="nofollow"&gt;Madrid&lt;/a&gt; &amp;#8211; &lt;a href="http://www.qype.es/es300-madrid/categories/1-restaurantes" rel="nofollow"&gt;Restaurantes&lt;/a&gt; &amp;#8211; &lt;a href="http://www.qype.es/es300-madrid/categories/49-restaurantes-japoneses-y-sushi-in-madrid" rel="nofollow"&gt;Japoneses y Sushi&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Curioso restaurante por la zona de montera. Este es un restaurante japonés de los que tienen una cinta transportadora con la comida que van preparando y cuando llega por tu mesa/asiento lo coges y lo comes. Cada plato tiene un color que representa un precio y cuando acabas de comer, la camarera te hace el recuento y es lo que pagas.&lt;/p&gt;
&lt;p&gt;Aparte de los platos de la cinta transportadora también hay algunos platos calientes que te hacen al momento estilo Wok. También dispones de un grifo de agua en cada mesa que por un precio bebes todo el agua con gas o sin gas que quieras.&lt;/p&gt;
&lt;p&gt;La decoración de este sitio es lo mejor. Está todo decorado en plan moderno, con mucho blanco y plateado que recuerda a una nave espacial de Apple.&lt;/p&gt;
&lt;p&gt;Los baños también son muy curiosos, con grandes y coloridas imágenes en las paredes en las que aparece una muñeca dollfie (muñecas japonesas muy realistas).&lt;/p&gt;
&lt;p&gt;En general un sitio recomendado pero que parece ir subiendo de precio.&lt;br /&gt;
Echa un vistazo a mi reseña de &lt;a href="http://www.qype.es/place/319281-Pink-Sushiman-Madrid" rel="nofollow"&gt;Pink Sushiman&lt;/a&gt; &amp;#8211; Yo soy &lt;a href="http://www.qype.es/people/ferdy182" rel="nofollow"&gt;ferdy182&lt;/a&gt; &amp;#8211; en &lt;a href="http://www.qype.es/" rel="nofollow"&gt;Qype&lt;/a&gt;&lt;br /&gt;
&lt;!--adsense--&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/xsMjk64KmCNQ47ktOmdo0txrwB4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/xsMjk64KmCNQ47ktOmdo0txrwB4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/xsMjk64KmCNQ47ktOmdo0txrwB4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/xsMjk64KmCNQ47ktOmdo0txrwB4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=al22ktf0FMM:sO1pR-nO3uE:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/al22ktf0FMM" height="1" width="1"/&gt;</content>
	<georss:point featurename="montera, madrid">40.4182125 -3.7025392</georss:point>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/qype-pink-sushiman-en-madrid/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/qype-pink-sushiman-en-madrid/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/qype-pink-sushiman-en-madrid/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Qype: Restaurante la Abadia en Toledo]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/vzth8zDX7Sg/" />
		<id>http://www.forgottenprojects.com/qype-restaurante-la-abadia-en-toledo/</id>
		<updated>2008-12-01T11:45:38Z</updated>
		<published>2008-12-01T09:30:11Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Reseñas" />		<summary type="html"><![CDATA[La abadia, Toledo, reseña de este lugar]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/qype-restaurante-la-abadia-en-toledo/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-restaurante-la-abadia-en-toledo%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-restaurante-la-abadia-en-toledo%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Curioso restaurante por el centro de Toledo al cual entramos a tomarnos unas tapas. Tenian bastante variedad y como eran las IX Jornadas de Tapas nos pedimos la tapa especial de la jornada que consistia en un rollo de roast beef con setas y pure de patatas que estaba muy bueno pero muy frío también.&lt;/p&gt;
&lt;p&gt;Las mesas del fondo que es el único sitio que había sitio son demasiado pequeñas para sentarse 4 personas. Tanto que se nos cayó un plato al suelo. Los taburetes para sentarse son tremendamente incómodos, bajos y pequeños, con lo cual estuvimos incómodos todo el tiempo que pasamos sentados allí.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Actualización:&lt;/strong&gt; Después de pasar una mala noche los 4 por una indigestión concluimos que fue culpa de la tapa que tomamos en este sitio tras descartar otras cosas que comimos.&lt;/p&gt;
&lt;p&gt;&lt;!--adsense--&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/womOYH-mOHisxK2ne3y7l_BtTNw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/womOYH-mOHisxK2ne3y7l_BtTNw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/womOYH-mOHisxK2ne3y7l_BtTNw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/womOYH-mOHisxK2ne3y7l_BtTNw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=vzth8zDX7Sg:5FwkDbbYTVI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/vzth8zDX7Sg" height="1" width="1"/&gt;</content>
	<georss:point featurename="Plaza San Nicolas 3, 45001 Toledo">39.8597592 -4.0229147</georss:point>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/qype-restaurante-la-abadia-en-toledo/#comments" thr:count="2" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/qype-restaurante-la-abadia-en-toledo/feed/atom/" thr:count="2" />
		<thr:total>2</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/qype-restaurante-la-abadia-en-toledo/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Qype: Alfileritos 24 en Toledo]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/r6PX6SZmYXo/" />
		<id>http://www.forgottenprojects.com/qype-alfileritos-24-en-toledo/</id>
		<updated>2008-12-01T11:41:43Z</updated>
		<published>2008-11-30T09:25:56Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Reseñas" />		<summary type="html"><![CDATA[Reseña del restaurante alfileritos 24 de toledo, españa]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/qype-alfileritos-24-en-toledo/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-alfileritos-24-en-toledo%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fqype-alfileritos-24-en-toledo%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;a href="http://www.qype.es/es425-toledo" rel="nofollow"&gt;Toledo&lt;/a&gt; &amp;#8211; &lt;a href="http://www.qype.es/es425-toledo/categories/1-restaurantes" rel="nofollow"&gt;Restaurantes&lt;/a&gt; &amp;#8211; &lt;a href="http://www.qype.es/es425-toledo/categories/17-restaurantes-de-tapas-in-toledo" rel="nofollow"&gt;Tapas&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Estupendo local en el centro de Toledo. Parecen unas antiguas bodegas reformadas ya que tiene las paredes de ladrillo formando arcos, dos plantas y unos cristales donde puedes ver lo que hay en el otro piso.&lt;/p&gt;
&lt;p&gt;Tienes unas raciones muy apetecibles de precio normal. Nos tomamos unas croquetas de boletus que me entusiasmaron y una carcamusa que es típica de Toledo y nos sorprendió gratamente.&lt;br /&gt;
Echa un vistazo a mi reseña de &lt;a href="http://www.qype.es/place/324358-Alfileritos-24-Toledo" rel="nofollow"&gt;Alfileritos 24&lt;/a&gt; &amp;#8211; Yo soy &lt;a href="http://www.qype.es/people/ferdy182" rel="nofollow"&gt;ferdy182&lt;/a&gt; &amp;#8211; en &lt;a href="http://www.qype.es/" rel="nofollow"&gt;Qype&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;!--adsense--&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/26EcgviU7Cyt_2B7wjlIiEiaSe4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/26EcgviU7Cyt_2B7wjlIiEiaSe4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/26EcgviU7Cyt_2B7wjlIiEiaSe4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/26EcgviU7Cyt_2B7wjlIiEiaSe4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=r6PX6SZmYXo:bCw5oIfswp8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/r6PX6SZmYXo" height="1" width="1"/&gt;</content>
	<georss:point featurename="alfileritos 24, toledo, españa">39.8598049 -4.0235463</georss:point>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/qype-alfileritos-24-en-toledo/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/qype-alfileritos-24-en-toledo/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/qype-alfileritos-24-en-toledo/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Moodle, que hacer cuando no encuentra el directorio de datos]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/nxLtyxQ8HkI/" />
		<id>http://www.forgottenprojects.com/?p=200</id>
		<updated>2009-07-01T17:30:38Z</updated>
		<published>2008-11-22T23:27:47Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Tecnología" /><category scheme="http://www.forgottenprojects.com" term="carpeta" /><category scheme="http://www.forgottenprojects.com" term="datos" /><category scheme="http://www.forgottenprojects.com" term="error" /><category scheme="http://www.forgottenprojects.com" term="moodle" />		<summary type="html"><![CDATA[Estaba intentando instalar Moodle (que es una herramienta de aula virtual) en un servidor de aruba.it que es nuestro hosting y me estaba dando todo el tiempo un error que dice:
El 'Directorio de Datos' no pudo ser encontrado o creado. Corrija la ruta o cree el directorio manualmente.
]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/moodle-no-encuentra-directorio-datos/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fmoodle-no-encuentra-directorio-datos%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fmoodle-no-encuentra-directorio-datos%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly&amp;amp;hashtags=carpeta,datos,error,moodle" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Estaba intentando instalar Moodle (que es una herramienta de aula virtual) en un servidor de aruba.it que es nuestro hosting y me estaba dando todo el tiempo un error que dice:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;El &amp;#8216;Directorio de Datos&amp;#8217; no pudo ser encontrado o creado. Corrija la ruta o cree el directorio manualmente.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;y no daba con la forma de arreglarlo. Por lo visto hay algunas cosas a tener en cuenta que no están muy bien explicadas.&lt;/p&gt;
&lt;p&gt;Lo primero es &lt;strong&gt;crear el directorio manualmente y darle permisos 770&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Lo siguiente es crear un fichero de texto llamado &lt;strong&gt;.htaccess&lt;/strong&gt; dentro de ese directorio que solo tenga la linea:&lt;/p&gt;
&lt;p&gt;&lt;code&gt;deny from all&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;esto evita que entre alguien al directorio de datos.&lt;/p&gt;
&lt;p&gt;Y por último y lo que tenía yo mal a la hora de instalar Moodle es la ruta física de la carpeta, que viene con el nombre de los directorios virtuales de nuestro hosting, en mi caso, faltaba &lt;strong&gt;añadir el directorio virtual /home/ entre el nombre del dominio y la carpeta de datos (p.ej. &amp;#8230;/www.dominio.com/home/moodledata&lt;/strong&gt; para que lo coja correctamente. Se puede copiar de la linea superior que indica la ruta del home de moodle, aunque en mi caso me salía cortada y no veía esa carpeta virtual.&lt;/p&gt;
&lt;p&gt;&lt;!--adsense--&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/GtlhTXqMoVxX3D15xB1Do4k148U/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/GtlhTXqMoVxX3D15xB1Do4k148U/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/GtlhTXqMoVxX3D15xB1Do4k148U/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/GtlhTXqMoVxX3D15xB1Do4k148U/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=nxLtyxQ8HkI:MA6lKm8mkAo:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/nxLtyxQ8HkI" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/moodle-no-encuentra-directorio-datos/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/moodle-no-encuentra-directorio-datos/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/moodle-no-encuentra-directorio-datos/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Remember the milk gadget para GMail]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/V54hL_k8UjQ/" />
		<id>http://www.forgottenprojects.com/remember-the-milk-gadget-gmail/</id>
		<updated>2008-11-21T09:39:28Z</updated>
		<published>2008-11-21T09:35:51Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Interesante" /><category scheme="http://www.forgottenprojects.com" term="Tecnología" />		<summary type="html"><![CDATA[
			
				
			
		
Gmail tiene una opción llamada Labs que permite añadir funcionalidades experimentales a nuestra página de GMail.
Esta opción está situada arriba a la derecha en forma de icono de poción verde y desde ahí podemos activar cosas como el detector de adjuntos olvidados y el detector de envios de correos borrachos, pero uno de los más [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/remember-the-milk-gadget-gmail/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fremember-the-milk-gadget-gmail%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fremember-the-milk-gadget-gmail%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;img src="http://1.static.rememberthemilk.com/img/services/gmail/gadget/ss_gadget.png" alt="rtm gadget"  align="left" style="margin:10px" /&gt;Gmail tiene una opción llamada Labs que permite añadir funcionalidades experimentales a nuestra página de &lt;a href="http://gmail.google.es"&gt;GMail&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Esta opción está situada arriba a la derecha en forma de icono de poción verde y desde ahí podemos activar cosas como el detector de adjuntos olvidados y el detector de envios de correos borrachos, pero uno de los más interesantes es el de añadir gadgets por URL. &lt;/p&gt;
&lt;p&gt;En el caso que nos concierne, queremos añadir el gadget de &lt;a href="http://www.rememberthemilk.com/"&gt;Remember the milk&lt;/a&gt;, que es un gestor de listas de tareas que se integra con un montón de servicios. &lt;/p&gt;
&lt;p&gt;La versión corta:&lt;/p&gt;
&lt;p&gt;Para esto activamos la opción comentada y luego vamos a Settings &gt; Gadgets &gt; Add by URL y ahí pegamos la siguiente dirección:&lt;/p&gt;
&lt;p&gt;http://www.rememberthemilk.com/services/modules/gmail/rtm.xml&lt;/p&gt;
&lt;p&gt;y con esto nos debería aparecer en la barra de la izquierda. (Aunque con los recientes temas nuevos de GMail a mi ya no me aparece)&lt;/p&gt;
&lt;p&gt;La versión larga (y en inglés): &lt;a href="http://www.rememberthemilk.com/services/gmail/gadget/"&gt;http://www.rememberthemilk.com/services/gmail/gadget/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;span id="more-199"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;!--adsense--&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/2ZMGwcvL2xOAA4QbEaxG17wWoQ0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/2ZMGwcvL2xOAA4QbEaxG17wWoQ0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/2ZMGwcvL2xOAA4QbEaxG17wWoQ0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/2ZMGwcvL2xOAA4QbEaxG17wWoQ0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=V54hL_k8UjQ:mQjdFG-KDIw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/V54hL_k8UjQ" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/remember-the-milk-gadget-gmail/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/remember-the-milk-gadget-gmail/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/remember-the-milk-gadget-gmail/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Me cago en&#8230; Carrefour y Carrefouronline]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/jPqGhFeHZh0/" />
		<id>http://www.forgottenprojects.com/me-cago-en-carrefour/</id>
		<updated>2008-11-20T11:16:18Z</updated>
		<published>2008-11-20T11:16:18Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Me cago en..." />		<summary type="html"><![CDATA[
			
				
			
		
Pues si hay una tienda que no recomendaría jamás es Carrefour, ni en su versión física ni Online.
Era la época en la que iba a salir el juegazo Metal Gear Solid 4 en España para PS3, como yo aun no la tenía, consideré que era un buen momento para comprarla junto con el juego, pero [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/me-cago-en-carrefour/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fme-cago-en-carrefour%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fme-cago-en-carrefour%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Pues si hay una tienda que no recomendaría jamás es Carrefour, ni en su versión física ni Online.&lt;/p&gt;
&lt;p&gt;Era la época en la que iba a salir el juegazo &lt;a href="http://es.wikipedia.org/wiki/Metal_Gear_Solid_4"&gt;Metal Gear Solid 4&lt;/a&gt; en España para PS3, como yo aun no la tenía, consideré que era un buen momento para comprarla junto con el juego, pero debido a varios retrasos y a un cupón que me había facilitado mi empresa pense en adquirirla en Carrefouronline.&lt;/p&gt;
&lt;p&gt;Dicho cupón eran 30€ de descuento para cualquier compra en Carrefouronline donde se podía comprar la flamante PS3 con Gran Turismo 4. Pensé en cogerme ese pack y adquirir MGS4 por separado cuando saliese.&lt;/p&gt;
&lt;p&gt;Hice la compra por internet, metí el cupón y me lo dio por válido descontando 30€ del precio final y sumando los gastos de envío, salia por 375€ en vez de 405€. Pago con mi tarjeta, y en el recibo que me dan indica que se cobrará 375€. Hasta ahí bien, llega mi ps3 y para mi asombro, en mi cuenta me han cobrado los 405€, lo cual era erroneo. Para contactar con Carrefouronline puedes hacerlo por email y por teléfono llamando a un 902. Opto por lo primero que es lo más barato pero me ignoran completamente. Pues nada, llamo desde el trabajo al 902 y tras explicar un poco el problema me cuelgan, coño, vuelvo a llamar a ver que pasa, les explico el problema y me dicen que hablarán con contabilidad y que me llamarán. Pasan los días y nada, vuelvo a llamar y me dicen que el cupón no es válido para esa compra, que solo vale para los pedidos al supermercado online, les cuento que tengo el recibo, que la aplicación me aceptó el código pero que me cobraron de más, después de un buen rato me dicen que no hay problema, que llamarán a contabilidad y que me lo devolverán, pero al final nada de nada y yo paso de andar persiguiendoles todo el santo día. Tenía que haberlo devuelto, lo sé, pero después de que te llegue la Playstation 3, la abras y la pruebes, jode mucho tener que devolverla, esperando a que se solucionase, pero sí, tenían que habérsela comido con patatas&amp;#8230;&lt;/p&gt;
&lt;p&gt;Y el caso es que yo pensando que la tienda física iba a ser mejor, me dejé el otro día 60 pavos por una silla de escritorio chula y cómoda de esas de seudo piel y en dos días se rompio el reposabrazos que al ir atado al respaldo como te apoyes te hostias, así que a devolverla&amp;#8230;.&lt;/p&gt;
&lt;p&gt;No compréis en Carrefour&amp;#8230;&lt;/p&gt;
&lt;p&gt;&lt;!--adsense--&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/W6AuSzJNkuZhILW7b86iM0IYBNs/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/W6AuSzJNkuZhILW7b86iM0IYBNs/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/W6AuSzJNkuZhILW7b86iM0IYBNs/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/W6AuSzJNkuZhILW7b86iM0IYBNs/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=jPqGhFeHZh0:o3D91psx1Ts:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/jPqGhFeHZh0" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/me-cago-en-carrefour/#comments" thr:count="2" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/me-cago-en-carrefour/feed/atom/" thr:count="2" />
		<thr:total>2</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/me-cago-en-carrefour/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Insertar en Excel desde C# con OleDb]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/6r0yaCY3q4Y/" />
		<id>http://www.forgottenprojects.com/excel-insertar-datos-c/</id>
		<updated>2009-08-25T08:15:02Z</updated>
		<published>2008-11-06T16:28:25Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Programacion" /><category scheme="http://www.forgottenprojects.com" term="Tecnología" />		<summary type="html"><![CDATA[
			
				
			
		
En muchos sitios se explica como insertar filas en excel por OleDb así que voy a poner un fragmento y una breve explicación de cómo se hace porque lo realmente interesante es como corregir el error &#8220;La operación debe usar una consulta actualizable&#8221; que me surgió a mi y que me costó un montón averiguar [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/excel-insertar-datos-c/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fexcel-insertar-datos-c%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fexcel-insertar-datos-c%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;En muchos sitios se explica como insertar filas en excel por OleDb así que voy a poner un fragmento y una breve explicación de cómo se hace porque lo realmente interesante es como corregir el error &lt;em&gt;&amp;#8220;La operación debe usar una consulta actualizable&amp;#8221;&lt;/em&gt; que me surgió a mi y que me costó un montón averiguar dado que no me funcionaban las indicaciones que encontraba en otras páginas.&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;1
2
3
4
5
6
7
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="csharp" style="font-family:monospace;"&gt;        &lt;span style="color: #FF0000;"&gt;string&lt;/span&gt; file &lt;span style="color: #008000;"&gt;=&lt;/span&gt; Server.&lt;span style="color: #0000FF;"&gt;MapPath&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #666666;"&gt;@&amp;quot;pruebaExcel.xls&amp;quot;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #008000;"&gt;;&lt;/span&gt;
        &lt;span style="color: #FF0000;"&gt;string&lt;/span&gt; connectionString &lt;span style="color: #008000;"&gt;=&lt;/span&gt; &lt;span style="color: #666666;"&gt;@&amp;quot;Provider=Microsoft.Jet.OLEDB.4.0;Data Source=&amp;quot;&lt;/span&gt; &lt;span style="color: #008000;"&gt;+&lt;/span&gt; file &lt;span style="color: #008000;"&gt;+&lt;/span&gt; &lt;span style="color: #666666;"&gt;&amp;quot;;Extended Properties='Excel 8.0;HDR=Yes;IMEX=0;'&amp;quot;&lt;/span&gt;&lt;span style="color: #008000;"&gt;;&lt;/span&gt;
        &lt;span style="color: #000000;"&gt;System.&lt;span style="color: #0000FF;"&gt;Data&lt;/span&gt;&lt;/span&gt;.&lt;span style="color: #0000FF;"&gt;OleDb&lt;/span&gt;.&lt;span style="color: #0000FF;"&gt;OleDbConnection&lt;/span&gt; oCon &lt;span style="color: #008000;"&gt;=&lt;/span&gt; &lt;span style="color: #008000;"&gt;new&lt;/span&gt; &lt;span style="color: #000000;"&gt;System.&lt;span style="color: #0000FF;"&gt;Data&lt;/span&gt;&lt;/span&gt;.&lt;span style="color: #0000FF;"&gt;OleDb&lt;/span&gt;.&lt;span style="color: #0000FF;"&gt;OleDbConnection&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#40;&lt;/span&gt;connectionString&lt;span style="color: #000000;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #008000;"&gt;;&lt;/span&gt;
        oCon.&lt;span style="color: #0000FF;"&gt;Open&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #008000;"&gt;;&lt;/span&gt;
        &lt;span style="color: #FF0000;"&gt;string&lt;/span&gt; q &lt;span style="color: #008000;"&gt;=&lt;/span&gt; &lt;span style="color: #666666;"&gt;&amp;quot;INSERT INTO [Hoja1$B1:B1] VALUES (1)&amp;quot;&lt;/span&gt;&lt;span style="color: #008000;"&gt;;&lt;/span&gt;
        &lt;span style="color: #FF0000;"&gt;int&lt;/span&gt; r &lt;span style="color: #008000;"&gt;=&lt;/span&gt; &lt;span style="color: #008000;"&gt;new&lt;/span&gt; &lt;span style="color: #000000;"&gt;System.&lt;span style="color: #0000FF;"&gt;Data&lt;/span&gt;&lt;/span&gt;.&lt;span style="color: #0000FF;"&gt;OleDb&lt;/span&gt;.&lt;span style="color: #0000FF;"&gt;OleDbCommand&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#40;&lt;/span&gt;q, oCon&lt;span style="color: #000000;"&gt;&amp;#41;&lt;/span&gt;.&lt;span style="color: #0000FF;"&gt;ExecuteNonQuery&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #008000;"&gt;;&lt;/span&gt;
        oCon.&lt;span style="color: #0000FF;"&gt;Close&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #008000;"&gt;;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Este código busca la ruta física del archivo de excel en el servidor de ASP.NET para crear la cadena de conexión que nos conectará al archivo de Excel que hemos especificado. Importante el código en negrita IMEX=0 ya que tiene que ver con los tipos de los datos de las columnas y puede dar problemas a la hora de escribir desde código y es el problema que estaba teniendo. Si lo ponemos a uno nos dará un error que dice &amp;#8220;Operation must use an updateable query&amp;#8221; o &amp;#8220;La operación debe usar una consulta actualizable&amp;#8221;, para solucionarlo ponemos IMEX=0 o lo omitimos del connection string.&lt;/p&gt;
&lt;p&gt;Después creamos la conexión con OleDB usando la connection string que acabamos de crear la abrimos para poder empezar a operar.&lt;/p&gt;
&lt;p&gt;&lt;!--adsense--&gt;&lt;/p&gt;
&lt;p&gt;La notación sql de Excel y Access difiere un poco a lo que estamos acostumbrados ya que es posible que los nombres de columnas tengan caracteres raros como acentos o espacios, por eso, al decirle en que tabla queremos operar, se lo ponemos entre corchetes, y en excel además ponemos un $ al final para indicarle que hoja del libro vamos a usar.&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;div class="code"&gt;&lt;pre class="sql" style="font-family:monospace;"&gt;&lt;span style="color: #993333; font-weight: bold;"&gt;SELECT&lt;/span&gt; &lt;span style="color: #66cc66;"&gt;*&lt;/span&gt; &lt;span style="color: #993333; font-weight: bold;"&gt;FROM&lt;/span&gt; &lt;span style="color: #66cc66;"&gt;&amp;#91;&lt;/span&gt;Hoja1$&lt;span style="color: #66cc66;"&gt;&amp;#93;&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;nos devolvería todas las filas de la hoja 1 del libro de excel, salvo que hayamos indicado en el connection string la propiedad HDR=1 con lo cual le indicamos que la primera fila no contiene datos sino los nombre de columnas.&lt;br /&gt;
Si solo queremos usar un rango de celdas podemos decirle&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;div class="code"&gt;&lt;pre class="sql" style="font-family:monospace;"&gt;&lt;span style="color: #993333; font-weight: bold;"&gt;SELECT&lt;/span&gt; &lt;span style="color: #66cc66;"&gt;*&lt;/span&gt; &lt;span style="color: #993333; font-weight: bold;"&gt;FROM&lt;/span&gt; &lt;span style="color: #66cc66;"&gt;&amp;#91;&lt;/span&gt;Hoja1$A2:H10&lt;span style="color: #66cc66;"&gt;&amp;#93;&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt; que nos devolvería las filas de la 2 a la 10 y las columnas de la A a la H.&lt;/p&gt;
&lt;p&gt;En excel también podemos definir nombres a un conjunto de celdas. Para ello, dentro de Excel, seleccionamos un rango de celdas y vamos al menu Insertar &gt; Nombre &gt; Definir y le damos un nombre. Este nombre también es accesible desde código pudiendo hacer:&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;div class="code"&gt;&lt;pre class="sql" style="font-family:monospace;"&gt;&lt;span style="color: #993333; font-weight: bold;"&gt;INSERT&lt;/span&gt; &lt;span style="color: #993333; font-weight: bold;"&gt;INTO&lt;/span&gt; NombreQueHemosDado &lt;span style="color: #66cc66;"&gt;&amp;#40;&lt;/span&gt;col1&lt;span style="color: #66cc66;"&gt;,&lt;/span&gt; col2&lt;span style="color: #66cc66;"&gt;,&lt;/span&gt; col3&lt;span style="color: #66cc66;"&gt;&amp;#41;&lt;/span&gt; &lt;span style="color: #993333; font-weight: bold;"&gt;VALUES&lt;/span&gt; &lt;span style="color: #66cc66;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #cc66cc;"&gt;1&lt;/span&gt;&lt;span style="color: #66cc66;"&gt;,&lt;/span&gt;&lt;span style="color: #cc66cc;"&gt;2&lt;/span&gt;&lt;span style="color: #66cc66;"&gt;,&lt;/span&gt;&lt;span style="color: #cc66cc;"&gt;3&lt;/span&gt;&lt;span style="color: #66cc66;"&gt;&amp;#41;&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Si nuestras columnas tienen nombres raros, hay que ponerlas entre corchetes pero no pasa nada si se los ponemos a todas aunque no tengan nombres raros:&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;div class="code"&gt;&lt;pre class="sql" style="font-family:monospace;"&gt;&lt;span style="color: #993333; font-weight: bold;"&gt;INSERT&lt;/span&gt; &lt;span style="color: #993333; font-weight: bold;"&gt;INTO&lt;/span&gt; NombreQueHemosDado &lt;span style="color: #66cc66;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #66cc66;"&gt;&amp;#91;&lt;/span&gt;col1&lt;span style="color: #66cc66;"&gt;&amp;#93;&lt;/span&gt;&lt;span style="color: #66cc66;"&gt;,&lt;/span&gt; &lt;span style="color: #66cc66;"&gt;&amp;#91;&lt;/span&gt;col2&lt;span style="color: #66cc66;"&gt;&amp;#93;&lt;/span&gt;&lt;span style="color: #66cc66;"&gt;,&lt;/span&gt; &lt;span style="color: #66cc66;"&gt;&amp;#91;&lt;/span&gt;col3&lt;span style="color: #66cc66;"&gt;&amp;#93;&lt;/span&gt;&lt;span style="color: #66cc66;"&gt;&amp;#41;&lt;/span&gt; &lt;span style="color: #993333; font-weight: bold;"&gt;VALUES&lt;/span&gt; &lt;span style="color: #66cc66;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #cc66cc;"&gt;1&lt;/span&gt;&lt;span style="color: #66cc66;"&gt;,&lt;/span&gt;&lt;span style="color: #cc66cc;"&gt;2&lt;/span&gt;&lt;span style="color: #66cc66;"&gt;,&lt;/span&gt;&lt;span style="color: #cc66cc;"&gt;3&lt;/span&gt;&lt;span style="color: #66cc66;"&gt;&amp;#41;&lt;/span&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt; también es válido.&lt;/p&gt;
&lt;p&gt;Aprovecho para recomendar la página &lt;a href="http://www.connectionstrings.com/"&gt;connectionstrings.com&lt;/a&gt; donde se puede buscar qué cadena de conexión hay que escribir para conectarse a cualquier base de datos y dónde encontré una pista para solucionar el error que tenía.&lt;br /&gt;
&lt;span id="more-198"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;!--adsense--&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/vxfCIR2JEd_6Gw7OD7SZI3cgkD4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/vxfCIR2JEd_6Gw7OD7SZI3cgkD4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/vxfCIR2JEd_6Gw7OD7SZI3cgkD4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/vxfCIR2JEd_6Gw7OD7SZI3cgkD4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=6r0yaCY3q4Y:Vk6keQcifbE:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/6r0yaCY3q4Y" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/excel-insertar-datos-c/#comments" thr:count="5" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/excel-insertar-datos-c/feed/atom/" thr:count="5" />
		<thr:total>5</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/excel-insertar-datos-c/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Paris I]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/Nhwtdi383dU/" />
		<id>http://www.forgottenprojects.com/paris-i/</id>
		<updated>2008-11-06T06:54:34Z</updated>
		<published>2008-11-05T22:54:42Z</published>
		<category scheme="http://www.forgottenprojects.com" term="La nueva vida" /><category scheme="http://www.forgottenprojects.com" term="Personal" />		<summary type="html"><![CDATA[
			
				
			
		
El Viernes fuimos de vacaciones a París y volvimos el Martes, había ido hace muchísimo de pequeño, recuerdo que hacía malísimo, a mi padre dando vueltas al arco del triunfo porque no sabía cual de las 12 calles tomar, y recordaba vagamente haber estado en lo alto de la torre Eiffel, que hacía frío y [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/paris/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fparis%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fparis%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;El Viernes fuimos de vacaciones a París y volvimos el Martes, había ido hace muchísimo de pequeño, recuerdo que hacía malísimo, a mi padre dando vueltas al arco del triunfo porque no sabía cual de las 12 calles tomar, y recordaba vagamente haber estado en lo alto de la torre Eiffel, que hacía frío y llovía.&lt;/p&gt;
&lt;p&gt;Como en base a eso no podía decir que conociese París, decidí volver y conocerlo un poco mejor, y la verdad es que me ha gustado mucho. Es una ciudad muy bien construida y organizada, con calles largas y rectas y unos monumentos muy impactantes y reconocidos.&lt;/p&gt;
&lt;p&gt;Pero al margen de lo que todo el mundo conoce de París, me sorprendieron gratamente un par de calles tirando más a lo Underground, el barrio latino de Saint Michel cerca de la catedral de Nôtre Dame, donde se agolpan multitud de sitios baratos para comer de diversos paises así como locales de copas, kebabs, crêpes y demás comida barata y con muy buen y joven ambiente.&lt;/p&gt;
&lt;table style="width:auto;"&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="http://picasaweb.google.es/lh/photo/5WxAsEeMWAjkekDbvy47_w"&gt;&lt;img src="http://lh6.ggpht.com/_GsirukKY5SA/SRIcdpZJJ8I/AAAAAAAACKg/HGrk5lvhhkU/s288/PA263026.JPG" /&gt;&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style="font-family:arial,sans-serif; font-size:11px; text-align:right"&gt;From &lt;a href="http://picasaweb.google.es/ferdy182/Paris03"&gt;Paris&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;La otra calle interesante era la calle Santa Ana, repleta de restaurantes de comida Japonesa donde nos pusimos las botas a Ramen y Arroz con tempura, concretamente en el restaurante &lt;a href="http://www.tripadvisor.es/Restaurant_Review-g187147-d785776-Reviews-Naniwa_Ya-Paris_Ile_de_France.html"&gt;Naniwa-Ya&lt;/a&gt; (&lt;a href="http://maps.google.es/maps?f=q&amp;#038;hl=es&amp;#038;geocode=&amp;#038;q=11+rue+Sainte-Anne,+Par%C3%ADs,+Isla+de+Francia,+Francia&amp;#038;sll=48.869344,2.335689&amp;#038;sspn=0.007396,0.016565&amp;#038;layer=c&amp;#038;ie=UTF8&amp;#038;ll=48.869796,2.336633&amp;#038;spn=0.007396,0.016565&amp;#038;t=h&amp;#038;z=16&amp;#038;cbll=48.866089,2.335425&amp;#038;panoid=NAXlSN-bBLVSu4bJw8rzOQ&amp;#038;cbp=1,260.13287759327085,,0,8.362529373963948"&gt;aquí en google maps con street view&lt;/a&gt;) que además resulto francamente barato, pese a que no nos quedó muy claro si habían entendido lo que pedimos en una mezcla de espa-japo-franco-inglés. De todos modos había muchos sitios para elegir y todos con cola para entrar.&lt;/p&gt;
&lt;p&gt;Por cierto que nuestro hotel, el &lt;a href="http://www.timhotel.com/hotels/us/louvre.html"&gt;Timhotel Le Louvre&lt;/a&gt; (nombre desafortunado)(&lt;a href="http://maps.google.es/maps?f=q&amp;#038;hl=es&amp;#038;geocode=&amp;#038;q=11+rue+Sainte-Anne,+Par%C3%ADs,+Isla+de+Francia,+Francia&amp;#038;sll=48.869344,2.335689&amp;#038;sspn=0.007396,0.016565&amp;#038;layer=c&amp;#038;ie=UTF8&amp;#038;ll=48.866352,2.340088&amp;#038;spn=0.007396,0.016565&amp;#038;t=h&amp;#038;z=16&amp;#038;cbll=48.862588,2.339324&amp;#038;panoid=roBrFwaJlMnKsRp1dbJhEQ&amp;#038;cbp=1,76.83379619507616,,0,0.7968382825450625"&gt;google maps&lt;/a&gt;) estaba al lado mismo del Louvre, la habitación era pequeñita pero acogedora, entendían Español y además había un recepcionista muy majo. Disponíamos de un hervidor de agua y tazas para tomar allí mismo el café o té de la mañana, incluso dejan sobrecitos y tarrinas de leche que reponen a diario así que desayunabamos ahí mismo con café soluble del día y un bollo enorme. También nos dejaron una nota con el aviso del cambio de hora y el precio no estaba mal, así que lugar recomendado y muy céntrico.&lt;br /&gt;
&lt;a href='http://www.forgottenprojects.com/wp-content/uploads/2008/11/pa252820.JPG' title='pa252820.JPG'&gt;&lt;img src='http://www.forgottenprojects.com/wp-content/uploads/2008/11/pa252820.JPG' alt='pa252820.JPG' width="80%" height="80%" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;!--adsense--&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/7l1Un3m5m2FX0lqdtJYROW_c6j0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/7l1Un3m5m2FX0lqdtJYROW_c6j0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/7l1Un3m5m2FX0lqdtJYROW_c6j0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/7l1Un3m5m2FX0lqdtJYROW_c6j0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=Nhwtdi383dU:23ptBaylHDQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/Nhwtdi383dU" height="1" width="1"/&gt;</content>
	<georss:point featurename="11 rue Sainte-Anne, París, Isla de Francia, Francia">48.677219 2.502660</georss:point>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/paris/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/paris/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/paris/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Gente desesperada]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/Qa_mhBrRWo0/" />
		<id>http://www.forgottenprojects.com/2008/10/17/gente-desesperada/</id>
		<updated>2008-10-17T07:45:39Z</updated>
		<published>2008-10-17T07:41:26Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Interesante" />		<summary type="html"><![CDATA[
			
				
			
		
Una compañera que está buscando compañera de piso se ha topado con este anuncio esta mañana&#8230;

El enlace aquí, pero no se lo que durará&#8230;

]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/gente-desesperada/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fgente-desesperada%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fgente-desesperada%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Una compañera que está buscando compañera de piso se ha topado con este anuncio esta mañana&amp;#8230;&lt;br /&gt;
&lt;a href='http://www.forgottenprojects.com/wp-content/uploads/2008/10/screenshot005.png' title='screenshot005.png'&gt;&lt;img src='http://www.forgottenprojects.com/wp-content/uploads/2008/10/screenshot005.png' alt='screenshot005.png' width="80%"/&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;El enlace &lt;a href="http://madrid.loquo.com/ps/vivienda/compartir-piso-alq-habitacion/habitacion-a-cambio-de-relaciones-sexuales/3181120"&gt;aquí&lt;/a&gt;, pero no se lo que durará&amp;#8230;&lt;/p&gt;
&lt;p&gt;&lt;!--adsense--&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/mq5yaNjEKsXNtpsRlFoZdF1CKRw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/mq5yaNjEKsXNtpsRlFoZdF1CKRw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/mq5yaNjEKsXNtpsRlFoZdF1CKRw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/mq5yaNjEKsXNtpsRlFoZdF1CKRw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=Qa_mhBrRWo0:5gIS2kO3uws:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/Qa_mhBrRWo0" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/gente-desesperada/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/gente-desesperada/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/gente-desesperada/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Plantilla para mostrar Google Maps en 4images]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/Gl5pTEjkAWw/" />
		<id>http://www.forgottenprojects.com/2008/10/15/plantilla-para-mostrar-google-maps-en-4images/</id>
		<updated>2008-10-21T12:37:07Z</updated>
		<published>2008-10-15T16:00:10Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Programacion" />		<summary type="html"><![CDATA[
			
				
			
		
¿Usas 4images y necesitas añadir una plantilla a tu template para mostrar archivos kml en la galería?
Copia el siguiente código en un archivo de texto, guardalo como kml.html y súbelo al directorio /media dentro de la carpeta del template que estés utilizando, y habilita los archivos kml como extensión válida de archivos que se pueden [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/plantilla-google-maps-4images/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fplantilla-google-maps-4images%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fplantilla-google-maps-4images%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;¿Usas 4images y necesitas añadir una plantilla a tu template para mostrar archivos kml en la galería?&lt;/p&gt;
&lt;p&gt;Copia el siguiente código en un archivo de texto, guardalo como kml.html y súbelo al directorio &lt;strong&gt;/media&lt;/strong&gt; dentro de la carpeta del template que estés utilizando, y habilita los archivos kml como extensión válida de archivos que se pueden subir, en el panel de control de 4images.&lt;br /&gt;
Recuerda que debes sustituir donde pone &lt;strong&gt;&amp;#8220;tuKeyDeGoogleMaps&amp;#8221;&lt;/strong&gt; en la primera línea por una &lt;a href="http://code.google.com/apis/maps/signup.html"&gt;clave que te proporciona google&lt;/a&gt; para permitir tener mapas en tu dominio.&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="javascript" style="font-family:monospace;"&gt;&lt;span style="color: #339933;"&gt;&amp;lt;&lt;/span&gt;div id&lt;span style="color: #339933;"&gt;=&lt;/span&gt;&lt;span style="color: #3366CC;"&gt;&amp;quot;map&amp;quot;&lt;/span&gt; style&lt;span style="color: #339933;"&gt;=&lt;/span&gt;&lt;span style="color: #3366CC;"&gt;&amp;quot;width: 700px; height: 500px&amp;quot;&lt;/span&gt;&lt;span style="color: #339933;"&gt;&amp;gt;&lt;/span&gt;
&lt;span style="color: #339933;"&gt;&amp;lt;/&lt;/span&gt;div&lt;span style="color: #339933;"&gt;&amp;gt;&lt;/span&gt;
&lt;span style="color: #339933;"&gt;&amp;lt;&lt;/span&gt;script src&lt;span style="color: #339933;"&gt;=&lt;/span&gt;&lt;span style="color: #3366CC;"&gt;&amp;quot;http://maps.google.com/maps?file=api&amp;amp;v=2&amp;amp;key=tuKeyDeGoogleMaps&amp;quot;&lt;/span&gt; type&lt;span style="color: #339933;"&gt;=&lt;/span&gt;&lt;span style="color: #3366CC;"&gt;&amp;quot;text/javascript&amp;quot;&lt;/span&gt;&lt;span style="color: #339933;"&gt;&amp;gt;&amp;lt;/&lt;/span&gt;script&lt;span style="color: #339933;"&gt;&amp;gt;&lt;/span&gt;
&lt;span style="color: #339933;"&gt;&amp;lt;&lt;/span&gt;script languaje&lt;span style="color: #339933;"&gt;=&lt;/span&gt;&lt;span style="color: #3366CC;"&gt;&amp;quot;javascript&amp;quot;&lt;/span&gt;&lt;span style="color: #339933;"&gt;&amp;gt;&lt;/span&gt;
	map &lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #003366; font-weight: bold;"&gt;new&lt;/span&gt; GMap2&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;document.&lt;span style="color: #660066;"&gt;getElementById&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #3366CC;"&gt;&amp;quot;map&amp;quot;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	map.&lt;span style="color: #660066;"&gt;setCenter&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #003366; font-weight: bold;"&gt;new&lt;/span&gt; GLatLng&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #CC0000;"&gt;43.337164854911&lt;/span&gt;&lt;span style="color: #339933;"&gt;,-&lt;/span&gt;&lt;span style="color: #CC0000;"&gt;3.8960266113281&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;,&lt;/span&gt;&lt;span style="color: #CC0000;"&gt;2&lt;/span&gt;&lt;span style="color: #339933;"&gt;,&lt;/span&gt;G_SATELLITE_MAP&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	map.&lt;span style="color: #660066;"&gt;addControl&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #003366; font-weight: bold;"&gt;new&lt;/span&gt; GSmallZoomControl&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	url &lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #3366CC;"&gt;&amp;quot;{media_src}&amp;quot;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	url &lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #3366CC;"&gt;&amp;quot;http://www.ambiental-hitos.com/4images/&amp;quot;&lt;/span&gt;&lt;span style="color: #339933;"&gt;+&lt;/span&gt;url.&lt;span style="color: #660066;"&gt;substr&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #CC0000;"&gt;2&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	geo &lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #003366; font-weight: bold;"&gt;new&lt;/span&gt; GGeoXml&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;url&lt;span style="color: #339933;"&gt;,&lt;/span&gt; &lt;span style="color: #003366; font-weight: bold;"&gt;function&lt;/span&gt; cargado&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;
		&lt;span style="color: #000066; font-weight: bold;"&gt;if&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;geo.&lt;span style="color: #660066;"&gt;loadedCorrectly&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt; &lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;
		    geo.&lt;span style="color: #660066;"&gt;gotoDefaultViewport&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;map&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
			&lt;span style="color: #000066; font-weight: bold;"&gt;if&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;map.&lt;span style="color: #660066;"&gt;getZoom&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt; &lt;span style="color: #339933;"&gt;&amp;gt;&lt;/span&gt; &lt;span style="color: #CC0000;"&gt;15&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;
				map.&lt;span style="color: #660066;"&gt;setZoom&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #CC0000;"&gt;15&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
			&lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;
		  &lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;
	&lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
	map.&lt;span style="color: #660066;"&gt;addOverlay&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;geo&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
&lt;span style="color: #339933;"&gt;&amp;lt;/&lt;/span&gt;script&lt;span style="color: #339933;"&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;y quedaría así:&lt;br /&gt;
&lt;a href='http://www.forgottenprojects.com/wp-content/uploads/2008/10/screenshot004.png' title='captura www.ambiental-hitos.com/4images'&gt;&lt;img src='http://www.forgottenprojects.com/wp-content/uploads/2008/10/screenshot004.thumbnail.png' alt='captura www.ambiental-hitos.com/4images' /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;!--adsense--&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/lKQCIcAr6lH7x3i_GfSgG-__tSc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/lKQCIcAr6lH7x3i_GfSgG-__tSc/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/lKQCIcAr6lH7x3i_GfSgG-__tSc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/lKQCIcAr6lH7x3i_GfSgG-__tSc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=Gl5pTEjkAWw:GDOImR8izf0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/Gl5pTEjkAWw" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/plantilla-google-maps-4images/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/plantilla-google-maps-4images/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/plantilla-google-maps-4images/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Emular el selector max-width en IE con expression]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/xm04_OkCmUM/" />
		<id>http://www.forgottenprojects.com/2008/10/14/emular-el-selector-max-width-en-ie-con-expression/</id>
		<updated>2008-10-21T12:37:36Z</updated>
		<published>2008-10-14T16:05:28Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Programacion" />		<summary type="html"><![CDATA[
			
				
			
		
Hace poco descubrí la existencia de la etiqueta expression en los archivos CSS que permiten ejecutar una sentencia de javascript para dar valor a un selector.
Bien, lo primero decirte que evites esto totalmente salvo que sea realmente necesario, siempre que puedas, hazlo con cosas estándar.
Lo segundo, esto puede venir bien a la hora de limitar [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/emular-selector-max-width-ie-expression/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Femular-selector-max-width-ie-expression%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Femular-selector-max-width-ie-expression%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Hace poco descubrí la existencia de la etiqueta expression en los archivos CSS que permiten ejecutar una sentencia de javascript para dar valor a un selector.&lt;/p&gt;
&lt;p&gt;Bien, lo primero decirte que evites esto totalmente salvo que sea realmente necesario, siempre que puedas, hazlo con cosas estándar.&lt;/p&gt;
&lt;p&gt;Lo segundo, esto puede venir bien a la hora de limitar el ancho o alto máximo o mínimo de un elemento html en IE6 o anteriores ya que la etiqueta max-width no existe en ellos.&lt;/p&gt;
&lt;p&gt;Un ejemplo extraído de &lt;a href="http://www.svendtofte.com/code/max_width_in_ie/"&gt;aquí &lt;/a&gt;nos dice como usarlo:&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;1
2
3
4
5
6
7
8
9
10
11
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="css" style="font-family:monospace;"&gt;&amp;lt;html&lt;span style="color: #00AA00;"&gt;&amp;gt;&lt;/span&gt;
&amp;lt;style&lt;span style="color: #00AA00;"&gt;&amp;gt;&lt;/span&gt;
p &lt;span style="color: #00AA00;"&gt;&amp;#123;&lt;/span&gt;
&lt;span style="color: #000000; font-weight: bold;"&gt;border&lt;/span&gt;&lt;span style="color: #00AA00;"&gt;:&lt;/span&gt;&lt;span style="color: #933;"&gt;1px&lt;/span&gt; &lt;span style="color: #993333;"&gt;solid&lt;/span&gt; &lt;span style="color: #993333;"&gt;red&lt;/span&gt;&lt;span style="color: #00AA00;"&gt;;&lt;/span&gt;
&lt;span style="color: #000000; font-weight: bold;"&gt;width&lt;/span&gt;&lt;span style="color: #3333ff;"&gt;:width&lt;/span&gt;&lt;span style="color: #00AA00;"&gt;:&lt;/span&gt;expression&lt;span style="color: #00AA00;"&gt;&amp;#40;&lt;/span&gt;document&lt;span style="color: #6666ff;"&gt;.body&lt;/span&gt;&lt;span style="color: #6666ff;"&gt;.clientWidth&lt;/span&gt; &lt;span style="color: #00AA00;"&gt;&amp;gt;&lt;/span&gt; &lt;span style="color: #cc66cc;"&gt;800&lt;/span&gt;? &lt;span style="color: #ff0000;"&gt;&amp;quot;800px&amp;quot;&lt;/span&gt;&lt;span style="color: #00AA00;"&gt;:&lt;/span&gt; &lt;span style="color: #ff0000;"&gt;&amp;quot;auto&amp;quot;&lt;/span&gt; &lt;span style="color: #00AA00;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #00AA00;"&gt;;&lt;/span&gt;
&lt;span style="color: #00AA00;"&gt;&amp;#125;&lt;/span&gt;
&amp;lt;/style&lt;span style="color: #00AA00;"&gt;&amp;gt;&lt;/span&gt;
&amp;lt;body&lt;span style="color: #00AA00;"&gt;&amp;gt;&lt;/span&gt;
&amp;lt;p&lt;span style="color: #00AA00;"&gt;&amp;gt;&lt;/span&gt;
&lt;span style="color: #00AA00;"&gt;&amp;#91;&lt;/span&gt;mucho texto&lt;span style="color: #00AA00;"&gt;&amp;#93;&lt;/span&gt;
&amp;lt;/p&lt;span style="color: #00AA00;"&gt;&amp;gt;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;De esta manera decimos que si el ancho de la ventana cliente es mayor que 800px, la mantenemos en 800px o si es menor, la dejamos automática. &lt;a href="http://www.svendtofte.com/code/max_width_in_ie/pixels_maxwidth.html"&gt;Ejemplo&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;!--adsense--&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/1o1w_TR7mrRXFTbupxTzAsCO9jE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/1o1w_TR7mrRXFTbupxTzAsCO9jE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/1o1w_TR7mrRXFTbupxTzAsCO9jE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/1o1w_TR7mrRXFTbupxTzAsCO9jE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=xm04_OkCmUM:g5qaiPM5V-M:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/xm04_OkCmUM" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/emular-selector-max-width-ie-expression/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/emular-selector-max-width-ie-expression/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/emular-selector-max-width-ie-expression/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Insertar imagenes en Excel desde C#]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/_LxYJxQz6gg/" />
		<id>http://www.forgottenprojects.com/2008/10/13/insertar-imagenes-en-excel-desde-c/</id>
		<updated>2008-10-21T12:38:23Z</updated>
		<published>2008-10-13T10:41:51Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Programacion" />		<summary type="html"><![CDATA[
			
				
			
		
Siguiendo con los post sobre cachitos de código que te hacen las vida más fácil (y que por lo visto hacen que aumenten las visitas del blog) hoy voy a hablar sobre como insertar una imagen en una hoja de Excel desde C# .NET
Todos estos fragmentos de código que voy subiendo solucionan problemillas concretos con [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/insertar-imagenes-excel-c/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Finsertar-imagenes-excel-c%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Finsertar-imagenes-excel-c%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Siguiendo con los post sobre cachitos de código que te hacen las vida más fácil (y que por lo visto hacen que aumenten las visitas del blog) hoy voy a hablar sobre como insertar una imagen en una hoja de Excel desde C# .NET&lt;/p&gt;
&lt;p&gt;Todos estos fragmentos de código que voy subiendo solucionan problemillas concretos con los que me topo en los proyectos en los que trabajo y sobre los cuales tampoco encuentro información relevante en Google.&lt;/p&gt;
&lt;p&gt;Empecemos, escribo el código y lo comento:&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;1
2
3
4
5
6
7
8
9
10
11
12
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="csharp" style="font-family:monospace;"&gt;&lt;span style="color: #FF0000;"&gt;object&lt;/span&gt; oMissing &lt;span style="color: #008000;"&gt;=&lt;/span&gt; &lt;span style="color: #000000;"&gt;System.&lt;span style="color: #0000FF;"&gt;Reflection&lt;/span&gt;&lt;/span&gt;.&lt;span style="color: #0000FF;"&gt;Missing&lt;/span&gt;.&lt;span style="color: #0000FF;"&gt;Value&lt;/span&gt;&lt;span style="color: #008000;"&gt;;&lt;/span&gt;
Application apl &lt;span style="color: #008000;"&gt;=&lt;/span&gt; &lt;span style="color: #008000;"&gt;new&lt;/span&gt; Excel.&lt;span style="color: #0000FF;"&gt;ApplicationClass&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #008000;"&gt;;&lt;/span&gt;
Workbook libro &lt;span style="color: #008000;"&gt;=&lt;/span&gt; apl.&lt;span style="color: #0000FF;"&gt;Workbooks&lt;/span&gt;.&lt;span style="color: #0000FF;"&gt;Open&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #666666;"&gt;@&amp;quot;c:\temp\archivoexcel.xls&amp;quot;&lt;/span&gt;, oMissing, oMissing, oMissing, oMissing,
                  oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing&lt;span style="color: #000000;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #008000;"&gt;;&lt;/span&gt;
&amp;nbsp;
&lt;span style="color: #008080;"&gt;#region Insertar imagen en excel&lt;/span&gt;
Excel.&lt;span style="color: #0000FF;"&gt;Worksheet&lt;/span&gt; sheet &lt;span style="color: #008000;"&gt;=&lt;/span&gt; &lt;span style="color: #000000;"&gt;&amp;#40;&lt;/span&gt;Excel.&lt;span style="color: #0000FF;"&gt;Worksheet&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#41;&lt;/span&gt;libro.&lt;span style="color: #0000FF;"&gt;Sheets&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#91;&lt;/span&gt;&lt;span style="color: #FF0000;"&gt;1&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#93;&lt;/span&gt;&lt;span style="color: #008000;"&gt;;&lt;/span&gt;
&lt;span style="color: #000000;"&gt;System.&lt;span style="color: #0000FF;"&gt;Drawing&lt;/span&gt;&lt;/span&gt;.&lt;span style="color: #0000FF;"&gt;Image&lt;/span&gt; logo1 &lt;span style="color: #008000;"&gt;=&lt;/span&gt; &lt;span style="color: #000000;"&gt;System.&lt;span style="color: #0000FF;"&gt;Drawing&lt;/span&gt;&lt;/span&gt;.&lt;span style="color: #0000FF;"&gt;Image&lt;/span&gt;.&lt;span style="color: #0000FF;"&gt;FromFile&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #666666;"&gt;@&amp;quot;c:\temp\logoAena.png&amp;quot;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #008000;"&gt;;&lt;/span&gt;
sheet.&lt;span style="color: #0000FF;"&gt;Shapes&lt;/span&gt;.&lt;span style="color: #0000FF;"&gt;AddPicture&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #666666;"&gt;@&amp;quot;c:\temp\logoAena.png&amp;quot;&lt;/span&gt;, MsoTriState.&lt;span style="color: #0000FF;"&gt;msoFalse&lt;/span&gt;, MsoTriState.&lt;span style="color: #0000FF;"&gt;msoCTrue&lt;/span&gt;, 1f, 1f, logo1.&lt;span style="color: #0000FF;"&gt;Width&lt;/span&gt;, logo1.&lt;span style="color: #0000FF;"&gt;Height&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #008000;"&gt;;&lt;/span&gt;
&lt;span style="color: #008080;"&gt;#endregion&lt;/span&gt;
&amp;nbsp;
libro.&lt;span style="color: #0000FF;"&gt;SaveAs&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #666666;"&gt;@&amp;quot;c:\temp\excel.xls&amp;quot;&lt;/span&gt;, Excel.&lt;span style="color: #0000FF;"&gt;XlFileFormat&lt;/span&gt;.&lt;span style="color: #0000FF;"&gt;xlExcel9795&lt;/span&gt;, &lt;span style="color: #0600FF;"&gt;null&lt;/span&gt;, &lt;span style="color: #0600FF;"&gt;null&lt;/span&gt;, &lt;span style="color: #0600FF;"&gt;false&lt;/span&gt;, &lt;span style="color: #0600FF;"&gt;false&lt;/span&gt;, Excel.&lt;span style="color: #0000FF;"&gt;XlSaveAsAccessMode&lt;/span&gt;.&lt;span style="color: #0000FF;"&gt;xlNoChange&lt;/span&gt;, Excel.&lt;span style="color: #0000FF;"&gt;XlSaveConflictResolution&lt;/span&gt;.&lt;span style="color: #0000FF;"&gt;xlLocalSessionChanges&lt;/span&gt;, &lt;span style="color: #0600FF;"&gt;false&lt;/span&gt;, &lt;span style="color: #0600FF;"&gt;null&lt;/span&gt;, &lt;span style="color: #0600FF;"&gt;null&lt;/span&gt;, &lt;span style="color: #FF0000;"&gt;0&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #008000;"&gt;;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Vamos a ver línea por línea que hace cada cosa&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;2
3
4
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="csharp" style="font-family:monospace;"&gt;Application apl &lt;span style="color: #008000;"&gt;=&lt;/span&gt; &lt;span style="color: #008000;"&gt;new&lt;/span&gt; Excel.&lt;span style="color: #0000FF;"&gt;ApplicationClass&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #008000;"&gt;;&lt;/span&gt;
Workbook libro &lt;span style="color: #008000;"&gt;=&lt;/span&gt; apl.&lt;span style="color: #0000FF;"&gt;Workbooks&lt;/span&gt;.&lt;span style="color: #0000FF;"&gt;Open&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #666666;"&gt;@&amp;quot;c:\temp\archivoexcel.xls&amp;quot;&lt;/span&gt;, oMissing, oMissing, oMissing, oMissing,
                  oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing&lt;span style="color: #000000;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #008000;"&gt;;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Con estas lineas abrimos un archivo de Excel desde código, notaremos como se abre un proceso Excel.exe en el Administrador de Tareas, es necesario tener Excel Instalado e incluir la referencia al objeto COM: Excel Objects 11.0&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;7
8
9
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="csharp" style="font-family:monospace;"&gt;Excel.&lt;span style="color: #0000FF;"&gt;Worksheet&lt;/span&gt; sheet &lt;span style="color: #008000;"&gt;=&lt;/span&gt; &lt;span style="color: #000000;"&gt;&amp;#40;&lt;/span&gt;Excel.&lt;span style="color: #0000FF;"&gt;Worksheet&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#41;&lt;/span&gt;libro.&lt;span style="color: #0000FF;"&gt;Sheets&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#91;&lt;/span&gt;&lt;span style="color: #FF0000;"&gt;1&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#93;&lt;/span&gt;&lt;span style="color: #008000;"&gt;;&lt;/span&gt;
&lt;span style="color: #000000;"&gt;System.&lt;span style="color: #0000FF;"&gt;Drawing&lt;/span&gt;&lt;/span&gt;.&lt;span style="color: #0000FF;"&gt;Image&lt;/span&gt; logo1 &lt;span style="color: #008000;"&gt;=&lt;/span&gt; &lt;span style="color: #000000;"&gt;System.&lt;span style="color: #0000FF;"&gt;Drawing&lt;/span&gt;&lt;/span&gt;.&lt;span style="color: #0000FF;"&gt;Image&lt;/span&gt;.&lt;span style="color: #0000FF;"&gt;FromFile&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #666666;"&gt;@&amp;quot;c:\temp\ArchivoImagen.png&amp;quot;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #008000;"&gt;;&lt;/span&gt;
sheet.&lt;span style="color: #0000FF;"&gt;Shapes&lt;/span&gt;.&lt;span style="color: #0000FF;"&gt;AddPicture&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #666666;"&gt;@&amp;quot;c:\temp\logoAena.png&amp;quot;&lt;/span&gt;, MsoTriState.&lt;span style="color: #0000FF;"&gt;msoFalse&lt;/span&gt;, MsoTriState.&lt;span style="color: #0000FF;"&gt;msoCTrue&lt;/span&gt;, 1f, 1f, logo1.&lt;span style="color: #0000FF;"&gt;Width&lt;/span&gt;, logo1.&lt;span style="color: #0000FF;"&gt;Height&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #008000;"&gt;;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Con esas líneas seleccionamos la primera hoja del libro que hemos abierto, luego cargamos una imagen en un objeto Image y con sheet.Shapes.AddPicture añadimos la imagen en las coordenadas 1,1 (ojo, no son celdas, son coordenadas en pixeles (y de tipo float)&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;12
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="csharp" style="font-family:monospace;"&gt;libro.&lt;span style="color: #0000FF;"&gt;SaveAs&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #666666;"&gt;@&amp;quot;c:\temp\excel.xls&amp;quot;&lt;/span&gt;, Excel.&lt;span style="color: #0000FF;"&gt;XlFileFormat&lt;/span&gt;.&lt;span style="color: #0000FF;"&gt;xlExcel9795&lt;/span&gt;, &lt;span style="color: #0600FF;"&gt;null&lt;/span&gt;, &lt;span style="color: #0600FF;"&gt;null&lt;/span&gt;, &lt;span style="color: #0600FF;"&gt;false&lt;/span&gt;, &lt;span style="color: #0600FF;"&gt;false&lt;/span&gt;, Excel.&lt;span style="color: #0000FF;"&gt;XlSaveAsAccessMode&lt;/span&gt;.&lt;span style="color: #0000FF;"&gt;xlNoChange&lt;/span&gt;, Excel.&lt;span style="color: #0000FF;"&gt;XlSaveConflictResolution&lt;/span&gt;.&lt;span style="color: #0000FF;"&gt;xlLocalSessionChanges&lt;/span&gt;, &lt;span style="color: #0600FF;"&gt;false&lt;/span&gt;, &lt;span style="color: #0600FF;"&gt;null&lt;/span&gt;, &lt;span style="color: #0600FF;"&gt;null&lt;/span&gt;, &lt;span style="color: #FF0000;"&gt;0&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #008000;"&gt;;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Con esa línea salvamos el archivo con el nombre que queramos y ya está, ya tenemos un excel con una imagen. No hace falta que el Excel esté vacío, podemos abrir un excel con contenido y poner la imagen donde queramos.&lt;/p&gt;
&lt;p&gt;¿Te ha servido? Apoya este blog:&lt;br /&gt;
&lt;!--adsense--&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/FUUwc_Pr7-BRAPkLtS7P20sMsBY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/FUUwc_Pr7-BRAPkLtS7P20sMsBY/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/FUUwc_Pr7-BRAPkLtS7P20sMsBY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/FUUwc_Pr7-BRAPkLtS7P20sMsBY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=_LxYJxQz6gg:5iLNlOgmDPA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/_LxYJxQz6gg" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/insertar-imagenes-excel-c/#comments" thr:count="6" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/insertar-imagenes-excel-c/feed/atom/" thr:count="6" />
		<thr:total>6</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/insertar-imagenes-excel-c/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Capitalize string en javascript]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/sM0sXIGdHFg/" />
		<id>http://www.forgottenprojects.com/2008/10/09/capitalize-string-en-javascript/</id>
		<updated>2008-10-13T12:18:13Z</updated>
		<published>2008-10-09T15:32:22Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Programacion" />		<summary type="html"><![CDATA[
			
				
			
		
He encontrado por ahí una función muy útil para capitalizar cada palabra de un string en javascript, viene con autor y sitio web

1
2
3
4
5
6
7
//+ Jonas Raoni Soares Silva
//@ http://jsfromhell.com/string/capitalize [rev. #1]
String.prototype.capitalize = function&#40;&#41;&#123;
    return this.replace&#40;/\w+/g, function&#40;a&#41;&#123;
        return a.charAt&#40;0&#41;.toUpperCase&#40;&#41; + a.slice&#40;1&#41;.toLowerCase&#40;&#41;;
    &#125;&#41;;
&#125;;

Uso:
capitalizada = cadena.capitalize();
Ejemplo:
a="hola [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/capitalize-string-en-javascript/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcapitalize-string-en-javascript%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fcapitalize-string-en-javascript%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;He encontrado por ahí una función muy útil para capitalizar cada palabra de un string en javascript, viene con autor y sitio web&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;1
2
3
4
5
6
7
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="javascript" style="font-family:monospace;"&gt;&lt;span style="color: #006600; font-style: italic;"&gt;//+ Jonas Raoni Soares Silva&lt;/span&gt;
&lt;span style="color: #006600; font-style: italic;"&gt;//@ http://jsfromhell.com/string/capitalize [rev. #1]&lt;/span&gt;
String.&lt;span style="color: #660066;"&gt;prototype&lt;/span&gt;.&lt;span style="color: #660066;"&gt;capitalize&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #003366; font-weight: bold;"&gt;function&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;
    &lt;span style="color: #000066; font-weight: bold;"&gt;return&lt;/span&gt; &lt;span style="color: #000066; font-weight: bold;"&gt;this&lt;/span&gt;.&lt;span style="color: #660066;"&gt;replace&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009966; font-style: italic;"&gt;/\w+/g&lt;/span&gt;&lt;span style="color: #339933;"&gt;,&lt;/span&gt; &lt;span style="color: #003366; font-weight: bold;"&gt;function&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;a&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;
        &lt;span style="color: #000066; font-weight: bold;"&gt;return&lt;/span&gt; a.&lt;span style="color: #660066;"&gt;charAt&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #CC0000;"&gt;0&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;.&lt;span style="color: #660066;"&gt;toUpperCase&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt; &lt;span style="color: #339933;"&gt;+&lt;/span&gt; a.&lt;span style="color: #660066;"&gt;slice&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #CC0000;"&gt;1&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;.&lt;span style="color: #660066;"&gt;toLowerCase&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
    &lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
&lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;Uso&lt;/strong&gt;:&lt;br /&gt;
&lt;code&gt;capitalizada = cadena.capitalize();&lt;/code&gt;&lt;br /&gt;
&lt;strong&gt;Ejemplo&lt;/strong&gt;:&lt;br /&gt;
&lt;code&gt;a="hola MUNDO mua hahahaha haha ha";&lt;br /&gt;
a.capitalize();&lt;br /&gt;
Devuelve:Hola Mundo Mua Hahahaha Haha Ha&lt;br /&gt;
&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;objeto.&lt;strong&gt;prototype&lt;/strong&gt;.metodo permite añadir métodos nuevos a objetos que antes no los tenian, así &lt;strong&gt;String.prototype.capitalize&lt;/strong&gt; hace que se añada al objeto string un nuevo método llamado capitalize, el cual decimos que es una función con &lt;strong&gt;capitalize=function(){&amp;#8230;}&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;/\w+/g&lt;/strong&gt; es una expresion regular que hace que busquemos en la cadena cualquier dígito, letra o guión bajo (no espacios)(mediante \w), que haya almenos un carácter (con +) y que esté al comienzo (mediante /g).&lt;/p&gt;
&lt;p&gt;Así por cada palabra llamamos a la función que hace mayúscula la primera letra y minúscula las demás y las devolvemos.&lt;/p&gt;
&lt;p&gt;y si solo queremos poner en mayúsculas la primera letra de todo el string&lt;/p&gt;

&lt;div class="wp_syntax"&gt;&lt;table&gt;&lt;tr&gt;&lt;td class="line_numbers"&gt;&lt;pre&gt;1
2
3
&lt;/pre&gt;&lt;/td&gt;&lt;td class="code"&gt;&lt;pre class="javascript" style="font-family:monospace;"&gt;String.&lt;span style="color: #660066;"&gt;prototype&lt;/span&gt;.&lt;span style="color: #660066;"&gt;capitalize2&lt;/span&gt; &lt;span style="color: #339933;"&gt;=&lt;/span&gt; &lt;span style="color: #003366; font-weight: bold;"&gt;function&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#123;&lt;/span&gt;
       &lt;span style="color: #000066; font-weight: bold;"&gt;return&lt;/span&gt; &lt;span style="color: #000066; font-weight: bold;"&gt;this&lt;/span&gt;.&lt;span style="color: #660066;"&gt;charAt&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #CC0000;"&gt;0&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;.&lt;span style="color: #660066;"&gt;toUpperCase&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt; &lt;span style="color: #339933;"&gt;+&lt;/span&gt; &lt;span style="color: #000066; font-weight: bold;"&gt;this&lt;/span&gt;.&lt;span style="color: #660066;"&gt;slice&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #CC0000;"&gt;1&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;.&lt;span style="color: #660066;"&gt;toLowerCase&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#40;&lt;/span&gt;&lt;span style="color: #009900;"&gt;&amp;#41;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;
&lt;span style="color: #009900;"&gt;&amp;#125;&lt;/span&gt;&lt;span style="color: #339933;"&gt;;&lt;/span&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;Uso&lt;/strong&gt;:&lt;br /&gt;
&lt;code&gt;frase=cadena.capitalize2();&lt;/code&gt;&lt;br /&gt;
&lt;strong&gt;Ejemplo&lt;/strong&gt;:&lt;br /&gt;
&lt;code&gt;a="hola MUNDO mua hahahaha haha ha";&lt;br /&gt;
a.capitalize2();&lt;br /&gt;
Devuelve:Hola mundo mua hahahaha haha ha&lt;br /&gt;
&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;¿Te ha gustado? ¿Un clic aquí?&lt;br /&gt;
&lt;!--adsense--&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/3OMuUpVuO4tcnvIbS9YW-aL-Hpo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/3OMuUpVuO4tcnvIbS9YW-aL-Hpo/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/3OMuUpVuO4tcnvIbS9YW-aL-Hpo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/3OMuUpVuO4tcnvIbS9YW-aL-Hpo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=sM0sXIGdHFg:onkIH7sQ66U:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/sM0sXIGdHFg" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/capitalize-string-en-javascript/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/capitalize-string-en-javascript/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/capitalize-string-en-javascript/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Recursos para diseño web]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/6HXtXYeoqPk/" />
		<id>http://www.forgottenprojects.com/2008/10/08/recursos-para-diseno-web/</id>
		<updated>2008-10-08T16:36:45Z</updated>
		<published>2008-10-08T16:30:36Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Programacion" /><category scheme="http://www.forgottenprojects.com" term="Tecnología" />		<summary type="html"><![CDATA[
			
				
			
		
Para aquellos que nos gusta diseñar aplicaciones web o tenemos un blog en wordpress, vía Anieto2K encuentro un par de enlaces a 15000 iconos divididos en 7500 y otros 7500 y 70 temas para wordpress, a ver si algún día me animo y hago mi propio tema, aunque para variar ando enfrascado en varios proyectos [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/recursos-para-diseno-web/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Frecursos-para-diseno-web%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Frecursos-para-diseno-web%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Para aquellos que nos gusta diseñar aplicaciones web o tenemos un blog en wordpress, vía &lt;a href="http://www.anieto2k.com/"&gt;Anieto2K&lt;/a&gt; encuentro un par de enlaces a 15000 iconos divididos &lt;a href="http://wydstudios.com/blog/mega-coleccion-de-iconos-mas-de-7500/" target="_blank"&gt;en 7500&lt;/a&gt; y &lt;a href="http://wydstudios.com/blog/mega-coleccion-de-iconos-2-mas-de-7500-nuevos/" target="_blank"&gt;otros 7500&lt;/a&gt; y &lt;a href="http://www.1stwebdesigner.com/wordpress/70-free-and-premium-wordpress-themes/" target="_blank"&gt;70 temas para wordpress&lt;/a&gt;, a ver si algún día me animo y hago mi propio tema, aunque para variar ando enfrascado en varios proyectos &lt;img src='http://www.forgottenprojects.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /&gt; &lt;/p&gt;
&lt;p&gt;Y para aquellos que quieran depurar javascript pero no usan &lt;a href="http://www.mozilla-europe.org/es/firefox/"&gt;Firefox&lt;/a&gt; y no pueden descargarse la maravillosa e imprescindible extensión &lt;a href="http://getfirebug.com/"&gt;Firebug&lt;/a&gt; para depuración y desarrollo web, existe &lt;a href="http://www.sitecrafting.com/jscommandlet/"&gt;JSComandlet&lt;/a&gt;, para depurar javascript con javascript y es virtualmente funcional en cualquier navegador que soporte javascript (si, depurar javascript en &lt;abbr title="IE"&gt;internet explorer&lt;/abbr&gt;)&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.anieto2k.com/"&gt;Anieto2k&lt;/a&gt; es un blog muy interesante para desarrolladores web ya que se tratan multitud de temas sobre javascript, CSS, Wordpress entre otras aplicaciones interesantes destinadas a la web.&lt;/p&gt;
&lt;p&gt;&lt;!--adsense--&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/H7zme_QxQY3S6KAf1tM4eM-qmLs/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/H7zme_QxQY3S6KAf1tM4eM-qmLs/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/H7zme_QxQY3S6KAf1tM4eM-qmLs/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/H7zme_QxQY3S6KAf1tM4eM-qmLs/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=6HXtXYeoqPk:59s1hDwjxOU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/6HXtXYeoqPk" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/recursos-para-diseno-web/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/recursos-para-diseno-web/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/recursos-para-diseno-web/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Picasa Web Albums]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/GcZm3qsNXZM/" />
		<id>http://www.forgottenprojects.com/2008/10/07/picasa-web-albums/</id>
		<updated>2008-10-07T17:11:34Z</updated>
		<published>2008-10-07T17:03:40Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Interesante" /><category scheme="http://www.forgottenprojects.com" term="Tecnología" />		<summary type="html"><![CDATA[
			
				
			
		

Picasa es el organizador de fotos de Google, el cual te organiza las fotos por tags, favoritos, cronología, etc. Además tiene algunas virtudes como corregir automáticamente los ojos rojos de las fotos o el brillo y el contraste con un simple clic.
Al margen de estas cosas que siempre vienen bien, yo quería hablar de los [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/picasa-web-albums/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fpicasa-web-albums%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Fpicasa-web-albums%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;&lt;img src="http://picasaweb.google.com/s/v/e/38.09/f-6tcHDGwoY/img/logo/pwa-en_US.gif" alt="Picasa logo" /&gt;&lt;br /&gt;
&lt;a href="http://picasa.google.com/intl/es/"&gt;Picasa&lt;/a&gt; es el organizador de fotos de Google, el cual te organiza las fotos por tags, favoritos, cronología, etc. Además tiene algunas virtudes como corregir automáticamente los ojos rojos de las fotos o el brillo y el contraste con un simple clic.&lt;/p&gt;
&lt;p&gt;Al margen de estas cosas que siempre vienen bien, yo quería hablar de los &lt;a href="http://picasaweb.google.es/"&gt;álbumes web de picasa&lt;/a&gt;, que como habéis podido comprobar, me gusta usar. Desde el propio programa se pueden seleccionar las fotos de la biblioteca que queremos subir a internet para guardar o compartir con los amigos o con internet en general. Una vez subidas en su álbum apropiado, tiene una serie de características que lo hacen tremendamente interesante y que he estado trasteando con ellas recientemente.&lt;/p&gt;
&lt;p&gt;Una de ellas es la posibilidad de &lt;abbr title="Poner en un mapa"&gt;geolocalizar&lt;/abbr&gt; nuestras fotos en caso de que no se incluyan datos geográficos en el &lt;abbr title="Exchangeable image file format. Datos contenidos en una imagen"&gt;EXIF&lt;/abbr&gt; de la imagen. Esta característica ya la tenía flickr aunque yo creo que se usa mejor en Picasa.&lt;/p&gt;
&lt;p&gt;Otras dos opciones que hasta ahora sólo he visto en la versión inglesa de la aplicación, que siempre añaden las funcionalidades nuevas antes que el resto (yendo a settings y cambiando el idioma a Inglés USA), son: la posibilidad de incrustar (embed) un álbum en un sitio web mediante una presentación en flash la mar de resultona, y la posibillidad de detectar las caras de los individuos que aparecen en las fotos y etiquetarlos para su posterior identificación.&lt;/p&gt;
&lt;p&gt;Me ha encantado la segunda, ya que los temas de &lt;abbr title="Facial recognition"&gt;reconocimiento facial&lt;/abbr&gt; me llaman mucho la atención, porque encuentra muy acertadamente las caras, aunque sean muy pequeñas dentro de la foto, y cuando no está seguro de a quién pertenece la cara, te muestra sugerencias bastante acertadas sobre de quién puede ser la cara que estás etiquetando. Aunque también me ha dado unos cuantos positivos tales como una llanta y una antena de una casa, al margen de pinturas y estatuas, he de decir que es muy acertado, y la verdad es que con la base de datos de imagenes de Google, sería super interesante poder buscar en internet todas las fotos con la cara de una persona, aunque como siempre, aunque no se hasta que punto, se estaría invadiendo la intimidad del individuo, aunque siendo fotos públicas, no debería ser demasiado grave salvo que esas fotos estén ahí sin su conocimiento/consentimiento. &lt;/p&gt;
&lt;p&gt;Al menos hasta donde yo he visto, las caras que etiquetas en Picasa no son públicas salvo que tu decidas hacerlas, aunque si haces pública la cara de otra persona ya estás otra vez vulnerando la intimidad de la persona&amp;#8230;&lt;br /&gt;
&lt;!--adsense--&gt;&lt;/p&gt;
&lt;p&gt;&lt;a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"&gt;Compártelo&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/eRBYwuTd_e0eOP7BjUBXu6__lJM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/eRBYwuTd_e0eOP7BjUBXu6__lJM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/eRBYwuTd_e0eOP7BjUBXu6__lJM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/eRBYwuTd_e0eOP7BjUBXu6__lJM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?a=GcZm3qsNXZM:4dnX_qnE2Oc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/ThreeHeadedMonkeys?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/ThreeHeadedMonkeys/~4/GcZm3qsNXZM" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.forgottenprojects.com/picasa-web-albums/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.forgottenprojects.com/picasa-web-albums/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.forgottenprojects.com/picasa-web-albums/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Fernando Gallego</name>
					</author>
		<title type="html"><![CDATA[Fotos de Italia]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ThreeHeadedMonkeys/~3/azdjbKC6MG0/" />
		<id>http://www.forgottenprojects.com/2008/10/07/fotos-de-italia/</id>
		<updated>2008-10-21T12:38:47Z</updated>
		<published>2008-10-07T10:00:24Z</published>
		<category scheme="http://www.forgottenprojects.com" term="Personal" /><category scheme="http://www.forgottenprojects.com" term="Viaje a italia" /><category scheme="http://www.forgottenprojects.com" term="fotolog" />		<summary type="html"><![CDATA[
			
				
			
		
Estaba probando la presentación de fotos de los álbumes web de picasa y he decidido añadirla a la página de fotos de mi blog para que todos puedan ver las fotos del viaje sin necesidad de entrar a Picasa.
Dentro de poco haré un post contando el viaje, mientras tanto podéis ver las fotos aquí
Un aperitivo:

Un [...]]]></summary>
		<content type="html" xml:base="http://www.forgottenprojects.com/fotos-viaje-italia/">&lt;div class="tweetmeme_button" style="float: right; margin-left: 10px;"&gt;
			&lt;a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.forgottenprojects.com%2Ffotos-viaje-italia%2F"&gt;&lt;br /&gt;
				&lt;img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.forgottenprojects.com%2Ffotos-viaje-italia%2F&amp;amp;source=ferdy182&amp;amp;style=normal&amp;amp;service=ow.ly" height="61" width="50" /&gt;&lt;br /&gt;
			&lt;/a&gt;
		&lt;/div&gt;
&lt;p&gt;Estaba probando la presentación de fotos de los &lt;a href="http://picasaweb.google.com/ferdy182"&gt;álbumes web de picasa&lt;/a&gt; y he decidido añadirla a la página de fotos de mi blog para que todos puedan ver las fotos del viaje sin necesidad de entrar a Picasa.&lt;/p&gt;
&lt;p&gt;Dentro de poco haré un post contando el viaje, mientras tanto podéis ver las fotos &lt;a href="http://www.forgottenprojects.com/galeria/"&gt;aquí&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Un aperitivo:&lt;br /&g