<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Pedro&#039;s Personal Blog</title>
	<atom:link href="http://personalphao.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://personalphao.wordpress.com</link>
	<description>Hey, this is my personal blog where I talk about myself, marketing, sales, computers and related.</description>
	<lastBuildDate>Wed, 10 Aug 2011 16:07:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='personalphao.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Pedro&#039;s Personal Blog</title>
		<link>http://personalphao.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://personalphao.wordpress.com/osd.xml" title="Pedro&#039;s Personal Blog" />
	<atom:link rel='hub' href='http://personalphao.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Documenting Software</title>
		<link>http://personalphao.wordpress.com/2011/08/10/documenting-software/</link>
		<comments>http://personalphao.wordpress.com/2011/08/10/documenting-software/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 16:05:09 +0000</pubDate>
		<dc:creator>Pedro Henrique</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[bottom up]]></category>
		<category><![CDATA[top down]]></category>
		<category><![CDATA[crockford]]></category>
		<category><![CDATA[on lisp]]></category>
		<category><![CDATA[paul graham]]></category>

		<guid isPermaLink="false">http://personalphao.wordpress.com/?p=201</guid>
		<description><![CDATA[I sometimes get amazed on how easier it gets to write the software given that I have its documentation written down. Now that I am writing this stuff, it looks obvious that it is true, but back when I was struggling to implement a HTML utilities library for myself without its documentation, writting one prior [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=personalphao.wordpress.com&amp;blog=9242390&amp;post=201&amp;subd=personalphao&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I sometimes get amazed on how easier it gets to write the software given that I have its documentation written down.</p>
<p>Now that I am writing this stuff, it looks obvious that it is true, but back when I was struggling to implement a HTML utilities library for myself without its documentation, writting one prior to writting its source code made everything much easier.</p>
<p>I think this is related to having a precise software specification prior to its implementaiton process.</p>
<p>Obviously, in most cases, it is not even possible to document the whole software before having it, but it turns out that a complete and flawless documentation before hand isn&#8217;t needed. It is also pointless. Software design will change during the implementation process. However, you&#8217;ll still benefit from having a clear image of what you want to create.</p>
<p>In talking to some people at irc.freenode.com, it was somewhat common to have people starting to develop something using what is called OOP features, such as C++/Java classes. But, later they would just go back to some simpler language such as Python, Perl or Shell Script, sometimes, even C (I still, rarely, write some command line applications in C). Many GNU programmers tend to do pretty much everything in either C or some Lisp dialect (mainly emacs lisp).</p>
<p>Sometimes, your initial idea of what the software is going to need is not right. Some other times, you want to use a programming technique just because you think it is the better one (many people has that belief for OOP), or just because you like it (that is me for functional programming).</p>
<p>If, in the middle of the implementation process, you decide to change some interface, or some other piece of design, then things can get messier since the new design and the old design may confuse you (this just happened to me, by the way).</p>
<p>You may be tempted to believe that the design changes are small, and you&#8217;d be able to have two clear separated images of the older and the newer design, but it ends up being a very error prone situation. I suggest writing down all versions of the software design, as small documentation documents, as you go along with the implementation process.</p>
<p>Some documents out there, and people, suggest that you should design the whole software before hand, and just then implement it. I don&#8217;t agree with that idea. It looks too idealistic, and it&#8217;d make the whole software development process much slower. Sometimes, it is just better to just get some code written to see how things will be run by a computer.</p>
<p>An example of that is the discussion of bottom up versus top down design. I&#8217;ve heard people saying (very few) say that top down design is worthless. But my own experience says that top down design is very efficient for finding out how to do create your bottom up design, which is essential.</p>
<p>It is very hard to guess before hand what is the language you should build so that the implementation process of a software specification becomes natural. One way to get the feeling for which is this language is to actually start writing the software in top down design. Separate the major parts, and, as you write the software, you&#8217;ll feel the need for the layer of abstractions that would be very convenient to be had so to write the program.</p>
<p>In the beginning of On Lisp, this &#8220;process&#8221; is explained: how writting a software should give you the feeling &#8220;Gee, it really would be good to have SUCH AND SUCH feature in here.&#8221;, or &#8220;What I really need is THIS FEATURE.&#8221;. I don&#8217;t believe you can get this kind of insight without actually try to write the software.</p>
<p>There is a series of videos on JavaScript, by Douglas Crockford. The first one of the series is a speech he gives telling part of the story of computers and software. In that video, he told that functions, at first, were good for performance (space-wise), since your program text could be smaller given that it would have a given set of instructions repeated many times in it. After that, functions became means for modularity.</p>
<p>But later, people started to use functions in a different way. He tells that people started to think like &#8220;Which are the functions I have to write so that implementing my software becomes easier?&#8221;, which is the nature of bottom up design. And the only actual way, that I am aware of, to effectively answer that question is to try to write the software, and see how the base language gets in your way during the implementation process.</p>
<p>I think I got my point across. This post is getting pretty big. Bye now =).</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/personalphao.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/personalphao.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/personalphao.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/personalphao.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/personalphao.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/personalphao.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/personalphao.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/personalphao.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/personalphao.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/personalphao.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/personalphao.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/personalphao.wordpress.com/201/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/personalphao.wordpress.com/201/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/personalphao.wordpress.com/201/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=personalphao.wordpress.com&amp;blog=9242390&amp;post=201&amp;subd=personalphao&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://personalphao.wordpress.com/2011/08/10/documenting-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/922fd8af498cf85af54b464e3144000d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">phao</media:title>
		</media:content>
	</item>
		<item>
		<title>Linking, loading and Chicken&#8217;s libraries, modules and deployment system</title>
		<link>http://personalphao.wordpress.com/2011/08/01/linking-loading-and-chickens-libraries-modules-and-deployment-system/</link>
		<comments>http://personalphao.wordpress.com/2011/08/01/linking-loading-and-chickens-libraries-modules-and-deployment-system/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 14:49:13 +0000</pubDate>
		<dc:creator>Pedro Henrique</dc:creator>
				<category><![CDATA[Chicken]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Scheme]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[chicken]]></category>
		<category><![CDATA[csc]]></category>
		<category><![CDATA[deployment]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[libraries]]></category>
		<category><![CDATA[scheme]]></category>

		<guid isPermaLink="false">http://personalphao.wordpress.com/?p=193</guid>
		<description><![CDATA[I&#8217;ve wrote a tutorial on the topic in this post&#8217;s title. This tutorial is pretty much the result of me struggling to understand how I can use chicken for &#8220;real world&#8221; development. I believe it is worth reading. Here is a link to it. The guide is not complete yet. Mainly, how to use the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=personalphao.wordpress.com&amp;blog=9242390&amp;post=193&amp;subd=personalphao&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve wrote a tutorial on the topic in this post&#8217;s title.</p>
<p>This tutorial is pretty much the result of me struggling to understand how I can use chicken for &#8220;real world&#8221; development.</p>
<p>I believe it is worth reading. <a title="Linking, loading and Chicken's libraries, modules and deployment system" href="http://phao.50webs.com/docs/link.loading.chicken.html" target="_blank">Here</a> is a link to it.</p>
<p>The guide is not complete yet. Mainly, how to use the deployment options for chicken-install needs some tweaking. I will wait until I get some more experience with Chicken to finish the tutorial.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/personalphao.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/personalphao.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/personalphao.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/personalphao.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/personalphao.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/personalphao.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/personalphao.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/personalphao.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/personalphao.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/personalphao.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/personalphao.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/personalphao.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/personalphao.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/personalphao.wordpress.com/193/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=personalphao.wordpress.com&amp;blog=9242390&amp;post=193&amp;subd=personalphao&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://personalphao.wordpress.com/2011/08/01/linking-loading-and-chickens-libraries-modules-and-deployment-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/922fd8af498cf85af54b464e3144000d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">phao</media:title>
		</media:content>
	</item>
		<item>
		<title>Functional Currying in Scheme</title>
		<link>http://personalphao.wordpress.com/2011/02/25/functional-currying-in-scheme/</link>
		<comments>http://personalphao.wordpress.com/2011/02/25/functional-currying-in-scheme/#comments</comments>
		<pubDate>Fri, 25 Feb 2011 01:28:43 +0000</pubDate>
		<dc:creator>Pedro Henrique</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[functional programming]]></category>
		<category><![CDATA[scheme]]></category>

		<guid isPermaLink="false">http://personalphao.wordpress.com/?p=155</guid>
		<description><![CDATA[This post is about a realization I had on functional currying (on how to do that in scheme in a very simple way).<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=personalphao.wordpress.com&amp;blog=9242390&amp;post=155&amp;subd=personalphao&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Back when I was taking a look at Haskell, I saw that the language supports functional currying automatically: if you call a function, not providing all the arguments it requires, what you get is another function that can be called later, that takes the missing arguments, and does the job of the original function as if all the arguments were given all at once in a complete direct call. In other programming languages, if you call a function not giving all the needed arguments, you get an error. As in Scheme.</p>
<p>However, in Scheme, there is a very easy and simple way to implement functional currying; like the one I saw in Haskell.</p>
<p><code> </code></p>
<pre>(define (curry proc . args)
  (lambda x
    (apply proc (append args x))))</pre>
<p>There isn&#8217;t much to talk about this, but you can, as I&#8217;m still doing, keep staring at it and see how simple it is.</p>
<p>Using this procedure, you can do currying in scheme. It seems that there is a srfi that implements currying with a macro called cut, but I&#8217;m unaware of it.</p>
<p>You might want to apply curry giving sequential, but not starting, arguments: giving arguments second, third and fourth for example; and then, the return function will take all the missing arguments and make the first given argument, as the procedure given to it in the first place&#8217;s first argument; the second argument would become the procedure&#8217;s fifth argument, etc.</p>
<p>Here is curry-middle, which does that.</p>
<p><code> </code></p>
<pre>(define (curry-middle proc start . args)
  (define (list-until l n)
    (if (zero? n)
        '()
        (cons (car l) (list-until (cdr l) (sub1 n)))))
  (lambda x
    (apply proc (append (list-until x start) args (list-tail x start)))))</pre>
<p>Curry-middle is also simple, and is also small. It&#8217;d be a one liner if I knew some built-in function that could replace list-until.</p>
<p>I didn&#8217;t test those functions but their ideas are ok, and they seem to work. The first one (i.e. curry); I can&#8217;t see how it&#8217;d fail; but the second one may have some flaw I&#8217;m not seeing.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/personalphao.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/personalphao.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/personalphao.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/personalphao.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/personalphao.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/personalphao.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/personalphao.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/personalphao.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/personalphao.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/personalphao.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/personalphao.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/personalphao.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/personalphao.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/personalphao.wordpress.com/155/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=personalphao.wordpress.com&amp;blog=9242390&amp;post=155&amp;subd=personalphao&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://personalphao.wordpress.com/2011/02/25/functional-currying-in-scheme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/922fd8af498cf85af54b464e3144000d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">phao</media:title>
		</media:content>
	</item>
		<item>
		<title>I&#8217;m Back</title>
		<link>http://personalphao.wordpress.com/2011/02/18/im-back/</link>
		<comments>http://personalphao.wordpress.com/2011/02/18/im-back/#comments</comments>
		<pubDate>Fri, 18 Feb 2011 04:40:37 +0000</pubDate>
		<dc:creator>Pedro Henrique</dc:creator>
				<category><![CDATA[Myself]]></category>

		<guid isPermaLink="false">http://personalphao.wordpress.com/?p=147</guid>
		<description><![CDATA[I'm back.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=personalphao.wordpress.com&amp;blog=9242390&amp;post=147&amp;subd=personalphao&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well. I left this blog some time ago (actually, long ago), but I&#8217;m back now.</p>
<p>If you&#8217;re an old reader reading this, I gotta tell you that the approach of the blog will be different. I&#8217;m no longer interested in psychology, advertising and related stuff. I&#8217;m back to programming, and gaming, which were the things I liked before even getting interested in the stuff I used to talk about here.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/personalphao.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/personalphao.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/personalphao.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/personalphao.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/personalphao.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/personalphao.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/personalphao.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/personalphao.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/personalphao.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/personalphao.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/personalphao.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/personalphao.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/personalphao.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/personalphao.wordpress.com/147/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=personalphao.wordpress.com&amp;blog=9242390&amp;post=147&amp;subd=personalphao&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://personalphao.wordpress.com/2011/02/18/im-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/922fd8af498cf85af54b464e3144000d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">phao</media:title>
		</media:content>
	</item>
		<item>
		<title>Jazz Music; Please, Help Me People</title>
		<link>http://personalphao.wordpress.com/2009/10/14/jazz-music-please-help-me-people/</link>
		<comments>http://personalphao.wordpress.com/2009/10/14/jazz-music-please-help-me-people/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 22:37:45 +0000</pubDate>
		<dc:creator>Pedro Henrique</dc:creator>
				<category><![CDATA[Myself]]></category>
		<category><![CDATA[frank zappa]]></category>
		<category><![CDATA[jazz]]></category>
		<category><![CDATA[king kong]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://personalphao.wordpress.com/?p=121</guid>
		<description><![CDATA[I need recommendations on bands that play jazz.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=personalphao.wordpress.com&amp;blog=9242390&amp;post=121&amp;subd=personalphao&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was listening to some stuff by <span style="text-decoration:underline;"><strong><em>Frank Zappa</em></strong></span> on YouTube and found this video.</p>
<span style="text-align:center; display: block;"><a href="http://personalphao.wordpress.com/2009/10/14/jazz-music-please-help-me-people/"><img src="http://img.youtube.com/vi/vBhkyB_25-o/2.jpg" alt="" /></a></span>
<p>I&#8217;ve found that very great. Amazing!</p>
<p>If you know any composer, band or anything that plays that style, please leave a comment to me with suggestions.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/personalphao.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/personalphao.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/personalphao.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/personalphao.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/personalphao.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/personalphao.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/personalphao.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/personalphao.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/personalphao.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/personalphao.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/personalphao.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/personalphao.wordpress.com/121/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/personalphao.wordpress.com/121/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/personalphao.wordpress.com/121/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=personalphao.wordpress.com&amp;blog=9242390&amp;post=121&amp;subd=personalphao&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://personalphao.wordpress.com/2009/10/14/jazz-music-please-help-me-people/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/922fd8af498cf85af54b464e3144000d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">phao</media:title>
		</media:content>
	</item>
		<item>
		<title>Apparent risk and actual risk, by Seth Godin</title>
		<link>http://personalphao.wordpress.com/2009/10/12/apparent-risk-and-actual-risk-by-seth-godin/</link>
		<comments>http://personalphao.wordpress.com/2009/10/12/apparent-risk-and-actual-risk-by-seth-godin/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 12:31:13 +0000</pubDate>
		<dc:creator>Pedro Henrique</dc:creator>
				<category><![CDATA[People]]></category>
		<category><![CDATA[recommendation]]></category>
		<category><![CDATA[seth godin]]></category>

		<guid isPermaLink="false">http://personalphao.wordpress.com/?p=118</guid>
		<description><![CDATA[I&#8217;m here just to recommend a post I think everyone should read. Apparent risk and actual risk<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=personalphao.wordpress.com&amp;blog=9242390&amp;post=118&amp;subd=personalphao&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m here just to recommend a post I think everyone should read.</p>
<p><a title="Apparent risk and actual risk" href="http://sethgodin.typepad.com/seths_blog/2009/10/apparent-risk-and-actual-risk.html" target="_blank"><strong>Apparent risk and actual risk</strong></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/personalphao.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/personalphao.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/personalphao.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/personalphao.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/personalphao.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/personalphao.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/personalphao.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/personalphao.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/personalphao.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/personalphao.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/personalphao.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/personalphao.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/personalphao.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/personalphao.wordpress.com/118/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=personalphao.wordpress.com&amp;blog=9242390&amp;post=118&amp;subd=personalphao&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://personalphao.wordpress.com/2009/10/12/apparent-risk-and-actual-risk-by-seth-godin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/922fd8af498cf85af54b464e3144000d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">phao</media:title>
		</media:content>
	</item>
		<item>
		<title>Is it really necessary to think?</title>
		<link>http://personalphao.wordpress.com/2009/10/09/is-it-really-necessary-to-think/</link>
		<comments>http://personalphao.wordpress.com/2009/10/09/is-it-really-necessary-to-think/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 18:34:22 +0000</pubDate>
		<dc:creator>Pedro Henrique</dc:creator>
				<category><![CDATA[Thinking]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Philosophy]]></category>
		<category><![CDATA[systematic approach]]></category>

		<guid isPermaLink="false">http://personalphao.wordpress.com/?p=103</guid>
		<description><![CDATA[If we can see the pattern and then build a design that will take care of everything, we can save the time and effort of thinking about that think and move on to take care of more important things that we don't know any pattern to them.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=personalphao.wordpress.com&amp;blog=9242390&amp;post=103&amp;subd=personalphao&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was watching <a href="http://www.youtube.com/watch?v=DTepA-WV_oE">this video on YouTube that is a speech of a man talking about design</a>. Design in the sense of creating models, but not in the sense of graphical models.</p>
<p>He was showing examples of very dumb beings (such as cows, sheep, ants, &#8230;) that successfully survived and evolved without sophisticated thinking. They were dumb and yet survived.</p>
<p>And then he said a brilliant thing. Which was, <q>They aren&#8217;t smart and don&#8217;t have to. The design is there, in the nature, to take care of its elements.</q>.</p>
<p>Now, stop and think for a while. How smart is that? I had such a big &#8220;aha!&#8221; when I&#8217;ve heard that.</p>
<p>This post&#8217;s title is a bit misleading. I&#8217;m not suggest you to stop thinking and let nature take care of everything. But it is fascinating the fact that whatever created nature, consciously or not, made a design that would take care of itself without its elements having to think (or without them having to do complicated thinking).</p>
<p>We, humans, can think very well, but we are a huge exception because if we are the most capable (in terms of thinking), then the second place is <strong><em><span style="text-decoration:underline;">way</span></em></strong> below us. So, following the general rule, which doesn&#8217;t include us, it&#8217;s possible to create a design that take care of everything and no element of it needs to do any kind of complicated thinking (only basic thoughts for adaptation).</p>
<p>One <span style="text-decoration:underline;">can</span> say that us, humans, don&#8217;t do any kind of complicated thinking too and that we only adapt so that we survive (which many people believe is the truth). So, even including us, the design takes care of its owner without requiring it to do anything more complex than adaptation (e.g. nature&#8217;s design takes care of nature).</p>
<p>Regardless of all my conclusions being right or wrong, &#8230;</p>
<p><strong><big>&#8230; Let&#8217;s Getting practical</big></strong></p>
<p>One can apply that to his/her life. Some things we do have patterns that can be spotted by very simple analysis.</p>
<p>If we can see the pattern and then build a design that will take care of everything, we can save the time and effort of thinking about that think and move on to take care of more important things that we don&#8217;t know any pattern to them.</p>
<p><em><strong>Note:</strong> I&#8217;ve written this post in a hurry to not lose the &#8220;aha&#8221;, so it may be confusing for now. I&#8217;ll review it later one.</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/personalphao.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/personalphao.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/personalphao.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/personalphao.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/personalphao.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/personalphao.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/personalphao.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/personalphao.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/personalphao.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/personalphao.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/personalphao.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/personalphao.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/personalphao.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/personalphao.wordpress.com/103/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=personalphao.wordpress.com&amp;blog=9242390&amp;post=103&amp;subd=personalphao&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://personalphao.wordpress.com/2009/10/09/is-it-really-necessary-to-think/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/922fd8af498cf85af54b464e3144000d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">phao</media:title>
		</media:content>
	</item>
		<item>
		<title>Adding to, improving and tweaking things</title>
		<link>http://personalphao.wordpress.com/2009/10/06/adding-to-improving-and-tweaking-things/</link>
		<comments>http://personalphao.wordpress.com/2009/10/06/adding-to-improving-and-tweaking-things/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 11:07:27 +0000</pubDate>
		<dc:creator>Pedro Henrique</dc:creator>
				<category><![CDATA[Myself]]></category>
		<category><![CDATA[Thinking]]></category>
		<category><![CDATA[quotes]]></category>

		<guid isPermaLink="false">http://personalphao.wordpress.com/?p=97</guid>
		<description><![CDATA[Do you think that every "improvement" is good? Take a look and discover the truth.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=personalphao.wordpress.com&amp;blog=9242390&amp;post=97&amp;subd=personalphao&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just came up with this:</p>
<blockquote><p>If you want to tweak something, then remember that most tweaks you can add, if used incorrectly, can be counter productive and <em>decrease</em> its effectiveness.</p></blockquote>
<p>There is a theory that says if you add a reason why someone should do something, they are more likely to do it. Which makes sense. We tend to do things better and more often when we know why we do it.</p>
<p>But here is something. If you don&#8217;t have a good enough reason, why would you give one?</p>
<blockquote><p>Go take a bath!</p></blockquote>
<p>Can be way better than:</p>
<blockquote><p>Go take a bath because you need to wake up early tomorrow.</p></blockquote>
<p>And surely better than:</p>
<blockquote><p>Go take a bath because every child is supposed to take a bath at 8pm.</p></blockquote>
<p>Sometimes, it is not obvious that we are screwing things by tweaking them. The reason theory example is just one of the several examples anyone can easily think of.</p>
<p>Bottom line is don&#8217;t tweak if you don&#8217;t know how to.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/personalphao.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/personalphao.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/personalphao.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/personalphao.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/personalphao.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/personalphao.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/personalphao.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/personalphao.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/personalphao.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/personalphao.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/personalphao.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/personalphao.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/personalphao.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/personalphao.wordpress.com/97/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=personalphao.wordpress.com&amp;blog=9242390&amp;post=97&amp;subd=personalphao&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://personalphao.wordpress.com/2009/10/06/adding-to-improving-and-tweaking-things/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/922fd8af498cf85af54b464e3144000d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">phao</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8220;If you want to know why something is wrong, then you need to know what it would be like if this thing was in its perfect state.&#8221;</title>
		<link>http://personalphao.wordpress.com/2009/10/05/if-you-want-to-know-why-something-is-wrong-then-you-need-to-know-what-it-would-be-like-if-this-thing-was-in-its-perfect-state/</link>
		<comments>http://personalphao.wordpress.com/2009/10/05/if-you-want-to-know-why-something-is-wrong-then-you-need-to-know-what-it-would-be-like-if-this-thing-was-in-its-perfect-state/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 20:57:40 +0000</pubDate>
		<dc:creator>Pedro Henrique</dc:creator>
				<category><![CDATA[Thinking]]></category>
		<category><![CDATA[quotes]]></category>
		<category><![CDATA[systematic approach]]></category>

		<guid isPermaLink="false">http://personalphao.wordpress.com/?p=94</guid>
		<description><![CDATA[If you want to know why something is wrong, then you need to know what it would be like if this thing was in its perfect state.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=personalphao.wordpress.com&amp;blog=9242390&amp;post=94&amp;subd=personalphao&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The title says everything.</p>
<blockquote><p>If you want to know why something is wrong, then you need to know what it would be like if this thing was in its perfect state.</p></blockquote>
<p>This type of thought fascinates me because I see so many people trying to find what is wrong with something but without having a systematic way of thinking so that they can solve the problem. This quote relates to this because it gives you a way to start thinking about things that are wrong.</p>
<p>By the way, that is a great way of developing software. You can start with a model of a function in its perfect state; then write some code that is surely wrong; then start applying this kind of thinking to start fixing the function to make it fit the model.</p>
<p><strong><em>NOTE:</em></strong><em> I&#8217;m using functions as examples because I&#8217;m used to that. You can do that with anything, obviously.</em></p>
<p><em><strong>NOTE 2:</strong> I&#8217;ve seen that quote in a Biology documentary. Sadly I don&#8217;t know who is the guy that said it.<br />
</em></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/personalphao.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/personalphao.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/personalphao.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/personalphao.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/personalphao.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/personalphao.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/personalphao.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/personalphao.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/personalphao.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/personalphao.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/personalphao.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/personalphao.wordpress.com/94/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/personalphao.wordpress.com/94/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/personalphao.wordpress.com/94/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=personalphao.wordpress.com&amp;blog=9242390&amp;post=94&amp;subd=personalphao&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://personalphao.wordpress.com/2009/10/05/if-you-want-to-know-why-something-is-wrong-then-you-need-to-know-what-it-would-be-like-if-this-thing-was-in-its-perfect-state/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/922fd8af498cf85af54b464e3144000d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">phao</media:title>
		</media:content>
	</item>
		<item>
		<title>User Generated Content &#8211; What Is It For?</title>
		<link>http://personalphao.wordpress.com/2009/10/02/user-generated-content-what-is-it-for/</link>
		<comments>http://personalphao.wordpress.com/2009/10/02/user-generated-content-what-is-it-for/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 20:24:20 +0000</pubDate>
		<dc:creator>Pedro Henrique</dc:creator>
				<category><![CDATA[People]]></category>
		<category><![CDATA[Thinking]]></category>
		<category><![CDATA[Philosophy]]></category>
		<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[user generated content]]></category>

		<guid isPermaLink="false">http://personalphao.wordpress.com/?p=79</guid>
		<description><![CDATA[Here I talk a little about user generated content, if they are trustworthy. It's just a post for thoughts. If you want to think a little, read.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=personalphao.wordpress.com&amp;blog=9242390&amp;post=79&amp;subd=personalphao&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I was talking to my brother today. He has just read <a title="Facts And Explanations Proving Why Most People Don’t Know How To Write Reviews " href="http://personalphao.wordpress.com/2009/08/31/how-people-write-reviews/" target="_blank">my post on facts about how people write reviews</a> and there I show that many people don&#8217;t know what they&#8217;re talking about when they review a product. Other people go to a review page, see those crazy reviews and get the wrong impression about the product. That is what I believe is happening to some extent.</p>
<p>If you further read that post, which is very long, but useful, you can kind of conclude that you should not trust that religiously in user generated content.</p>
<p>What I&#8217;m going to bring in to this post is an issue that can be considered totally nonsense and useless, but I really think it&#8217;s worth to be analyzed for a while.</p>
<p>If you cannot trust in said to be <em>serious</em> user generated content, such as products reviews, what are they for? The reason why people read them is to clarify their thoughts, but since people can easily get confused by them, why are they for?</p>
<p>Of course every piece of existing content can confuse people and many do, but confusion happens much more frequently with user generated content and not with academic generated content, company generated content or serious news company generated content (I pretty much consider poor, which is what most are, news website normal user generated content websites).</p>
<p>If you take into consideration that you cannot trust anything (which can be argued to be true) and not trust anything, you don&#8217;t move forward with your life basically. Which is pretty bad. So, we have to trust something and make some decisions based on that. Most people are choosing to trust in normal user generated content without contesting instead of doing further research to see what is really true.</p>
<p>Are user generated content for guiding people who follow any or some advice without questioning?</p>
<p>When I was talking to my brother, he told me that he have already used reviews to help in his thoughts (he didn&#8217;t say if he used reviews extensively or just to have some general and not well formed ideas). By making the extended analysis I showed him that user generated reviews are not trustworthy. And that leads me to something relevant to this, which are priorities.</p>
<p>People have priorities. What I need now is different from what you need now. What I am doing now is different from what you&#8217;re doing now. Based on our current situation, we tend to prioritize different things. As a results of that we tend to be more analytical to some things than to others. For example, I&#8217;m more analytical to ads and sales related stuff now, but my brother is probably more analytical towards algorithms related stuff.</p>
<p>A worrying is just another &#8220;pain&#8221; in our lives. Adding another priority (e.g. being analytical towards every user generated content out there) would add a huge worrying for us, so we just avoid it. Maybe priorities answer why we believe in user generated content so easily. We just don&#8217;t want to analyze them and see if they&#8217;re right because that is too painful.</p>
<p>In my post I refer to in the beginning of this post, people review a book I&#8217;ve already read. In the past, reading that book, understanding it and getting to be aware of it and its content were my priorities. Not because I wanted to read reviews and see if they were right or not in the future, but because of something else, but the specific reason is not important here. The fact is that the priority I was with resulted in an awareness that allowed me to spot something wrong in all the 1 start reviews for that book.</p>
<p>So, there are many things going on here.</p>
<ul>
<li>Priorities, which leads you into getting knowledge hopefully.</li>
<li>Knowledge, which leads you into being aware hopefully.</li>
<li>Awareness, which allows you to spot crazy stuff such as nonsense reviews hopefully.</li>
</ul>
<p>The original question here was <em>&#8220;What are user generated content for if they are so crap?&#8221;</em>.</p>
<p>Supposing that people who have that awareness can easily decide if a piece of material is good or not without the help of user generated content, then user generated content only serves people without that awareness. Those cannot see whether a piece of user generated content is good or not and they don&#8217;t try to because they lack the awareness. Now, the question that pops up inside my head is: <strong>Why people without the awareness consider user generated content to be true and not false?<br />
</strong></p>
<p>I ask that because it&#8217;s what happens most of the times. People could suppose all user generated content are wrong, but they do the opposite. Examples:</p>
<ul>
<li>People ask questions in Yahoo! answers.</li>
<li>People ask questions in Orkut communities.</li>
<li>People ask for recommendations on twitter.</li>
<li>People ask for questions in BBS.</li>
<li>&#8230;</li>
</ul>
<p>I don&#8217;t have an answer for that question, but once I&#8217;ve read that if something is written and fixed somewhere, it increases dramatically the chances of it to be considered true. User generated content are fixed somewhere (the web page) and are written.</p>
<p>Which makes a lot of sense. Think about it. Try to remember all the times you doubted someone. Now see if it was something written or something spoken. For example, I  doubt most of the things I hear.</p>
<p>And that adds more to the table.</p>
<ul>
<li>Preconceptions we have of things.</li>
</ul>
<p>Now, all this creates is a cycle where we get no answers, just more questions. That is fun, but I&#8217;ll stop here.</p>
<p>Answering the original question I posted here, I think believing in user generated content is like lottery. It may help you, but there is nothing granted whatsoever. So, it may help with your decisions, but surely there better places to go.</p>
<p><strong><em>Note:</em></strong><em> I&#8217;ve just noticed that in this post I&#8217;ve explained how to spot bad user generated content.</em></p>
<p>If you just happened to read this post, please comment. Leave your thoughts and, if you will, ask for suggestions.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/personalphao.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/personalphao.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/personalphao.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/personalphao.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/personalphao.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/personalphao.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/personalphao.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/personalphao.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/personalphao.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/personalphao.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/personalphao.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/personalphao.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/personalphao.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/personalphao.wordpress.com/79/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=personalphao.wordpress.com&amp;blog=9242390&amp;post=79&amp;subd=personalphao&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://personalphao.wordpress.com/2009/10/02/user-generated-content-what-is-it-for/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/922fd8af498cf85af54b464e3144000d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">phao</media:title>
		</media:content>
	</item>
	</channel>
</rss>
