<?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"
	>

<channel>
	<title>Silveira's Blog</title>
	<atom:link href="http://silveiraneto.net/feed" rel="self" type="application/rss+xml" />
	<link>http://silveiraneto.net</link>
	<description>Quidquid latine dictum sit, altum viditur...</description>
	<pubDate>Wed, 23 Jul 2008 16:38:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>pt-br</language>
			<item>
		<title>Teddy mordendo</title>
		<link>http://silveiraneto.net/2008/07/18/teddy-2/</link>
		<comments>http://silveiraneto.net/2008/07/18/teddy-2/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 03:37:53 +0000</pubDate>
		<dc:creator>Silveira</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[colar]]></category>

		<category><![CDATA[Luau]]></category>

		<category><![CDATA[Teddy]]></category>

		<category><![CDATA[vídeo]]></category>

		<guid isPermaLink="false">http://silveiraneto.net/?p=988</guid>
		<description><![CDATA[Teddy brincando (destruindo) um colar de luau.

Ele está naquela fase de morder tudo, inclusive eu.
]]></description>
			<content:encoded><![CDATA[<p>Teddy brincando (destruindo) um colar de luau.<br />
<center><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/UwoR8xbf-HA&#038;hl=pt-br&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/UwoR8xbf-HA&#038;hl=pt-br&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></center><br />
Ele está naquela fase de morder tudo, inclusive eu.</p>
]]></content:encoded>
			<wfw:commentRss>http://silveiraneto.net/2008/07/18/teddy-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Script to Installing JavaFX Compiler</title>
		<link>http://silveiraneto.net/2008/07/16/script-to-installing-javafx-compiler/</link>
		<comments>http://silveiraneto.net/2008/07/16/script-to-installing-javafx-compiler/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 06:10:46 +0000</pubDate>
		<dc:creator>Silveira</dc:creator>
		
		<category><![CDATA[english]]></category>

		<category><![CDATA[installing]]></category>

		<category><![CDATA[JavaFX]]></category>

		<category><![CDATA[javafx compiler]]></category>

		<category><![CDATA[javafxc]]></category>

		<category><![CDATA[script]]></category>

		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://silveiraneto.net/?p=968</guid>
		<description><![CDATA[Right in this moment you can choose between three options to develop JavaFX:

Use the old version of JavaFX, interpreted. Not recommended.
Use the JavaFX Milestone 3. Little bit old but more stable.
Use the JavaFX Continuous Build. Is more dangerous but give us fresh builds.  

I did this little script to download the last version of [...]]]></description>
			<content:encoded><![CDATA[<p>Right in this moment you can choose between three options to develop JavaFX:</p>
<ul>
<li>Use the old version of JavaFX, interpreted. Not recommended.</li>
<li>Use the <a title="JavaFX M3" href="http://openjfx.java.sun.com/builds/javafxc-M3/">JavaFX Milestone 3</a>. Little bit old but more stable.</li>
<li>Use the <a title="JavaFX Continuous Build" href="http://openjfx.java.sun.com/hudson/job/openjfx-compiler">JavaFX Continuous Build</a>. Is more dangerous but give us fresh builds. <img src='http://silveiraneto.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ul>
<p>I did this little script to download the last version of JavaFX continuos build and install it for you.</p>
<pre name="code">#!/bin/sh
envfile=$HOME/.bash_profile

#download and unpatch the last build of JavaFx
mkdir jfx
cd jfx
wget http://openjfx.java.sun.com/hudson/job/openjfx-compiler/lastBuild/artifact/openjfx-compiler/dist//*zip*/dist.zip
unzip dist.zip
rm dist.zip

#set files at bin folder as executable
chmod +x dist/bin/*

#add those executables to the path
echo "PATH=\$PATH:`pwd`/dist/bin" &gt;&gt; $envfile</pre>
<p>Save this script as <em>install_jfx.sh</em> and execute it. Probably you want to execute it at you home directory. If you want to install JavaFX to root change envfile for <em>/root/.bash_profile</em>, if you want to install to all users change for <em>/etc/profile</em>. I tested this script successfully on my Ubuntu 8.04.</p>
<p>After that open a new terminal and try to see if javafx, javafxc and javafxdoc are available. You can test your enviroment with this simple program.</p>
<pre name="code" class="JAVA">import javafx.ui.*;
import java.lang.*;

Frame {
  visible: true
  content: FlowPanel {
  content: Button {
      var n = 0
      text: bind Integer.toString(n)
      action: function() {
        n++;
      }
    }
  }
}</pre>
<p>Save it as Counter.fx, compile with <em>javafxc Counter.fx</em> and so execute it with <em>javafx Counter.fx</em>.</p>
<p><center><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/hEdj9F1lVlU&#038;hl=pt-br&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/hEdj9F1lVlU&#038;hl=pt-br&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></center></p>
<p>To know more, take a look into the preliminary <a href="https://openjfx.dev.java.net/nonav/api/index.html">JavaFX API</a> or in the article <a title="Using JavaFX GUI Toolkit" href="http://java.sun.com/javafx/script/reference/gui_toolkit/">Using JavaFX GUI Toolkit</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://silveiraneto.net/2008/07/16/script-to-installing-javafx-compiler/feed/</wfw:commentRss>
		</item>
		<item>
		<title>September, Sun Tech Days Brazil</title>
		<link>http://silveiraneto.net/2008/07/09/september-sun-tech-days-brazil/</link>
		<comments>http://silveiraneto.net/2008/07/09/september-sun-tech-days-brazil/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 02:47:15 +0000</pubDate>
		<dc:creator>Silveira</dc:creator>
		
		<category><![CDATA[english]]></category>

		<category><![CDATA[CEJUG]]></category>

		<category><![CDATA[São Paulo]]></category>

		<category><![CDATA[Sun Tech Days]]></category>

		<guid isPermaLink="false">http://silveiraneto.net/?p=966</guid>
		<description><![CDATA[
As seen in the Sun Tech Days page, the Sun Tech Days Brazil will happen this September. In a few days we can know exactly the day the event will occurs. Probably we CEJUG will prepare a parallel event and see live the event in São Paulo by video stream. 
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="alignnone size-full wp-image-967 aligncenter" title="Sun Tech Days Brazil Site" src="http://silveiraneto.net/wp-content/uploads/2008/07/sun_tech_days_brazil.png" alt="" width="400" height="302" /></p>
<p>As seen in the <a title="Sun Tech Days" href="http://developers.sun.com/events/techdays/index.jsp">Sun Tech Days page</a>, the Sun Tech Days Brazil will happen this September. In a few days we can know exactly the day the event will occurs. Probably we <a title="Ceará Java User Group" href="http://www.cejug.org">CEJUG</a> will prepare a parallel event and see live the event in São Paulo by video stream. <img src='http://silveiraneto.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://silveiraneto.net/2008/07/09/september-sun-tech-days-brazil/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Café Com Tapioca Jazoon</title>
		<link>http://silveiraneto.net/2008/07/09/cafe-com-tapioca-jazoon/</link>
		<comments>http://silveiraneto.net/2008/07/09/cafe-com-tapioca-jazoon/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 17:55:48 +0000</pubDate>
		<dc:creator>Silveira</dc:creator>
		
		<category><![CDATA[português]]></category>

		<category><![CDATA[café com tapioca]]></category>

		<category><![CDATA[CEJUG]]></category>

		<category><![CDATA[Coco Beach]]></category>

		<category><![CDATA[duke]]></category>

		<category><![CDATA[Jazoon]]></category>

		<category><![CDATA[Luau]]></category>

		<category><![CDATA[poster]]></category>

		<category><![CDATA[Praia do Futuro]]></category>

		<category><![CDATA[SVG]]></category>

		<guid isPermaLink="false">http://silveiraneto.net/?p=964</guid>
		<description><![CDATA[
Fotografia de fundo do poster é de P.B. Rage, sob licença Creative Commons Attribution-Share Alike 2.0 Generic.
Esse mês teremos um Café Com Tapioca diferente. Para começar não será realizado em uma universidade e sim em uma barraca de praia.
Amaury Brasil, André Paes, Herbert de Aquino, Rafael Tabosa, Rafael Carneiro e René Araújo vão contar as [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="alignnone size-full wp-image-965 aligncenter" title="Poster Café Com Tapioca Jazoon" src="http://silveiraneto.net/wp-content/uploads/2008/07/cct_jazoon_500.png" alt="" width="500" height="707" /><br />
<small>Fotografia de fundo do poster é de <a href="http://flickr.com/photos/pinkbeltrage/131951020/">P.B. Rage</a>, sob licença Creative Commons Attribution-Share Alike 2.0 Generic.</small></p>
<p>Esse mês teremos um <a title="Café Com Tapioca Jazoon" href="http://www.cejug.org/pages/viewpage.action?pageId=27197486">Café Com Tapioca</a> diferente. Para começar não será realizado em uma universidade e sim em uma barraca de praia.<br />
Amaury Brasil, André Paes, Herbert de Aquino, Rafael Tabosa, Rafael Carneiro e René Araújo vão contar as experiências da <a href="http://www.cejug.org/display/cejug/2008/07/08/Caravana+Jazoon+%2708+foi+um+Sucesso">caravana do CEJUG</a> que foi para a europa participar do Jazoon. Ou seja, vamos ter palestras técnicas também mas vai ser um encontro mais informal, algo como um luau. Inclusive com dois engradados de cerveja de graça para o jug, mas o resto e por conta de cada um. <img src='http://silveiraneto.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Mais informações do <a title="Café Com Tapioca Jazoon" href="http://www.cejug.org/pages/viewpage.action?pageId=27197486">site do evento</a>.</p>
<p>Poster em SVG: <a title="Poster livre em SVG" href="http://silveiraneto.net/downloads/cct_jazoon.svg">cct_jazoon.svg</a></p>
]]></content:encoded>
			<wfw:commentRss>http://silveiraneto.net/2008/07/09/cafe-com-tapioca-jazoon/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Nerdproud versus Eu Podia Tá Matando, edição 2008</title>
		<link>http://silveiraneto.net/2008/07/06/nerdproud-versus-eu-podia-ta-matando-edicao-2008/</link>
		<comments>http://silveiraneto.net/2008/07/06/nerdproud-versus-eu-podia-ta-matando-edicao-2008/#comments</comments>
		<pubDate>Sun, 06 Jul 2008 19:24:46 +0000</pubDate>
		<dc:creator>Silveira</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[Campeonato]]></category>

		<category><![CDATA[Computação UFC]]></category>

		<category><![CDATA[EPTM]]></category>

		<category><![CDATA[eu podia tá matando]]></category>

		<category><![CDATA[futebol]]></category>

		<category><![CDATA[Nerdproud]]></category>

		<category><![CDATA[taça pet]]></category>

		<category><![CDATA[vídeo]]></category>

		<guid isPermaLink="false">http://silveiraneto.net/?p=963</guid>
		<description><![CDATA[
Como já acontece tradicionalmente na Taça Pet, os dois piores times do curso de Computação UFC se enfrentam em uma partida memorável. Esse ano nosso time, Eu Podia tá Matando, perdeu primeiro de 2 a 0 para o Nerdproud e depois perdeu de 7 a 0 para o SECO. Pelo menos esse ano eu fiz [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" src="http://farm4.static.flickr.com/3010/2643308866_936b95b5ed.jpg" alt="Eu Podia Tá Matando versus Nerdproud" width="500" height="375" /></p>
<p>Como já acontece <a title="edição 2007" href="http://silveiraneto.net/2007/10/07/a-maior-partida-de-futebol-do-seculo/">tradicionalmente</a> na Taça Pet, os dois piores times do curso de Computação UFC se enfrentam em uma partida memorável. Esse ano nosso time, Eu Podia tá Matando, perdeu primeiro de 2 a 0 para o Nerdproud e depois perdeu de 7 a 0 para o SECO. Pelo menos esse ano eu fiz um gol.</p>
<p><center><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/Q2rIUh2xDww&#038;hl=pt-br&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/Q2rIUh2xDww&#038;hl=pt-br&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></center><br />
<small>Vídeo original em melhor resolução <a href="http://silveiraneto.net/downloads/gol_silveira.mov">gol_silveira.mov</a>.</small></p>
<p>Na nossa avaliação foi um resultado muito bom esse ano. Não tivemos nenhuma baixa e ninguém foi teve que ir pro hospital. Além disso tivemos a maior platéia de todos os tempos, deviam haver umas 50 pessoas assistindo o jogo. Definitivamente um espetáculo.</p>
<p>Só faltou mesmo para sermos os campeões:</p>
<ul>
<li>Um melhor preparo físico.</li>
<li>Mais dois jogadores reservas.</li>
<li>Treinarmos algumas partidas antes do jogo oficial.</li>
<li>Um juiz imparcial, ou pelo menos parcial para nosso lado.</li>
<li>Não termos nosso jogo marcado para depois do almoço.</li>
<li>Um uniforme oficial.</li>
<li>Um melhor ataque.</li>
<li>Uma melhor defesa.</li>
<li>Um melhor meio de campo.</li>
<li>Mais domínio de bola.</li>
<li>Mais pontaria para o gol.</li>
</ul>
<p>Tirando isso, estamos muito bem.</p>
<p>Até ano que vêm tem mais.</p>
]]></content:encoded>
			<wfw:commentRss>http://silveiraneto.net/2008/07/06/nerdproud-versus-eu-podia-ta-matando-edicao-2008/feed/</wfw:commentRss>
<enclosure url="http://silveiraneto.net/downloads/gol_silveira.mov" length="9099990" type="video/quicktime" />
		</item>
		<item>
		<title>Duke Luau</title>
		<link>http://silveiraneto.net/2008/07/04/duke-luau/</link>
		<comments>http://silveiraneto.net/2008/07/04/duke-luau/#comments</comments>
		<pubDate>Fri, 04 Jul 2008 17:54:13 +0000</pubDate>
		<dc:creator>Silveira</dc:creator>
		
		<category><![CDATA[english]]></category>

		<category><![CDATA[creative commons]]></category>

		<category><![CDATA[duke]]></category>

		<category><![CDATA[Java]]></category>

		<category><![CDATA[Luau]]></category>

		<category><![CDATA[Public Domain]]></category>

		<category><![CDATA[Sun]]></category>

		<category><![CDATA[SVG]]></category>

		<guid isPermaLink="false">http://silveiraneto.net/?p=962</guid>
		<description><![CDATA[
Duke Luau Style, under public domain. Source: duke_lual.svg.
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="alignnone size-full wp-image-961 aligncenter" title="Duke Luau" src="http://silveiraneto.net/wp-content/uploads/2008/07/duke_luau.png" alt="" width="400" height="448" /></p>
<p>Duke Luau Style, under public domain. Source: <a href="http://silveiraneto.net/downloads/duke_lual.svg">duke_lual.svg</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://silveiraneto.net/2008/07/04/duke-luau/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Aniversário Casa Brasil Vila União</title>
		<link>http://silveiraneto.net/2008/07/04/aniversario-casa-brasil-vila-uniao/</link>
		<comments>http://silveiraneto.net/2008/07/04/aniversario-casa-brasil-vila-uniao/#comments</comments>
		<pubDate>Fri, 04 Jul 2008 15:29:35 +0000</pubDate>
		<dc:creator>Silveira</dc:creator>
		
		<category><![CDATA[português]]></category>

		<category><![CDATA[Casa Brasil]]></category>

		<category><![CDATA[Convite]]></category>

		<category><![CDATA[Vila União]]></category>

		<guid isPermaLink="false">http://silveiraneto.net/?p=960</guid>
		<description><![CDATA[




Programação I Aniversário Casa Brasil – Vila União


De 10/07 – 11/07


Horários 
Quinta-feira
Quinta-feira
Sexta-feira
Sexta-feira


09:00 – 10:00
Abertura:                                          [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="alignnone size-full wp-image-959 aligncenter" title="Convite Vila União" src="http://silveiraneto.net/wp-content/uploads/2008/07/cbvila.png" alt="" width="496" height="702" /></p>
<table border="0" cellspacing="0" frame="void" rules="none">
<colgroup><col width="58"></col><col width="214"></col><col width="230"></col><col width="230"></col><col width="233"></col></colgroup>
<tbody>
<tr>
<td style="border: 1px solid #000000;" colspan="5" width="965" height="27" align="center"><strong><span style="font-family: Bitstream Vera Sans; font-size: medium;">Programação I Aniversário Casa Brasil – Vila União</span></strong></td>
</tr>
<tr>
<td style="border: 1px solid #000000;" colspan="5" height="20" align="center"><strong><span style="font-size: small;">De 10/07 – 11/07</span></strong></td>
</tr>
<tr>
<td style="border: 1px solid #000000;" height="22" align="left"><strong><span style="font-family: Bitstream Vera Sans;">Horários </span></strong></td>
<td style="border: 1px solid #000000;" align="center"><strong><span style="font-family: Bitstream Vera Sans; font-size: small;">Quinta-feira</span></strong></td>
<td style="border: 1px solid #000000;" align="center"><strong><span style="font-family: Bitstream Vera Sans; font-size: small;">Quinta-feira</span></strong></td>
<td style="border: 1px solid #000000;" align="center"><strong><span style="font-family: Bitstream Vera Sans; font-size: small;">Sexta-feira</span></strong></td>
<td style="border: 1px solid #000000;" align="center"><strong><span style="font-family: Bitstream Vera Sans; font-size: small;">Sexta-feira</span></strong></td>
</tr>
<tr>
<td style="border: 1px solid #000000;" height="121" align="left" valign="middle"><strong><span style="font-family: URW Bookman L;">09:00 – 10:00</span></strong></td>
<td style="border: 1px solid #000000;" colspan="2" align="left" valign="top"><span style="font-family: URW Bookman L;">Abertura:                                                                                          - Apresentação do Projeto Casa Brasil.                                               - Cordel Apresentando Casa Brasil – Vila União (Crianças da Sala de Leitura)                                                                                      Local: Auditório </span></td>
<td align="left"></td>
<td style="border: 1px solid #000000;" rowspan="2" align="left" valign="middle"><span style="font-family: URW Bookman L;">Oficina: Grafite (CB-Granja Portugal)                   Facilitadores: Cristiano (Selo)        Local: Auditório</span></td>
</tr>
<tr>
<td style="border: 1px solid #000000;" height="87" align="left" valign="middle"><strong><span style="font-family: URW Bookman L;">10:00 – 11:30</span></strong></td>
<td style="border: 1px solid #000000;" align="left" valign="top"><span style="font-family: URW Bookman L;">Oficina: Informática Educativa  Facilitador: Wellington Leão    Local: Telecentro </span></td>
<td style="border: 1px solid #000000;" align="left" valign="top"><span style="font-family: URW Bookman L;">Oficina: Gênero e Economia solidária.                          Facilitadora: Meiry Coelho (CB-Meniná Meninó                     Local: Auditório </span></td>
<td style="border: 1px solid #000000;" align="left" valign="top"><span style="font-family: URW Bookman L;">Oficina: “Fazendo o Som”               Facilitador: Abraão de Alcântara (CB-Meniná Meninó)                       Local: Telecentro </span></td>
</tr>
<tr>
<td style="border: 1px solid #000000;" height="36" align="left" valign="middle"><strong><span style="font-family: URW Bookman L;">11:30 – 13:30</span></strong></td>
<td style="border: 1px solid #000000;" align="center" valign="middle"><strong><span style="font-family: URW Bookman L;">ALMOÇO</span></strong></td>
<td style="border: 1px solid #000000;" align="center" valign="middle"><strong><span style="font-family: URW Bookman L;">ALMOÇO</span></strong></td>
<td style="border: 1px solid #000000;" align="center" valign="middle"><strong><span style="font-family: URW Bookman L;">ALMOÇO</span></strong></td>
<td style="border: 1px solid #000000;" align="center" valign="middle"><strong><span style="font-family: URW Bookman L;">ALMOÇO</span></strong></td>
</tr>
<tr>
<td style="border: 1px solid #000000;" height="103" align="left" valign="middle"><strong><span style="font-family: URW Bookman L;">13:30 – 15:00</span></strong></td>
<td style="border: 1px solid #000000;" align="left" valign="top"><span style="font-family: URW Bookman L;">Oficina: Criação de Blog Facilitador: Alyne Castro Local: Telecentro</span></td>
<td style="border: 1px solid #000000;" align="left" valign="top"><span style="font-family: URW Bookman L;">Oficina: Bijouteria Metareciclada Facilitadoras: Meiry Coelho (CB-Meniná-Meninó), Edilândia e Antonilce                                Local: Lab. De MetaReciclagem </span></td>
<td style="border: 1px solid #000000;" align="left" valign="top"><span style="font-family: URW Bookman L;">Debate:  Lixo tecnológico e sustentabilidade ambiental.            Facilitadores: Erivelton Queiróz e Everton Kristan (CB-Caucaia)         Local:  Auditório</span></td>
<td style="border: 1px solid #000000;" align="left" valign="top"><span style="font-family: URW Bookman L;">Oficina: Expressão Teatral Facilitadora: Mayara (CB-Caucaia)   Local: Sala de Leitura </span></td>
</tr>
<tr>
<td style="border: 1px solid #000000;" height="53" align="left" valign="middle"><strong><span style="font-family: URW Bookman L;">15:00 – 16:30</span></strong></td>
<td style="border: 1px solid #000000;" align="left" valign="top"><span style="font-family: URW Bookman L;">Oficina: Fotografia Digital          Facilitadora: Glaucia Barbosa  Local: Auditório</span></td>
<td style="border: 1px solid #000000;" align="left" valign="top"><span style="font-family: URW Bookman L;">Oficina: Criação Quadrinhos.    Facilitadora: Erika Barros      Local: Sala de Leitura </span></td>
<td style="border: 1px solid #000000;" colspan="2" align="center" valign="middle"><strong><span style="font-family: URW Bookman L;">Atividades Livres!!</span></strong></td>
</tr>
<tr>
<td style="border: 1px solid #000000;" height="36" align="left" valign="middle"><strong><span style="font-family: URW Bookman L;">16:30 – 18:00</span></strong></td>
<td style="border: 1px solid #000000;" colspan="2" align="left" valign="top"><span style="font-family: URW Bookman L;">Teatro: Deu a louca nos contos de fada                                        Grupo:                                        Bairro Antônio Bezerra</span></td>
<td style="border: 1px solid #000000;" colspan="2" align="left" valign="top"><span style="font-family: URW Bookman L;">Encerramento: Apresentação do Bumba–meu-boi.</span></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://silveiraneto.net/2008/07/04/aniversario-casa-brasil-vila-uniao/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Nintendo Tree</title>
		<link>http://silveiraneto.net/2008/07/02/nintendo-tree/</link>
		<comments>http://silveiraneto.net/2008/07/02/nintendo-tree/#comments</comments>
		<pubDate>Wed, 02 Jul 2008 18:15:34 +0000</pubDate>
		<dc:creator>Silveira</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[GameBoy]]></category>

		<category><![CDATA[GameCube]]></category>

		<category><![CDATA[Mario]]></category>

		<category><![CDATA[NES]]></category>

		<category><![CDATA[Nintendo]]></category>

		<category><![CDATA[Nintendo 64]]></category>

		<category><![CDATA[Nintendo DS]]></category>

		<category><![CDATA[SNES]]></category>

		<category><![CDATA[Tree]]></category>

		<guid isPermaLink="false">http://silveiraneto.net/?p=957</guid>
		<description><![CDATA[Click to zoom.

From Gamesuy.blogspot.com.
]]></description>
			<content:encoded><![CDATA[<p>Click to zoom.</p>
<p style="text-align: center;"><a href="http://silveiraneto.net/wp-content/uploads/2008/07/nintendotree.jpg"><img class="alignnone size-medium wp-image-958 aligncenter" title="Nintendo Tree" src="http://silveiraneto.net/wp-content/uploads/2008/07/nintendotree-337x374.jpg" alt="" width="337" height="374" /></a></p>
<p>From G<a href="http://gamesuy.blogspot.com/">amesuy.blogspot.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://silveiraneto.net/2008/07/02/nintendo-tree/feed/</wfw:commentRss>
		</item>
		<item>
		<title>OpenSolaris and NetBeans Student Reviews Contest</title>
		<link>http://silveiraneto.net/2008/07/01/opensolaris-and-netbeans-student-reviews-contest/</link>
		<comments>http://silveiraneto.net/2008/07/01/opensolaris-and-netbeans-student-reviews-contest/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 15:52:57 +0000</pubDate>
		<dc:creator>Silveira</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[dollar bill]]></category>

		<category><![CDATA[Opensolaris]]></category>

		<category><![CDATA[Student Reviews Contest]]></category>

		<guid isPermaLink="false">http://silveiraneto.net/?p=956</guid>
		<description><![CDATA[
My article Trying to corrupt data in a ZFS mirror (also in portuguese here) won the second prize in the OpenSolaris Student Reviews Contest. My colleague Jonas Dias also won.
Thank you guys.
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="alignnone size-full wp-image-955 aligncenter" title="100 dollar bill" src="http://silveiraneto.net/wp-content/uploads/2008/07/100dollar.jpg" alt="" width="400" height="168" /></p>
<p>My article <a title="ZFS article" href="../2008/05/28/trying-to-corrupt-data-in-a-zfs-mirror/">Trying to corrupt data in a ZFS mirror</a> (also in <a title="tentando corromper um mirror zfs" href="http://silveiraneto.net/2008/05/25/tentando-corromper-dados-em-um-mirror-zfs/">portuguese here</a>) won the second prize in the <a title="Student Review Contest" href="http://blogs.sun.com/students/date/20080701">OpenSolaris Student Reviews Contest</a>. My colleague <a title="Jonas Dias" href="http://blogs.sun.com/jonasdias/entry/self_healing_samp_with_opensolaris">Jonas Dias</a> also won.</p>
<p>Thank you guys.</p>
]]></content:encoded>
			<wfw:commentRss>http://silveiraneto.net/2008/07/01/opensolaris-and-netbeans-student-reviews-contest/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Java Calendar Examples</title>
		<link>http://silveiraneto.net/2008/07/01/java-calendar-examples/</link>
		<comments>http://silveiraneto.net/2008/07/01/java-calendar-examples/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 14:15:05 +0000</pubDate>
		<dc:creator>Silveira</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[Calendar]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[Java]]></category>

		<category><![CDATA[java.util.Calendar]]></category>

		<guid isPermaLink="false">http://silveiraneto.net/?p=952</guid>
		<description><![CDATA[
import java.util.Calendar;

public class Main {
    public static void main(String[] args) {
        Calendar today = Calendar.getInstance();
        System.out.println("Today is  " + today.getTime());
    }
}

In this simplest example of Calendar, the output would be
Today is : Tue Jul [...]]]></description>
			<content:encoded><![CDATA[<pre name="code" class="java">
import java.util.Calendar;

public class Main {
    public static void main(String[] args) {
        Calendar today = Calendar.getInstance();
        System.out.println("Today is  " + today.getTime());
    }
}
</pre>
<p>In this simplest example of <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/Calendar.html">Calendar</a>, the output would be</p>
<blockquote><p>Today is : Tue Jul 01 10:56:14 BRT 2008</p></blockquote>
<p>In the next example how to get information about the day inside the year, month and week.</p>
<pre name="code" class="java">
import java.util.Calendar;

public class Main {
    public static void main(String[] args) {
        Calendar today = Calendar.getInstance();
        int dof = today.get(Calendar.DAY_OF_YEAR);
        int dom = today.get(Calendar.DAY_OF_MONTH);
        int dow = today.get(Calendar.DAY_OF_WEEK);
        System.out.println("Today is the " + dof +"º day in this year,");
        System.out.println("the " + dom +"º day in this month");
        System.out.println("and the " + dow +"º day in this week.");
    }
}
</pre>
<p>The output could be</p>
<blockquote><p>Today is the 183º day in this year,<br />
the 1º day in this month<br />
and the 3º day in this week.</p></blockquote>
<p>The next example is about how to add (and subtract) a duration from a Calendar.</p>
<pre name="code" class="java">import java.util.Calendar;

public class Main {
    public static void main(String[] args) {
        Calendar today = Calendar.getInstance();
        System.out.println("Today is " + today.getTime());

        Calendar yesterday = (Calendar)today.clone();
        yesterday.add(Calendar.DATE, -1);
        System.out.println("Yesterday was " + yesterday.getTime());

        Calendar tomorow = (Calendar)today.clone();
        tomorow.add(Calendar.DATE, 1);
        System.out.println("Tomorow will be " + tomorow.getTime());
    }
}</pre>
<p>A typical output would be</p>
<blockquote><p>Today is Tue Jul 01 10:44:18 BRT 2008<br />
Yesterday was Mon Jun 30 10:44:18 BRT 2008<br />
Tomorow will be Wed Jul 02 10:44:18 BRT 2008</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://silveiraneto.net/2008/07/01/java-calendar-examples/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
