<?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>Bruno Daniel Marinho</title>
	<atom:link href="http://brunodanielmarinho.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://brunodanielmarinho.wordpress.com</link>
	<description>Simplesmente um pouco de TI</description>
	<lastBuildDate>Fri, 16 Dec 2011 19:07:19 +0000</lastBuildDate>
	<language>pt-br</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='brunodanielmarinho.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Bruno Daniel Marinho</title>
		<link>http://brunodanielmarinho.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://brunodanielmarinho.wordpress.com/osd.xml" title="Bruno Daniel Marinho" />
	<atom:link rel='hub' href='http://brunodanielmarinho.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Download de arquivos do Servidor</title>
		<link>http://brunodanielmarinho.wordpress.com/2011/08/26/download-de-arquivos-do-servidor/</link>
		<comments>http://brunodanielmarinho.wordpress.com/2011/08/26/download-de-arquivos-do-servidor/#comments</comments>
		<pubDate>Fri, 26 Aug 2011 13:21:22 +0000</pubDate>
		<dc:creator>bdmstyle</dc:creator>
				<category><![CDATA[J2EE]]></category>
		<category><![CDATA[JavaWeb]]></category>

		<guid isPermaLink="false">http://brunodanielmarinho.wordpress.com/?p=257</guid>
		<description><![CDATA[Olá tive ausente durante um tempo mais pretendo voltar a postar mais frequentemente e coisa melhores, hoje venho postar sobre como fazer download de arquivos do servidor. Fiz uma implementação em dois sabores onde você pode baixar que é o que o código principal faz ou visualizar no browser que a tag outputlink ja faz [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=brunodanielmarinho.wordpress.com&amp;blog=10180030&amp;post=257&amp;subd=brunodanielmarinho&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Olá tive ausente durante um tempo mais pretendo voltar a postar mais frequentemente e coisa melhores, hoje venho postar sobre como fazer download de arquivos do servidor.</p>
<p>Fiz uma implementação em dois sabores onde você pode baixar que é o que o código principal faz ou visualizar no browser que a tag outputlink ja faz o trabalho duro.</p>
<p>O código está fácil de entender e comentado por isso não vou explicar muita coisa, tem que saber um pouquinho de IO para não se perder.</p>
<p>Até a próxima. <a href="http://brunodanielmarinho.files.wordpress.com/2011/08/downloadfile.ppt">Download  projeto no netbeans</a> está com extensão ppt (por que wordpress não permite fazer upload de arquivo zip) mais é so renomear para zip e descompactar.</p>
<p>Disposição dos arquivos</p>
<div id="attachment_263" class="wp-caption alignnone" style="width: 291px"><a href="http://brunodanielmarinho.files.wordpress.com/2011/08/view.gif"><img class="size-full wp-image-263" title="Disposição Arquivos" src="http://brunodanielmarinho.files.wordpress.com/2011/08/view.gif?w=500" alt="Disposição Arquivos"   /></a><p class="wp-caption-text">Disposição Arquivos</p></div>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><pre class="brush: java;">
package com.wordpress.brunodanielmarinho;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.OutputStream;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.RequestScoped;
import javax.faces.context.ExternalContext;
import javax.faces.context.FacesContext;
import javax.servlet.ServletContext;
import javax.servlet.http.HttpServletResponse;

@ManagedBean
@RequestScoped
public class DonwloadFile {

public String download() {

//O primeiro parametro é o nome do arquivo que aparece para o usuario no download pode ser qualquer um.
downloadFile(&quot;teste.txt&quot;, &quot;/teste/text.txt&quot;);

return &quot;&quot;;
}

public String downloadFile(String nomeDoArquivoGeradoParaDownload, String caminhoRelativoComNomeEextensao) {

ExternalContext context = FacesContext.getCurrentInstance().getExternalContext();
ServletContext servletContext = (ServletContext) context.getContext();
//Obtem o caminho para o arquivo e efetua a leitura
byte[] arquivo = readFile(new File(servletContext.getRealPath(&quot;&quot;) + caminhoRelativoComNomeEextensao));
HttpServletResponse response =(HttpServletResponse) context.getResponse();
//configura o arquivo que vai voltar para o usuario.
response.setHeader(&quot;Content-Disposition&quot;,&quot;attachment;filename=\&quot;&quot; + nomeDoArquivoGeradoParaDownload + &quot;\&quot;&quot;);
response.setContentLength(arquivo.length);
//isso faz abrir a janelinha de download
response.setContentType(&quot;application/download&quot;);
//envia o arquivo de volta
try {
OutputStream out= response.getOutputStream();
out.write(arquivo);
out.flush();
out.close();
FacesContext.getCurrentInstance().responseComplete();
} catch (IOException e) {
System.out.print(&quot;Erro no envio do arquivo&quot;);
e.printStackTrace();
}
return &quot;&quot;;

}

//efetua a leitura do arquivo
public static byte[] readFile(File file) {
int len = (int) file.length();
byte[] sendBuf = new byte[len];
FileInputStream inFile = null;
try {
inFile = new FileInputStream(file);
inFile.read(sendBuf, 0, len);

} catch (FileNotFoundException e) {
System.out.print(&quot;Arquivo não encontrado&quot;);
e.printStackTrace();
} catch (IOException e) {
System.out.print(&quot;Erro na leitura do arquivo&quot;);
e.printStackTrace();
}
return sendBuf;
}
}
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunodanielmarinho.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunodanielmarinho.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunodanielmarinho.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunodanielmarinho.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunodanielmarinho.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunodanielmarinho.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunodanielmarinho.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunodanielmarinho.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunodanielmarinho.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunodanielmarinho.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunodanielmarinho.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunodanielmarinho.wordpress.com/257/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunodanielmarinho.wordpress.com/257/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunodanielmarinho.wordpress.com/257/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=brunodanielmarinho.wordpress.com&amp;blog=10180030&amp;post=257&amp;subd=brunodanielmarinho&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://brunodanielmarinho.wordpress.com/2011/08/26/download-de-arquivos-do-servidor/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a0beed2ff47c7e06eb774422de4f94c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bdmstyle</media:title>
		</media:content>

		<media:content url="http://brunodanielmarinho.files.wordpress.com/2011/08/view.gif" medium="image">
			<media:title type="html">Disposição Arquivos</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle Certified Professional, Java EE 5 Web Services Developer</title>
		<link>http://brunodanielmarinho.wordpress.com/2011/05/19/oracle-certified-professional-java-ee-5-web-services-developer/</link>
		<comments>http://brunodanielmarinho.wordpress.com/2011/05/19/oracle-certified-professional-java-ee-5-web-services-developer/#comments</comments>
		<pubDate>Thu, 19 May 2011 23:34:07 +0000</pubDate>
		<dc:creator>bdmstyle</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Web Services]]></category>

		<guid isPermaLink="false">http://brunodanielmarinho.wordpress.com/?p=251</guid>
		<description><![CDATA[Bom o que tenho pra falar dessa prova brevemente, eu venho estudando web services a algum tempo, tanto RESTfull quando JAX- WS, implementando e testando muitas vezes, realmente aprendi muito e perdi o medo dos xmls Para a prova o material que usei foi o &#8220;livro web services implementando&#8221; que aborda rest e jax-ws, como [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=brunodanielmarinho.wordpress.com&amp;blog=10180030&amp;post=251&amp;subd=brunodanielmarinho&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Bom o que tenho pra falar dessa prova brevemente, eu venho estudando web services a algum tempo, tanto RESTfull quando JAX- WS, implementando e testando muitas vezes, realmente aprendi muito e perdi o medo dos xmls Para a prova o material que usei foi o &#8220;livro web services implementando&#8221; que aborda rest e jax-ws, como introdução e depois tem um guia de estudo que não aborda todos os tópicos da certificação http://java.boot.by/wsd-guide/ esse site é do milakai o líder dos forums de web service do java ranch, ele vende um simulado com perguntas e respostas detalhadas por 12 dólares valor simbólico pois o material é muito bom.. apesar de não cobrir todos os tópicos da prova ele da exemplos e explica os porquês das coisas. Antes de fazer a prova usei o simulado da ucertify para treinar que comprei ,ele é bom tem um guia de estudo embutido mais bem inferior ao do milakai, porém as questões da prova são mais difíceis que a deste simulado por que nele não tem muito xml nas questões. No fim depois de estudar mais a fundo jax-ws e comparar com rest o qual estudei bastante tbm ate o nível 3 de implementação com os media types e tals, as duas tecnologias são boas tem pros e contras, e da pra fazer qualquer coisa com os dois estilos.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunodanielmarinho.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunodanielmarinho.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunodanielmarinho.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunodanielmarinho.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunodanielmarinho.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunodanielmarinho.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunodanielmarinho.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunodanielmarinho.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunodanielmarinho.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunodanielmarinho.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunodanielmarinho.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunodanielmarinho.wordpress.com/251/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunodanielmarinho.wordpress.com/251/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunodanielmarinho.wordpress.com/251/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=brunodanielmarinho.wordpress.com&amp;blog=10180030&amp;post=251&amp;subd=brunodanielmarinho&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://brunodanielmarinho.wordpress.com/2011/05/19/oracle-certified-professional-java-ee-5-web-services-developer/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a0beed2ff47c7e06eb774422de4f94c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bdmstyle</media:title>
		</media:content>
	</item>
		<item>
		<title>(Atualizado)Oracle vai &#8220;praticamente&#8221; por fim a SCEA e SCJD</title>
		<link>http://brunodanielmarinho.wordpress.com/2011/03/18/atualizadooracle-vai-praticamente-por-fim-a-scea-e-scjd/</link>
		<comments>http://brunodanielmarinho.wordpress.com/2011/03/18/atualizadooracle-vai-praticamente-por-fim-a-scea-e-scjd/#comments</comments>
		<pubDate>Fri, 18 Mar 2011 01:44:49 +0000</pubDate>
		<dc:creator>bdmstyle</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[SCEA]]></category>

		<guid isPermaLink="false">http://brunodanielmarinho.wordpress.com/?p=243</guid>
		<description><![CDATA[No ultimo post Oracle vai &#8220;praticamente&#8221; por fim a SCEA e SCJD que já esta atualizado com as informações corretas. Levantarão a questão se tinha a necessidade de fazer apenas um ou todos os cursos. Entrei em contato com a oracle e novamente falei com a neide(neide.ferreira@oracle.com) responsável pela educação na oracle. Nen ela sabia se [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=brunodanielmarinho.wordpress.com&amp;blog=10180030&amp;post=243&amp;subd=brunodanielmarinho&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>No ultimo post <a href="http://brunodanielmarinho.wordpress.com/2011/03/08/oracle-vai-por-fim-a-scea-e-scjd/">Oracle vai &#8220;praticamente&#8221; por fim a SCEA e SCJD</a> que já esta atualizado com as informações corretas.</p>
<p>Levantarão a questão se tinha a necessidade de fazer apenas um ou todos os cursos.<br />
Entrei em contato com a oracle e novamente falei com a neide(neide.ferreira@oracle.com) responsável pela educação na oracle.<br />
Nen ela sabia se teria que fazer todos ou apenas um curso, pois o texto era duvidoso e pedi para ela confirmar.<br />
Hoje ela me retornou o email falando que verificou e que é obrigatório apenas um dos cursos, então quem quiser pode se aventurar.</p>
<p>Vale o comentário de que o de arquitetura  parece que não tem turmas no brasil &#8230;. então quem quiser tem que fazer um curso tosco tipo o de uml.</p>
<p>mas estou confirmando esta informação tbm.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunodanielmarinho.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunodanielmarinho.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunodanielmarinho.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunodanielmarinho.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunodanielmarinho.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunodanielmarinho.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunodanielmarinho.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunodanielmarinho.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunodanielmarinho.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunodanielmarinho.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunodanielmarinho.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunodanielmarinho.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunodanielmarinho.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunodanielmarinho.wordpress.com/243/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=brunodanielmarinho.wordpress.com&amp;blog=10180030&amp;post=243&amp;subd=brunodanielmarinho&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://brunodanielmarinho.wordpress.com/2011/03/18/atualizadooracle-vai-praticamente-por-fim-a-scea-e-scjd/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a0beed2ff47c7e06eb774422de4f94c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bdmstyle</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle vai &#8220;praticamente&#8221; por fim a SCEA e SCJD</title>
		<link>http://brunodanielmarinho.wordpress.com/2011/03/08/oracle-vai-por-fim-a-scea-e-scjd/</link>
		<comments>http://brunodanielmarinho.wordpress.com/2011/03/08/oracle-vai-por-fim-a-scea-e-scjd/#comments</comments>
		<pubDate>Tue, 08 Mar 2011 03:19:20 +0000</pubDate>
		<dc:creator>bdmstyle</dc:creator>
				<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://brunodanielmarinho.wordpress.com/?p=234</guid>
		<description><![CDATA[Não é de costume postar criticas, porém realmente estou  irritado com a oracle. O caso é seguinte como de costume a Oracle sempre tenta empurrar seus cursos  para quem vai fazer uma certificação goela a abaixo. Diferentemente a Sun sempre foi bem aberta mantendo o espírito de uma certificação, as minhas 4 certificações nunca tinha feito curso [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=brunodanielmarinho.wordpress.com&amp;blog=10180030&amp;post=234&amp;subd=brunodanielmarinho&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Não é de costume postar criticas, porém realmente estou  irritado com a oracle.</p>
<p>O caso é seguinte como de costume a Oracle sempre tenta empurrar seus cursos  para quem vai fazer uma certificação goela a abaixo. Diferentemente a Sun sempre foi bem aberta mantendo o espírito de uma certificação, as minhas 4 certificações nunca tinha feito curso algum e acho que aprendi bem mais sozinho.</p>
<p>Não sei se concordam comigo mais se você que um diploma de curso tudo bem faça um curso! agora uma certificação é bem diferente mais enfim.</p>
<p>O caso é o seguinte do nada, eles  apresentam isso neste link.</p>
<p><a href="http://www.oracle.com/us/education/selectcountry-new-079003.html"></a><a href="http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=449">http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=449</a></p>
<p>Dizendo que quem não passar nas 3 fases ate o dia 31 de julho vai ter fazer <span style="color:#ff0000;">Apenas 1 </span>dos seguintes cursos.</p>
<p>US$ 2,250 &#8211; Java Programming Language, Java SE 6 (SL-275-SE6)<br />
US$ 2,250 &#8211; Object-Oriented Analysis and Design Using UML (OO-226)<br />
US$ 3,000 &#8211; Developing Applications for the Java EE 6 Platform (FJ-310-EE6)<br />
US$ 3,000 &#8211; Developing Architectures for Enterprise Java Applications (SL-425)</p>
<p>Não importa se você ja tem 10 anos de experiência, se ja tem outras certificações,se ja fez o mesmo curso mais a versão for diferente.</p>
<p>Vai ter que fazer o <span style="color:#ff0000;">um</span> maldito curso.</p>
<p>Ou seja ridículo&#8230; eu que estava estudando tranquilamente&#8230; e gostaria de tirar essa certificação vejo que provavelmente não vai dar, acredito que apenas o pessoal que ja passou na fase1 tem chance de acabar, pois o projeto demora de 3 a 5 semanas para ser analisado contando que estamos no mês 03/2011.</p>
<p>Pessoal tem 3 meses ai pra fazer um milagre,  simplesmente  ridículo.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunodanielmarinho.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunodanielmarinho.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunodanielmarinho.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunodanielmarinho.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunodanielmarinho.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunodanielmarinho.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunodanielmarinho.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunodanielmarinho.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunodanielmarinho.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunodanielmarinho.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunodanielmarinho.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunodanielmarinho.wordpress.com/234/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunodanielmarinho.wordpress.com/234/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunodanielmarinho.wordpress.com/234/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=brunodanielmarinho.wordpress.com&amp;blog=10180030&amp;post=234&amp;subd=brunodanielmarinho&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://brunodanielmarinho.wordpress.com/2011/03/08/oracle-vai-por-fim-a-scea-e-scjd/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a0beed2ff47c7e06eb774422de4f94c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bdmstyle</media:title>
		</media:content>
	</item>
		<item>
		<title>Como debugar no Eclipse e no Netbeans</title>
		<link>http://brunodanielmarinho.wordpress.com/2011/03/04/como-debugar-no-eclipse-e-no-netbeans/</link>
		<comments>http://brunodanielmarinho.wordpress.com/2011/03/04/como-debugar-no-eclipse-e-no-netbeans/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 19:25:40 +0000</pubDate>
		<dc:creator>bdmstyle</dc:creator>
				<category><![CDATA[JAVA SE]]></category>

		<guid isPermaLink="false">http://brunodanielmarinho.wordpress.com/?p=229</guid>
		<description><![CDATA[Ultimamente estou bem ausente do blog =( mais vim postar um vídeo que fiz para uma amiga é interessante para iniciantes Como debugar no eclipse e no netbeans http://www.youtube.com/watch?v=R5kYwh0tLOA<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=brunodanielmarinho.wordpress.com&amp;blog=10180030&amp;post=229&amp;subd=brunodanielmarinho&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ultimamente estou bem ausente do blog =(</p>
<p>mais vim postar um vídeo que fiz para uma amiga é interessante para iniciantes</p>
<p>Como debugar no eclipse e no netbeans</p>
<p><a title="Como debugar no Eclipse e Netbeans" href="http://www.youtube.com/watch?v=R5kYwh0tLOA">http://www.youtube.com/watch?v=R5kYwh0tLOA</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunodanielmarinho.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunodanielmarinho.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunodanielmarinho.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunodanielmarinho.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunodanielmarinho.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunodanielmarinho.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunodanielmarinho.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunodanielmarinho.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunodanielmarinho.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunodanielmarinho.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunodanielmarinho.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunodanielmarinho.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunodanielmarinho.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunodanielmarinho.wordpress.com/229/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=brunodanielmarinho.wordpress.com&amp;blog=10180030&amp;post=229&amp;subd=brunodanielmarinho&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://brunodanielmarinho.wordpress.com/2011/03/04/como-debugar-no-eclipse-e-no-netbeans/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a0beed2ff47c7e06eb774422de4f94c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bdmstyle</media:title>
		</media:content>
	</item>
		<item>
		<title>Java One/Oracle Develop 2010 &#8211; &#8220;Atrasado&#8221;</title>
		<link>http://brunodanielmarinho.wordpress.com/2011/01/02/java-oneoracle-develop-2010-atrasado/</link>
		<comments>http://brunodanielmarinho.wordpress.com/2011/01/02/java-oneoracle-develop-2010-atrasado/#comments</comments>
		<pubDate>Sun, 02 Jan 2011 15:56:49 +0000</pubDate>
		<dc:creator>bdmstyle</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[JavaOne]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://brunodanielmarinho.wordpress.com/?p=220</guid>
		<description><![CDATA[Hehe totalmente sem tempo vou postar minhas impressões sobre o JavaOne 2010. Maior evento de java do mundo que ocorreu pela primeira vez no Brasil em dezembro no ano passado. No primeiro dia era tudo era novo pude finalmente ver de perto a maquina de banco de dados Exadata e Exalogic na entrada dos estandes, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=brunodanielmarinho.wordpress.com&amp;blog=10180030&amp;post=220&amp;subd=brunodanielmarinho&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hehe totalmente sem tempo vou postar minhas impressões sobre o JavaOne 2010. Maior evento de java do mundo que ocorreu pela primeira vez no Brasil em dezembro no ano passado.</p>
<p>No primeiro dia era tudo era novo pude finalmente ver de perto a maquina de banco de dados Exadata e Exalogic</p>
<div id="attachment_221" class="wp-caption alignleft" style="width: 310px"><a href="http://brunodanielmarinho.files.wordpress.com/2011/01/ogaaamyy14bpmya4hu65hxmkv31ljzxs1_3zzjmzq72dzteoqece3kzqzztapocecpvbhaaujfrjoyrp8s6og0svvboam1t1upz3qvdka3twg7jzondredgp9dfb.jpg"><img class="size-medium wp-image-221" title="Exdata e Exalogic" src="http://brunodanielmarinho.files.wordpress.com/2011/01/ogaaamyy14bpmya4hu65hxmkv31ljzxs1_3zzjmzq72dzteoqece3kzqzztapocecpvbhaaujfrjoyrp8s6og0svvboam1t1upz3qvdka3twg7jzondredgp9dfb.jpg?w=300&#038;h=225" alt="Exdata e Exalogic" width="300" height="225" /></a><p class="wp-caption-text">Exdata e Exalogic</p></div>
<p>na entrada dos estandes, neste mesmo local havia uma área com mesas e lojas de comida onde o pessoal fazia um lanche e tomava café.</p>
<p>Nos estandes estavam muitas empresas desde especialistas na área contábil até as maiores consultorias de outsourcing. Junto com estes estandes havia brindes, sorteios de ipads e a melhor parte Mulheres muito gatas,esta parte lembrava um pouco uma feira de carros onde elas são o destaque.</p>
<p>Como no primeiro dia só teve uma única  palestra foi como uma introdução, aproveitei para tomar um sorvete grátis no estande da ibm, tirar foto com um ipad gigante, pegar muitas revistas, conversar com o pessoal.</p>
<p>No segundo e terceiro dia as palestras foram muito boas, vale destacar as do Paulo Silveira,Guilherme Silveira,Alexandre Porcelli ,Vinicius Senger,Bruno Souza e Fabiane Nardoni que representarão muito bem os brasileiros, realizando palestras melhores que a dos estrangeiros.</p>
<p>Havia um local chamado demo ground muito interesante onde havia boxes com varias tecnologias java , junto um especialista para tirar duvidas e mostrar exemplos, achei muito interessante o box sobre a tecnologia  &#8220;Java Card&#8221;.</p>
<p>No geral foi um evento muito bom tecnicamente porém muito menos divertido que o Sun Tech Days em vários aspetos, poxa não tinha nen um duke.</p>
<p>Na minha opinião para economizar a oracle juntou 3 eventos e ficou muito mais para negócios do que para desenvolvedores.</p>
<p>É isso ai parabéns a todos que tornarão o evento possível, e vamos esperar que o javaone 2011 seja um evento independente e divertido.</p>
<div id="attachment_223" class="wp-caption alignleft" style="width: 510px"><a href="http://brunodanielmarinho.files.wordpress.com/2011/01/d.jpg"><img class="size-full wp-image-223" title="Galera" src="http://brunodanielmarinho.files.wordpress.com/2011/01/d.jpg?w=500&#038;h=373" alt="Galera" width="500" height="373" /></a><p class="wp-caption-text">Galera</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunodanielmarinho.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunodanielmarinho.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunodanielmarinho.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunodanielmarinho.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunodanielmarinho.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunodanielmarinho.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunodanielmarinho.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunodanielmarinho.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunodanielmarinho.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunodanielmarinho.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunodanielmarinho.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunodanielmarinho.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunodanielmarinho.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunodanielmarinho.wordpress.com/220/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=brunodanielmarinho.wordpress.com&amp;blog=10180030&amp;post=220&amp;subd=brunodanielmarinho&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://brunodanielmarinho.wordpress.com/2011/01/02/java-oneoracle-develop-2010-atrasado/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a0beed2ff47c7e06eb774422de4f94c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bdmstyle</media:title>
		</media:content>

		<media:content url="http://brunodanielmarinho.files.wordpress.com/2011/01/ogaaamyy14bpmya4hu65hxmkv31ljzxs1_3zzjmzq72dzteoqece3kzqzztapocecpvbhaaujfrjoyrp8s6og0svvboam1t1upz3qvdka3twg7jzondredgp9dfb.jpg?w=300" medium="image">
			<media:title type="html">Exdata e Exalogic</media:title>
		</media:content>

		<media:content url="http://brunodanielmarinho.files.wordpress.com/2011/01/d.jpg" medium="image">
			<media:title type="html">Galera</media:title>
		</media:content>
	</item>
		<item>
		<title>SCBCD &#8211; Oracle Certified Professional, Java EE 5 Business Component Developer pass 88%</title>
		<link>http://brunodanielmarinho.wordpress.com/2011/01/02/scbcd-oracle-certified-professional-java-ee-5-business-component-developer-pass-88/</link>
		<comments>http://brunodanielmarinho.wordpress.com/2011/01/02/scbcd-oracle-certified-professional-java-ee-5-business-component-developer-pass-88/#comments</comments>
		<pubDate>Sun, 02 Jan 2011 14:49:27 +0000</pubDate>
		<dc:creator>bdmstyle</dc:creator>
				<category><![CDATA[J2EE]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[OCPBCD/SCBCD]]></category>

		<guid isPermaLink="false">http://brunodanielmarinho.wordpress.com/?p=213</guid>
		<description><![CDATA[hehe finalmente saiu a scbcdtirei ela em 27/12/2010 e não tive tempo de postar, uahau foi mto bom estudar e praticar para tira-la. aprendi muitoooo. Scores: EJB 3.0 Overview&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.. 100% General EJB 3.0 Enterprise Bean Knowledge&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;. 83% EJB 3.0 Session Bean Component Contract &#38; Lifecycle&#8230;&#8230;&#8230;&#8230;. 100% EJB 3.0 Message-Driven Bean Component Contract&#8230;.. &#8230;&#8230;&#8230;&#8230; 100% Java [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=brunodanielmarinho.wordpress.com&amp;blog=10180030&amp;post=213&amp;subd=brunodanielmarinho&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>hehe finalmente saiu a scbcdtirei ela em 27/12/2010 e não tive tempo de postar, uahau foi mto bom estudar e praticar para tira-la.<br />
aprendi muitoooo.</p>
<p>Scores:<br />
EJB 3.0 Overview&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.. 100%<br />
General EJB 3.0 Enterprise Bean Knowledge&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;. 83%<br />
EJB 3.0 Session Bean Component Contract &amp; Lifecycle&#8230;&#8230;&#8230;&#8230;. 100%<br />
EJB 3.0 Message-Driven Bean Component Contract&#8230;.. &#8230;&#8230;&#8230;&#8230; 100%<br />
Java Persistense API Entities&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;. 71%<br />
Java Persistense Entity Operations&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;..100%<br />
Persistence Units and Persistence Contexts&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;. 83%<br />
Java Persistence Query Language&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.. 100%<br />
Transactions&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.. 80%<br />
Exceptions&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.. 80%<br />
Security Management&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.. 75%</p>
<p>Agora estudar web services um pouco ^^.</p>
<p>Usei os livros enterprise java beans 3.0/3.1 e os simulados  entruware ejb plus e testkiller, se alguem nescessitar  dos simulados é só pedir.</p>
<p>t+</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunodanielmarinho.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunodanielmarinho.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunodanielmarinho.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunodanielmarinho.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunodanielmarinho.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunodanielmarinho.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunodanielmarinho.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunodanielmarinho.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunodanielmarinho.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunodanielmarinho.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunodanielmarinho.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunodanielmarinho.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunodanielmarinho.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunodanielmarinho.wordpress.com/213/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=brunodanielmarinho.wordpress.com&amp;blog=10180030&amp;post=213&amp;subd=brunodanielmarinho&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://brunodanielmarinho.wordpress.com/2011/01/02/scbcd-oracle-certified-professional-java-ee-5-business-component-developer-pass-88/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a0beed2ff47c7e06eb774422de4f94c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bdmstyle</media:title>
		</media:content>
	</item>
		<item>
		<title>Os números de 2010</title>
		<link>http://brunodanielmarinho.wordpress.com/2011/01/02/os-numeros-de-2010/</link>
		<comments>http://brunodanielmarinho.wordpress.com/2011/01/02/os-numeros-de-2010/#comments</comments>
		<pubDate>Sun, 02 Jan 2011 14:45:10 +0000</pubDate>
		<dc:creator>bdmstyle</dc:creator>
				<category><![CDATA[Pessoal]]></category>

		<guid isPermaLink="false">http://brunodanielmarinho.wordpress.com/?p=210</guid>
		<description><![CDATA[Os duendes das estatísticas do WordPress.com analisaram o desempenho deste blog em 2010 e apresentam-lhe aqui um resumo de alto nível da saúde do seu blog: O Blog-Health-o-Meter™ indica: Mais fresco do que nunca. Números apetitosos Um Boeing 747-400 transporta 416 passageiros. Este blog foi visitado cerca de 2,000 vezes em 2010. Ou seja, cerca [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=brunodanielmarinho.wordpress.com&amp;blog=10180030&amp;post=210&amp;subd=brunodanielmarinho&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Os duendes das estatísticas do WordPress.com analisaram o desempenho deste blog em 2010 e apresentam-lhe aqui um resumo de alto nível da saúde do seu blog:</p>
<p><img style="border:1px solid #ddd;background:#f5f5f5;padding:20px;" src="http://s0.wp.com/i/annual-recap/meter-healthy3.gif" alt="Healthy blog!" width="250" height="183" /></p>
<p>O <em>Blog-Health-o-Meter™</em> indica: Mais fresco do que nunca.</p>
<h2>Números apetitosos</h2>
<p><a href="http://brunodanielmarinho.files.wordpress.com/2010/07/i6.jpg"><img style="max-height:230px;float:right;border:1px solid #ddd;background:#fff;margin:0 0 1em 1em;padding:6px;" src="http://brunodanielmarinho.files.wordpress.com/2010/07/i6.jpg?w=288" alt="Imagem de destaque" /></a></p>
<p>Um Boeing 747-400 transporta 416 passageiros.  Este blog foi visitado cerca de <strong>2,000</strong> vezes em 2010.  Ou seja, cerca de 5 747s cheios.</p>
<p>Em 2010, escreveu <strong>12</strong> novo artigo, aumentando o arquivo total do seu blog para 21 artigos. Fez <em>upload</em> de <strong>21</strong> imagens, ocupando um total de 1mb. Isso equivale a cerca de 2 imagens por mês.</p>
<p>O seu dia mais activo do ano foi  24 de dezembro com <strong>73</strong> visitas. O artigo mais popular desse dia foi  <a style="color:#08c;" href="http://brunodanielmarinho.wordpress.com/2010/12/24/explorando-servicos-java-ee-interceptadores-e-o-servico-de-tempo-part-1-3/">Explorando serviços Java EE / Interceptadores e o Serviço de Tempo &#8211; Part 1</a>.</p>
<h2>De onde vieram?</h2>
<p>Os sites que mais tráfego lhe enviaram em 2010 foram <strong>brunodanielmarinho.com</strong>, <strong>infoblogs.com.br</strong>, <strong>google.com.br</strong>, <strong>guj.com.br</strong> e <strong>pt-br.wordpress.com</strong></p>
<p>Alguns visitantes vieram dos motores de busca, sobretudo por <strong>composição java</strong>, <strong>bruno daniel marinho</strong>, <strong>associação de classes</strong>, <strong>bdmstyle marinho</strong> e <strong>composição e associação</strong></p>
<h2>Atracções em 2010</h2>
<p>Estes são os artigos e páginas mais visitados em 2010.</p>
<div style="clear:left;float:left;font-size:24pt;line-height:1em;margin:-5px 10px 20px 0;">1</div>
<p><a style="margin-right:10px;" href="http://brunodanielmarinho.wordpress.com/2010/12/24/explorando-servicos-java-ee-interceptadores-e-o-servico-de-tempo-part-1-3/">Explorando serviços Java EE / Interceptadores e o Serviço de Tempo &#8211; Part 1</a> <span style="color:#999;font-size:8pt;">dezembro, 2010</span></p>
<div style="clear:left;float:left;font-size:24pt;line-height:1em;margin:-5px 10px 20px 0;">2</div>
<p><a style="margin-right:10px;" href="http://brunodanielmarinho.wordpress.com/2010/07/21/composicao-e-associacao-de-classes-parte-1/">Composição e Associação de Classes Parte 1</a> <span style="color:#999;font-size:8pt;">julho, 2010</span></p>
<div style="clear:left;float:left;font-size:24pt;line-height:1em;margin:-5px 10px 20px 0;">3</div>
<p><a style="margin-right:10px;" href="http://brunodanielmarinho.wordpress.com/2009/12/07/introducao-j2ee-primeiro-servlet-sem-ides-programando-33/">Introdução J2EE , primeiro servlet sem IDEs (Programando) 3/3</a> <span style="color:#999;font-size:8pt;">dezembro, 2009</span><br />
1 comentário</p>
<div style="clear:left;float:left;font-size:24pt;line-height:1em;margin:-5px 10px 20px 0;">4</div>
<p><a style="margin-right:10px;" href="http://brunodanielmarinho.wordpress.com/2010/08/03/104/">SCJA 88% </a> <span style="color:#999;font-size:8pt;">agosto, 2010</span><br />
10 comentários</p>
<div style="clear:left;float:left;font-size:24pt;line-height:1em;margin:-5px 10px 20px 0;">5</div>
<p><a style="margin-right:10px;" href="http://brunodanielmarinho.wordpress.com/2009/12/11/sun-certified-java-programer-6-0/">Sun Certified Java Programer 6.0</a> <span style="color:#999;font-size:8pt;">dezembro, 2009</span><br />
3 comentários</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunodanielmarinho.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunodanielmarinho.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunodanielmarinho.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunodanielmarinho.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunodanielmarinho.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunodanielmarinho.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunodanielmarinho.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunodanielmarinho.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunodanielmarinho.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunodanielmarinho.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunodanielmarinho.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunodanielmarinho.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunodanielmarinho.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunodanielmarinho.wordpress.com/210/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=brunodanielmarinho.wordpress.com&amp;blog=10180030&amp;post=210&amp;subd=brunodanielmarinho&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://brunodanielmarinho.wordpress.com/2011/01/02/os-numeros-de-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a0beed2ff47c7e06eb774422de4f94c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bdmstyle</media:title>
		</media:content>

		<media:content url="http://s0.wp.com/i/annual-recap/meter-healthy3.gif" medium="image">
			<media:title type="html">Healthy blog!</media:title>
		</media:content>

		<media:content url="http://brunodanielmarinho.files.wordpress.com/2010/07/i6.jpg?w=288" medium="image">
			<media:title type="html">Imagem de destaque</media:title>
		</media:content>
	</item>
		<item>
		<title>JCiclo de Vida e JGênesis inteligência artificial com Java</title>
		<link>http://brunodanielmarinho.wordpress.com/2010/12/25/jciclo-de-vida-e-jgenesis-inteligencia-artificial-com-java/</link>
		<comments>http://brunodanielmarinho.wordpress.com/2010/12/25/jciclo-de-vida-e-jgenesis-inteligencia-artificial-com-java/#comments</comments>
		<pubDate>Sat, 25 Dec 2010 01:45:14 +0000</pubDate>
		<dc:creator>bdmstyle</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Inteligência Artificial]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[JAVA SE]]></category>
		<category><![CDATA[Autômatos Celulares]]></category>
		<category><![CDATA[IA]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://brunodanielmarinho.wordpress.com/?p=198</guid>
		<description><![CDATA[Opa! Vim apresentar um trabalho inteligência artificial que fiz agora no final do ano o qual me deu um trabalho e foi muito legal de fazer. Trata – se de simular vida no meio artificial ,utilizando autômatos celulares, desenvolvi uma ferramenta em java (Jciclo de vida) para interagir como o algoritmo (Jgênesis) o qual é [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=brunodanielmarinho.wordpress.com&amp;blog=10180030&amp;post=198&amp;subd=brunodanielmarinho&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } 		A:link { so-language: zxx } -->Opa! Vim apresentar um trabalho inteligência artificial que fiz agora no final do ano o qual me deu um trabalho e foi muito legal de fazer.</p>
<p><a href="http://brunodanielmarinho.files.wordpress.com/2010/12/ia.jpg"><img class="aligncenter size-full wp-image-199" title="ia" src="http://brunodanielmarinho.files.wordpress.com/2010/12/ia.jpg?w=500&#038;h=204" alt="" width="500" height="204" /></a></p>
<p>Trata – se de simular vida no meio artificial ,utilizando autômatos celulares, desenvolvi uma ferramenta em java (Jciclo de vida) para interagir como o algoritmo (Jgênesis) o qual é uma evolução do algoritmo gênesis que meu professor iniciou na faculdade dele.</p>
<p>Na pratica temos elementos em um ambiente e cada um deles pode realizar as tarefas básicas se alimentar,movimentar,reproduzir, evoluir,morrer.</p>
<p>Como não sou uma pessoa muito cientifica hehe, resolvi publicar os fontes sobre a GNU para se alguém quiser estudar ou continuar, esteja a vontade, o codigo foi feito com muita pressa por isso não esta uma beleza de OO, mais ta funfando.</p>
<p>Segue manual e fontes.</p>
<p><a href="http://brunodanielmarinho.files.wordpress.com/2010/12/guiadousuc3a1rio.pdf">GuiadoUsuário</a></p>
<p><a href="http://brunodanielmarinho.files.wordpress.com/2010/12/jgenesis.pdf">Algoritmo Jgenesis </a></p>
<p><a href="http://www.gunslide.com/img/ia.jar">O jar para quem quiser experimentar</a></p>
<p><a href="http://www.gunslide.com/img/Ia.zip">O zip do projeto no netbeans</a></p>
<p><a href="https://code.google.com/p/jciclodevida/">https://code.google.com/p/jciclodevida/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunodanielmarinho.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunodanielmarinho.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunodanielmarinho.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunodanielmarinho.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunodanielmarinho.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunodanielmarinho.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunodanielmarinho.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunodanielmarinho.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunodanielmarinho.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunodanielmarinho.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunodanielmarinho.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunodanielmarinho.wordpress.com/198/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunodanielmarinho.wordpress.com/198/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunodanielmarinho.wordpress.com/198/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=brunodanielmarinho.wordpress.com&amp;blog=10180030&amp;post=198&amp;subd=brunodanielmarinho&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://brunodanielmarinho.wordpress.com/2010/12/25/jciclo-de-vida-e-jgenesis-inteligencia-artificial-com-java/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a0beed2ff47c7e06eb774422de4f94c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bdmstyle</media:title>
		</media:content>

		<media:content url="http://brunodanielmarinho.files.wordpress.com/2010/12/ia.jpg" medium="image">
			<media:title type="html">ia</media:title>
		</media:content>
	</item>
		<item>
		<title>Linux Mint</title>
		<link>http://brunodanielmarinho.wordpress.com/2010/12/24/linux-mint/</link>
		<comments>http://brunodanielmarinho.wordpress.com/2010/12/24/linux-mint/#comments</comments>
		<pubDate>Fri, 24 Dec 2010 23:49:16 +0000</pubDate>
		<dc:creator>bdmstyle</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://brunodanielmarinho.wordpress.com/?p=191</guid>
		<description><![CDATA[Há tempos sentia a necessidade de migrar de sistema operacional mais infelizmente nunca tive tempo . Cansado de todas aquelas travas e mesmo sendo um usuário avançado depois de 6 meses tudo ficar lento e mais lento, travadas e bugs que somente nosso amigo windows pode oferecer. Como eu particularmente não gosto do Mac OS, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=brunodanielmarinho.wordpress.com&amp;blog=10180030&amp;post=191&amp;subd=brunodanielmarinho&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } --><span style="font-size:medium;"><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">Há tempos </span></span><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">sentia a </span></span><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">necessidade</span></span><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> de migrar de sistema operacional mais infelizmente nunca tive tempo .</span></span></span></p>
<p><span style="font-size:medium;"><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">Cansado de todas aquelas travas e mesmo sendo um usuário avançado depois de 6 meses tudo ficar lento e mais lento, travadas e bugs que somente nosso </span></span>amigo<span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> windows pode oferecer.</span></span></span></p>
<p><span style="font-size:medium;"><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">Como eu particularmente não gosto do Mac OS, tive oportunidade de usar por uma semana, e simplesmente não vi graça nele </span></span><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">comecei a procurar alguma </span></span><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">distribuição </span></span><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">linux</span></span><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">.</span></span></span></p>
<p><span style="font-size:medium;"><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">Experimentei ubunto,fedora,mandriva varias </span></span><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">outras </span></span><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">bem populares, mas sempre minha placa de video da SiS de </span></span><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">W</span></span><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">ireless da Realtek muito comuns em notebooks positivo ou cce e sempre dava problema ou em um ou em outro.</span></span></span></p>
<p><span style="font-size:medium;"><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">Fora isso essas distribuições eram muito cruas, para se ter uma ideia </span></span><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">não conseguia ver um video sem ter que ficar procurando</span></span><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> porradas de codecs entre outras coisas.</span></span></span></p>
<p><span style="font-size:medium;"><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">Foi então que descobri o<span style="color:#0000ff;"> Linux Mint</span></span></span></span></p>
<p><span style="font-size:xx-small;"><br />
</span></p>
<p><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><span style="font-size:x-small;"> <a href="http://brunodanielmarinho.files.wordpress.com/2010/12/linuxmint-logo.png"><img class="aligncenter size-full wp-image-192" title="linuxmint-logo" src="http://brunodanielmarinho.files.wordpress.com/2010/12/linuxmint-logo.png?w=500" alt=""   /></a> </span></span></span></p>
<p><!-- 		@page { margin: 2cm } 		P { margin-bottom: 0.21cm } 		A:link { so-language: zxx } --><a href="http://www.linuxmint.com/"><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><span style="font-size:medium;">http://www.linuxmint.com/</span></span></span></a></p>
<p><span style="font-size:medium;"><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">Essa distribuição é derivada do ubunto e tem as seguintes características:</span></span></span></p>
<ul>
<li><span style="font-size:medium;"><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">Acessa 	todos os repositórios de programas do ubunto mais os dele, você 	instala/desinstala em segundos qualquer aplicativo por um 	gerenciador muito </span></span><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">amigável.</span></span><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"> </span></span></span></li>
<li><span style="font-size:medium;"><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">Vem 	com muitos drives livres e proprietários coisa que as outras 	distribuições não vem no meu caso isso foi vital por que 	reconheceu meu </span></span><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">W</span></span><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">ire</span></span><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">l</span></span><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">ess 	que com ele se instala todo o resto. </span></span></span></li>
<li><span style="font-size:medium;"><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">Vem 	com muitos softwares </span></span><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">como 	O</span></span><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">pen 	ofice,vlc, firefox, JVM,F-Spot,Pidgin Samba praticamente você não 	necessita baixar nada para usar o computador, alem de que tem uma 	central que sempre atualiza o sistema quando </span></span><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">disponível.</span></span></span></li>
<li><span style="font-size:medium;"><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">Uma 	comunidade muito forte e participativa, estava com problemas para 	instalar o driver de video, o pessoal ajuda rapidinho nos fóruns.</span></span></span></li>
<li><span style="font-size:medium;"><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">Sistema 	é rápido, estável e de uma aparência agradável.</span></span></span></li>
</ul>
<p><span style="font-size:medium;"><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">Ele é distribuído em Live CD e Live DVD, no entanto o DVD é 825mb e bem mais completo eu recomento usar ele.</span></span></span></p>
<p><span style="font-size:medium;"><span style="color:#000000;"><span style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">Fica ai a dica para quem quer conhecer uma distribuição Linux muito boa e um pouco diferente das outras.</span></span></span></p>
<p><span style="color:#0000ff;font-size:xx-small;"><br />
</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/brunodanielmarinho.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/brunodanielmarinho.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/brunodanielmarinho.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/brunodanielmarinho.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/brunodanielmarinho.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/brunodanielmarinho.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/brunodanielmarinho.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/brunodanielmarinho.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/brunodanielmarinho.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/brunodanielmarinho.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/brunodanielmarinho.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/brunodanielmarinho.wordpress.com/191/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/brunodanielmarinho.wordpress.com/191/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/brunodanielmarinho.wordpress.com/191/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=brunodanielmarinho.wordpress.com&amp;blog=10180030&amp;post=191&amp;subd=brunodanielmarinho&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://brunodanielmarinho.wordpress.com/2010/12/24/linux-mint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1a0beed2ff47c7e06eb774422de4f94c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bdmstyle</media:title>
		</media:content>

		<media:content url="http://brunodanielmarinho.files.wordpress.com/2010/12/linuxmint-logo.png" medium="image">
			<media:title type="html">linuxmint-logo</media:title>
		</media:content>
	</item>
	</channel>
</rss>
