<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss 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:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" version="2.0">

<channel>
	<title>open core</title>
	
	<link>http://blog.rogeriopvl.com</link>
	<description>I like my coffee black, just like my macbook...</description>
	<pubDate>Sun, 04 Jan 2009 14:39:47 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/</creativeCommons:license><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/rogeriopvl" type="application/rss+xml" /><item>
		<title>IBM PS/1 - My first computer</title>
		<link>http://blog.rogeriopvl.com/archives/ibm-ps1-my-first-computer</link>
		<comments>http://blog.rogeriopvl.com/archives/ibm-ps1-my-first-computer#comments</comments>
		<pubDate>Sat, 03 Jan 2009 16:32:49 +0000</pubDate>
		<dc:creator>rogeriopvl</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.rogeriopvl.com/?p=480</guid>
		<description><![CDATA[
Do you remember your first computer? Well, I do, thanks to this tweet from Célia Leocádio, I found my first machine in this old computer archive website.
Back then I knew almost nothing about these machines. When my parents bought it, I was about 11 years old. I only wanted to play games. The only contact [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img src="http://blog.rogeriopvl.com/wp-content/uploads/ibmps1.jpg" alt="IBM PS/1 PC" /></p>
<p>Do you remember your first computer? Well, I do, thanks to <a href="http://twitter.com/wedesignit/statuses/1093430454">this tweet</a> from <a href="http://www.wdesign-it.com/blog">Célia Leocádio</a>, I found my first machine in this <a href="http://www.old-computers.com">old computer archive</a> website.</p>
<p>Back then I knew almost nothing about these machines. When my parents bought it, I was about 11 years old. I only wanted to play games. The only contact I had with computer programming was in some <a href="http://en.wikipedia.org/wiki/BASIC">BASIC</a> lessons I had at school, where we just copied code from paper to an editor, and then some pretty colored and flashing ASCII  art would appear. I had no clue of what I was doing.</p>
<p>I&#8217;m not sure of the real specs of <a href="http://www.old-computers.com/museum/computer.asp?st=1&#038;c=1274">this computer</a>, it was an IBM PS/1, I believe it had something like 2Mb of RAM, the CPU was a 386sx with speed probably around 10Mhz and came with Windows 3.1 installed.</p>
<p>I remember playing games like Accolate Grand Prix, Prince of Persia (the first game I was addicted to), Crystal Caves, Pacman, Italia 90, and allot of others.</p>
<p>I could now just end up this post saying &#8220;those were the days&#8221;, but well, that would make me feel old :P</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rogeriopvl.com/archives/ibm-ps1-my-first-computer/feed</wfw:commentRss>
		</item>
		<item>
		<title>Copy to clipboard from terminal in OS X</title>
		<link>http://blog.rogeriopvl.com/archives/copy-to-clipboard-from-terminal-in-os-x</link>
		<comments>http://blog.rogeriopvl.com/archives/copy-to-clipboard-from-terminal-in-os-x#comments</comments>
		<pubDate>Fri, 02 Jan 2009 00:42:04 +0000</pubDate>
		<dc:creator>rogeriopvl</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.rogeriopvl.com/?p=469</guid>
		<description><![CDATA[To copy something to the clipboard using the terminal seems to be pretty simple in Mac OS X. There&#8217;s this command pbcopy that copies whatever is passed to it from the terminal into the clipboard (aka pasteboard in OS X, hence the command &#8220;pb&#8221; and not &#8220;cb&#8221;).
To use it&#8217;s just this simple:
echo 'lol' &#124; pbcopy
This [...]]]></description>
			<content:encoded><![CDATA[<p>To copy something to the <a href="http://en.wikipedia.org/wiki/Clipboard_(software)">clipboard</a> using the terminal seems to be pretty simple in Mac OS X. There&#8217;s this command <code>pbcopy</code> that copies whatever is passed to it from the terminal into the clipboard (aka pasteboard in OS X, hence the command &#8220;pb&#8221; and not &#8220;cb&#8221;).</p>
<p>To use it&#8217;s just this simple:</p>
<pre class="code">echo 'lol' | pbcopy</pre>
<p>This will copy &#8220;lol&#8221; into your clipboard. Now you can paste it in your browser, mail or whatever. And if you want to paste this also from the terminal, you can use <code>pbpaste</code>, to do it:</p>
<pre class="code">pbpaste > file.txt</pre>
<p>This will paste the previous copied &#8220;lol&#8221; into &#8220;file.txt&#8221;.</p>
<p>I&#8217;ve googled for something similar in Linux, and found <a href="http://sourceforge.net/projects/xclip">xclip</a>, but it seems that it doesn&#8217;t work with the graphical paste. You can only paste the output using the wheel mouse button.</p>
<p>Oh, and by the way, this the first 2009 post, so Happy New Year! :)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rogeriopvl.com/archives/copy-to-clipboard-from-terminal-in-os-x/feed</wfw:commentRss>
		</item>
		<item>
		<title>World of Goo</title>
		<link>http://blog.rogeriopvl.com/archives/world-of-goo</link>
		<comments>http://blog.rogeriopvl.com/archives/world-of-goo#comments</comments>
		<pubDate>Mon, 29 Dec 2008 12:23:38 +0000</pubDate>
		<dc:creator>rogeriopvl</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.rogeriopvl.com/?p=460</guid>
		<description><![CDATA[
World of Goo Trailer 3by 2dboy
I came to know World of Goo in a interesting article by Jeff Atwood about software piracy, where he says that games like these don&#8217;t deserve to be pirated, and he&#8217;s right.
I&#8217;m not much of a gamer, but this game is simple yet very addictive. I&#8217;m writing about it because [...]]]></description>
			<content:encoded><![CDATA[<p></p>
<div style="text-align: center;"><object width="320" height="239"><param name="movie" value="http://www.dailymotion.com/swf/x72uaz" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><embed src="http://www.dailymotion.com/swf/x72uaz" type="application/x-shockwave-flash" width="420" height="339" allowFullScreen="true" allowScriptAccess="always"></embed></object><br /><b><a href="http://www.dailymotion.com/swf/x72uaz">World of Goo Trailer 3</a></b><br /><i>by <a href="http://www.dailymotion.com/2dboy">2dboy</a></i></div>
<p>I came to know World of Goo in a <a href="http://www.codinghorror.com/blog/archives/001201.html">interesting article</a> by <a href="http://www.codinghorror.com">Jeff Atwood</a> about software piracy, where he says that games like these don&#8217;t deserve to be pirated, and he&#8217;s right.</p>
<p>I&#8217;m not much of a gamer, but this game is simple yet very addictive. I&#8217;m writing about it because it&#8217;s not just another game released by a large game company that builds games in nearly cold mechanical way. World of Goo is a game that the first time you play it, you can tell that it was made with love, every single detail of it.</p>
<p>The game was developed by a two-man team (<a href="http://2dboy.com">2D-Boy</a> an indie game studio), and it&#8217;s the most original game made in the past few years and it has excellent graphic details with that cartoonish feeling.</p>
<p>World of Goo is available for Mac, Windows and soon will be available for Linux too, and it&#8217;s worth every dollar out of the twenty that it costs. If you wish to try the demo click <a href="http://worldofgoo.com/dl2.php?lk=demo&#038;filename=WorldOfGooDemo.1.20.dmg">here for the Mac version</a> or <a href="http://worldofgoo.com/dl2.php?lk=demo&#038;filename=WorldOfGooDemo.1.0.exe">here for the Windows version</a>.</p>
<p><strong>Link:</strong> <a href="http://www.worldofgoo.com">www.worldofgoo.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rogeriopvl.com/archives/world-of-goo/feed</wfw:commentRss>
		</item>
		<item>
		<title>iPod Touch 2G 8Gb</title>
		<link>http://blog.rogeriopvl.com/archives/ipod-touch-2g-8gb</link>
		<comments>http://blog.rogeriopvl.com/archives/ipod-touch-2g-8gb#comments</comments>
		<pubDate>Fri, 26 Dec 2008 21:10:31 +0000</pubDate>
		<dc:creator>rogeriopvl</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[apple]]></category>

		<category><![CDATA[gifts]]></category>

		<category><![CDATA[ipod touch]]></category>

		<category><![CDATA[mac]]></category>

		<guid isPermaLink="false">http://blog.rogeriopvl.com/?p=444</guid>
		<description><![CDATA[
This is my new toy. The tradition of buying Apple stuff on christmas (I want to thank my girl for this gift) is still alive around here.
I got it because I was looking for something like a PDA with wifi to help me organize, browse the web, check for mail and have some fun when [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img src="http://farm4.static.flickr.com/3101/3139231862_9e5143dc8d.jpg" alt="The iPod Touch and my Macbook..." widht="400" /></p>
<p>This is my new toy. The tradition of buying <a href="http://www.apple.com">Apple</a> stuff on christmas (I want to thank my girl for this gift) is still alive around here.</p>
<p>I got it because I was looking for something like a PDA with wifi to help me organize, browse the web, check for mail and have some fun when I&#8217;m in boring places or situations. I&#8217;ve check lots of them, and the only one that seemed to please me, was either the <a href="http://www.apple.com/iphone/">iPhone</a>, or the <a href="http://www.apple.com/ipodtouch/">iPod Touch</a>.</p>
<p>The iPhone here in Portugal is still something very similar to a robbery, so I just went for the iPod.</p>
<p style="text-align: center;"><img src="http://farm4.static.flickr.com/3207/3139232976_c7a3f93c46.jpg" alt="The shiny back of the iPod Touch" widht="400" /></p>
<p>I couldn&#8217;t be more satisfied with it. It does everything I need, and does it well. The web browsing experience is the best that you can get in a mobile device. The tons, I mean literally tons of apps available trough the <a href="http://www.apple.com/iphone/features/appstore.html">app store</a> just a click away are fabulous. Some are free (until now I&#8217;ve only installed free apps) but the paid ones are a bargain like 1 or 2 euros. And well, the bonus for having a macbook is the cherry on top of the cake. This way I can sync all my iCal and Mail.app stuff with the iPod, among other things. I can even ssh or VNC to servers at work. And also check <a href="http://www.twitter.com">Twitter</a> :)</p>
<p>I&#8217;ve been playing with it in the last few days and I can&#8217;t go without it anymore, and yes,   the iPod is the one to blame for the lack of posts on this blog.</p>
<p>More photos available <a href="http://www.flickr.com/photos/rogeriopvl/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rogeriopvl.com/archives/ipod-touch-2g-8gb/feed</wfw:commentRss>
		</item>
		<item>
		<title>Monkey band</title>
		<link>http://blog.rogeriopvl.com/archives/monkey-band</link>
		<comments>http://blog.rogeriopvl.com/archives/monkey-band#comments</comments>
		<pubDate>Sat, 13 Dec 2008 13:49:33 +0000</pubDate>
		<dc:creator>rogeriopvl</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.rogeriopvl.com/?p=438</guid>
		<description><![CDATA[
I found this cartoon when I was reading an interesting article by Malcolm Gladwell, the author of Blink (which I&#8217;m currently reading and highly recommend it). Even if you, the reader, like boys band, you have to admit that it&#8217;s funny, and somewhat close to the truth :D
Cartoon taken from here
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center"><img src="http://blog.rogeriopvl.com/wp-content/uploads/boycartoon.gif" alt="Just as we suspected, they're beginning to form a boy band" /></p>
<p>I found this cartoon when I was reading an <a href="http://www.newyorker.com/reporting/2008/12/15/081215fa_fact_gladwell">interesting article</a> by <a href="http://www.gladwell.com/">Malcolm Gladwell</a>, the author of <a href="http://www.amazon.com/exec/obidos/ASIN/0316172324/gladwellcom">Blink</a> (which I&#8217;m currently reading and highly recommend it). Even if you, the reader, like boys band, you have to admit that it&#8217;s funny, and somewhat close to the truth :D</p>
<p>Cartoon taken from <a href="http://www.newyorker.com/humor/issuecartoons">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rogeriopvl.com/archives/monkey-band/feed</wfw:commentRss>
		</item>
		<item>
		<title>The Cloud Player</title>
		<link>http://blog.rogeriopvl.com/archives/the-cloud-player</link>
		<comments>http://blog.rogeriopvl.com/archives/the-cloud-player#comments</comments>
		<pubDate>Fri, 12 Dec 2008 23:25:17 +0000</pubDate>
		<dc:creator>rogeriopvl</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<category><![CDATA[cloud]]></category>

		<category><![CDATA[music]]></category>

		<category><![CDATA[player]]></category>

		<guid isPermaLink="false">http://blog.rogeriopvl.com/?p=434</guid>
		<description><![CDATA[The Cloud Player is an opensource web application that enables the concept of having your music in  The Cloud. It uses the Sound Cloud API.
I&#8217;ve been using it this week, and found some very interesting songs, and the ability to play endless hours of different music.
Check it out here, and the source here!
]]></description>
			<content:encoded><![CDATA[<p>The Cloud Player is an opensource web application that enables the concept of having your music in  <a href="http://en.wikipedia.org/wiki/Cloud_computing">The Cloud</a>. It uses the <a href="http://soundcloud.com/">Sound Cloud</a> API.</p>
<p>I&#8217;ve been using it this week, and found some very interesting songs, and the ability to play endless hours of different music.</p>
<p>Check it out <a href="http://www.thecloudplayer.com">here</a>, and the source <a href="http://github.com/hinke/the-cloud-player/tree/master">here</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rogeriopvl.com/archives/the-cloud-player/feed</wfw:commentRss>
		</item>
		<item>
		<title>The Simpsons and (M)Apple</title>
		<link>http://blog.rogeriopvl.com/archives/the-simpsons-and-mapple</link>
		<comments>http://blog.rogeriopvl.com/archives/the-simpsons-and-mapple#comments</comments>
		<pubDate>Mon, 01 Dec 2008 23:31:22 +0000</pubDate>
		<dc:creator>rogeriopvl</dc:creator>
		
		<category><![CDATA[Humor]]></category>

		<category><![CDATA[apple]]></category>

		<category><![CDATA[jobs]]></category>

		<category><![CDATA[simpsons]]></category>

		<guid isPermaLink="false">http://blog.rogeriopvl.com/?p=432</guid>
		<description><![CDATA[This video is absolutely hilarious, it&#8217;s a very interesting critic to Apple and Steve Jobs. I see it has purely entertaining and hope that Steve &#8220;Mobs&#8221; has not invested all Apple&#8217;s money on Microsoft :P
Mapple - The Simpsonsby aarplane
For those reading in feeds, here&#8217;s the link to the video.
Update: Well, it seems that the video [...]]]></description>
			<content:encoded><![CDATA[<p>This video is absolutely hilarious, it&#8217;s a very interesting critic to Apple and Steve Jobs. I see it has purely entertaining and hope that Steve &#8220;Mobs&#8221; has not invested all Apple&#8217;s money on Microsoft :P</p>
<div style="text-align: center"><object width="420" height="339"><param name="movie" value="http://www.dailymotion.com/swf/x7kr6e" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><embed src="http://www.dailymotion.com/swf/x7kr6e" type="application/x-shockwave-flash" width="420" height="339" allowFullScreen="true" allowScriptAccess="always"></embed></object><br /><b><a href="http://www.dailymotion.com/swf/x7kr6e">Mapple - The Simpsons</a></b><br /><i>by <a href="http://www.dailymotion.com/aarplane">aarplane</a></i></div>
<p>For those reading in feeds, here&#8217;s <a href="http://www.dailymotion.com/video/x7kr6e_mapple-the-simpsons_fun">the link to the video</a>.</p>
<p><strong>Update: </strong>Well, it seems that the video has been removed for the  second time due to copyright claim by 20th Century Fox, which I think it&#8217;s very sad. It was only a lousy 3 minutes video, what could that hurt? Whatever&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rogeriopvl.com/archives/the-simpsons-and-mapple/feed</wfw:commentRss>
		</item>
		<item>
		<title>OSWASP Summit Videos</title>
		<link>http://blog.rogeriopvl.com/archives/oswasp-summit-videos</link>
		<comments>http://blog.rogeriopvl.com/archives/oswasp-summit-videos#comments</comments>
		<pubDate>Mon, 01 Dec 2008 16:04:11 +0000</pubDate>
		<dc:creator>rogeriopvl</dc:creator>
		
		<category><![CDATA[Security]]></category>

		<category><![CDATA[owasp]]></category>

		<category><![CDATA[videos]]></category>

		<category><![CDATA[vulnerability]]></category>

		<guid isPermaLink="false">http://blog.rogeriopvl.com/?p=430</guid>
		<description><![CDATA[Like I promised when I wrote about this summit, here are the videos of the presentations about the most common and some recently new web vulnerabilities.
Videos list: 

Introduction to OWASP, by Jeff Williams
OWASP Top Ten, by Jeff Williams
OWASP Enterprise Security API (ESAPI), by Jeff Williams
LDAP, XML and SQL Injection, by Marcos Slaviero
LDAP injection demo, by [...]]]></description>
			<content:encoded><![CDATA[<p>Like I promised when I <a href="http://blog.rogeriopvl.com/archives/owasp-eu-summit-2008-portugal">wrote about this summit</a>, here are the videos of the presentations about the most common and some recently new web vulnerabilities.</p>
<p>Videos list: </p>
<ul>
<li><a href="http://www.youtube.com/watch?v=skTNrQOGLOc">Introduction to OWASP</a>, by Jeff Williams</li>
<li><a href="http://www.youtube.com/watch?v=GsRbpshqqII">OWASP Top Ten</a>, by Jeff Williams</li>
<li><a href="http://www.youtube.com/watch?v=-D_bymZ-8vI">OWASP Enterprise Security API (ESAPI)</a>, by Jeff Williams</li>
<li><a href="http://www.youtube.com/watch?v=cl6BHhi2Dys">LDAP, XML and SQL Injection</a>, by Marcos Slaviero</li>
<li><a href="http://www.carlosserrao.net/files/owasp/owaspdemo02.swf">LDAP injection demo</a>, by Marcos Slaviero</li>
<li><a href="http://www.carlosserrao.net/files/owasp/owaspdemo04.swf">XML injection demo</a>, by Marcos Slaviero</li>
<li><a href="http://www.carlosserrao.net/files/owasp/owaspdemo03.swf">SQL injection demo</a>, by Marcos Slaviero</li>
<li><a href="http://www.youtube.com/watch?v=H9srYh0HMP4">Clickjacking</a>, by Arshan Dabirsiaghi</li>
<li><a href="http://www.carlosserrao.net/files/owasp/owaspdemo01.swf">Clickjacking demo</a>, by Arshan Dabirsiaghi</li>
<li><a href="http://www.youtube.com/watch?v=uf9hw-qvx-I">Phishing demo</a>, by Matt Tesauro and Brad Causey</li>
<li><a href="http://www.youtube.com/watch?v=r04EOuukvMQ">Training sessions overview</a>, by Mano Paul</li>
</ul>
<p><strong>Source: </strong><a href="blog.carlosserrao.net">blog.carlosserrao.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rogeriopvl.com/archives/oswasp-summit-videos/feed</wfw:commentRss>
		</item>
		<item>
		<title>Agile software development - wrong or right?</title>
		<link>http://blog.rogeriopvl.com/archives/agile-software-development-wrong-or-right</link>
		<comments>http://blog.rogeriopvl.com/archives/agile-software-development-wrong-or-right#comments</comments>
		<pubDate>Mon, 24 Nov 2008 11:37:34 +0000</pubDate>
		<dc:creator>rogeriopvl</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[agile]]></category>

		<category><![CDATA[development]]></category>

		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://blog.rogeriopvl.com/?p=427</guid>
		<description><![CDATA[This post is a result of a discussion about software development methodologies, which some of the people involved were convinced that Agile was just a chaotic way of getting a software product done.
The Agile software development methodologies are often mistakenly compared to cowboy coding and related to undisciplined developers. This couldn&#8217;t be more far from [...]]]></description>
			<content:encoded><![CDATA[<p>This post is a result of a discussion about software development methodologies, which some of the people involved were convinced that Agile was just a chaotic way of getting a software product done.</p>
<p>The Agile software development methodologies are often mistakenly compared to <a href="http://en.wikipedia.org/wiki/Cowboy_coding">cowboy coding</a> and related to undisciplined developers. This couldn&#8217;t be more far from the truth. But before I continue, let me explain what Agile software development is.</p>
<p style="text-align: center;"><img src="http://blog.rogeriopvl.com/wp-content/uploads/agile.png" alt="agile" width="400" /></p>
<p>Agile is a conceptual framework that tries to mitigate the risks in a project by developing software in a short amount of time. It&#8217;s an iterative method, and each iteration can last 1 to 4 weeks, having casual tasks from a complete project life cycle (planning, design, coding, testing and documentation).</p>
<p>Each iteration starts by defining the requirements (interaction stories) and ends with potentially market-ready software.</p>
<p>Teams have the ability to self organize as they speak directly with other team members and the stakeholders.</p>
<p>But what makes Agile really different from other methodologies is the fact that the entire process is adaptive. While others like the waterfall model, spend allot of time and effort trying to predict every aspect of the process, Agile just keeps going and adapts itself to whatever comes along. Just think about all the planning that the waterfall needs, and then if something changes, it goes back to the start. It&#8217;s slow and tends to resist change.</p>
<p style="text-align: center;"><a href="http://blog.rogeriopvl.com/wp-content/uploads/scrum.png"><img src="http://blog.rogeriopvl.com/wp-content/uploads/scrum.png" alt="scrum" width="420" /></a></p>
<p>Of course that this is not suited for every software project. The best case for Agile is when you have a medium size project with a small team (up to 20 programmers), a constantly changing environment, and a demanding client that loves to add or remove features from the projects every new day (don&#8217;t they all do?) and is collaborative.</p>
<p>In the end, you get a happy client, because he is not locked up in a contractual negotiation, instead he collaborates in the project and has the freedom to change his mind whenever he feels that something should be different. Generally this also increases usability, because once again, the client/user took part in the process. Quoting <a href="http://www.useit.com">Jakob Nielsen</a> regarding Agile methods:</p>
<blockquote><p>&#8220;Agile methods hold promise for addressing the many ways in which traditional development methodologies erect systematic barriers to good usability practice.&#8221;</p>
</blockquote>
<p>You can read the article about usability and Agile methods by Jakob Nielsen right <a href="http://www.useit.com/alertbox/agile-methods.html">here</a>.</p>
<p>There are some famous examples of Agile methods, like <a href="http://en.wikipedia.org/wiki/Extreme_Programming">XP (Extreme Programming)</a> or <a href="http://en.wikipedia.org/wiki/Scrum_(development)">Scrum</a>, and I will talk about them later in another post. For now, just concluding the title, Agile is probably the right way for most of today&#8217;s projects, specially in the Web 2.0 field. But it&#8217;s not easy to change to this kind of methodology, and requires everyone involved to collaborate intensively. If the change comes naturally, you will probably get great and fast results.</p>
<p><strong>More about Agile: </strong></p>
<ul>
<li><a href="http://martinfowler.com/articles/newMethodology.html">The New Methodology by Martin Fowler</a></li>
<li><a href="http://agilemanifesto.org/">Agile Manifesto</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.rogeriopvl.com/archives/agile-software-development-wrong-or-right/feed</wfw:commentRss>
		</item>
		<item>
		<title>What if… the Matrix ran on Windows?</title>
		<link>http://blog.rogeriopvl.com/archives/what-if-the-matrix-ran-on-windows</link>
		<comments>http://blog.rogeriopvl.com/archives/what-if-the-matrix-ran-on-windows#comments</comments>
		<pubDate>Tue, 18 Nov 2008 21:21:11 +0000</pubDate>
		<dc:creator>rogeriopvl</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.rogeriopvl.com/?p=425</guid>
		<description><![CDATA[This is hilarious, just watch the video!
Link: www.collegehumor.com/video:1886349, taken from here
]]></description>
			<content:encoded><![CDATA[<p>This is hilarious, just watch the video!</p>
<p><strong>Link: </strong><a href="http://www.collegehumor.com/video:1886349">www.collegehumor.com/video:1886349</a>, taken from <a href="http://www.geeksaresexy.net/2008/11/10/the-matrix-runs-on-windows/">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.rogeriopvl.com/archives/what-if-the-matrix-ran-on-windows/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
