<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Crab Log</title>
	<atom:link href="http://chicoary.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://chicoary.wordpress.com</link>
	<description>Um blog para todos e para ninguém...</description>
	<lastBuildDate>Thu, 05 Nov 2009 12:28:32 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>pt-br</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='chicoary.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/b933a8518b596198a2919e898d0cda82?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Crab Log</title>
		<link>http://chicoary.wordpress.com</link>
	</image>
			<item>
		<title>Camel Case Stripper</title>
		<link>http://chicoary.wordpress.com/2009/11/01/camel-case-stripper/</link>
		<comments>http://chicoary.wordpress.com/2009/11/01/camel-case-stripper/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 15:24:03 +0000</pubDate>
		<dc:creator>chicoary</dc:creator>
				<category><![CDATA[Smalltalk]]></category>

		<guid isPermaLink="false">http://chicoary.wordpress.com/?p=1501</guid>
		<description><![CDATA[Resolvi implementar um camel case stripper em Smalltalk (Pharo). Talvez fosse mais fácil fazê-lo usando expressões regulares mas usei técnicas de parsing. Veja o código abaixo:
Criando a class:


Object subclass: #CamelCaseStripper
	instanceVariableNames: 'read word char write'
	classVariableNames: ''
	poolDictionaries: ''
	category: 'FAM-Utils'

O método principal:


strip
	"Ver CamelCaseStripper example"
	self readChar.
	self readWord.
	[word isEmptyOrNil] whileFalse: [
		write add: word.
		self readWord.
	].
	^write asArray

A lógica para separar as &#8216;corcovas&#8217;:



readWord
 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chicoary.wordpress.com&blog=81424&post=1501&subd=chicoary&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Resolvi implementar um <em>camel case stripper</em> em Smalltalk (Pharo). Talvez fosse mais fácil fazê-lo usando expressões regulares mas usei técnicas de <em>parsing</em>. Veja o código abaixo:</p>
<p>Criando a class:</p>
<p><!-- HTML generated using hilite.me --></p>
<div>
<pre style="margin:0;"><span style="color:#b00060;font-weight:bold;">Object</span> <span style="color:#0060b0;font-weight:bold;">subclass:</span> <span style="color:#a06000;">#CamelCaseStripper</span>
	<span style="color:#0060b0;font-weight:bold;">instanceVariableNames:</span> <span style="background-color:#fff0f0;">'read word char write'</span>
	<span style="color:#0060b0;font-weight:bold;">classVariableNames:</span> <span style="background-color:#fff0f0;">''</span>
	<span style="color:#0060b0;font-weight:bold;">poolDictionaries:</span> <span style="background-color:#fff0f0;">''</span>
	<span style="color:#0060b0;font-weight:bold;">category:</span> <span style="background-color:#fff0f0;">'FAM-Utils'</span></pre>
</div>
<p>O método principal:</p>
<p><!-- HTML generated using hilite.me --></p>
<div>
<pre style="margin:0;"><span style="color:#0060b0;font-weight:bold;">strip</span>
	<span style="color:#808080;">"Ver CamelCaseStripper example"</span>
	<span style="color:#007020;">self</span> <span style="color:#0060b0;font-weight:bold;">readChar</span>.
	<span style="color:#007020;">self</span> <span style="color:#0060b0;font-weight:bold;">readWord</span>.
	[<span style="color:#906030;">word</span> <span style="color:#0060b0;font-weight:bold;">isEmptyOrNil</span>] <span style="color:#007020;">whileFalse:</span> [
		<span style="color:#906030;">write</span> <span style="color:#0060b0;font-weight:bold;">add:</span> <span style="color:#906030;">word</span>.
		<span style="color:#007020;">self</span> <span style="color:#0060b0;font-weight:bold;">readWord</span>.
	].
	<span style="color:#303030;">^</span><span style="color:#906030;">write</span> <span style="color:#0060b0;font-weight:bold;">asArray</span></pre>
</div>
<p>A lógica para separar as &#8216;corcovas&#8217;:</p>
<p><!-- HTML generated using hilite.me --></p>
<p><!-- HTML generated using hilite.me --></p>
<div>
<pre style="margin:0;"><span style="color:#0060b0;font-weight:bold;">readWord</span>
  <span style="color:#303030;">|</span><span style="color:#906030;"> wordWrite </span><span style="color:#303030;">|</span>
  <span style="color:#906030;">wordWrite</span> <span style="color:#303030;">:=</span> <span style="color:#b00060;font-weight:bold;">WriteStream</span> <span style="color:#0060b0;font-weight:bold;">on:</span> <span style="color:#b00060;font-weight:bold;">String</span> <span style="color:#007020;">new</span>.
  <span style="color:#906030;">char</span> <span style="color:#0060b0;font-weight:bold;">ifNotNil:</span>
    [ <span style="color:#906030;">char</span> <span style="color:#0060b0;font-weight:bold;">isLowercase</span>
      <span style="color:#007020;">ifTrue:</span> [ <span style="color:#007020;">self</span> <span style="color:#0060b0;font-weight:bold;">writeLowercaseTo:</span> <span style="color:#906030;">wordWrite</span> ]
      <span style="color:#007020;">ifFalse:</span> [ <span style="color:#808080;">"Uppercase"</span>
        <span style="color:#906030;">wordWrite</span> <span style="color:#0060b0;font-weight:bold;">nextPut:</span> <span style="color:#906030;">char</span>.
        <span style="color:#007020;">self</span> <span style="color:#0060b0;font-weight:bold;">readChar</span>.
        <span style="color:#906030;">char</span> <span style="color:#0060b0;font-weight:bold;">ifNotNil:</span> [
          <span style="color:#906030;">char</span> <span style="color:#0060b0;font-weight:bold;">isUppercase</span> <span style="color:#007020;">ifTrue:</span> [
            <span style="color:#007020;">self</span> <span style="color:#0060b0;font-weight:bold;">writeUppercaseTo:</span> <span style="color:#906030;">wordWrite</span>]
          <span style="color:#007020;">ifFalse:</span> [
            <span style="color:#007020;">self</span> <span style="color:#0060b0;font-weight:bold;">writeLowercaseTo:</span> <span style="color:#906030;">wordWrite</span>
          ]
        ]
      ]
    ].
  <span style="color:#906030;">word</span> <span style="color:#303030;">:=</span> <span style="color:#906030;">wordWrite</span> <span style="color:#0060b0;font-weight:bold;">contents</span></pre>
</div>
<p>E, finalmente, os métodos onde a lógica faz a diferença:<br />
<!-- HTML generated using hilite.me --></p>
<div>
<pre style="margin:0;"><span style="color:#0060b0;font-weight:bold;">writeLowercaseTo:</span> <span style="color:#906030;">wordWrite</span>
  [ <span style="color:#906030;">char</span> <span style="color:#0060b0;font-weight:bold;">notNil</span> <span style="color:#0060b0;font-weight:bold;">and:</span> [ <span style="color:#906030;">char</span> <span style="color:#0060b0;font-weight:bold;">isLowercase</span> ] ] <span style="color:#007020;">whileTrue:</span>
    [ <span style="color:#906030;">wordWrite</span> <span style="color:#0060b0;font-weight:bold;">nextPut:</span> <span style="color:#906030;">char</span>.
    <span style="color:#007020;">self</span> <span style="color:#0060b0;font-weight:bold;">readChar</span> ]</pre>
</div>
<p>e</p>
<p><!-- HTML generated using hilite.me --></p>
<div>
<pre style="margin:0;"><span style="color:#0060b0;font-weight:bold;">writeUppercaseTo:</span> <span style="color:#906030;">wordWrite</span>
  [ <span style="color:#906030;">char</span> <span style="color:#0060b0;font-weight:bold;">notNil</span> <span style="color:#0060b0;font-weight:bold;">and:</span> [ <span style="color:#906030;">char</span> <span style="color:#0060b0;font-weight:bold;">isUppercase</span> ] <span style="color:#0060b0;font-weight:bold;">and:</span> [<span style="color:#007020;">self</span> <span style="color:#0060b0;font-weight:bold;">nextChar</span> <span style="color:#0060b0;font-weight:bold;">isUppercase</span>]] <span style="color:#007020;">whileTrue:</span>
    [ <span style="color:#906030;">wordWrite</span> <span style="color:#0060b0;font-weight:bold;">nextPut:</span> <span style="color:#906030;">char</span>.
    <span style="color:#007020;">self</span> <span style="color:#0060b0;font-weight:bold;">readChar</span> ]</pre>
</div>
<p>No <em>class side</em> veja como usar a classe:</p>
<p><!-- HTML generated using hilite.me --></p>
<div>
<pre style="margin:0;"><span style="color:#0060b0;font-weight:bold;">example</span>
  <span style="color:#303030;">|</span><span style="color:#906030;">stripper</span><span style="color:#303030;">|</span>
  <span style="color:#906030;">stripper</span> <span style="color:#303030;">:=</span> <span style="color:#b00060;font-weight:bold;">CamelCaseStripper</span> <span style="color:#0060b0;font-weight:bold;">from:</span> <span style="background-color:#fff0f0;">'prefixWABrushTag'</span>.
  <span style="color:#906030;">stripper</span> <span style="color:#0060b0;font-weight:bold;">strip</span> <span style="color:#808080;">"--&gt; #('prefix' 'WA' 'Brush' 'Tag')"</span></pre>
</div>
<p>Outros detalhes podem ser vistos em <a href="http://chicoary.files.wordpress.com/2009/11/camelcasestripper-st1.pdf">CamelCaseStripper.st</a>.</p>
<p>Coloquei também um método de conveniência em String:</p>
<p><!-- HTML generated using hilite.me --></p>
<div>
<pre style="margin:0;"><span style="color:#0060b0;font-weight:bold;">camelCaseStrip</span>
  <span style="color:#303030;">^</span>(<span style="color:#b00060;font-weight:bold;">CamelCaseStripper</span> <span style="color:#0060b0;font-weight:bold;">from:</span> <span style="color:#007020;">self</span>) <span style="color:#0060b0;font-weight:bold;">strip</span></pre>
</div>
<p>Agora o uso fica como a seguir:</p>
<p><!-- HTML generated using hilite.me --></p>
<div>
<pre style="margin:0;"><span style="background-color:#fff0f0;">'ABCdefGHIjk'</span> <span style="color:#0060b0;font-weight:bold;">camelCaseStrip</span> <span style="color:#808080;">"--&gt; #('AB' 'Cdef' 'GH' 'Ijk')"</span></pre>
</div>
<p>Nota: Estou usando o site <a href="http://www.hilite.me/" target="_blank">http://www.hilite.me/</a> para <em>code beautifier</em> mas não estou gostando das barras de rolagem horizontais. Acho que a identação do <em>hilite me</em> é exagerada. No futuro vou tentar usar <a href="http://pastie.org" target="_blank">http://pastie.org</a> (acho que precisa de um plugin para o WordPress:  <a rel="bookmark" href="http://independentsoftwaresolutions.com/products-services/products/show-pastie-code-in-comments-wordpress-plugin/">Show Pastie Code in Comments WordPress Plugin</a>).</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chicoary.wordpress.com/1501/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chicoary.wordpress.com/1501/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chicoary.wordpress.com/1501/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chicoary.wordpress.com/1501/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chicoary.wordpress.com/1501/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chicoary.wordpress.com/1501/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chicoary.wordpress.com/1501/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chicoary.wordpress.com/1501/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chicoary.wordpress.com/1501/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chicoary.wordpress.com/1501/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chicoary.wordpress.com&blog=81424&post=1501&subd=chicoary&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chicoary.wordpress.com/2009/11/01/camel-case-stripper/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/105c224029ed87b114272c91e65c22dc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chicoary</media:title>
		</media:content>
	</item>
		<item>
		<title>Rio-Aracaju</title>
		<link>http://chicoary.wordpress.com/2009/10/27/rio-aracaju/</link>
		<comments>http://chicoary.wordpress.com/2009/10/27/rio-aracaju/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 19:09:22 +0000</pubDate>
		<dc:creator>chicoary</dc:creator>
				<category><![CDATA[Cidade & Região]]></category>
		<category><![CDATA[Viagem]]></category>

		<guid isPermaLink="false">http://chicoary.wordpress.com/?p=1494</guid>
		<description><![CDATA[
Estou planejando ir do Rio até Aracaju de carro. Achei umas dicas legais do Ricardo Freire para fazer uma parada em Cumuruxatiba e/ou Corumbau, na Bahia.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chicoary.wordpress.com&blog=81424&post=1494&subd=chicoary&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://www.mundi.com.br/Fotos-Ponta-do-Corumbau-2717800.html?photoid=1669"><img class="alignnone" title="Clique na imagem para ver mais fotos da Ponta do Corumbau" src="http://img.mundi.com.br/images/Ponta-do-Corumbau-photo1669-5.jpg" alt="" width="492" height="330" /></a></p>
<p>Estou planejando ir do Rio até Aracaju de carro. Achei umas <a href="http://www.viajenaviagem.com/2009/07/de-sao-paulo-ao-sul-da-bahia-de-carro/" target="_blank">dicas legais do Ricardo Freire</a> para fazer uma parada em Cumuruxatiba e/ou Corumbau, na Bahia.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chicoary.wordpress.com/1494/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chicoary.wordpress.com/1494/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chicoary.wordpress.com/1494/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chicoary.wordpress.com/1494/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chicoary.wordpress.com/1494/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chicoary.wordpress.com/1494/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chicoary.wordpress.com/1494/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chicoary.wordpress.com/1494/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chicoary.wordpress.com/1494/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chicoary.wordpress.com/1494/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chicoary.wordpress.com&blog=81424&post=1494&subd=chicoary&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chicoary.wordpress.com/2009/10/27/rio-aracaju/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/105c224029ed87b114272c91e65c22dc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chicoary</media:title>
		</media:content>

		<media:content url="http://img.mundi.com.br/images/Ponta-do-Corumbau-photo1669-5.jpg" medium="image">
			<media:title type="html">Clique na imagem para ver mais fotos da Ponta do Corumbau</media:title>
		</media:content>
	</item>
		<item>
		<title>Minitransat 2009 &#8211; Resgate de Scrizzi</title>
		<link>http://chicoary.wordpress.com/2009/10/27/minitransat-2009-resgate-de-scrizzi/</link>
		<comments>http://chicoary.wordpress.com/2009/10/27/minitransat-2009-resgate-de-scrizzi/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 09:50:12 +0000</pubDate>
		<dc:creator>chicoary</dc:creator>
				<category><![CDATA[Esporte]]></category>
		<category><![CDATA[Evento]]></category>
		<category><![CDATA[Notícias]]></category>
		<category><![CDATA[Vela]]></category>

		<guid isPermaLink="false">http://chicoary.wordpress.com/?p=1487</guid>
		<description><![CDATA[Em andamento a operação de resgate de Alexandre Scizzi, do Phoenix (serie), participante da regata Minitransat.

O velejador já foi encontrado e está velejando em direção à costa da Bahia.
&#160;
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chicoary.wordpress.com&blog=81424&post=1487&subd=chicoary&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Em andamento a operação de resgate de Alexandre Scizzi, do Phoenix (serie), participante da <a href="http://chicoary.wordpress.com/2009/10/25/minitransat-2009/" target="_blank">regata Minitransat</a>.</p>
<p><a href="http://www.transat650.org/pt/primeira-pagina/997/scrizzi-uma-operacao-de-regate-foi-iniciada.html"><img class="alignnone size-full wp-image-1488" title="scrizzi" src="http://chicoary.files.wordpress.com/2009/10/scrizzi.png?w=398&#038;h=344" alt="scrizzi" width="398" height="344" /></a></p>
<p>O velejador já <a href="http://www.revistanauticaonline.com.br/noticias/viewnews.php?nid=ult3cebc425f4d4bb332e7d19525cf7aaaf" target="_blank">foi encontrado</a> e está velejando em direção à costa da Bahia.</p>
<p>&nbsp;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chicoary.wordpress.com/1487/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chicoary.wordpress.com/1487/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chicoary.wordpress.com/1487/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chicoary.wordpress.com/1487/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chicoary.wordpress.com/1487/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chicoary.wordpress.com/1487/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chicoary.wordpress.com/1487/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chicoary.wordpress.com/1487/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chicoary.wordpress.com/1487/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chicoary.wordpress.com/1487/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chicoary.wordpress.com&blog=81424&post=1487&subd=chicoary&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chicoary.wordpress.com/2009/10/27/minitransat-2009-resgate-de-scrizzi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/105c224029ed87b114272c91e65c22dc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chicoary</media:title>
		</media:content>

		<media:content url="http://chicoary.files.wordpress.com/2009/10/scrizzi.png" medium="image">
			<media:title type="html">scrizzi</media:title>
		</media:content>
	</item>
		<item>
		<title>Snow Leopard</title>
		<link>http://chicoary.wordpress.com/2009/10/25/snow-leopard/</link>
		<comments>http://chicoary.wordpress.com/2009/10/25/snow-leopard/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 21:22:15 +0000</pubDate>
		<dc:creator>chicoary</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://chicoary.wordpress.com/?p=1477</guid>
		<description><![CDATA[
Estou tentando instalar o Snow Leopard a partir do Tiger. Minha dificuldade maior é por causa do LCD com defeito que não me deixa ver as telas. Em Mac OS X 10.6 Snow Leopard: processo de instalação e primeiras descobertas bacaninhas são mostradas as telas que podem me ajudar caso faça uma tentativa às cegas. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chicoary.wordpress.com&blog=81424&post=1477&subd=chicoary&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://images.apple.com/macosx/"><img class="alignnone" src="http://images.apple.com/macosx/images/overview_hero_20091020.jpg" alt="" width="590" height="310" /></a></p>
<p>Estou tentando instalar o Snow Leopard a partir do Tiger. Minha dificuldade maior é por causa do <a href="http://chicoary.wordpress.com/2009/10/20/maca-podre-iii/" target="_blank">LCD com defeito</a> que não me deixa ver as telas. Em <a href="http://macmagazine.uol.com.br/2009/08/31/mac-os-x-10-6-snow-leopard-processo-de-instalacao-e-primeiras-descobertas-bacaninhas/" target="_blank">Mac OS X 10.6 Snow Leopard: processo de instalação e primeiras descobertas bacaninhas</a> são mostradas as telas que podem me ajudar caso faça uma tentativa às cegas. Estou aventando também ligar a saída s-vídeo na TV LCD (que atualmente está recebendo sinal HDMI).</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chicoary.wordpress.com/1477/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chicoary.wordpress.com/1477/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chicoary.wordpress.com/1477/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chicoary.wordpress.com/1477/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chicoary.wordpress.com/1477/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chicoary.wordpress.com/1477/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chicoary.wordpress.com/1477/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chicoary.wordpress.com/1477/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chicoary.wordpress.com/1477/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chicoary.wordpress.com/1477/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chicoary.wordpress.com&blog=81424&post=1477&subd=chicoary&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chicoary.wordpress.com/2009/10/25/snow-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/105c224029ed87b114272c91e65c22dc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chicoary</media:title>
		</media:content>

		<media:content url="http://images.apple.com/macosx/images/overview_hero_20091020.jpg" medium="image" />
	</item>
		<item>
		<title>Minitransat 2009</title>
		<link>http://chicoary.wordpress.com/2009/10/25/minitransat-2009/</link>
		<comments>http://chicoary.wordpress.com/2009/10/25/minitransat-2009/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 11:48:48 +0000</pubDate>
		<dc:creator>chicoary</dc:creator>
				<category><![CDATA[Cidade & Região]]></category>
		<category><![CDATA[Esporte]]></category>
		<category><![CDATA[Evento]]></category>
		<category><![CDATA[Notícias]]></category>
		<category><![CDATA[Vela]]></category>

		<guid isPermaLink="false">http://chicoary.wordpress.com/?p=1468</guid>
		<description><![CDATA[
Os primeiros lugares dos protos (Thomas Ruyant) e series (Charles Dalin) já chegaram em Salvador. Izabel Pimentel (a única representante do Brasil na competição) já passou de Fernando de Noronha e melhorou a sua colocação (da posição 28 para a 27). Veja a sua posição no mapa abaixo.

Veja abaixo o vídeo do primeiro colocado.

Images en [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chicoary.wordpress.com&blog=81424&post=1468&subd=chicoary&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://www.transat650.org/pt/multimidia/fotos.html"><img class="alignnone size-full wp-image-1472" title="minis-na-bahia" src="http://chicoary.files.wordpress.com/2009/10/minis-na-bahia.png?w=499&#038;h=375" alt="minis-na-bahia" width="499" height="375" /></a></p>
<p>Os primeiros lugares dos <em>protos (Thomas Ruyant)</em> e <em>series (Charles Dalin)</em> já chegaram em Salvador. Izabel Pimentel (a única representante do Brasil na competição) já passou de Fernando de Noronha e melhorou a sua colocação (da posição 28 para a 27). Veja a sua posição no mapa abaixo.</p>
<p><a href="http://www.transat650.org/pt/"><img class="alignnone size-full wp-image-1469" title="minitransat-2009" src="http://chicoary.files.wordpress.com/2009/10/minitransat-2009.png?w=484&#038;h=476" alt="minitransat-2009" width="484" height="476" /></a></p>
<p>Veja abaixo o vídeo do primeiro colocado.</p>
<div style="background-color:#666666;width:480px;font-family:Arial,Helvetica,sans-serif;color:#ffffff;font-size:12px;">
<div style="color:#FFFFFF;padding:5px;"><strong><a style="text-decoration:none;color:#FFFFFF;" href="http://transat650.mativi.fr/images-des-skippers/images-en-mer-des-skippers-thomas-ruyant.html">Images en mer des skippers : Thomas Ruyant</a></strong> | <em>un film <a style="text-decoration:none;color:#FFFFFF;" href="http://transat650.mativi.fr">transat650</a></em></div>
</div>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chicoary.wordpress.com/1468/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chicoary.wordpress.com/1468/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chicoary.wordpress.com/1468/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chicoary.wordpress.com/1468/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chicoary.wordpress.com/1468/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chicoary.wordpress.com/1468/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chicoary.wordpress.com/1468/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chicoary.wordpress.com/1468/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chicoary.wordpress.com/1468/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chicoary.wordpress.com/1468/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chicoary.wordpress.com&blog=81424&post=1468&subd=chicoary&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chicoary.wordpress.com/2009/10/25/minitransat-2009/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/105c224029ed87b114272c91e65c22dc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chicoary</media:title>
		</media:content>

		<media:content url="http://chicoary.files.wordpress.com/2009/10/minis-na-bahia.png" medium="image">
			<media:title type="html">minis-na-bahia</media:title>
		</media:content>

		<media:content url="http://chicoary.files.wordpress.com/2009/10/minitransat-2009.png" medium="image">
			<media:title type="html">minitransat-2009</media:title>
		</media:content>
	</item>
		<item>
		<title>Dynamic Web Development with Seaside</title>
		<link>http://chicoary.wordpress.com/2009/10/23/dynamic-web-development-with-seaside/</link>
		<comments>http://chicoary.wordpress.com/2009/10/23/dynamic-web-development-with-seaside/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 17:33:59 +0000</pubDate>
		<dc:creator>chicoary</dc:creator>
				<category><![CDATA[Seaside]]></category>
		<category><![CDATA[Smalltalk]]></category>

		<guid isPermaLink="false">http://chicoary.wordpress.com/?p=1463</guid>
		<description><![CDATA[
Dynamic Web Development with Seaside é uma excelente iniciativa para documentar o Seaside e treinar desenvolvedores. Sua origem está no Seaside Shaffer Tutorial.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chicoary.wordpress.com&blog=81424&post=1463&subd=chicoary&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://book.seaside.st/"><img class="alignnone" src="http://book.seaside.st/files/c5/0en5ssepx3gpgtcqwty9iimnas45gt/cover.png" alt="" width="299" height="297" /></a><br />
<a title="Table of Contents" href="http://book.seaside.st/book/table-of-contents" target="_blank">Dynamic Web Development <em>with Seaside</em></a> é uma excelente iniciativa para documentar o Seaside e treinar desenvolvedores. Sua origem está no <a href="http://www.shaffer-consulting.com/david/Seaside/" target="_blank">Seaside Shaffer Tutorial</a>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chicoary.wordpress.com/1463/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chicoary.wordpress.com/1463/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chicoary.wordpress.com/1463/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chicoary.wordpress.com/1463/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chicoary.wordpress.com/1463/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chicoary.wordpress.com/1463/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chicoary.wordpress.com/1463/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chicoary.wordpress.com/1463/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chicoary.wordpress.com/1463/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chicoary.wordpress.com/1463/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chicoary.wordpress.com&blog=81424&post=1463&subd=chicoary&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chicoary.wordpress.com/2009/10/23/dynamic-web-development-with-seaside/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/105c224029ed87b114272c91e65c22dc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chicoary</media:title>
		</media:content>

		<media:content url="http://book.seaside.st/files/c5/0en5ssepx3gpgtcqwty9iimnas45gt/cover.png" medium="image" />
	</item>
		<item>
		<title>Maçã podre III</title>
		<link>http://chicoary.wordpress.com/2009/10/20/maca-podre-iii/</link>
		<comments>http://chicoary.wordpress.com/2009/10/20/maca-podre-iii/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 14:40:00 +0000</pubDate>
		<dc:creator>chicoary</dc:creator>
				<category><![CDATA[Cotidiano]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://chicoary.wordpress.com/?p=1450</guid>
		<description><![CDATA[
Este post continua a saga do defeito no iMac. A tela agora está toda tomada. Vou  enviar a foto também para http://imacdefeituoso.blogspot.com. Até agora estou me virando conectando uma TV LCD via HDMI.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chicoary.wordpress.com&blog=81424&post=1450&subd=chicoary&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img class="alignnone size-full wp-image-1457" title="dsc03403" src="http://chicoary.files.wordpress.com/2009/10/dsc034031.jpg?w=150&#038;h=112" alt="dsc03403" width="150" height="112" /></p>
<p>Este post continua a <a href="http://chicoary.wordpress.com/2009/03/11/maca-podre-ii/" target="_blank">saga</a> do defeito no iMac. A tela agora está toda tomada. Vou  enviar a foto também para <a href="http://imacdefeituoso.blogspot.com" target="_blank">http://imacdefeituoso.blogspot.com</a>. Até agora estou me virando conectando uma TV LCD via HDMI.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chicoary.wordpress.com/1450/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chicoary.wordpress.com/1450/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chicoary.wordpress.com/1450/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chicoary.wordpress.com/1450/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chicoary.wordpress.com/1450/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chicoary.wordpress.com/1450/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chicoary.wordpress.com/1450/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chicoary.wordpress.com/1450/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chicoary.wordpress.com/1450/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chicoary.wordpress.com/1450/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chicoary.wordpress.com&blog=81424&post=1450&subd=chicoary&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chicoary.wordpress.com/2009/10/20/maca-podre-iii/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/105c224029ed87b114272c91e65c22dc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chicoary</media:title>
		</media:content>

		<media:content url="http://chicoary.files.wordpress.com/2009/10/dsc034031.jpg" medium="image">
			<media:title type="html">dsc03403</media:title>
		</media:content>
	</item>
		<item>
		<title>Cucumber</title>
		<link>http://chicoary.wordpress.com/2009/10/18/cucumber/</link>
		<comments>http://chicoary.wordpress.com/2009/10/18/cucumber/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 02:05:48 +0000</pubDate>
		<dc:creator>chicoary</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[eXtreme Programming]]></category>

		<guid isPermaLink="false">http://chicoary.wordpress.com/?p=1425</guid>
		<description><![CDATA[
Em post anterior fiz um apanhado sobre BDD. Agora começei a por a mão na massa. Testei o Cucumber no RubyStack está funcionando bem até agora. Estou seguindo um dos tutoriais que encontrei em Materiais sobre cucumber. Mais especificamente em Testes funcionais no Rails usando o Cucumber. No tutorial foram usados ainda RSpec, Webrat e Factory Girl. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chicoary.wordpress.com&blog=81424&post=1425&subd=chicoary&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://cukes.info/"><img class="alignnone" src="http://cukes.info/images/cucumber_logo.png" alt="" width="391" height="119" /></a></p>
<p>Em <a href="http://chicoary.wordpress.com/2006/07/08/desenvolvimento-guiado-por-comportamento/" target="_blank">post </a>anterior fiz um apanhado sobre BDD. Agora começei a por a mão na massa. Testei o <a href="http://cukes.info/" target="_blank">Cucumber</a> no <a href="http://chicoary.wordpress.com/2009/10/17/rubystack-da-bitnami/" target="_blank">RubyStack</a> está funcionando bem até agora. Estou seguindo um dos tutoriais que encontrei em <a title="Link Permanente para Materiais sobre cucumber" rel="bookmark" href="http://diegonogueira.wordpress.com/2009/07/25/materiais-sobre-cucumber/">Materiais sobre cucumber</a>. Mais especificamente em<a rel="bookmark" href="http://cassiomarques.wordpress.com/2008/11/16/testes-funcionais-no-rails-usando-o-cucumber/"> Testes funcionais no Rails usando o Cucumber</a>. No tutorial foram usados ainda <a href="http://rspec.info/" target="_blank">RSpec</a>, <a href="http://gitrdoc.com/brynary/webrat/tree/master/" target="_blank">Webrat</a> e <a href="http://thoughtbot.com/projects/factory_girl" target="_blank">Factory Girl</a>. Foram citadas também as dependências em relação ao  <a href="http://hpricot.com/" target="_blank">hpricot, </a> <a href="http://polyglot.rubyforge.org/" target="_blank">polyglot</a>,  <a href="http://www.eyrie.org/%7Eeagle/software/ansicolor/" target="_blank">term-ansicolor</a> e  <a href="http://treetop.rubyforge.org/" target="_blank">treetop</a>. Com o RubyStack instalado não precisei instalar mais nada até agora. Para gerar o código Rails para atender as features Cucumber usei scaffold.</p>
<p>Só falta a parte relativa ao login:</p>
<p><img class="alignnone size-full wp-image-1438" title="features" src="http://chicoary.files.wordpress.com/2009/10/features.png?w=649&#038;h=308" alt="features" width="649" height="308" /></p>
<p><img class="alignnone size-full wp-image-1435" title="cucumber" src="http://chicoary.files.wordpress.com/2009/10/cucumber.png?w=650&#038;h=337" alt="cucumber" width="650" height="337" /></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chicoary.wordpress.com/1425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chicoary.wordpress.com/1425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chicoary.wordpress.com/1425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chicoary.wordpress.com/1425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chicoary.wordpress.com/1425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chicoary.wordpress.com/1425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chicoary.wordpress.com/1425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chicoary.wordpress.com/1425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chicoary.wordpress.com/1425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chicoary.wordpress.com/1425/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chicoary.wordpress.com&blog=81424&post=1425&subd=chicoary&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chicoary.wordpress.com/2009/10/18/cucumber/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/105c224029ed87b114272c91e65c22dc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chicoary</media:title>
		</media:content>

		<media:content url="http://cukes.info/images/cucumber_logo.png" medium="image" />

		<media:content url="http://chicoary.files.wordpress.com/2009/10/features.png" medium="image">
			<media:title type="html">features</media:title>
		</media:content>

		<media:content url="http://chicoary.files.wordpress.com/2009/10/cucumber.png" medium="image">
			<media:title type="html">cucumber</media:title>
		</media:content>
	</item>
		<item>
		<title>BitNami RubyStack</title>
		<link>http://chicoary.wordpress.com/2009/10/17/rubystack-da-bitnami/</link>
		<comments>http://chicoary.wordpress.com/2009/10/17/rubystack-da-bitnami/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 00:29:04 +0000</pubDate>
		<dc:creator>chicoary</dc:creator>
				<category><![CDATA[Rails]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Tecnologia]]></category>

		<guid isPermaLink="false">http://chicoary.wordpress.com/?p=1416</guid>
		<description><![CDATA[
Instalei o RubyStack da BitNami no Mac. Testei um hello world no Rails. Sem problemas até agora exceto o costumeiro

Routing Error
No route matches "/test" with {:method=&#62;:get}


que pode ser sanado com um restart do server.
Pretendo começar a testar o Cucumber.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chicoary.wordpress.com&blog=81424&post=1416&subd=chicoary&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://bitnami.org"><img class="alignnone" src="http://bitnami.org/images/soda-stacks.jpg?1253027559" alt="" width="370" height="200" /></a></p>
<p>Instalei o <a href="http://bitnami.org/stack/rubystack" target="_blank">RubyStack</a> da BitNami no Mac. Testei um <em>hello world</em> no Rails. Sem problemas até agora exceto o costumeiro</p>
<blockquote>
<h1>Routing Error</h1>
<pre>No route matches "/test" with {:method=&gt;:get}
</pre>
</blockquote>
<p>que pode ser sanado com um <em>restart</em> do <em>server</em>.</p>
<p>Pretendo começar a testar o <a href="http://cukes.info/" target="_self">Cucumber</a>.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chicoary.wordpress.com/1416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chicoary.wordpress.com/1416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chicoary.wordpress.com/1416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chicoary.wordpress.com/1416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chicoary.wordpress.com/1416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chicoary.wordpress.com/1416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chicoary.wordpress.com/1416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chicoary.wordpress.com/1416/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chicoary.wordpress.com/1416/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chicoary.wordpress.com/1416/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chicoary.wordpress.com&blog=81424&post=1416&subd=chicoary&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chicoary.wordpress.com/2009/10/17/rubystack-da-bitnami/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/105c224029ed87b114272c91e65c22dc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chicoary</media:title>
		</media:content>

		<media:content url="http://bitnami.org/images/soda-stacks.jpg?1253027559" medium="image" />
	</item>
		<item>
		<title>Festival do Rio 2009</title>
		<link>http://chicoary.wordpress.com/2009/09/27/festival-do-rio-2009/</link>
		<comments>http://chicoary.wordpress.com/2009/09/27/festival-do-rio-2009/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 12:14:35 +0000</pubDate>
		<dc:creator>chicoary</dc:creator>
				<category><![CDATA[Cinema]]></category>

		<guid isPermaLink="false">http://chicoary.wordpress.com/?p=1385</guid>
		<description><![CDATA[
Começou a maratona do Festival do Rio 2009.
O que já assisti:
Sexta, 25/9

O desinformante (19:00 Leblon 1, com Iane e Natacha) &#60;&#8211; Curioso (Regular)

Sábado, 26/9

Um namorado para minha esposa (15:15 Estação Ipanema 1) &#60;&#8211; Bom
Viagem aos Pirineus (que substituiu o `Rei da fuga`,  18:00 Estação Ipanema 1) &#60;&#8211; O melhor do sábado (Ótimo)
Eterno Feitiço (20:10 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chicoary.wordpress.com&blog=81424&post=1385&subd=chicoary&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img class="alignnone" src="http://www.festivaldorio.com.br/site2009/templates/beez/images/marcafest.jpg" alt="" width="210" height="137" /></p>
<p>Começou a maratona do <a href="http://www.festivaldorio.com.br/site2009/" target="_blank">Festival do Rio 2009</a>.</p>
<h4>O que já assisti:</h4>
<hr />Sexta, 25/9</p>
<ul>
<li>O desinformante (19:00 Leblon 1, com Iane e Natacha) &lt;&#8211; Curioso (Regular)</li>
</ul>
<hr />Sábado, 26/9</p>
<ul>
<li>Um namorado para minha esposa (15:15 Estação Ipanema 1) &lt;&#8211; Bom</li>
<li>Viagem aos Pirineus (que substituiu o `Rei da fuga`,  18:00 Estação Ipanema 1) &lt;&#8211; O melhor do sábado (Ótimo)</li>
<li>Eterno Feitiço (20:10 Estação Ipanema 2, com Iane) &lt;&#8211; Bonito</li>
</ul>
<hr />Domingo, 27/9:</p>
<ul>
<li>As praias de Agnes (2) (15:50 Estação Vivo Gávea 2, com Iane) &lt;&#8211; Bom</li>
</ul>
<hr />Terça, 29/9:</p>
<ul>
<li>A pequenina (2) (17:30 Ipanema 1) (Não vimos. Faltou luz.)</li>
</ul>
<hr />Quinta, 1/10:</p>
<ul>
<li>Distrito 9 (21:30 Leblon 1) &lt;&#8212; Razoável</li>
</ul>
<hr />Sexta, 2/10:</p>
<ul>
<li>Fais-moi Plaisir!, 19:00 (2) (Roxy 3) &lt;&#8212; Ótimo. Divertido. A platéia deu boas gargalhadas.</li>
</ul>
<hr />Domingo, 4/10:</p>
<ul>
<li>Ricky (2),  (15:20 Estação Vivo Gávea 5) &lt;&#8212; Esperava mais. Não gostei. Mal alinhavado.</li>
</ul>
<hr />Terça, 6/10:</p>
<ul>
<li>Coco antes de Chanel (2) (19:00 Leblon 1) &lt;&#8212; Bom.</li>
</ul>
<hr />Quarta, 7/10:</p>
<ul>
<li>Aconteceu em Woodstock (2) (21:30 Leblon 1) &lt;&#8212; Regular</li>
</ul>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chicoary.wordpress.com/1385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chicoary.wordpress.com/1385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chicoary.wordpress.com/1385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chicoary.wordpress.com/1385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chicoary.wordpress.com/1385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chicoary.wordpress.com/1385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chicoary.wordpress.com/1385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chicoary.wordpress.com/1385/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chicoary.wordpress.com/1385/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chicoary.wordpress.com/1385/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chicoary.wordpress.com&blog=81424&post=1385&subd=chicoary&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chicoary.wordpress.com/2009/09/27/festival-do-rio-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/105c224029ed87b114272c91e65c22dc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">chicoary</media:title>
		</media:content>

		<media:content url="http://www.festivaldorio.com.br/site2009/templates/beez/images/marcafest.jpg" medium="image" />
	</item>
	</channel>
</rss>