<?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>Roanbrasil's Blog</title>
	<atom:link href="http://roanbrasil.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://roanbrasil.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Wed, 11 Nov 2009 17:30:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='roanbrasil.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Roanbrasil's Blog</title>
		<link>http://roanbrasil.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://roanbrasil.wordpress.com/osd.xml" title="Roanbrasil&#039;s Blog" />
	<atom:link rel='hub' href='http://roanbrasil.wordpress.com/?pushpress=hub'/>
		<item>
		<title>A Magia do Maven &#8211; Um projeto J2SE &#8211; parte 1</title>
		<link>http://roanbrasil.wordpress.com/2009/11/11/a-magia-do-maven-um-projeto-j2se-parte-1/</link>
		<comments>http://roanbrasil.wordpress.com/2009/11/11/a-magia-do-maven-um-projeto-j2se-parte-1/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 17:28:49 +0000</pubDate>
		<dc:creator>roanbrasil</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://roanbrasil.wordpress.com/?p=51</guid>
		<description><![CDATA[Antes de começar meu POST, gostaria de parabenizar a faculdade UNIME e aos profissionais da Bahia pelo evento: www.linguagil.com.br . Realmente esse evento promete, começando amanhã com cursos e vários nomes da comunidade de Analistas de todo o Brasil, palestrando, ministrando mini-cursos. Bom hoje no meu post irei falar sobre o Apache Maven que é [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roanbrasil.wordpress.com&amp;blog=5563482&amp;post=51&amp;subd=roanbrasil&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Antes de começar meu POST, gostaria de parabenizar a faculdade UNIME e aos profissionais da Bahia pelo evento: <a href="http://www.linguagil.com.br">www.linguagil.com.br</a> . Realmente esse evento promete, começando amanhã com cursos e vários nomes da comunidade de Analistas de todo o Brasil, palestrando, ministrando mini-cursos. Bom hoje no meu post irei falar sobre o Apache Maven que é nada mais nada menos do que uma ferramenta de automação e gerenciamento de projetos. Eu utilizo o Eclipse para o desenvolvimento de aplicativos Java e seus plugins, e sempre que precisava, eu gerava por ele os projetos e adicionava as libs na &#8220;mão&#8221;. Um <span style="text-decoration:line-through;">puta</span> grande trabalho diga-se de passagem. Então precisei fazer o desenvolvimento Jersey, que um post para outro dia. E pesquisei em como gerar projetos Jersey e acabei encontrando na comunidade o Maven que auxilia na geração utilizando ARCHETYPES e é muito útil.</p>
<p>Antes de tudo instale o Maven2 no seu computador, depois para gerar um projeto básico como por exemplo. A diferença dele para o Ant é simplicidade e escalabilidade, e achei muito mais útil .</p>
<p>Um exemplo de um arquivo pom.xml abaixo.</p>
<pre class="brush: plain;">
&lt;project&gt;
  &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
  &lt;groupId&gt;org.sonatype.mavenbook&lt;/groupId&gt;
  &lt;artifactId&gt;my-project&lt;/artifactId&gt;
  &lt;version&gt;1.0&lt;/version&gt;
&lt;/project&gt;
</pre>
<p><strong>Para instalar o Maven no windows</strong>: Instale por exemplo aqui :</p>
<pre class="brush: plain;">C:\Program Files\apache-maven-2.2.1 </pre>
<p>depois de instalado set as variáveis de ambiente</p>
<pre class="brush: plain;">
C:\Users\tobrien &gt; set M2_HOME=c:\Program Files\apache-maven-2.2.1
C:\Users\tobrien &gt; set PATH=%PATH%;%M2_HOME%\bin
</pre>
<p><strong>Para instalar no Linux:</strong><br />
Instale e export as variáveis de ambiente conforme abaixo:</p>
<pre class="brush: plain;">
export M2_HOME=/usr/local/maven
export PATH=${M2_HOME}/bin:${PATH}
</pre>
<p>Existe um plugin para o eclipse que se chama Maven2Eclipse, quem quiser é só baixar no site da Sonatype ou anexar esse link no eclipse e depois instalar: <a href="http://m2eclipse.sonatype.org/">http://m2eclipse.sonatype.org/</a></p>
<p>Para gerar um exemplo simples e genérico de um projeto Maven basta adicionar isto na linha de comando:</p>
<pre class="brush: plain;">
$ mvn archetype:generate -DgroupId=org.sonatype.mavenbook.ch03 \
                                         -DartifactId=simple \
                                         -DpackageName=org.sonatype.mavenbook \
                                         -Dversion=1.0-SNAPSHOT
[INFO] Scanning for projects...
[INFO] Searching repository for plugin with prefix: 'archetype'.
[INFO] ------------------------------------------------------------------------
[INFO] Building Maven Default Project
[INFO]    task-segment: [archetype:generate] (aggregator-style)
[INFO] ------------------------------------------------------------------------
[INFO] Preparing archetype:generate
[INFO] No goals needed for project - skipping
[INFO] Setting property: velocimacro.messages.on =&gt; 'false'.
[INFO] Setting property: resource.loader =&gt; 'classpath'.
[INFO] Setting property: resource.manager.logwhenfound =&gt; 'false'.
[INFO] [archetype:generate {execution: default-cli}]
[INFO] Generating project in Interactive mode
[INFO] No archetype defined. Using maven-archetype-quickstart \
       (org.apache.maven.archetypes:maven-archetype-quickstart:1.0)
Choose archetype:
...
12: internal -&gt; maven-archetype-mojo (A Maven Java plugin development project)
13: internal -&gt; maven-archetype-portlet (A simple portlet application)
14: internal -&gt; maven-archetype-profiles ()
15: internal -&gt; maven-archetype-quickstart ()
16: internal -&gt; maven-archetype-site-simple (A simple site generation project)
17: internal -&gt; maven-archetype-site (A more complex site project)
18: internal -&gt; maven-archetype-webapp (A simple Java web application)
19: internal -&gt; jini-service-archetype (Archetype for Jini service project creation)
Choose a number: (...) 15: : 15
Confirm properties configuration:
groupId: org.sonatype.mavenbook.ch03
artifactId: simple
version: 1.0-SNAPSHOT
package: org.sonatype.mavenbook.ch03
 Y: : Y
...
[INFO] Parameter: groupId, Value: org.sonatype.mavenbook.ch03
[INFO] Parameter: packageName, Value: org.sonatype.mavenbook.ch03
[INFO] Parameter: package, Value: org.sonatype.mavenbook.ch03
[INFO] Parameter: artifactId, Value: simple
[INFO] Parameter: basedir, Value: /private/tmp
[INFO] Parameter: version, Value: 1.0-SNAPSHOT
[INFO] BUILD SUCCESSFUL
</pre>
<p>A estrutura será basicamente essa </p>
<pre class="brush: plain;">
simple/
simple/pom.xml
      /src/
      /src/main/
          /main/java
      /src/test/
          /test/java
</pre>
<p>Para compilar entre na pasta</p>
<pre class="brush: plain;">
cd simple
mvn install
</pre>
<p>Depois disso para rodar é simples, dentro do projeto tem uma pasta target, quando é compilado ou gerado algum war o target é para onde irá o seu jar nesse caso ou war, ou ear e por ae vai&#8230;</p>
<pre class="brush: plain;">
$ java -cp target/simple-1.0-SNAPSHOT.jar org.sonatype.mavenbook.App
Hello World!
</pre>
<p>Esse seria o exemplo do pom.xml do projeto</p>
<pre class="brush: plain;">
&lt;project xmlns=&quot;http://maven.apache.org/POM/4.0.0&quot;
        xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;
  xsi:schemaLocation=&quot;http://maven.apache.org/POM/4.0.0

http://maven.apache.org/maven-v4_0_0.xsd&quot;&gt;

  &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
  &lt;groupId&gt;org.sonatype.mavenbook.ch03&lt;/groupId&gt;
  &lt;artifactId&gt;simple&lt;/artifactId&gt;
  &lt;packaging&gt;jar&lt;/packaging&gt;
  &lt;version&gt;1.0-SNAPSHOT&lt;/version&gt;
  &lt;name&gt;simple&lt;/name&gt;
  &lt;url&gt;http://maven.apache.org&lt;/url&gt;
  &lt;dependencies&gt;
    &lt;dependency&gt;
      &lt;groupId&gt;junit&lt;/groupId&gt;
      &lt;artifactId&gt;junit&lt;/artifactId&gt;
      &lt;version&gt;3.8.1&lt;/version&gt;
      &lt;scope&gt;test&lt;/scope&gt;
    &lt;/dependency&gt;
  &lt;/dependencies&gt;
&lt;/project&gt;
</pre>
<p>Bom por hoje é só, vou preparar um material para fazer algo do tipo do site do scriptlandia.</p>
<p>Obrigado aos navegantes e deixe suas sugestões de artigo.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/roanbrasil.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/roanbrasil.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/roanbrasil.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/roanbrasil.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/roanbrasil.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/roanbrasil.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/roanbrasil.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/roanbrasil.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/roanbrasil.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/roanbrasil.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/roanbrasil.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/roanbrasil.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/roanbrasil.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/roanbrasil.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roanbrasil.wordpress.com&amp;blog=5563482&amp;post=51&amp;subd=roanbrasil&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://roanbrasil.wordpress.com/2009/11/11/a-magia-do-maven-um-projeto-j2se-parte-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ce876bdab15e1803ba8a1d8c7b7ad7bc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">roanbrasil</media:title>
		</media:content>
	</item>
		<item>
		<title>PUJ</title>
		<link>http://roanbrasil.wordpress.com/2009/09/23/puj/</link>
		<comments>http://roanbrasil.wordpress.com/2009/09/23/puj/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 21:33:24 +0000</pubDate>
		<dc:creator>roanbrasil</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://roanbrasil.wordpress.com/?p=43</guid>
		<description><![CDATA[Sobre o PUJ: http://kenai.com/projects/puj/pages/PUJ-BR http://www.youtube.com/watch?v=AjZgx_i85q0 O Prêmio Universitário Java &#8211; PUJ é uma competição que acontece no Ceará a três anos e agora vai ser repetido em Goiás e na Bahia&#8230;. e eu espero que continue crescendo e comece a ser implementado em todos os estados brasileiros funciona assim: - os professores reunem os melhores [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roanbrasil.wordpress.com&amp;blog=5563482&amp;post=43&amp;subd=roanbrasil&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sobre o PUJ:</p>
<p><a style="color:#114170;" href="http://kenai.com/projects/puj/pages/PUJ-BR" target="_blank">http://kenai.com/projects/puj/pages/PUJ-BR</a><br />
<a style="color:#114170;" href="http://www.youtube.com/watch?v=AjZgx_i85q0" target="_blank">http://www.youtube.com/watch?v=AjZgx_i85q0</a></p>
<p>O Prêmio Universitário Java &#8211; PUJ é uma competição que acontece no<br />
Ceará a três anos e agora vai ser repetido em Goiás e na Bahia&#8230;. e<br />
eu espero que continue crescendo e comece a ser implementado em todos<br />
os estados brasileiros <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>funciona assim:</p>
<p>- os professores reunem os melhores trabalhos de seus alunos e<br />
submetem à competição<br />
- estes trabalhos recebem notas de profissionais sênior do mercado local de<br />
TI<br />
- o trabalho com melhor média ganha <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Ano passado o campeão cearense foi com tudo pago para assistir ao<br />
Devoxx na Bélgica <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  e este ano o primeiro prêmio leva o campeão à<br />
Califõrnia para assistir ao JavaOne <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p></p>
<span class='embed-youtube' style='text-align:center; display:block;'><object width='450' height='284'><param name='movie' value='http://www.youtube.com/v/AjZgx_i85q0?version=3&rel=1&fs=1&showsearch=0&showinfo=1&iv_load_policy=1' /> <param name='allowfullscreen' value='true' /> <param name='wmode' value='opaque' /> <embed src='http://www.youtube.com/v/AjZgx_i85q0?version=3&rel=1&fs=1&showsearch=0&showinfo=1&iv_load_policy=1' type='application/x-shockwave-flash' allowfullscreen='true' width='450' height='284' wmode='opaque'></embed> </object></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/roanbrasil.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/roanbrasil.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/roanbrasil.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/roanbrasil.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/roanbrasil.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/roanbrasil.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/roanbrasil.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/roanbrasil.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/roanbrasil.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/roanbrasil.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/roanbrasil.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/roanbrasil.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/roanbrasil.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/roanbrasil.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roanbrasil.wordpress.com&amp;blog=5563482&amp;post=43&amp;subd=roanbrasil&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://roanbrasil.wordpress.com/2009/09/23/puj/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ce876bdab15e1803ba8a1d8c7b7ad7bc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">roanbrasil</media:title>
		</media:content>
	</item>
		<item>
		<title>O Primeiro Curso de Ciências da Computação do Brasil</title>
		<link>http://roanbrasil.wordpress.com/2009/09/23/o-primeiro-curso-de-ciencias-da-computacao-do-brasil/</link>
		<comments>http://roanbrasil.wordpress.com/2009/09/23/o-primeiro-curso-de-ciencias-da-computacao-do-brasil/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 21:29:09 +0000</pubDate>
		<dc:creator>roanbrasil</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://roanbrasil.wordpress.com/?p=39</guid>
		<description><![CDATA[O primeiro curso de CC do Brasil completa 40 anos. Quem puder ir recomendo. http://www.ic.unicamp.br/ic40anos/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roanbrasil.wordpress.com&amp;blog=5563482&amp;post=39&amp;subd=roanbrasil&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>O primeiro curso de CC do Brasil completa 40 anos. Quem puder ir recomendo.</p>
<p>http://www.ic.unicamp.br/ic40anos/</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/roanbrasil.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/roanbrasil.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/roanbrasil.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/roanbrasil.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/roanbrasil.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/roanbrasil.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/roanbrasil.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/roanbrasil.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/roanbrasil.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/roanbrasil.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/roanbrasil.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/roanbrasil.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/roanbrasil.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/roanbrasil.wordpress.com/39/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roanbrasil.wordpress.com&amp;blog=5563482&amp;post=39&amp;subd=roanbrasil&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://roanbrasil.wordpress.com/2009/09/23/o-primeiro-curso-de-ciencias-da-computacao-do-brasil/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ce876bdab15e1803ba8a1d8c7b7ad7bc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">roanbrasil</media:title>
		</media:content>
	</item>
		<item>
		<title>Mais uma sexta-feira&#8230;</title>
		<link>http://roanbrasil.wordpress.com/2009/08/28/mais-uma-sexta-feira/</link>
		<comments>http://roanbrasil.wordpress.com/2009/08/28/mais-uma-sexta-feira/#comments</comments>
		<pubDate>Fri, 28 Aug 2009 19:00:22 +0000</pubDate>
		<dc:creator>roanbrasil</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://roanbrasil.wordpress.com/?p=36</guid>
		<description><![CDATA[Bom primeiramente vou começar aqui que acordei umas 6:38 da manhã com um barulho de alguém no microfone, parecendo sindicato, falando alguma coisa, e não consegui dormir por longas e extensiva uma hora, levantei 7:30 e chamei o Rafael, meu roommate. Fui tomar banho e rafael fazer o café da manhã, até ae blz&#8230; só [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roanbrasil.wordpress.com&amp;blog=5563482&amp;post=36&amp;subd=roanbrasil&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Bom primeiramente vou começar aqui que acordei umas 6:38 da manhã com um barulho de alguém no microfone, parecendo sindicato, falando alguma coisa, e não consegui dormir por longas e extensiva uma hora, levantei 7:30 e chamei o Rafael, meu roommate. Fui tomar banho e rafael fazer o café da manhã, até ae blz&#8230; só que rafael tava indo para Varginha, então tava levando um arsenal de coisas, como notebook, deixei ele em frente a IBM e voilá&#8230; vim para UNICAMP para trabalhar. No caminho, como estou com carro da minha namorada parei para trocar óleo, bateram no meu novamente rsrsrs&#8230;. bom hj vou dar aula depois dormir pq amanhã cedo vou dar aula novamente&#8230; fuizz&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/roanbrasil.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/roanbrasil.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/roanbrasil.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/roanbrasil.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/roanbrasil.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/roanbrasil.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/roanbrasil.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/roanbrasil.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/roanbrasil.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/roanbrasil.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/roanbrasil.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/roanbrasil.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/roanbrasil.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/roanbrasil.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roanbrasil.wordpress.com&amp;blog=5563482&amp;post=36&amp;subd=roanbrasil&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://roanbrasil.wordpress.com/2009/08/28/mais-uma-sexta-feira/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ce876bdab15e1803ba8a1d8c7b7ad7bc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">roanbrasil</media:title>
		</media:content>
	</item>
		<item>
		<title>Computers stuffs</title>
		<link>http://roanbrasil.wordpress.com/2009/05/28/computers-stuffs/</link>
		<comments>http://roanbrasil.wordpress.com/2009/05/28/computers-stuffs/#comments</comments>
		<pubDate>Thu, 28 May 2009 12:25:58 +0000</pubDate>
		<dc:creator>roanbrasil</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://roanbrasil.wordpress.com/?p=21</guid>
		<description><![CDATA[Bom segunda-feira comecei uma nova rotina de trabalho, preciso ainda ver como mudar o layout desse blog, apesar de eu não manter uma regularidade ainda nele. Bom depois de 1 ano e 2 meses trabalhando na IBM em uma conta nos EUA e com C++, XSL, XML, JavaScript Client and Server Side, I decided iwas [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roanbrasil.wordpress.com&amp;blog=5563482&amp;post=21&amp;subd=roanbrasil&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Bom segunda-feira comecei uma nova rotina de trabalho, preciso ainda ver como mudar o layout desse blog, apesar de eu não manter uma regularidade ainda nele. Bom depois de 1 ano e 2 meses trabalhando na IBM em uma conta nos EUA e com C++, XSL, XML, JavaScript Client and Server Side, I decided iwas time to go. Pois é sai da IBM, estou fazendo uma disciplina como aluno especial na UNICAMP, estou gostando da matéria, o professor é ótimo, a estrutura da faculdade nem se fala, é uma das melhores do Brasil em termos de estruturas e professores. Nunca vi algo parecido. Foi então que surgiu a oportunidade de vim trabalhar em uma encubadora na UNICAMP, a SOFTEX. E desde segunda feira cá estou eu. <img src='http://s2.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Primeira tarefa, árdua e difícil&#8230;. eheheheh Pesquisar algum CMS que seja open source e sem licença GPL e que seja em Java&#8230; Ufa&#8230; depois de um ano e dois meses trampando no terminal VI com C++ vou voltar a trabalhar com Java, era tudo que eu queria. Então galera no evoluir das coisas aqui, vou postar um tutorial ensinando step-by-step o melhor dos CMS e como configurar e instalar pois os materiais estão muito picados e é bom pq fica concentradoem um único lugar. Bom é isso pessoal, até a próxima&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/roanbrasil.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/roanbrasil.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/roanbrasil.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/roanbrasil.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/roanbrasil.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/roanbrasil.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/roanbrasil.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/roanbrasil.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/roanbrasil.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/roanbrasil.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/roanbrasil.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/roanbrasil.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/roanbrasil.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/roanbrasil.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roanbrasil.wordpress.com&amp;blog=5563482&amp;post=21&amp;subd=roanbrasil&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://roanbrasil.wordpress.com/2009/05/28/computers-stuffs/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ce876bdab15e1803ba8a1d8c7b7ad7bc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">roanbrasil</media:title>
		</media:content>
	</item>
		<item>
		<title>A poesia prevalece</title>
		<link>http://roanbrasil.wordpress.com/2009/04/16/a-poesia-prevalece/</link>
		<comments>http://roanbrasil.wordpress.com/2009/04/16/a-poesia-prevalece/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 17:43:53 +0000</pubDate>
		<dc:creator>roanbrasil</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://roanbrasil.wordpress.com/?p=17</guid>
		<description><![CDATA[O maior sucesso de música independente que conheci semana passada se chama, O Teatro Mágico, uma banda que realmente tem letras de verdade, como é possível, músicos que cantam “Eguinha pocotó” e “Vai Lacraia” conseguem sucesso rápido, enquanto realmente bandas de verdade como O Teatro Mágico que traz letras realmente tocantes tanto quanto a realidade [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roanbrasil.wordpress.com&amp;blog=5563482&amp;post=17&amp;subd=roanbrasil&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>O maior sucesso de música independente que conheci semana passada se chama, O Teatro Mágico, uma banda que realmente tem letras de verdade, como é possível, músicos que cantam “<span style="text-decoration:line-through;">Eguinha pocotó</span>” e “<span style="text-decoration:line-through;">Vai Lacraia</span>” conseguem sucesso rápido, enquanto realmente bandas de verdade como O Teatro Mágico que traz letras realmente tocantes tanto quanto a realidade da música ZAZULEJO  como música sobre Poesia… Bom quem quiser fica uma dica, http://www.oteatromagico.mus.br lá a música é livre para se fazer download, fui no show de lançamento do DVD deles na Saraiva no Iguatemi em Campinas e foi maior sucesso, e claro comprei um DVD e um CD para ajudar o famoso Fernando que diga-se de passagem possui um talento ímpar.</p>
<p>Fica aqui um trecho da poesia de Fernando do Teatro Mágico:</p>
<pre><span style="font-size:12pt;" lang="PT-BR">"Sem horas e sem dores</span>
<span style="font-size:12pt;" lang="PT-BR">Respeitável público pagão</span>
<span style="font-size:12pt;" lang="PT-BR">Bem vindo ao teatro mágico!</span>
<span style="font-size:12pt;" lang="PT-BR">sintaxe a vontade..."</span>
<span style="font-size:12pt;" lang="PT-BR"> </span>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">"Sem horas e sem dores</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">Respeitável público pagão</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">a partir de sempre</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">toda cura pertence a nós</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">toda resposta e dúvida</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">todo sujeito é livre para conjugar o verbo que quiser</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">todo verbo é livre para ser direto ou indireto</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">nenhum predicado será prejudicado</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">nem tampouco a vírgula, nem a crase nem a frase e ponto final!</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">afinal, a má gramática da vida nos põe entre pausas, entre vírgulas</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">e estar entre vírgulas é aposto</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">e eu aposto o oposto que vou cativar a todos</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">sendo apenas um sujeito simples</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">um sujeito e sua oração</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">sua pressa e sua prece</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">que a regência da paz sirva a todos nós... cegos ou não</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">que enxerguemos o fato</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">de termos acessórios para nossa oração</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">separados ou adjuntos, nominais ou não</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">façamos parte do contexto da crônica</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">e de todas as capas de edição especial</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">sejamos também o anúncio da contra-capa</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">mas ser a capa e ser contra-capa</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">é a beleza da contradição</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">é negar a si mesmo</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">e negar a si mesmo</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">é muitas vezes, encontrar-se com Deus</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">com o teu Deus</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">Sem horas e sem dores</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">Que nesse encontro que acontece agora</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">cada um possa se encontrar no outro</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">até porque...</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR"> </span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">tem horas que a gente se pergunta...</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;" lang="PT-BR">por que é que não se junta</span></strong>
<strong><span style="font-size:12pt;font-family:&quot;">tudo numa coisa só? "</span></strong></pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/roanbrasil.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/roanbrasil.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/roanbrasil.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/roanbrasil.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/roanbrasil.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/roanbrasil.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/roanbrasil.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/roanbrasil.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/roanbrasil.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/roanbrasil.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/roanbrasil.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/roanbrasil.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/roanbrasil.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/roanbrasil.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roanbrasil.wordpress.com&amp;blog=5563482&amp;post=17&amp;subd=roanbrasil&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://roanbrasil.wordpress.com/2009/04/16/a-poesia-prevalece/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ce876bdab15e1803ba8a1d8c7b7ad7bc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">roanbrasil</media:title>
		</media:content>
	</item>
		<item>
		<title>Ano Novo, Vida Nova!!!</title>
		<link>http://roanbrasil.wordpress.com/2009/01/08/ano-novo-vida-nova/</link>
		<comments>http://roanbrasil.wordpress.com/2009/01/08/ano-novo-vida-nova/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 17:21:52 +0000</pubDate>
		<dc:creator>roanbrasil</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://roanbrasil.wordpress.com/?p=10</guid>
		<description><![CDATA[Pois é ano novo começa, nós fazemos sempre aquelas promessas e começamos o ano sempre motivado a sempre melhorar e fazendo promessas. Por isso aqui vai um poema do mestre Carlos Drummond de Andrade que traduz tudo para mim, pois a vezes fazemos promessas de que iremos fazer isso ou aquilo e chega o final [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roanbrasil.wordpress.com&amp;blog=5563482&amp;post=10&amp;subd=roanbrasil&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Pois é ano novo começa, nós fazemos sempre aquelas promessas e começamos o ano sempre motivado a sempre melhorar e fazendo promessas. Por isso aqui vai um poema do mestre Carlos Drummond de Andrade que traduz tudo para mim, pois a vezes fazemos promessas de que iremos fazer isso ou aquilo e chega o final do ano e acabamos não fazendo nada, tudo não passa de promessas de Ano Novo.</p>
<div><span style="font-size:130%;color:#ff0000;"><strong>ANO QUE VEM</strong></span></div>
<div><span style="font-size:130%;color:#ff0000;"><strong><em>Carlos Drummond de Andrade</em></strong></span></div>
<div><strong><em></em></strong></div>
<div><strong></strong></div>
<div><strong></strong></div>
<div><span style="font-size:130%;"><em>&#8220;No ano que vem,</em></span></div>
<div><span style="font-size:130%;"><em>Vou fazer um check-up,</em></span></div>
<div><span style="font-size:130%;"><em>Reformar os meus ternos,</em></span></div>
<div><span style="font-size:130%;"><em>Vou trocar os meus móveis,</em></span></div>
<div><span style="font-size:130%;"><em>Viajar no inverno, </em></span></div>
<div><span style="font-size:130%;"><em>Como convém.</em></span></div>
<div><em><br />
</em></div>
<div><span style="font-size:130%;"><em></em></span></div>
<div><span style="font-size:130%;"><em>No ano que vem,</em></span></div>
<div><span style="font-size:130%;"><em>Vou fazer vestibular,</em></span></div>
<div><span style="font-size:130%;"><em>Vou tocar clarineta,</em></span></div>
<div><span style="font-size:130%;"><em>Aprender a dançar valsa Fox-trot ou salsa,</em></span></div>
<div><span style="font-size:130%;"><em>Como convém.</em></span></div>
<div><span style="font-size:130%;"><em></em></span></div>
<div><em><br />
</em></div>
<div><span style="font-size:130%;"><em>No ano que vem,</em></span></div>
<div><span style="font-size:130%;"><em>Vou tratar dos meus dentes,</em></span></div>
<div><span style="font-size:130%;"><em>Visitar uns parentes,</em></span></div>
<div><span style="font-size:130%;"><em>Vou limpar o porão,</em></span></div>
<div><span style="font-size:130%;"><em>Vou casar na igreja,</em></span></div>
<div><span style="font-size:130%;"><em>Como convém.</em></span></div>
<div><em><br />
</em></div>
<div><span style="font-size:130%;"><em></em></span></div>
<div><span style="font-size:130%;"><em>No ano que vem,</em></span></div>
<div><span style="font-size:130%;"><em>Vou pagar minhas dívidas,</em></span></div>
<div><span style="font-size:130%;"><em>Apagar minhas dúvidas,</em></span></div>
<div><span style="font-size:130%;"><em>E trocar meu carro,</em></span></div>
<div><span style="font-size:130%;"><em>E largar o cigarro,</em></span></div>
<div><span style="font-size:130%;"><em>Como convém.</em></span></div>
<div><em><br />
</em></div>
<div><span style="font-size:130%;"><em></em></span></div>
<div><span style="font-size:130%;"><em>Vou plantar uma rosa,</em></span></div>
<div><span style="font-size:130%;"><em>como convém</em></span></div>
<div><span style="font-size:130%;"><em>No ano que vem</em></span></div>
<div><em><span style="font-size:130%;">E</span><span style="font-size:130%;"> escrever um romance,</span></em></div>
<div><span style="font-size:130%;"><em>E fazer exercício,</em></span></div>
<div><span style="font-size:130%;"><em>Desde o início,</em></span></div>
<div><span style="font-size:130%;"><em>Como convém.</em></span></div>
<div><em><br />
</em></div>
<div><span style="font-size:130%;"><em></em></span></div>
<div><span style="font-size:130%;"><em>E fazer uma plástica,</em></span></div>
<div><span style="font-size:130%;"><em>O ano que vem,</em></span></div>
<div><span style="font-size:130%;"><em>E ficar destemido,</em></span></div>
<div><span style="font-size:130%;"><em>Decorar um poema,</em></span></div>
<div><span style="font-size:130%;"><em>E escrever pra você,</em></span></div>
<div><em><br />
</em></div>
<div><span style="font-size:130%;"><em>Como convém.</em></span></div>
<div><span style="font-size:130%;"><em></em></span></div>
<div><span style="font-size:130%;"><em>No ano que vem,</em></span></div>
<div><span style="font-size:130%;"><em>Vou soltar busca-pé,</em></span></div>
<div><span style="font-size:130%;"><em>Vou comer manga espada,</em></span></div>
<div><span style="font-size:130%;"><em>E sentar na calçada até.</em></span></div>
<div><span style="font-size:130%;"><em></em></span></div>
<div><span style="font-size:130%;"><em></em></span></div>
<div><span style="font-size:130%;"><em></em></span></div>
<div><span style="font-size:130%;"><em>E vou me converter</em></span></div>
<div><span style="font-size:130%;"><em>no ano que vem,</em></span></div>
<div><span style="font-size:130%;"><em>Registrar a escritura,</em></span></div>
<div><span style="font-size:130%;"><em>Vou pagar promessa,</em></span></div>
<div><span style="font-size:130%;"><em>E andar mais depressa</em></span></div>
<div><span style="font-size:130%;"><em>Como convém.</em></span></div>
<div><em><br />
</em></div>
<div><span style="font-size:130%;"><em>No ano que vem,</em></span></div>
<div><span style="font-size:130%;"><em>Vou fazer regime,</em></span></div>
<div><span style="font-size:130%;"><em>Viajar para a França,</em></span></div>
<div><span style="font-size:130%;"><em>E estudar esperanto,</em></span></div>
<div><span style="font-size:130%;"><em>E entrar para a política,</em></span></div>
<div><span style="font-size:130%;"><em>E me candidatar,</em></span></div>
<div><span style="font-size:130%;"><em>Por que não?</em></span></div>
<div><em><br />
</em></div>
<div><span style="font-size:130%;"><em></em></span></div>
<div><span style="font-size:130%;"><em>Se não der, no entanto</em></span></div>
<div><span style="font-size:130%;"><em>Neste ano que vem,</em></span></div>
<div><span style="font-size:130%;"><em>Vou deixar de cobrança</em></span></div>
<div><span style="font-size:130%;"><em>Do que fiz ou não fiz,</em></span></div>
<div><span style="font-size:130%;"><em>Neste ano que vem</em></span></div>
<div><span style="font-size:130%;"><em>Quero como convém,</em></span></div>
<div><em><br />
</em></div>
<div><span style="font-size:180%;"><em></em></span></div>
<div><span style="font-size:180%;"><em>Ser apenas, Feliz!&#8221;</em></span></div>
<p>Bom o recado está dado, para galera que visita meu blog.  Aos programadores de plantão , seguinte, dia 11 de Janeiro de 2009 começará um curso de Java e achei interessante colocar o link aqui. Provavelmente eu estarei fazendo pois esse ano quero me focar em me preparar para fazer o SCJP de Java e sabe como é preciso cumprir esse objetivo e não fazer como o poema fazer coisas só quando convém. Nós temos tantas objetivos na vida, pois o tempo é curto, quem dera o dia tivesse mais de 24 horas, seria muito fácil, mas as coisas hoje em dia são corridas demais&#8230; Tudo voa, tudo é rápido!!!! Infelizmente mal temos tempo para diversão, lazer, família&#8230; Cada vez mais precisamos nos especializar e esquecemos que não somos máquinas e sim seres humanos. Desde o ano que me formei da faculdade até esse último ano de 2008 me diverti muito e deixei de lado um pouco os estudos. Comecei o ano de 2009 focado na academia e minha certificação. Keep going because it´s a long way.</p>
<p>Segue o link do curso de Java:</p>
<p>http://www.javapassion.com/javaintro/</p>
<p>ABraços e até a próxima</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/roanbrasil.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/roanbrasil.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/roanbrasil.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/roanbrasil.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/roanbrasil.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/roanbrasil.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/roanbrasil.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/roanbrasil.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/roanbrasil.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/roanbrasil.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/roanbrasil.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/roanbrasil.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/roanbrasil.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/roanbrasil.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roanbrasil.wordpress.com&amp;blog=5563482&amp;post=10&amp;subd=roanbrasil&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://roanbrasil.wordpress.com/2009/01/08/ano-novo-vida-nova/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ce876bdab15e1803ba8a1d8c7b7ad7bc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">roanbrasil</media:title>
		</media:content>
	</item>
		<item>
		<title>CapixaBaiano num nasce, Estréia!!!!!</title>
		<link>http://roanbrasil.wordpress.com/2008/11/19/capixabaiano-num-nasce-estreia/</link>
		<comments>http://roanbrasil.wordpress.com/2008/11/19/capixabaiano-num-nasce-estreia/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 14:04:19 +0000</pubDate>
		<dc:creator>roanbrasil</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://roanbrasil.wordpress.com/?p=3</guid>
		<description><![CDATA[Estou estreiando esse blog hoje que falará mais sobre minha profissão e minha vida também. Hoje é uma quarta-feira dia 19 de novembro de 2008, estou aqui no trabalho esperando meu amigo Renato acabar uma Call para irmos almoçar. To morrendo de fome, flórida!!!!! Bom mas vamos ao que que realmente interessa, hoje estava olhando [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roanbrasil.wordpress.com&amp;blog=5563482&amp;post=3&amp;subd=roanbrasil&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Estou estreiando esse blog hoje que falará mais sobre minha profissão e minha vida também. Hoje é uma quarta-feira dia 19 de novembro de 2008, estou aqui no trabalho esperando meu amigo Renato acabar uma Call para irmos almoçar. To morrendo de fome, flórida!!!!! Bom mas vamos ao que que realmente interessa, hoje estava olhando alguns sites de tecnologias e saiu algumas coisas meio que inúteis, mas legais para o nosso ego e cotidiano, apesar de algumas serem mentiras (como o salário de profissionais de informática).</p>
<p>Umas delas é para nossos pequenos empresários onde haverá meio que um concurso entre 320 empresas apresentando projetos e tal, segue na íntegra a notícias: http://info.abril.com.br/aberto/infonews/112008/18112008-32.shl</p>
<p>E a outra é o salário de profissionais de T.I. realmente ilusão pura mas tá ai atualizadíssimo!!!!</p>
<p>Na íntegra:</p>
<div class="FL1GFc" style="display:none;">
<div class="AG5mQe RRKCwe"><img class="UFDhhb" src="http://mail.google.com/mail/images/cleardot.gif" alt="" /></div>
<div class="YrSjGe ckChnd">
<div class="ObUWHc hj2SD">
<table class="BwDhwd" border="0">
<tbody>
<tr>
<td class="zyVlgb XZlFIc" style="width:auto;"><span class="lHQn1d"><img class="KaaYad QgQaBc" src="http://mail.google.com/mail/images/cleardot.gif" alt="" /></span><span class="JDpiNd"><img class="OvtWcf QrVm3d" src="http://mail.google.com/mail/images/cleardot.gif" alt="" width="16" height="16" /></span><span class="EP8xU" style="color:#00681c;">Roan Brasil Monteiro</span></td>
<td class="zyVlgb XZlFIc">
<table class="K9osId" border="0">
<tbody>
<tr>
<td>
<div class="IUCKJe bWGucb">O meu está&#8230; <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  http://info.abril.com.br/professional/carreira/sai-nova-tabe&#8230;</div>
</td>
</tr>
</tbody>
</table>
</td>
<td class="i8p5Ld">
<div class="XZlFIc"><span class="rziBod" title="50">14:50 (18 horas atrás)</span></div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="ExShKe" style="display:none;">
<div class="AG5mQe RRKCwe"><img class="UFDhhb" src="http://mail.google.com/mail/images/cleardot.gif" alt="" /></div>
<div class="YrSjGe ckChnd">
<div class="ObUWHc rOkvff">
<table class="BwDhwd" border="0">
<tbody>
<tr>
<td class="zyVlgb XZlFIc"><span class="lHQn1d"><img class="KaaYad QgQaBc" src="http://mail.google.com/mail/images/cleardot.gif" alt="" /></span><span class="JDpiNd"><img class="OvtWcf QrVm3d" src="http://mail.google.com/mail/images/cleardot.gif" alt="" width="16" height="16" /></span><span class="EP8xU" style="color:#00681c;">Roan Brasil Monteiro</span><span class="bWGucb">Carregando&#8230;</span></td>
<td class="i8p5Ld">
<div class="XZlFIc"><span class="rziBod" title="50">14:50 (18 horas atrás)</span></div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="AG5mQe RRKCwe"><img class="UFDhhb" src="http://mail.google.com/mail/images/cleardot.gif" alt="" /></div>
<div class="ObUWHc qNeRme ckChnd">
<table class="BwDhwd" style="height:18px;" border="0" width="13">
<tbody>
<tr>
<td class="zyVlgb XZlFIc">
<table class="O5Harb" border="0">
<tbody></tbody>
</table>
</td>
<td class="i8p5Ld"></td>
<td class="i8p5Ld"></td>
</tr>
</tbody>
</table>
</div>
<p><a href="http://info.abril.com.br/professional/carreira/sai-nova-tabela-com-a-remunera.shtml" target="_blank">http://info.abril.com.br/professional/carreira/sai-nova-tabela-com-a-remunera.shtml</a></p>
<p>Agora falando de coisa séria, vou começar a escrever um tutorial para utilizar o selenium usando com Java + JUnit4 para a galera que está querendo começar, comecei a usar aqui no trabalho e implementar para meus teste funcionais e testes de regressão antes do código ir para produção.</p>
<p>Flw e até o próximo post</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/roanbrasil.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/roanbrasil.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/roanbrasil.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/roanbrasil.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/roanbrasil.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/roanbrasil.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/roanbrasil.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/roanbrasil.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/roanbrasil.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/roanbrasil.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/roanbrasil.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/roanbrasil.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/roanbrasil.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/roanbrasil.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roanbrasil.wordpress.com&amp;blog=5563482&amp;post=3&amp;subd=roanbrasil&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://roanbrasil.wordpress.com/2008/11/19/capixabaiano-num-nasce-estreia/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ce876bdab15e1803ba8a1d8c7b7ad7bc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">roanbrasil</media:title>
		</media:content>

		<media:content url="http://mail.google.com/mail/images/cleardot.gif" medium="image" />

		<media:content url="http://mail.google.com/mail/images/cleardot.gif" medium="image" />

		<media:content url="http://mail.google.com/mail/images/cleardot.gif" medium="image" />

		<media:content url="http://mail.google.com/mail/images/cleardot.gif" medium="image" />

		<media:content url="http://mail.google.com/mail/images/cleardot.gif" medium="image" />

		<media:content url="http://mail.google.com/mail/images/cleardot.gif" medium="image" />

		<media:content url="http://mail.google.com/mail/images/cleardot.gif" medium="image" />
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://roanbrasil.wordpress.com/2008/11/18/hello-world/</link>
		<comments>http://roanbrasil.wordpress.com/2008/11/18/hello-world/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 17:46:46 +0000</pubDate>
		<dc:creator>roanbrasil</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roanbrasil.wordpress.com&amp;blog=5563482&amp;post=1&amp;subd=roanbrasil&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Welcome to <a href="http://wordpress.com/">WordPress.com</a>. This is your first post. Edit or delete it and start blogging!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/roanbrasil.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/roanbrasil.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/roanbrasil.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/roanbrasil.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/roanbrasil.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/roanbrasil.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/roanbrasil.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/roanbrasil.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/roanbrasil.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/roanbrasil.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/roanbrasil.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/roanbrasil.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/roanbrasil.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/roanbrasil.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=roanbrasil.wordpress.com&amp;blog=5563482&amp;post=1&amp;subd=roanbrasil&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://roanbrasil.wordpress.com/2008/11/18/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ce876bdab15e1803ba8a1d8c7b7ad7bc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">roanbrasil</media:title>
		</media:content>
	</item>
	</channel>
</rss>
