<?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>felipeNascimento.org(true);</title>
	<atom:link href="http://felipenascimento.org/en/feed/" rel="self" type="application/rss+xml" />
	<link>http://felipenascimento.org</link>
	<description>Making the web a better place to live</description>
	<lastBuildDate>Tue, 31 Aug 2010 14:31:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>PHPSCConf</title>
		<link>http://felipenascimento.org/en/phpscconf/</link>
		<comments>http://felipenascimento.org/en/phpscconf/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 14:20:40 +0000</pubDate>
		<dc:creator>Felipe Nascimento</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[theWebMind]]></category>
		<category><![CDATA[Mind2.0]]></category>

		<guid isPermaLink="false">http://felipenascimento.org/?p=293</guid>
		<description><![CDATA[O evento, ocorrido em Joinvile (http://phpsc.com.br/), nos dias 27 e 28 deste mês foi ótimo. Os organizadores mostram cada ano mais maturidade, as palestras conseguiram ser tanto focadas na parte mais técnica quanto focadas no mercado, metodologias, etc. A platéia também parecia bem interessada, apesar de terem ficado bastante distribuídos entre demais cursos que aconteciam [...]]]></description>
			<content:encoded><![CDATA[<p>O evento, ocorrido em Joinvile (<a href='http://phpsc.com.br/' target='_blank'>http://phpsc.com.br/</a>), nos dias 27 e 28 deste mês foi ótimo. Os organizadores mostram cada ano mais maturidade, as palestras conseguiram ser tanto focadas na parte mais técnica quanto focadas no mercado, metodologias, etc. A platéia também parecia bem interessada, apesar de terem ficado bastante distribuídos entre demais cursos que aconteciam durante o evento.<br />
É a comunidade PHP mostrando o poder que tem no Brasil e na reagião Sul.</p>
<p>A palestra sobre o theWebMind foi bem divertida e positiva, vários demonstraram interesse e acredito que conseguiremos atingir mais pessoal capacitado e interessado em colaborar, o que é sempre muito importante para o projeto.</p>
<p>Parabéns aos envolvidos e palestrantes. Obrigado a todos e até o ano que vem!</p>
<p>Slides da palestra: <a href="http://tinyurl.com/259zbre">http://tinyurl.com/259zbre</a></p>
]]></content:encoded>
			<wfw:commentRss>http://felipenascimento.org/en/phpscconf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bug on IE when creating elements with name (submitName)</title>
		<link>http://felipenascimento.org/en/bug-on-ie-when-creating-elements-with-name-submitname/</link>
		<comments>http://felipenascimento.org/en/bug-on-ie-when-creating-elements-with-name-submitname/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 04:40:48 +0000</pubDate>
		<dc:creator>Felipe Nascimento</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Learned Stuff / Tips]]></category>
		<category><![CDATA[js]]></category>

		<guid isPermaLink="false">http://felipenascimento.org/?p=291</guid>
		<description><![CDATA[Hi, yesterday I had to fight against this problem, which is not very touched out there.
In the beginning, people from jQuery thought it was a jQuery bug, but searching a bit more I could find out the root of this problem.
What is it?
When running your javascript in Internet Explorer 6, or 7 or 8 in [...]]]></description>
			<content:encoded><![CDATA[<p>Hi, yesterday I had to fight against this problem, which is not very touched out there.<br />
In the beginning, people from <em>jQuery</em> thought it was a jQuery bug, but searching a bit more I could find out the root of this problem.</p>
<p><b>What is it?</b><br />
When running your javascript in Internet Explorer 6, or 7 or 8 in compatible mode, if you create dynamically an iframe, for example, and set it a <strong>name</strong> attribute, Internet Explorer will reaplace it by an <strong>submitName</strong> attribute. This attribute cannot be found with .getAttribute(&#8217;submitName&#8217;), but that is the problem, neither can be with .getAttribute(&#8217;name&#8217;)!</p>
<p><b>How to see it happening? Try this:</b></p>
<pre class="brush: jscript;">
var ifr= document.createElement('iframe');
ifr.setAttribute('name', 'iFrameOne');
document.body.appendChild(ifr);
alert(ifr.getAttribute('name'));
// you can also see it through the &quot;developer tool&quot; in the IE tools menu
</pre>
<p>The main problem is that &#8230; when you have something like a link or a form targeting this iframe, you loose it! The same happens with inputs with name, which are dynamically created.</p>
<p><b>How to fix it without ask your users to migrate to a real browser? I did this and it worked:</b></p>
<pre class="brush: jscript;">
var ifrDiv= document.createElement('div');
ifrDiv.innerHTML= &quot;&lt;iframe name='iFrameOne' &gt;&lt;/iframe&gt;&quot;;
document.body.appendChild(ifrDiv);
</pre>
<p><b>Now, why does it happen?!</b><br />
I had the chance to search for this and found in the Microsoft&#8217;s webpage something about this old, known bug in <em>Internet Explorer</em>, with names on dynamic elements. Due to &#8220;fix&#8221; this, instead of fixing, then &#8220;provided&#8221; this workarounded attribute. When you try to deal with the name attribute, it applies like an alias, redirecting it to the Microsoft&#8217;s Internet Explorer imaginary <strong>submitName</strong> attribute. But with this, you cant access a form that has a name, like this:</p>
<pre class="brush: jscript;">
document.forms['dynamicFormName'];
</pre>
<p>because the DOM hasn&#8217;t rendered that form with the name you asked for.</p>
<p>I hope it can help you, if you get stuck with this some day.</p>
]]></content:encoded>
			<wfw:commentRss>http://felipenascimento.org/en/bug-on-ie-when-creating-elements-with-name-submitname/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Three ways to reload or move the page</title>
		<link>http://felipenascimento.org/en/three-ways-to-reload-or-move-the-page/</link>
		<comments>http://felipenascimento.org/en/three-ways-to-reload-or-move-the-page/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 02:46:34 +0000</pubDate>
		<dc:creator>Felipe Nascimento</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Learned Stuff / Tips]]></category>
		<category><![CDATA[js]]></category>

		<guid isPermaLink="false">http://felipenascimento.org/?p=286</guid>
		<description><![CDATA[Hi there.
Well, this is a question I see a lot of people doing! Then, I decided to post about it.
We have got, in Javascript, when dealing with the DOM API, the history element, with which we can move forward or backward trough the navigation historic, plus specify with the method go page or step we [...]]]></description>
			<content:encoded><![CDATA[<p>Hi there.<br />
Well, this is a question I see a lot of people doing! Then, I decided to post about it.<br />
We have got, in Javascript, when dealing with the DOM API, the history element, with which we can move forward or backward trough the navigation historic, plus specify with the method <em>go</em> page or step we want to go, by informing the < 0 value to past, or > 0 to the possible forward pages. So, we can do this, too:</p>
<pre class="brush: jscript;">

history.go(0);
</pre>
<p>This will simply reload the page. Of course you can use it with iframes, using the parent, top, self or name to work with their relation.<br />
Other alternative is using the reload method provided by the <em>location</em>, just like this:</p>
<pre class="brush: jscript;">

self.location.reload();
</pre>
<p>Now, a different alternative, and also a way to move from one page to another, is using the href property, also from location.</p>
<pre class="brush: jscript;">

self.location.href= self.location.href;
</pre>
<p>This code will reload the same page, but could be any other address to be loaded.</p>
]]></content:encoded>
			<wfw:commentRss>http://felipenascimento.org/en/three-ways-to-reload-or-move-the-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add an animated bird to announce your tweets</title>
		<link>http://felipenascimento.org/en/add-an-animated-bird-to-announce-your-tweets/</link>
		<comments>http://felipenascimento.org/en/add-an-animated-bird-to-announce-your-tweets/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 05:35:52 +0000</pubDate>
		<dc:creator>Felipe Nascimento</dc:creator>
				<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Generic]]></category>
		<category><![CDATA[My Projects]]></category>
		<category><![CDATA[Tweety]]></category>

		<guid isPermaLink="false">http://felipenascimento.org/?p=280</guid>
		<description><![CDATA[Add an animated bird to announce your tweets, in your webpage or blog.
With Tweety (maybe a temporary name), you can specify your twitter account and then get back a small script to put this animation into your website. Only have to copy and paste it wherever you want. It will random one of your 4 [...]]]></description>
			<content:encoded><![CDATA[<p>Add an animated bird to announce your tweets, in your webpage or blog.<br />
With Tweety (maybe a temporary name), you can specify your twitter account and then get back a small script to put this animation into your website. Only have to copy and paste it wherever you want. It will random one of your 4 last posts on twitter and show it for 1 minute, randomising it again, then.<br />
In my home page there is an example of it working. Though, you can see here, it working again:</p>
<p>If you have ideas to have it better, or found any bug, or if you can draw a better bird, talk to me <img src='http://felipenascimento.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://felipenascimento.org/en/add-an-animated-bird-to-announce-your-tweets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where is this web going to?</title>
		<link>http://felipenascimento.org/en/aboutfisl/</link>
		<comments>http://felipenascimento.org/en/aboutfisl/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 23:58:59 +0000</pubDate>
		<dc:creator>Felipe Nascimento</dc:creator>
				<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[FISL]]></category>

		<guid isPermaLink="false">http://felipenascimento.org/?p=275</guid>
		<description><![CDATA[This year, one of my submission has been approved to this really big, interesting, useful event.
For years, Fisl has brought to Porto Aegre, a lot of great people in the most challenging areas to speak about their knowledge, experiences and plans.
It&#8217;s always an amazing opportunity to spread your ideas, know crazy smart people and many [...]]]></description>
			<content:encoded><![CDATA[<p>This year, one of my submission has been approved to this really big, interesting, useful event.<br />
For years, Fisl has brought to Porto Aegre, a lot of great people in the most challenging areas to speak about their knowledge, experiences and plans.<br />
It&#8217;s always an amazing opportunity to spread your ideas, know <s>crazy</s> smart people and many times, people that have literally wrote the book and made story.<br />
I&#8217;m use to saying that on Fisl, we see the record of nerds by square meter.</p>
<p>This year, I&#8217;ll speak about the revolution of the web development, its new technologies and techniques, beside the way we see the web itself, and also, how the users see it nowadays. I&#8217;ll speak about HTML5, CSS3, JS2, the market share, business, among other interesting topics. I think we can all have a great conversation about such subjects and I invite you all to watch my presentation (entitled &#8220;Até onde vai essa teia?&#8221;, or &#8220;where is this web going to?&#8221;, during the saturday, at 10 o&#8217;clock) and also, to have a nice talking about this revolutionary age we are living, through the corridors and stands in the event.</p>
<p>Links of the event:<br />
<a href="http://fisl.org.br/" target='_blank'>http://fisl.org.br/</a><br />
<a href="http://softwarelivre.org/fisl11/" target='_blank'>http://softwarelivre.org/fisl11/</a><br />
<a href="http://fisl.softwarelivre.org/" target='_blank'>http://fisl.softwarelivre.org/</a><br />
<a href="http://verdi.softwarelivre.org/" target='_blank'>http://verdi.softwarelivre.org/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://felipenascimento.org/en/aboutfisl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Testing Firefox 4 Beta 1</title>
		<link>http://felipenascimento.org/en/testing-firefox-4-beta-1/</link>
		<comments>http://felipenascimento.org/en/testing-firefox-4-beta-1/#comments</comments>
		<pubDate>Sat, 10 Jul 2010 00:38:21 +0000</pubDate>
		<dc:creator>Felipe Nascimento</dc:creator>
				<category><![CDATA[Learned Stuff / Tips]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[acid3]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[mozilla]]></category>

		<guid isPermaLink="false">http://felipenascimento.org/?p=273</guid>
		<description><![CDATA[Well, Firefox 4b1 has just been lauched and we had the chance to test it and use it for quite a while.
The first thing I did was to test it running some crazy heacy scripts, like http://bit.ly/DvVL and http://bit.ly/ppahL. I gotta say, it was impressive. Those scripts simply couldn&#8217;t run at Firefox in the previous [...]]]></description>
			<content:encoded><![CDATA[<p>Well, Firefox 4b1 has just been lauched and we had the chance to test it and use it for quite a while.<br />
The first thing I did was to test it running some crazy heacy scripts, like <a href="http://bit.ly/DvVL">http://bit.ly/DvVL</a> and <a href="http://bit.ly/ppahL">http://bit.ly/ppahL</a>. I gotta say, it was impressive. Those scripts simply couldn&#8217;t run at Firefox in the previous version, now, they run just as chrome does. It made me happy about this release.<br />
Then, testing it with <a href="http://acid3.acidtests.org/">acid3</a>, it reached the 97 points. I think it could be better, specially because either chrome, safari and opera reached 100. Though, those 3 missing points are related to the SVG Fonts, which were deliberately not implemented, using WOFF instead, as you can see in the <a href="http://weblogs.mozillazine.org/roc/archives/2010/06/not_implementin.html">Mozilla&#8217;s developers blog</a>.<br />
At <a href='http://html5test.com/'>html5test.com</a>, firefox 4 had 189 points. Chrome was the only better, with 197. IE had 27, as I thought.<br />
When testing selectors and CSS3 <a href='http://www.findmebyip.com/#target-selector'>here</a>, I notice there are only a few properties/methods that only chrome offers more than Firefox.<br />
The problem I have to point by now is that no one single add-on worked on this version. Even mine didn&#8217;t work ok and I&#8217;ll have to change some details at them.</p>
<p>About the layout, I&#8217;m personaly happy they didn&#8217;t take off the status bar, as many people had asked for(if I wanted a browser without a status bar, I&#8217;d rather use Chrome). Still, if you use windows vista or Seven, you may have some new advances, like the special button at the top of the window, removing the usual menubar, adding it to the title bar.</p>
<p>I do think there are many things to get better or to be increased in Firefox 4 before its release candidate. It promises a lot and I&#8217;m really glad to see the browsers walking toward the same point. The future developers will be happier and faster <img src='http://felipenascimento.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://felipenascimento.org/en/testing-firefox-4-beta-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starting with Canvas in javascript</title>
		<link>http://felipenascimento.org/en/starting-with-canvas-in-javascript/</link>
		<comments>http://felipenascimento.org/en/starting-with-canvas-in-javascript/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 00:20:10 +0000</pubDate>
		<dc:creator>Felipe Nascimento</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Learned Stuff / Tips]]></category>

		<guid isPermaLink="false">http://felipenascimento.org/?p=266</guid>
		<description><![CDATA[Well, canvas is not that young feature, even though, people are still afraid of using it. Most of our browsers can understand it, and the others (I mean, the Internet Explorer, the onlly one which can&#8217;t) will &#8220;learn&#8221; it soon.
Now, I want to put here some tips about how to start working with canvas easily, [...]]]></description>
			<content:encoded><![CDATA[<p>Well, canvas is not that young feature, even though, people are still afraid of using it. Most of our browsers can understand it, and the others (I mean, the Internet Explorer, the onlly one which can&#8217;t) will &#8220;learn&#8221; it soon.<br />
Now, I want to put here some tips about how to start working with canvas easily, and also, how to import images and draw then into it.</p>
<p>First thing, you need a canvas element, and you need to treat it for <s>those</s> that which can&#8217;t render the canvas element properly.</p>
<pre class="brush: xml;">
    &lt;body&gt;
        &lt;canvas id=&quot;theCanvasElement&quot;&gt;
            whatever you write in here, will be shown ONLY
            when your canvas cannot be rendered.
            Of course, it accepts HTML tags
        &lt;/canvas&gt;
    &lt;/body&gt;
</pre>
<p>Ok, now, using event handlers we will treat it in our  javascript</p>
<pre class="brush: xml;">
    &lt;/body&gt;
    &lt;script&gt;
          // yes, addEventListener does not work on IE
          document.addEventListener('load', canvasHandler, false);
    &lt;script&gt;
&lt;/html&gt;
</pre>
<p>Good. When our page is loaded, it will call our method <em>canvasHandler</em>. Let&#8217;s see how we will open the canvas to use with javascript:</p>
<pre class="brush: jscript;">
// let's create some global variables.
// You can use it better with namespaces
var canvas= null;
var ctx= null;
canvasHandler= function(){
    // first of all, we simply get the canvas element itself
    canvas= document.getElementById('theCanvasElement');
    // now, we need to have the CONTEXT to work with
    ctx= canvas.getContext('2d');
}
</pre>
<p>Great, we have now in our variable <em>canvas</em>, the HTML canvas element itself. While the variable ctx has got its context. The context is what we will use to draw. It has the mothods and properties to allow us to interact with the canvas in 2D.<br />
No, unfortunately it does not offer any other context besides 2D.<br />
Our canvas still has no properties. It has no with and height, we can set it then.<br />
From now on, all the javascript code must be set inside the canvasHandler function&#8217;s body, under those  lines shown  before.</p>
<pre class="brush: jscript;">
    canvas.width= 480;
    canvas.height= 340;
</pre>
<p>You probably know how to load an image  from js, right?</p>
<pre class="brush: jscript;">
    var img= new Image();
    img.src= 'url.png';
</pre>
<p>Ok, you can use it to insert images inside your canvas. Just like this.</p>
<pre class="brush: jscript;">
    // instantiate an image
    var img= new Image();
    // we need to use the image when it has finished to load
    img.addEventListener('load', function(){
        // after downloading the image, we can draw it into the canvas
        ctx.drawImage(this);
        // where this= the image just downloaded
    });
    // then, we say the image's url, to it start loading
    img.src= 'url.png';
</pre>
<p>Ok, now you can see an image inside your canvas. The drawImage method supports some different structures refered by its parameters:</p>
<pre class="brush: jscript;">
    // draws the image in the position left=30, top=30
    ctx.drawImage(this, 30, 30);
    // draws the image in the 0/0 position, changing its size
    ctx.drawImage(this, 0, 0, 45, 75);
    // more complex, draws the image croping it
    ctx.drawImage(this, 0, 0, 150, 150, 0, 0, 480, 340);
</pre>
<p>When cropping, you specify the image (this), the position to start showing it (0, 0), then the size you want to crop it (150, 150). After that, you will tell the canvas the size and position the image really is(0, 0, 480, 340).</p>
<p>Soon, I&#8217;ll post about how to really draw  into your canvas through javascript, adding lines, points and texts.</p>
]]></content:encoded>
			<wfw:commentRss>http://felipenascimento.org/en/starting-with-canvas-in-javascript/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>PHPDevBar  has  grown</title>
		<link>http://felipenascimento.org/en/phpdevbar-has-grown/</link>
		<comments>http://felipenascimento.org/en/phpdevbar-has-grown/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 23:02:21 +0000</pubDate>
		<dc:creator>Felipe Nascimento</dc:creator>
				<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[PHP DevBar]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[php developer toolbar]]></category>

		<guid isPermaLink="false">http://felipenascimento.org/?p=264</guid>
		<description><![CDATA[Hello folks.
I&#8217;m very proud  to announce that our addon for firefox, focused on PHP Developers, the PHPDevBar (or PHP Developer ToolBar) has grown a lot and now has already reached the mark of 17 thousand downloads.
Thank you all for your feedback, which has helped us a lot increasing its quality.
If you are a PHP [...]]]></description>
			<content:encoded><![CDATA[<p>Hello folks.<br />
I&#8217;m very proud  to announce that our addon for firefox, focused on PHP Developers, the PHPDevBar (or PHP Developer ToolBar) has grown a lot and now has already reached the mark of 17 thousand downloads.</p>
<p>Thank you all for your feedback, which has helped us a lot increasing its quality.<br />
If you are a PHP Developer and don&#8217;t know  it yet, you can try it and then offer us your feedback.</p>
<p><a href="https://addons.mozilla.org/pt-BR/firefox/addon/12686/">https://addons.mozilla.org/pt-BR/firefox/addon/12686/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://felipenascimento.org/en/phpdevbar-has-grown/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Twitter TT</title>
		<link>http://felipenascimento.org/en/twitter-tt/</link>
		<comments>http://felipenascimento.org/en/twitter-tt/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 21:50:14 +0000</pubDate>
		<dc:creator>Felipe Nascimento</dc:creator>
				<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[funny]]></category>

		<guid isPermaLink="false">http://felipenascimento.org/?p=262</guid>
		<description><![CDATA[It&#8217;s very impressive, the power the internet has nowadays.
Actually, Braziliam people are very present in the world wide internet and many times we simply don&#8217;t notice it.
The biggest example for now is the &#8220;CALA BOCA GALVAO&#8221;, an expression that toke the first position in the trending topics in the world.
Galvão is a sportist narrator, who [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s very impressive, the power the internet has nowadays.<br />
Actually, Braziliam people are very present in the world wide internet and many times we simply don&#8217;t notice it.<br />
The biggest example for now is the &#8220;CALA BOCA GALVAO&#8221;, an expression that toke the first position in the trending topics in the world.<br />
Galvão is a sportist narrator, who some times speaks too much. Well, people from Brazil met themselves with this tool, on twitter and we can see how those things can grow extremely fast!</p>
]]></content:encoded>
			<wfw:commentRss>http://felipenascimento.org/en/twitter-tt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pixlr</title>
		<link>http://felipenascimento.org/en/pixlr/</link>
		<comments>http://felipenascimento.org/en/pixlr/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 17:40:28 +0000</pubDate>
		<dc:creator>Felipe Nascimento</dc:creator>
				<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://felipenascimento.org/?p=260</guid>
		<description><![CDATA[Hey folks.
I often use this great tool to do some quick changes on images, resize or mix files, etc. Then, I thought it would be nice to post here something about it.
Pixlr, at http://pixlr.com is a tool very similar to PhotoShop, but running on your browser (an online PhotoShop), and is also for free.
If you [...]]]></description>
			<content:encoded><![CDATA[<p>Hey folks.<br />
I often use this great tool to do some quick changes on images, resize or mix files, etc. Then, I thought it would be nice to post here something about it.</p>
<p>Pixlr, at <a href="http://pixlr.com">http://pixlr.com</a> is a tool very similar to PhotoShop, but running on your browser (an online PhotoShop), and is also for free.<br />
If you are used to the PhotoShop tools you can use it. It opens really faster, then you will not need to open the PhotoShop itself to make some little changes to a simple image. Plus, it has a <a href="https://addons.mozilla.org/en-US/firefox/addon/9924/">firefox addon</a> with which you can do a lot of things more.</p>
<p>It is, definitely worth it, to take some time to test it.<br />
Of course, there are many features more in your PhotoShop, even thought, its a great, great option. I use it a lot by myself.</p>
]]></content:encoded>
			<wfw:commentRss>http://felipenascimento.org/en/pixlr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
