<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Pablo&#039;s new site</title>
	<atom:link href="http://pupeno.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://pupeno.com</link>
	<description>A bit of this, a bit of that and a lot about computers</description>
	<lastBuildDate>Sun, 29 Aug 2010 08:55:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Show a devise log in form in another page</title>
		<link>http://pupeno.com/blog/show-a-devise-log-in-form-in-another-page/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=show-a-devise-log-in-form-in-another-page</link>
		<comments>http://pupeno.com/blog/show-a-devise-log-in-form-in-another-page/#comments</comments>
		<pubDate>Sun, 29 Aug 2010 08:55:25 +0000</pubDate>
		<dc:creator>J. Pablo Fernández</dc:creator>
				<category><![CDATA[tutorial]]></category>
		<category><![CDATA[Devise]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://pupeno.com/?p=1721</guid>
		<description><![CDATA[Devise create various forms, among them one for signing up and one for logging in of course. These are the forms as they are generated in Devise 1.0.8: &#60;h2&#62;Sign up&#60;/h2&#62; &#160; &#60;% form_for resource_name, resource, :url =&#62; registration_path&#40;resource_name&#41; do &#124;f&#124; &#8230; <a href="http://pupeno.com/blog/show-a-devise-log-in-form-in-another-page/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Devise create various forms, among them one for signing up and one for logging in of course. These are the forms as they are generated in Devise 1.0.8:</p>

<div class="wp_syntax"><div class="code"><pre class="rails" style="font-family:monospace;">&lt;h2&gt;Sign up&lt;/h2&gt;
&nbsp;
<span style="color:#006600; font-weight:bold;">&lt;%</span> <span style="color:#5A0A0A; font-weight:bold;">form_for</span> resource_name, resource, <span style="color:#ff3333; font-weight:bold;">:url</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> registration_path<span style="color:#006600; font-weight:bold;">&#40;</span>resource_name<span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#9966CC; font-weight:bold;">do</span> <span style="color:#006600; font-weight:bold;">|</span>f<span style="color:#006600; font-weight:bold;">|</span> <span style="color:#006600; font-weight:bold;">-%&gt;</span>
  <span style="color:#006600; font-weight:bold;">&lt;%</span>= f.<span style="color:#9900CC;">error_messages</span> <span style="color:#006600; font-weight:bold;">%&gt;</span>
  &lt;p&gt;<span style="color:#006600; font-weight:bold;">&lt;%</span>= f.<span style="color:#9900CC;">label</span> <span style="color:#ff3333; font-weight:bold;">:email</span> <span style="color:#006600; font-weight:bold;">%&gt;</span>&lt;/p&gt;
  &lt;p&gt;<span style="color:#006600; font-weight:bold;">&lt;%</span>= f.<span style="color:#9900CC;">text_field</span> <span style="color:#ff3333; font-weight:bold;">:email</span> <span style="color:#006600; font-weight:bold;">%&gt;</span>&lt;/p&gt;
&nbsp;
  &lt;p&gt;<span style="color:#006600; font-weight:bold;">&lt;%</span>= f.<span style="color:#9900CC;">label</span> <span style="color:#ff3333; font-weight:bold;">:password</span> <span style="color:#006600; font-weight:bold;">%&gt;</span>&lt;/p&gt;
  &lt;p&gt;<span style="color:#006600; font-weight:bold;">&lt;%</span>= f.<span style="color:#5A0A0A; font-weight:bold;">password_field</span> <span style="color:#ff3333; font-weight:bold;">:password</span> <span style="color:#006600; font-weight:bold;">%&gt;</span>&lt;/p&gt;
&nbsp;
  &lt;p&gt;<span style="color:#006600; font-weight:bold;">&lt;%</span>= f.<span style="color:#9900CC;">label</span> <span style="color:#ff3333; font-weight:bold;">:password_confirmation</span> <span style="color:#006600; font-weight:bold;">%&gt;</span>&lt;/p&gt;
  &lt;p&gt;<span style="color:#006600; font-weight:bold;">&lt;%</span>= f.<span style="color:#5A0A0A; font-weight:bold;">password_field</span> <span style="color:#ff3333; font-weight:bold;">:password_confirmation</span> <span style="color:#006600; font-weight:bold;">%&gt;</span>&lt;/p&gt;
&nbsp;
  &lt;p&gt;<span style="color:#006600; font-weight:bold;">&lt;%</span>= f.<span style="color:#9900CC;">submit</span> <span style="color:#996600;">&quot;Sign up&quot;</span> <span style="color:#006600; font-weight:bold;">%&gt;</span>&lt;/p&gt;
<span style="color:#006600; font-weight:bold;">&lt;%</span> <span style="color:#9966CC; font-weight:bold;">end</span> <span style="color:#006600; font-weight:bold;">-%&gt;</span>
&nbsp;
<span style="color:#006600; font-weight:bold;">&lt;%</span>= <span style="color:#5A0A0A; font-weight:bold;">render</span> <span style="color:#ff3333; font-weight:bold;">:partial</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">&quot;shared/devise_links&quot;</span> <span style="color:#006600; font-weight:bold;">%&gt;</span></pre></div></div>

<p>and</p>

<div class="wp_syntax"><div class="code"><pre class="rails" style="font-family:monospace;">&lt;h2&gt;Sign in&lt;/h2&gt;
&nbsp;
<span style="color:#006600; font-weight:bold;">&lt;%</span> <span style="color:#5A0A0A; font-weight:bold;">form_for</span> resource_name, resource, <span style="color:#ff3333; font-weight:bold;">:url</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> session_path<span style="color:#006600; font-weight:bold;">&#40;</span>resource_name<span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#9966CC; font-weight:bold;">do</span> <span style="color:#006600; font-weight:bold;">|</span>f<span style="color:#006600; font-weight:bold;">|</span> <span style="color:#006600; font-weight:bold;">-%&gt;</span>
  &lt;p&gt;<span style="color:#006600; font-weight:bold;">&lt;%</span>= f.<span style="color:#9900CC;">label</span> <span style="color:#ff3333; font-weight:bold;">:email</span> <span style="color:#006600; font-weight:bold;">%&gt;</span>&lt;/p&gt;
  &lt;p&gt;<span style="color:#006600; font-weight:bold;">&lt;%</span>= f.<span style="color:#9900CC;">text_field</span> <span style="color:#ff3333; font-weight:bold;">:email</span> <span style="color:#006600; font-weight:bold;">%&gt;</span>&lt;/p&gt;
&nbsp;
  &lt;p&gt;<span style="color:#006600; font-weight:bold;">&lt;%</span>= f.<span style="color:#9900CC;">label</span> <span style="color:#ff3333; font-weight:bold;">:password</span> <span style="color:#006600; font-weight:bold;">%&gt;</span>&lt;/p&gt;
  &lt;p&gt;<span style="color:#006600; font-weight:bold;">&lt;%</span>= f.<span style="color:#5A0A0A; font-weight:bold;">password_field</span> <span style="color:#ff3333; font-weight:bold;">:password</span> <span style="color:#006600; font-weight:bold;">%&gt;</span>&lt;/p&gt;
&nbsp;
  <span style="color:#006600; font-weight:bold;">&lt;%</span> <span style="color:#9966CC; font-weight:bold;">if</span> devise_mapping.<span style="color:#9900CC;">rememberable</span>? <span style="color:#006600; font-weight:bold;">-%&gt;</span>
    &lt;p&gt;<span style="color:#006600; font-weight:bold;">&lt;%</span>= f.<span style="color:#5A0A0A; font-weight:bold;">check_box</span> <span style="color:#ff3333; font-weight:bold;">:remember_me</span> <span style="color:#006600; font-weight:bold;">%&gt;</span> <span style="color:#006600; font-weight:bold;">&lt;%</span>= f.<span style="color:#9900CC;">label</span> <span style="color:#ff3333; font-weight:bold;">:remember_me</span> <span style="color:#006600; font-weight:bold;">%&gt;</span>&lt;/p&gt;
  <span style="color:#006600; font-weight:bold;">&lt;%</span> <span style="color:#9966CC; font-weight:bold;">end</span> <span style="color:#006600; font-weight:bold;">-%&gt;</span>
&nbsp;
  &lt;p&gt;<span style="color:#006600; font-weight:bold;">&lt;%</span>= f.<span style="color:#9900CC;">submit</span> <span style="color:#996600;">&quot;Sign in&quot;</span> <span style="color:#006600; font-weight:bold;">%&gt;</span>&lt;/p&gt;
<span style="color:#006600; font-weight:bold;">&lt;%</span> <span style="color:#9966CC; font-weight:bold;">end</span> <span style="color:#006600; font-weight:bold;">-%&gt;</span>
&nbsp;
<span style="color:#006600; font-weight:bold;">&lt;%</span>= <span style="color:#5A0A0A; font-weight:bold;">render</span> <span style="color:#ff3333; font-weight:bold;">:partial</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#996600;">&quot;shared/devise_links&quot;</span> <span style="color:#006600; font-weight:bold;">%&gt;</span></pre></div></div>

<p>If you try to put them somewhere else you&#8217;ll run into some problem. There are some variables/methods those forms use that you&#8217;ll be lacking, specifically: resource_name, resource and for logging in also devise_mapping. I&#8217;ve recently tried to put them both in the homepage for an <a href="http://restraq.com">upcoming project of mine</a> and this is how I&#8217;ve solved it:</p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#9966CC; font-weight:bold;">module</span> ContentHelper
  <span style="color:#9966CC; font-weight:bold;">def</span> resource_name
    <span style="color:#ff3333; font-weight:bold;">:user</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
  <span style="color:#9966CC; font-weight:bold;">def</span> resource
    <span style="color:#0066ff; font-weight:bold;">@resource</span> <span style="color:#006600; font-weight:bold;">||</span>= User.<span style="color:#9900CC;">new</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
  <span style="color:#9966CC; font-weight:bold;">def</span> devise_mapping
    <span style="color:#0066ff; font-weight:bold;">@devise_mapping</span> <span style="color:#006600; font-weight:bold;">||</span>= Devise.<span style="color:#9900CC;">mappings</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#ff3333; font-weight:bold;">:user</span><span style="color:#006600; font-weight:bold;">&#93;</span>
  <span style="color:#9966CC; font-weight:bold;">end</span>
<span style="color:#9966CC; font-weight:bold;">end</span></pre></div></div>



<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://pupeno.com/blog/show-a-devise-log-in-form-in-another-page/&amp;title=Show+a+devise+log+in+form+in+another+page" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://pupeno.com/blog/show-a-devise-log-in-form-in-another-page/&amp;title=Show+a+devise+log+in+form+in+another+page" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://pupeno.com/blog/show-a-devise-log-in-form-in-another-page/&amp;title=Show+a+devise+log+in+form+in+another+page&amp;desc=Devise%20create%20various%20forms%2C%20among%20them%20one%20for%20signing%20up%20and%20one%20for%20logging%20in%20of%20course.%20These%20are%20the%20forms%20as%20they%20are%20generated%20in%20Devise%201.0.8%3A%0D%0A%0D%0A%26lt%3Bh2%26gt%3BSign%20up%26lt%3B%2Fh2%26gt%3B%0D%0A%0D%0A%26lt%3B%25%20form_for%20resource_name%2C%20resource%2C%20%3Aurl%20%3D%26gt%3B%20registration_path%28resource_name%29%20do%20%7Cf%7C%20-%25%26gt%3B%0D%0A%20%20%26lt%3B%25%3D%20f.err" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://pupeno.com/blog/show-a-devise-log-in-form-in-another-page/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://pupeno.com/blog/show-a-devise-log-in-form-in-another-page/&amp;bm_description=Show+a+devise+log+in+form+in+another+page&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://pupeno.com/blog/show-a-devise-log-in-form-in-another-page/&amp;title=Show+a+devise+log+in+form+in+another+page" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://pupeno.com/blog/show-a-devise-log-in-form-in-another-page/&amp;title=Show+a+devise+log+in+form+in+another+page" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://pupeno.com/blog/show-a-devise-log-in-form-in-another-page/&amp;title=Show+a+devise+log+in+form+in+another+page" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://pupeno.com/blog/show-a-devise-log-in-form-in-another-page/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Show+a+devise+log+in+form+in+another+page+-+http://b2l.me/amvu3s&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://pupeno.com/blog/show-a-devise-log-in-form-in-another-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t ignore the technology!</title>
		<link>http://pupeno.com/blog/dont-ignore-the-technology/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=dont-ignore-the-technology</link>
		<comments>http://pupeno.com/blog/dont-ignore-the-technology/#comments</comments>
		<pubDate>Tue, 24 Aug 2010 05:53:25 +0000</pubDate>
		<dc:creator>J. Pablo Fernández</dc:creator>
				<category><![CDATA[rant]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://pupeno.com/?p=1776</guid>
		<description><![CDATA[Technology is making the word more efficient. At some point, communicating with a person far away, required writing down the message with ink in a piece of dead tree and have someone or some company physically move that to the &#8230; <a href="http://pupeno.com/blog/dont-ignore-the-technology/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Technology is making the word more efficient. At some point, communicating with a person far away, required writing down the message with ink in a piece of dead tree and have someone or some company physically move that to the other location. Now we fire an email and it&#8217; there in seconds.</p>
<p>I&#8217;m actually not sure if in that case we are more efficient (global communication infrastructure vs global transportation infrastructure and gas for the trucks and planes), we are definitely faster.</p>
<p>Recently my oven broke. The door is not stoping when it should and goes almost all the way to the floor when you open it. I&#8217;ve notified the management company and wanting to make the process more efficient I&#8217;ve recorded a video of the issue and sent it to them. Ah, technology, love it!</p>
<p>Today the repair main arrived (at 7:30hs, very Swiss). He open the door and&#8230; &#8220;Ah! It&#8217;s broken, I&#8217;ll come back next week with the spare parts.&#8221;</p>
<p>Honestly I wasn&#8217;t surprised, but we already have the technology to make this whole thing more efficient, I did my part and I was ignored. I bet the apartment management company never sent the guy the video.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://pupeno.com/blog/dont-ignore-the-technology/&amp;title=Don%27t+ignore+the+technology%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://pupeno.com/blog/dont-ignore-the-technology/&amp;title=Don%27t+ignore+the+technology%21" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://pupeno.com/blog/dont-ignore-the-technology/&amp;title=Don%27t+ignore+the+technology%21&amp;desc=Technology%20is%20making%20the%20word%20more%20efficient.%20At%20some%20point%2C%20communicating%20with%20a%20person%20far%20away%2C%20required%20writing%20down%20the%20message%20with%20ink%20in%20a%20piece%20of%20dead%20tree%20and%20have%20someone%20or%20some%20company%20physically%20move%20that%20to%20the%20other%20location.%20Now%20we%20fire%20an%20email%20and%20it%27%20there%20in%20seconds.%0D%0A%0D%0AI%27m%20act" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://pupeno.com/blog/dont-ignore-the-technology/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://pupeno.com/blog/dont-ignore-the-technology/&amp;bm_description=Don%27t+ignore+the+technology%21&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://pupeno.com/blog/dont-ignore-the-technology/&amp;title=Don%27t+ignore+the+technology%21" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://pupeno.com/blog/dont-ignore-the-technology/&amp;title=Don%27t+ignore+the+technology%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://pupeno.com/blog/dont-ignore-the-technology/&amp;title=Don%27t+ignore+the+technology%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://pupeno.com/blog/dont-ignore-the-technology/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Don%27t+ignore+the+technology%21+-+http://b2l.me/akkbfr&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://pupeno.com/blog/dont-ignore-the-technology/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flying my Extra 300S</title>
		<link>http://pupeno.com/blog/flying-my-extra-300s/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=flying-my-extra-300s</link>
		<comments>http://pupeno.com/blog/flying-my-extra-300s/#comments</comments>
		<pubDate>Sun, 22 Aug 2010 16:40:36 +0000</pubDate>
		<dc:creator>J. Pablo Fernández</dc:creator>
				<category><![CDATA[other]]></category>
		<category><![CDATA[airplane]]></category>
		<category><![CDATA[control]]></category>
		<category><![CDATA[Extra 300S]]></category>
		<category><![CDATA[radio]]></category>
		<category><![CDATA[radio-control]]></category>
		<category><![CDATA[radiocontrol]]></category>
		<category><![CDATA[RCPower]]></category>

		<guid isPermaLink="false">http://pupeno.com/?p=1774</guid>
		<description><![CDATA[Share this on del.icio.us Digg this! Post this on Diigo Post on Google Buzz Add this to Mister Wong Share this on Mixx Share this on Reddit Stumble upon something good? Share it on StumbleUpon Share this on Technorati Tweet &#8230; <a href="http://pupeno.com/blog/flying-my-extra-300s/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://player.vimeo.com/video/14332262?color=ffffff" width="601" height="338" frameborder="0"></iframe></p>
				<div id="gallery-26c62afd" class="flickr-gallery photoset">
													<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4916666488"><img class="photo" title="IMG_6057" src="http://farm5.static.flickr.com/4074/4916666488_19f11639de_s.jpg" alt="IMG_6057" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4916668146"><img class="photo" title="IMG_6058" src="http://farm5.static.flickr.com/4098/4916668146_357dc9c12b_s.jpg" alt="IMG_6058" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4916068395"><img class="photo" title="IMG_6059" src="http://farm5.static.flickr.com/4097/4916068395_7a426e3b49_s.jpg" alt="IMG_6059" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4916673138"><img class="photo" title="IMG_6060" src="http://farm5.static.flickr.com/4138/4916673138_79db46c7d7_s.jpg" alt="IMG_6060" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4916676362"><img class="photo" title="IMG_6061" src="http://farm5.static.flickr.com/4137/4916676362_97b85d52c8_s.jpg" alt="IMG_6061" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4916080463"><img class="photo" title="IMG_6062" src="http://farm5.static.flickr.com/4119/4916080463_4b91acb98d_s.jpg" alt="IMG_6062" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4916083345"><img class="photo" title="IMG_6063" src="http://farm5.static.flickr.com/4119/4916083345_4855fddde7_s.jpg" alt="IMG_6063" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4916086173"><img class="photo" title="IMG_6064" src="http://farm5.static.flickr.com/4137/4916086173_98106afc9c_s.jpg" alt="IMG_6064" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4916088843"><img class="photo" title="IMG_6065" src="http://farm5.static.flickr.com/4099/4916088843_b05cd60856_s.jpg" alt="IMG_6065" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4916091565"><img class="photo" title="IMG_6066" src="http://farm5.static.flickr.com/4117/4916091565_6f7009c283_s.jpg" alt="IMG_6066" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4916700126"><img class="photo" title="IMG_6068" src="http://farm5.static.flickr.com/4094/4916700126_06638235d0_s.jpg" alt="IMG_6068" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4916100813"><img class="photo" title="IMG_6069" src="http://farm5.static.flickr.com/4122/4916100813_102f1e46ac_s.jpg" alt="IMG_6069" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4916102403"><img class="photo" title="IMG_6070" src="http://farm5.static.flickr.com/4098/4916102403_f241b2ce5d_s.jpg" alt="IMG_6070" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4916104187"><img class="photo" title="IMG_6071" src="http://farm5.static.flickr.com/4121/4916104187_bd789f6583_s.jpg" alt="IMG_6071" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4916705768"><img class="photo" title="IMG_6072" src="http://farm5.static.flickr.com/4123/4916705768_f37846f781_s.jpg" alt="IMG_6072" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4916707202"><img class="photo" title="IMG_6074" src="http://farm5.static.flickr.com/4099/4916707202_b17ecbe656_s.jpg" alt="IMG_6074" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4916708518"><img class="photo" title="IMG_6075" src="http://farm5.static.flickr.com/4119/4916708518_cfc4c91034_s.jpg" alt="IMG_6075" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4916710108"><img class="photo" title="IMG_6076" src="http://farm5.static.flickr.com/4121/4916710108_8ea1d0d440_s.jpg" alt="IMG_6076" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4916110871"><img class="photo" title="IMG_6077" src="http://farm5.static.flickr.com/4143/4916110871_6eefa5dbbf_s.jpg" alt="IMG_6077" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4916112137"><img class="photo" title="IMG_6078" src="http://farm5.static.flickr.com/4080/4916112137_9ccb09cea8_s.jpg" alt="IMG_6078" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4916113185"><img class="photo" title="IMG_6079" src="http://farm5.static.flickr.com/4142/4916113185_cb0ba9d034_s.jpg" alt="IMG_6079" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4916715842"><img class="photo" title="IMG_6080" src="http://farm5.static.flickr.com/4114/4916715842_825b6ea665_s.jpg" alt="IMG_6080" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4916717626"><img class="photo" title="IMG_6081" src="http://farm5.static.flickr.com/4093/4916717626_682d81b68b_s.jpg" alt="IMG_6081" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4916118191"><img class="photo" title="IMG_6082" src="http://farm5.static.flickr.com/4097/4916118191_356e2767e1_s.jpg" alt="IMG_6082" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4916119573"><img class="photo" title="IMG_6083" src="http://farm5.static.flickr.com/4077/4916119573_6727e368df_s.jpg" alt="IMG_6083" /></a>
								</div>
												<div class="fg-clear"></div>
				</div>
												<div class="fg-clear"></div>
							<script type="text/javascript">
											jQuery(document).ready(function(){
							jQuery("#gallery-26c62afd .flickr-thumb img").flightbox({size_callback: get_sizes});
						});
										
										//-->
				</script>
			


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://pupeno.com/blog/flying-my-extra-300s/&amp;title=Flying+my+Extra+300S" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://pupeno.com/blog/flying-my-extra-300s/&amp;title=Flying+my+Extra+300S" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://pupeno.com/blog/flying-my-extra-300s/&amp;title=Flying+my+Extra+300S&amp;desc=%0D%0A%0D%0A" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://pupeno.com/blog/flying-my-extra-300s/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://pupeno.com/blog/flying-my-extra-300s/&amp;bm_description=Flying+my+Extra+300S&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://pupeno.com/blog/flying-my-extra-300s/&amp;title=Flying+my+Extra+300S" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://pupeno.com/blog/flying-my-extra-300s/&amp;title=Flying+my+Extra+300S" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://pupeno.com/blog/flying-my-extra-300s/&amp;title=Flying+my+Extra+300S" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://pupeno.com/blog/flying-my-extra-300s/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Flying+my+Extra+300S+-+http://b2l.me/aj7wmf&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://pupeno.com/blog/flying-my-extra-300s/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Overview of my new Extra 300S</title>
		<link>http://pupeno.com/blog/overview-of-my-new-extra-300s/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=overview-of-my-new-extra-300s</link>
		<comments>http://pupeno.com/blog/overview-of-my-new-extra-300s/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 04:24:02 +0000</pubDate>
		<dc:creator>J. Pablo Fernández</dc:creator>
				<category><![CDATA[announcement]]></category>
		<category><![CDATA[airplane]]></category>
		<category><![CDATA[control]]></category>
		<category><![CDATA[Extra 300S]]></category>
		<category><![CDATA[radio]]></category>
		<category><![CDATA[radio-control]]></category>
		<category><![CDATA[radiocontrol]]></category>
		<category><![CDATA[RCPowers]]></category>

		<guid isPermaLink="false">http://pupeno.com/?p=1738</guid>
		<description><![CDATA[Airplane: RCPowers Extra 300S Building material: EPP 6mm RG30 Motor: Yellow BL Proton 3S APC Propeller 8&#215;3.8 Prop saver Servos: Tower pro SG91R ESC: Arrowind 12A Receiver: Futaba R607FS Batteries: Fullymax eXtreme Power FB1000XP-3S and 2S Glues: Epoxy, hot glue, &#8230; <a href="http://pupeno.com/blog/overview-of-my-new-extra-300s/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="601" height="338" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=13983943&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=ffffff&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" /><embed type="application/x-shockwave-flash" width="601" height="338" src="http://vimeo.com/moogaloop.swf?clip_id=13983943&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=1&amp;color=ffffff&amp;fullscreen=1&amp;autoplay=0&amp;loop=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<ul>
<li><a href="http://radiocontrolpedia.com/wiki/RCPowers_Extra_300S">Airplane: RCPowers Extra 300S</a></li>
<li><a href="http://radiocontrolpedia.com/wiki/Expanded_polypropylene">Building material: EPP 6mm RG30</a></li>
<li><a href="http://radiocontrolpedia.com/wiki/Yellow_BL_Proton_3S">Motor: Yellow BL Proton 3S</a></li>
<li><a href="http://radiocontrolpedia.com/wiki/APC_Propeller_8x3.8">APC Propeller 8&#215;3.8</a></li>
<li><a href="http://radiocontrolpedia.com/wiki/Propeller_saver">Prop saver</a></li>
<li><a href="http://radiocontrolpedia.com/wiki/Tower_pro_SG91R">Servos: Tower pro SG91R</a></li>
<li><a href="http://radiocontrolpedia.com/wiki/Arrowind_12A">ESC: Arrowind 12A</a></li>
<li><a href="http://radiocontrolpedia.com/wiki/Futaba_R607FS">Receiver: Futaba R607FS</a></li>
<li><a href="http://radiocontrolpedia.com/wiki/Fullymax_eXtreme_Power_FB1000XP-3S">Batteries: Fullymax eXtreme Power FB1000XP-3S</a> and <a href="http://radiocontrolpedia.com/wiki/Fullymax_eXtreme_Power_FB1000XP-2S">2S</a></li>
<li><a href="http://radiocontrolpedia.com/wiki/Epoxy">Glues: Epoxy</a>, <a href="http://radiocontrolpedia.com/wiki/Hot-melt_adhesive">hot glue</a>, <a href="http://radiocontrolpedia.com/wiki/Cyanoacrylate">CA</a>.</li>
<li><a href="http://radiocontrolpedia.com/wiki/Carbon_fiber">Carbon fiber strips</a>.</li>
<li><a href="http://hobbynet.ch">Shop: hobbynet.ch (Peter, the owner, spent two or three hours helping me get everything I need, even after closing time)</a></li>
</ul>
<p>Some pictures of the building process and the finished result:</p>
				<div id="gallery-e8974b87" class="flickr-gallery photoset">
													<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4874764984"><img class="photo" title="Getting ready" src="http://farm5.static.flickr.com/4137/4874764984_d0ba63d179_s.jpg" alt="Getting ready" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4874765378"><img class="photo" title="Templates done. Thanks Dave!" src="http://farm5.static.flickr.com/4143/4874765378_8e2ee80473_s.jpg" alt="Templates done. Thanks Dave!" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4874765878"><img class="photo" title="Most of the pieces done" src="http://farm5.static.flickr.com/4074/4874765878_7c35752e1e_s.jpg" alt="Most of the pieces done" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4874766212"><img class="photo" title="It looks like a plane!" src="http://farm5.static.flickr.com/4077/4874766212_338ddeecd3_s.jpg" alt="It looks like a plane!" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4874766600"><img class="photo" title="Look sir! It's a plane" src="http://farm5.static.flickr.com/4077/4874766600_fea3e2dc0d_s.jpg" alt="Look sir! It's a plane" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4874157523"><img class="photo" title="We are building a plane" src="http://farm5.static.flickr.com/4081/4874157523_9e4b6f26a8_s.jpg" alt="We are building a plane" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4874157841"><img class="photo" title="Food and glue" src="http://farm5.static.flickr.com/4115/4874157841_48f1c99635_s.jpg" alt="Food and glue" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4874158159"><img class="photo" title="Careful... I already have a bandaid" src="http://farm5.static.flickr.com/4100/4874158159_1fe9e41bde_s.jpg" alt="Careful... I already have a bandaid" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4874158571"><img class="photo" title="Servo holes" src="http://farm5.static.flickr.com/4140/4874158571_54eb6f8ef6_s.jpg" alt="Servo holes" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4874768430"><img class="photo" title="Voilà" src="http://farm5.static.flickr.com/4138/4874768430_c0275325bb_s.jpg" alt="Voilà" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4874159183"><img class="photo" title="Top back" src="http://farm5.static.flickr.com/4078/4874159183_4e1aa3dcd8_s.jpg" alt="Top back" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4874159499"><img class="photo" title="Top front" src="http://farm5.static.flickr.com/4122/4874159499_fb4326a8cb_s.jpg" alt="Top front" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4874159885"><img class="photo" title="Servos top" src="http://farm5.static.flickr.com/4077/4874159885_c1aa9145bb_s.jpg" alt="Servos top" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4874160223"><img class="photo" title="Motor and prop" src="http://farm5.static.flickr.com/4098/4874160223_0c2d91fd9e_s.jpg" alt="Motor and prop" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4874770236"><img class="photo" title="Tail" src="http://farm5.static.flickr.com/4102/4874770236_56acdfbbba_s.jpg" alt="Tail" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4874770594"><img class="photo" title="Servos bottom" src="http://farm5.static.flickr.com/4080/4874770594_0b9d1b710a_s.jpg" alt="Servos bottom" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4874161267"><img class="photo" title="Receiver and ESC" src="http://farm5.static.flickr.com/4101/4874161267_690cb39c5e_s.jpg" alt="Receiver and ESC" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4874161713"><img class="photo" title="Battery" src="http://farm5.static.flickr.com/4136/4874161713_13090c9a9d_s.jpg" alt="Battery" /></a>
								</div>
															<div class="flickr-thumb">
									<a href="http://flickr.com/photo.gne?id=4874772040"><img class="photo" title="Another top back" src="http://farm5.static.flickr.com/4143/4874772040_fa44eeb9ab_s.jpg" alt="Another top back" /></a>
								</div>
												<div class="fg-clear"></div>
				</div>
												<div class="fg-clear"></div>
							<script type="text/javascript">
											jQuery(document).ready(function(){
							jQuery("#gallery-e8974b87 .flickr-thumb img").flightbox({size_callback: get_sizes});
						});
										
										//-->
				</script>
			


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://pupeno.com/blog/overview-of-my-new-extra-300s/&amp;title=Overview+of+my+new+Extra+300S" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://pupeno.com/blog/overview-of-my-new-extra-300s/&amp;title=Overview+of+my+new+Extra+300S" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://pupeno.com/blog/overview-of-my-new-extra-300s/&amp;title=Overview+of+my+new+Extra+300S&amp;desc=%0D%0A%0D%0A%09Airplane%3A%20RCPowers%20Extra%20300S%0D%0A%09Building%20material%3A%20EPP%206mm%20RG30%0D%0A%09Motor%3A%20Yellow%20BL%20Proton%203S%0D%0A%09APC%20Propeller%208x3.8%0D%0A%09Prop%20saver%0D%0A%09Servos%3A%20Tower%20pro%20SG91R%0D%0A%09ESC%3A%20Arrowind%2012A%0D%0A%09Receiver%3A%20Futaba%20R607FS%0D%0A%09Batteries%3A%20Fullymax%20eXtreme%20Power%20FB1000XP-3S%20and%202S%0D%0A%09Glues%3A%20Epoxy%2C%20hot%20glue%2C%20CA.%0D%0A%09Carbon%20f" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://pupeno.com/blog/overview-of-my-new-extra-300s/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://pupeno.com/blog/overview-of-my-new-extra-300s/&amp;bm_description=Overview+of+my+new+Extra+300S&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://pupeno.com/blog/overview-of-my-new-extra-300s/&amp;title=Overview+of+my+new+Extra+300S" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://pupeno.com/blog/overview-of-my-new-extra-300s/&amp;title=Overview+of+my+new+Extra+300S" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://pupeno.com/blog/overview-of-my-new-extra-300s/&amp;title=Overview+of+my+new+Extra+300S" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://pupeno.com/blog/overview-of-my-new-extra-300s/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Overview+of+my+new+Extra+300S+-+http://b2l.me/afzx3d&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://pupeno.com/blog/overview-of-my-new-extra-300s/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>It moves!</title>
		<link>http://pupeno.com/blog/it-moves/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=it-moves</link>
		<comments>http://pupeno.com/blog/it-moves/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 18:30:17 +0000</pubDate>
		<dc:creator>J. Pablo Fernández</dc:creator>
				<category><![CDATA[other]]></category>
		<category><![CDATA[airplane]]></category>
		<category><![CDATA[Extra 300S]]></category>
		<category><![CDATA[hobby]]></category>
		<category><![CDATA[radio-control]]></category>
		<category><![CDATA[radiocontrol]]></category>
		<category><![CDATA[RCPowers]]></category>

		<guid isPermaLink="false">http://pupeno.com/?p=1731</guid>
		<description><![CDATA[I&#8217;m building a RCPowers Extra 300S and a couple of days ago it moved by itself for the first time: So exciting! There&#8217;s still a lot of work to do, I hope it&#8217;ll be flying this weekend (if the weather &#8230; <a href="http://pupeno.com/blog/it-moves/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m building a <a href="http://radiocontrolpedia.com/wiki/RCPowers">RCPowers</a> <a href="http://radiocontrolpedia.com/wiki/RCPowers_Extra_300S">Extra 300S</a> and a couple of days ago it moved by itself for the first time:</p>
<p><object width="400" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=13656139&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=13656139&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object></p>
<p>So exciting! There&#8217;s still a lot of work to do, I hope it&#8217;ll be flying this weekend (if the weather allows it).</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://pupeno.com/blog/it-moves/&amp;title=It+moves%21" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://pupeno.com/blog/it-moves/&amp;title=It+moves%21" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://pupeno.com/blog/it-moves/&amp;title=It+moves%21&amp;desc=I%27m%20building%20a%20RCPowers%20Extra%20300S%20and%20a%20couple%20of%20days%20ago%20it%20moved%20by%20itself%20for%20the%20first%20time%3A%0D%0A%0D%0A%0D%0A%0D%0ASo%20exciting%21%20There%27s%20still%20a%20lot%20of%20work%20to%20do%2C%20I%20hope%20it%27ll%20be%20flying%20this%20weekend%20%28if%20the%20weather%20allows%20it%29." rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://pupeno.com/blog/it-moves/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://pupeno.com/blog/it-moves/&amp;bm_description=It+moves%21&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://pupeno.com/blog/it-moves/&amp;title=It+moves%21" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://pupeno.com/blog/it-moves/&amp;title=It+moves%21" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://pupeno.com/blog/it-moves/&amp;title=It+moves%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://pupeno.com/blog/it-moves/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=It+moves%21+-+http://b2l.me/adjnp5&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://pupeno.com/blog/it-moves/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RadioControlPedia</title>
		<link>http://pupeno.com/blog/radiocontrolpedia/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=radiocontrolpedia</link>
		<comments>http://pupeno.com/blog/radiocontrolpedia/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 11:57:41 +0000</pubDate>
		<dc:creator>J. Pablo Fernández</dc:creator>
				<category><![CDATA[announcement]]></category>
		<category><![CDATA[control]]></category>
		<category><![CDATA[radio]]></category>
		<category><![CDATA[radio-control]]></category>
		<category><![CDATA[radiocontrol]]></category>

		<guid isPermaLink="false">http://pupeno.com/?p=3</guid>
		<description><![CDATA[I&#8217;m tired that there are no canonical URLs for most products, materials, systems, etc. regarding to radio control. The vendors do a very poor job of having an online presence. Some seem not to have a web site at all &#8230; <a href="http://pupeno.com/blog/radiocontrolpedia/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m tired that there are no canonical URLs for most <a href="http://radiocontrolpedia.com/wiki/Category:Product">products</a>, <a href="http://radiocontrolpedia.com/wiki/Category:Material">materials</a>, <a href="http://radiocontrolpedia.com/wiki/Category:System">systems</a>, <a href="http://radiocontrolpedia.com/wiki/Special:AllPages">etc</a>. regarding to radio control. The vendors do a very poor job of having an online presence. Some seem not to have a web site at all and the ones that do have very poor URLs, very poor data (old articles get removed) or very poor websites (frames, javascript, no way to deep-link).</p>
<p>Sometimes the best information is provided by the retailers, which is already wrong, but the real issue is that when retailers are not selling something anymore, they remove the product from the public page, and the information gets lost.</p>
<p>I&#8217;ve decided to fix the problem so I&#8217;ve created the <a href="http://radiocontrolpedia.com">RadioControlPedia</a>. A wiki for RadioControl were articles will always stay and stay at the same URL. Over time it&#8217;ll have more and more information.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://pupeno.com/blog/radiocontrolpedia/&amp;title=RadioControlPedia" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://pupeno.com/blog/radiocontrolpedia/&amp;title=RadioControlPedia" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://pupeno.com/blog/radiocontrolpedia/&amp;title=RadioControlPedia&amp;desc=I%27m%20tired%20that%20there%20are%20no%20canonical%20URLs%20for%20most%20products%2C%20materials%2C%20systems%2C%20etc.%20regarding%20to%20radio%20control.%20The%20vendors%20do%20a%20very%20poor%20job%20of%20having%20an%20online%20presence.%20Some%20seem%20not%20to%20have%20a%20web%20site%20at%20all%20and%20the%20ones%20that%20do%20have%20very%20poor%20URLs%2C%20very%20poor%20data%20%28old%20articles%20get%20removed%29%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://pupeno.com/blog/radiocontrolpedia/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://pupeno.com/blog/radiocontrolpedia/&amp;bm_description=RadioControlPedia&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://pupeno.com/blog/radiocontrolpedia/&amp;title=RadioControlPedia" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://pupeno.com/blog/radiocontrolpedia/&amp;title=RadioControlPedia" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://pupeno.com/blog/radiocontrolpedia/&amp;title=RadioControlPedia" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://pupeno.com/blog/radiocontrolpedia/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RadioControlPedia+-+http://b2l.me/abfvcj&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://pupeno.com/blog/radiocontrolpedia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.gitignore</title>
		<link>http://pupeno.com/blog/gitignore/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=gitignore</link>
		<comments>http://pupeno.com/blog/gitignore/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 03:47:15 +0000</pubDate>
		<dc:creator>J. Pablo Fernández</dc:creator>
				<category><![CDATA[announcement]]></category>
		<category><![CDATA[.gitignore]]></category>
		<category><![CDATA[Git]]></category>

		<guid isPermaLink="false">http://pupeno.com/?p=1727</guid>
		<description><![CDATA[I&#8217;m launching a new site: gitignore.com For now it&#8217;s just a blog, but the final goal is different: Every time I start a new project I hesitate to make the first commit: what should I commit and what shouldn’t I? &#8230; <a href="http://pupeno.com/blog/gitignore/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m launching a new site:</p>
<h1><a href="http://gitignore.com">gitignore.com</a></h1>
<p>For now it&#8217;s just a blog, but <a href="http://gitignore.com/posts/the-goal/">the final goal</a> is different:</p>
<blockquote><p>Every time I start a new project I hesitate to make the first commit: what should I commit and what shouldn’t I? Essentially, what should I put on .gitignore.</p>
<p>The goal of this site is to collet snippet of .gitignore that one should use depending on what framework, software, libraries, etc. are being used. I’ll try to put the ones I’ll know, but please, if you know any, send me an email to <a href="mailto:pupeno@pupeno.com">pupeno@pupeno.com</a> and I’ll publish (with attribution).</p>
<p>My final goal is to develop a small web application with a list of the frameworks (as checkboxes or something) from which you can pick and it’ll build the .gitignore. But I’ll only do it if this site gathers enough information.</p></blockquote>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://pupeno.com/blog/gitignore/&amp;title=.gitignore" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://pupeno.com/blog/gitignore/&amp;title=.gitignore" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://pupeno.com/blog/gitignore/&amp;title=.gitignore&amp;desc=I%27m%20launching%20a%20new%20site%3A%0Agitignore.com%0AFor%20now%20it%27s%20just%20a%20blog%2C%20but%20the%20final%20goal%20is%20different%3A%0AEvery%20time%20I%20start%20a%20new%20project%20I%20hesitate%20to%20make%20the%20first%20commit%3A%20what%20should%20I%20commit%20and%20what%20shouldn%E2%80%99t%20I%3F%20Essentially%2C%20what%20should%20I%20put%20on%20.gitignore.%0A%0AThe%20goal%20of%20this%20site%20is%20to%20collet%20snip" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://pupeno.com/blog/gitignore/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://pupeno.com/blog/gitignore/&amp;bm_description=.gitignore&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://pupeno.com/blog/gitignore/&amp;title=.gitignore" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://pupeno.com/blog/gitignore/&amp;title=.gitignore" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://pupeno.com/blog/gitignore/&amp;title=.gitignore" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://pupeno.com/blog/gitignore/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=.gitignore+-+http://b2l.me/9unbp&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://pupeno.com/blog/gitignore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My first contribution to Rails</title>
		<link>http://pupeno.com/blog/my-first-contribution-to-rails/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=my-first-contribution-to-rails</link>
		<comments>http://pupeno.com/blog/my-first-contribution-to-rails/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 14:07:35 +0000</pubDate>
		<dc:creator>J. Pablo Fernández</dc:creator>
				<category><![CDATA[announcement]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Ruby on Rails]]></category>

		<guid isPermaLink="false">http://pupeno.com/?p=1716</guid>
		<description><![CDATA[Looking forward to many others. Share this on del.icio.us Digg this! Post this on Diigo Post on Google Buzz Add this to Mister Wong Share this on Mixx Share this on Reddit Stumble upon something good? Share it on StumbleUpon &#8230; <a href="http://pupeno.com/blog/my-first-contribution-to-rails/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Looking forward to many others.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://pupeno.com/blog/my-first-contribution-to-rails/&amp;title=My+first+contribution+to+Rails" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://pupeno.com/blog/my-first-contribution-to-rails/&amp;title=My+first+contribution+to+Rails" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://pupeno.com/blog/my-first-contribution-to-rails/&amp;title=My+first+contribution+to+Rails&amp;desc=Looking%20forward%20to%20many%20others.%0A%0A" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://pupeno.com/blog/my-first-contribution-to-rails/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://pupeno.com/blog/my-first-contribution-to-rails/&amp;bm_description=My+first+contribution+to+Rails&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://pupeno.com/blog/my-first-contribution-to-rails/&amp;title=My+first+contribution+to+Rails" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://pupeno.com/blog/my-first-contribution-to-rails/&amp;title=My+first+contribution+to+Rails" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://pupeno.com/blog/my-first-contribution-to-rails/&amp;title=My+first+contribution+to+Rails" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://pupeno.com/blog/my-first-contribution-to-rails/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=My+first+contribution+to+Rails+-+http://b2l.me/9undh&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://pupeno.com/blog/my-first-contribution-to-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thanks for your contribution to the NetBeans 6.9</title>
		<link>http://pupeno.com/blog/thanks-for-your-contribution-to-the-netbeans-6-9/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=thanks-for-your-contribution-to-the-netbeans-6-9</link>
		<comments>http://pupeno.com/blog/thanks-for-your-contribution-to-the-netbeans-6-9/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 21:15:51 +0000</pubDate>
		<dc:creator>J. Pablo Fernández</dc:creator>
				<category><![CDATA[other]]></category>
		<category><![CDATA[NetBeans]]></category>

		<guid isPermaLink="false">http://pupeno.com/?p=1706</guid>
		<description><![CDATA[When I write software, bug reports and feature requests are a blessing. It shows me that people is using it and want more. Silence is death. It&#8217;s nice to see an software project show appreciation for bug reports and I&#8217;m &#8230; <a href="http://pupeno.com/blog/thanks-for-your-contribution-to-the-netbeans-6-9/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>When I write software, bug reports and feature requests are a blessing. It shows me that people is using it and want more. Silence is death. It&#8217;s nice to see an software project show appreciation for bug reports and I&#8217;m honestly impressed:</p>
<p style="padding-left: 30px">Dear NetBeans User,</p>
<p style="padding-left: 30px">In the past you have taken the time to report issues that you encountered while using NetBeans software. A new version (<a href="http://netbeans.org/community/releases/69/" target="_blank">NetBeans 6.9</a>) has just been released,and we&#8217;d like to inform you that the following issue(s) you reported have been addressed in the new release:</p>
<table style="padding-left: 30px" cellpadding="2">
<tbody>
<tr>
<td><a href="https://netbeans.org/bugzilla/show_bug.cgi?id=181509" target="_blank">181509</a></td>
<td>Dot paths not available when adding new platform in Ruby Platform Manager</td>
</tr>
<tr>
<td><a href="https://netbeans.org/bugzilla/show_bug.cgi?id=181766" target="_blank">181766</a></td>
<td>Gem directories picked wrongly</td>
</tr>
<tr>
<td><a href="https://netbeans.org/bugzilla/show_bug.cgi?id=181844" target="_blank">181844</a></td>
<td>Search for RVM installations</td>
</tr>
</tbody>
</table>
<p style="padding-left: 30px">Please visit the <a href="http://netbeans.org" target="_blank">netbeans.org</a> website to <a href="http://netbeans.org/downloads/index.html" target="_blank">download NetBeans 6.9</a> and to <a href="http://netbeans.org/community/releases/69/" target="_blank">learn more</a> about the new release.</p>
<p style="padding-left: 30px">We appreciate your contribution to our efforts to make NetBeans software and features better for all users. And as always, we look forward to feedback from you about ways we can continue to improve.Thank you.</p>
<p style="padding-left: 30px">The NetBeans Team</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://pupeno.com/blog/thanks-for-your-contribution-to-the-netbeans-6-9/&amp;title=Thanks+for+your+contribution+to+the+NetBeans+6.9" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://pupeno.com/blog/thanks-for-your-contribution-to-the-netbeans-6-9/&amp;title=Thanks+for+your+contribution+to+the+NetBeans+6.9" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://pupeno.com/blog/thanks-for-your-contribution-to-the-netbeans-6-9/&amp;title=Thanks+for+your+contribution+to+the+NetBeans+6.9&amp;desc=When%20I%20write%20software%2C%20bug%20reports%20and%20feature%20requests%20are%20a%20blessing.%20It%20shows%20me%20that%20people%20is%20using%20it%20and%20want%20more.%20Silence%20is%20death.%20It%27s%20nice%20to%20see%20an%20software%20project%20show%20appreciation%20for%20bug%20reports%20and%20I%27m%20honestly%20impressed%3A%0ADear%20NetBeans%20User%2C%0AIn%20the%20past%20you%20have%20taken%20the%20time%20to%20r" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://pupeno.com/blog/thanks-for-your-contribution-to-the-netbeans-6-9/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://pupeno.com/blog/thanks-for-your-contribution-to-the-netbeans-6-9/&amp;bm_description=Thanks+for+your+contribution+to+the+NetBeans+6.9&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://pupeno.com/blog/thanks-for-your-contribution-to-the-netbeans-6-9/&amp;title=Thanks+for+your+contribution+to+the+NetBeans+6.9" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://pupeno.com/blog/thanks-for-your-contribution-to-the-netbeans-6-9/&amp;title=Thanks+for+your+contribution+to+the+NetBeans+6.9" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://pupeno.com/blog/thanks-for-your-contribution-to-the-netbeans-6-9/&amp;title=Thanks+for+your+contribution+to+the+NetBeans+6.9" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://pupeno.com/blog/thanks-for-your-contribution-to-the-netbeans-6-9/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Thanks+for+your+contribution+to+the+NetBeans+6.9+-+http://b2l.me/9undj&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://pupeno.com/blog/thanks-for-your-contribution-to-the-netbeans-6-9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If I were in charge of Adobe</title>
		<link>http://pupeno.com/blog/if-i-were-in-charge-of-adobe/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=if-i-were-in-charge-of-adobe</link>
		<comments>http://pupeno.com/blog/if-i-were-in-charge-of-adobe/#comments</comments>
		<pubDate>Tue, 18 May 2010 16:30:11 +0000</pubDate>
		<dc:creator>J. Pablo Fernández</dc:creator>
				<category><![CDATA[idea]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[in charge]]></category>

		<guid isPermaLink="false">http://pupeno.com/?p=1678</guid>
		<description><![CDATA[Clearly, Adobe is losing the battle with Apple. There&#8217;s no Flash on the iPhone, iPod Touch and iPad and there&#8217;s no sign that there will ever be. Apple is not a company that can be easily influenced. They do things &#8230; <a href="http://pupeno.com/blog/if-i-were-in-charge-of-adobe/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://pupeno.com/wp-content/uploads/2010/05/we-love-apple.jpg"><img class="alignright size-medium wp-image-1685" src="http://pupeno.com/wp-content/uploads/2010/05/we-love-apple-232x300.jpg" alt="" width="232" height="300" /></a>Clearly, Adobe is losing the battle with <a href="http://pupeno.com/tag/apple/">Apple</a>. There&#8217;s no Flash on the iPhone, iPod Touch and iPad and there&#8217;s no sign that there will ever be.</p>
<p>Apple is not a company that can be easily influenced. They do things the way they think is right even when everybody else disagrees. Even when everybody predicts is going to cost sales. They&#8217;ve been doing it for more than 10 years and it&#8217;s working very well for them, they are not going to stop now. For Adobe, Apple is a lost cause.</p>
<p><a href="http://pupeno.com/blog/the-ipad-lack-of-flash-is-a-win-win-situation/">I actually dislike both companies.</a> Apple is building an extremely proprietary environment. They are much worst than Microsoft. Apple&#8217;s tax not only includes the operating system, it also includes every third party application. Not only they get a part of everybody&#8217;s cake, they decide who have cake and who doesn&#8217;t by controlling which applications get approval and which get rejected. If Apple ever dominates the industry, it&#8217;ll be the dark ages of computers.</p>
<p>Adobe is not much different with Flash. Flash is a proprietary and it works well on one and only one platform; if it does at all. Everybody else is left out. Flash has been making the web inaccessible for ages. I would be very glad if we can get rid of Flash.</p>
<p>If I were <a href="http://pupeno.com/tag/in-charge/">in charge</a> of Adobe I would do something that would help the company remain a leader on the web and at the same time make Flash good: <strong>open source it</strong>.</p>
<p>I never understood why Adobe hasn&#8217;t open sourced Flash already. The specs are more or less open, there are alternative implementations, and they are not making any money by selling Flash. They make money by selling the tools to build Flash web sites and that&#8217;s not going to stop if they make Flash itself open source.</p>
<p><a href="http://pupeno.com/wp-content/uploads/2010/05/android.jpg"><img class="alignright size-medium wp-image-1686" src="http://pupeno.com/wp-content/uploads/2010/05/android-256x300.jpg" alt="" width="108" height="126" /></a>Before or while open sourcing I would make agreements with two companies: Google and HP. Make sure Flash is going to be included in Android, Chrome OS and Web OS. I would also put those phones and tablets in the hand of my developers (that is, Adobe&#8217;s), for free, as a gift, with the goal of making the Flash experience is absolutely thrilling.</p>
<p>I think that is Flash&#8217;s only hope.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://pupeno.com/blog/if-i-were-in-charge-of-adobe/&amp;title=If+I+were+in+charge+of+Adobe" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://pupeno.com/blog/if-i-were-in-charge-of-adobe/&amp;title=If+I+were+in+charge+of+Adobe" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://pupeno.com/blog/if-i-were-in-charge-of-adobe/&amp;title=If+I+were+in+charge+of+Adobe&amp;desc=Clearly%2C%20Adobe%20is%20losing%20the%20battle%20with%20Apple.%20There%27s%20no%20Flash%20on%20the%20iPhone%2C%20iPod%20Touch%20and%20iPad%20and%20there%27s%20no%20sign%20that%20there%20will%20ever%20be.%0A%0AApple%20is%20not%20a%20company%20that%20can%20be%20easily%20influenced.%20They%20do%20things%20the%20way%20they%20think%20is%20right%20even%20when%20everybody%20else%20disagrees.%20Even%20when%20everybody%20p" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://pupeno.com/blog/if-i-were-in-charge-of-adobe/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://pupeno.com/blog/if-i-were-in-charge-of-adobe/&amp;bm_description=If+I+were+in+charge+of+Adobe&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://pupeno.com/blog/if-i-were-in-charge-of-adobe/&amp;title=If+I+were+in+charge+of+Adobe" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://pupeno.com/blog/if-i-were-in-charge-of-adobe/&amp;title=If+I+were+in+charge+of+Adobe" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://pupeno.com/blog/if-i-were-in-charge-of-adobe/&amp;title=If+I+were+in+charge+of+Adobe" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://pupeno.com/blog/if-i-were-in-charge-of-adobe/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=If+I+were+in+charge+of+Adobe+-+http://b2l.me/vawrf&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://pupeno.com/blog/if-i-were-in-charge-of-adobe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
