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

<channel>
	<title>Athanazio &#187; free</title>
	<atom:link href="http://www.athanazio.com/tag/free/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.athanazio.com</link>
	<description>Nada é Simples, Mas Tudo é Possível</description>
	<lastBuildDate>Thu, 01 Dec 2011 03:47:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>fazendo foto 3&#215;4 em java</title>
		<link>http://www.athanazio.com/2011/01/26/fazendo-foto-3x4-em-java/</link>
		<comments>http://www.athanazio.com/2011/01/26/fazendo-foto-3x4-em-java/#comments</comments>
		<pubDate>Wed, 26 Jan 2011 18:25:12 +0000</pubDate>
		<dc:creator>athanazio</dc:creator>
				<category><![CDATA[fotos]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[programacao]]></category>
		<category><![CDATA[3x4]]></category>
		<category><![CDATA[caseiro]]></category>
		<category><![CDATA[de gratis]]></category>
		<category><![CDATA[economizar]]></category>
		<category><![CDATA[foto]]></category>
		<category><![CDATA[foto em casa]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[gratuito]]></category>
		<category><![CDATA[lambe-lambe]]></category>
		<category><![CDATA[não pago]]></category>

		<guid isPermaLink="false">http://www.athanazio.com/?p=2824</guid>
		<description><![CDATA[Hoje de tarde perguntei para a secretária da minha esposa que estava rodeando pela casa : &#8221; Ae vai querer umas fotos 3&#215;4 ? to fazendo umas e vou mandar imprimir &#8230; quer ? &#8221; a resposta foi ótima !!! &#8220;pra que ? é tudo digital hoje &#8230; &#8221; pronto eu com cara de tacho, [...]]]></description>
			<content:encoded><![CDATA[<div id="HOTWordsTxt" name="HOTWordsTxt"><p>Hoje de tarde perguntei para a secretária da minha esposa que estava rodeando pela casa : &#8221; Ae vai querer umas fotos 3&#215;4 ? to fazendo umas e vou mandar imprimir &#8230; quer ? &#8221; a resposta foi ótima !!! &#8220;pra que ? é tudo digital hoje &#8230; &#8221; pronto eu com cara de tacho, maledito condomínio que esta pedindo fotos 3&#215;4 para carteirinha da piscina, não podia ter uma camera por lá ?</p>
<p>Bem choradeira de lado, acabei resgatando um código que tinha feito em 2005 para montar uma folha de impressão de fotos 5&#215;7, porque na época achei um absurdo pagar o preço pedido, ainda acho hehehe, dai fiz as fotos com o ipod mesmo, dei uma arrumada basica no código para suportar mais dimensões do que o 5&#215;7 e pronto !! recebe como input uma imagem jpg e monta uma outra de saida no tamanho 1000&#215;1500 que eh para ser impressa no tamanho 10&#215;15.</p>
<p>clique na imagem para ver como fica o resultado :<br />
<a href="http://www.athanazio.com/wp-content/uploads/2011/01/300_400_mario.jpg"><img src="http://www.athanazio.com/wp-content/uploads/2011/01/300_400_mario-150x150.jpg" alt="" title="300_400_mario" width="150" height="150" class="alignnone size-thumbnail wp-image-2825" /></a><br />
<a href="http://www.athanazio.com/wp-content/uploads/2011/01/300_400_cachorro.jpg"><img src="http://www.athanazio.com/wp-content/uploads/2011/01/300_400_cachorro-150x150.jpg" alt="" title="300_400_cachorro" width="150" height="150" class="alignnone size-thumbnail wp-image-2826" /></a></p>
<p>o código em si não é complicado, é soh ter alguns cuidados na hora de compor a imagem de resultado e todos ficaram felizes, segue o código</p>
<pre class="brush: java; title: ; notranslate">
package br.com.thz.photo;

import java.awt.Color;
import java.awt.Font;
import java.awt.FontMetrics;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.Rectangle;
import java.awt.geom.Rectangle2D;
import java.awt.image.BufferedImage;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;

import javax.swing.ImageIcon;

import com.sun.image.codec.jpeg.JPEGCodec;
import com.sun.image.codec.jpeg.JPEGEncodeParam;
import com.sun.image.codec.jpeg.JPEGImageEncoder;

public class ProtoComposer {

	private static final int BORDER = 5;

	public static void main(String[] args) throws FileNotFoundException, IOException {

		createImage3_4(&quot;mario.jpg&quot;);
		createImage3_4(&quot;cachorro.jpg&quot;);

	}

	private static void createImage3_4(String fileName) throws FileNotFoundException, IOException {
		createImage(fileName, 300, 400);
	}

	private static void createImage5_7(String fileName) throws FileNotFoundException, IOException {
		createImage(fileName, 500, 700);
	}

	private static void createImage(String fileName, int width, int height) throws FileNotFoundException, IOException {
		int x = 0;
		int y = 0;
		int maxWidth = 1000;
		int maxHeight = 1500;

		BufferedImage buffer = new BufferedImage(maxWidth, maxHeight, BufferedImage.TYPE_INT_RGB);
		Graphics2D g2 = buffer.createGraphics();
		ImageIcon image = new ImageIcon(fileName);

		g2.setColor(Color.WHITE);
		g2.fillRect(0, 0, maxWidth, maxHeight);

		// font definition
		Font font = new Font(&quot;Tahoma&quot;, Font.BOLD, 30);
		g2.setFont(font);

		// draw images with the dimension informed
		while ((x + width) &lt;= maxWidth) {
			while ((y + height) &lt;= maxHeight) {
				drawImageWithTimeStamp(g2, image.getImage(), x, y, width, height);
				y += height;
			}
			x += width;
			y = 0;
		}

		generateJPG(buffer, width +&quot;_&quot; + height + &quot;_&quot; + fileName);
	}

	private static void drawImageWithTimeStamp(Graphics2D g2, Image image, int x, int y, int w, int h) {
		g2.drawImage(image, x + BORDER, y + BORDER, w - BORDER, h - BORDER, null);

		String text = getDate();
		FontMetrics metrics = g2.getFontMetrics();
		Rectangle2D rect = metrics.getStringBounds(text, 0, text.length(), g2);
		g2.setColor(Color.BLACK);

		int lateral = (int) ((w - rect.getWidth()) / 2.0);
		Rectangle toFill = new Rectangle();
		toFill.x = x + lateral - BORDER;
		toFill.y = (int) (y + h - (2 * BORDER) - rect.getHeight());
		toFill.height = (int) rect.getHeight();
		toFill.width = (int) rect.getWidth() + BORDER;

		g2.fillRect(toFill.x, toFill.y, toFill.width, toFill.height);
		g2.setColor(Color.WHITE);
		g2.drawString(text, toFill.x, (int) (toFill.y + rect.getHeight() - (2 * BORDER)));

	}

	public static String getDate() {
		SimpleDateFormat sdf = new SimpleDateFormat(&quot;dd-MMM-yyyy&quot;);
		return sdf.format(new Date());
	}

	private static void generateJPG(BufferedImage buffer, String fileName) throws FileNotFoundException, IOException {

		FileOutputStream file = new FileOutputStream(fileName);

		JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(file);
		JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(buffer);
		param.setQuality(1.0F, true);
		encoder.setJPEGEncodeParam(param);

		encoder.encode(buffer);
		file.close();
	}

}
</pre>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.athanazio.com/2011/01/26/fazendo-foto-3x4-em-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>fazendo backup com synkron</title>
		<link>http://www.athanazio.com/2010/08/11/fazendo-backup-com-synkron/</link>
		<comments>http://www.athanazio.com/2010/08/11/fazendo-backup-com-synkron/#comments</comments>
		<pubDate>Thu, 12 Aug 2010 01:44:25 +0000</pubDate>
		<dc:creator>athanazio</dc:creator>
				<category><![CDATA[trecos]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[copia de seguranca]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[gratis]]></category>
		<category><![CDATA[sincronizar arquivos]]></category>
		<category><![CDATA[syncron]]></category>

		<guid isPermaLink="false">http://www.athanazio.com/?p=2719</guid>
		<description><![CDATA[Acho que realmente cansei de fazer backups manualmente das pesquisas que fiz até cheguei a instalar o Comodo Backup, mas demorou tanto para carregar e instalar que desisti dele, deve usar um milhão de bibliotecas do windows &#8230; dai to fora. #fail procurando um pouco mais achei um post legal comparando algumas ferramentas, e delas [...]]]></description>
			<content:encoded><![CDATA[<div id="HOTWordsTxt" name="HOTWordsTxt"><p><a href="http://synkron.sourceforge.net/index.php"><img src="http://www.athanazio.com/wp-content/uploads/2010/08/Synkron-macx-main_thumb.png" alt="" title="Synkron-macx-main_thumb" width="298" height="337" class="alignnone size-full wp-image-2720" /></a><br />
Acho que realmente cansei de fazer backups manualmente <img src='http://www.athanazio.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  das pesquisas que fiz até cheguei a instalar o Comodo Backup, mas demorou tanto para carregar e instalar que desisti dele, deve usar um milhão de bibliotecas do windows &#8230; dai to fora. #fail</p>
<p>procurando um pouco mais achei um <a href="http://www.techsupportalert.com/best-free-folder-synchronization-utility.htm">post legal comparando algumas ferramentas</a>, e delas a que mais me atraiu foi a <a href="http://synkron.sourceforge.net/index.php">Synkron</a>, não por ser a escolha do analisador, mas por ser multiplataforma.<br />
a instalação foi otima levou 10 segundos <img src='http://www.athanazio.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  pediu para usar a rede mas não deixei .. sei lah oque estes caras vão mandar e receber pela rede #no-network4u !</p>
<p>a primeira execução !<br />
<a href="http://www.athanazio.com/wp-content/uploads/2010/08/Synkron-fotos.jpg"><img src="http://www.athanazio.com/wp-content/uploads/2010/08/Synkron-fotos-312x300.jpg" alt="" title="Synkron-fotos" width="312" height="300" class="alignnone size-medium wp-image-2721" /></a><br />
mandei logo de cara sincronizar o meu diretorio de fotos com o hd externo enorme que tenho (500Gb po meio Tera &#8230;)<br />
bem agora esta trabalhanndo como um louco o pobre do aplicativo hehehe coloquei mais algumas pastas para sincronizar simultaneas, espero que funcione &#8230; <img src='http://www.athanazio.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.athanazio.com/2010/08/11/fazendo-backup-com-synkron/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jogo feito em SDL &#8211; timetris</title>
		<link>http://www.athanazio.com/2009/05/24/jogo-feito-em-sdl-timetris/</link>
		<comments>http://www.athanazio.com/2009/05/24/jogo-feito-em-sdl-timetris/#comments</comments>
		<pubDate>Mon, 25 May 2009 00:56:31 +0000</pubDate>
		<dc:creator>athanazio</dc:creator>
				<category><![CDATA[games]]></category>
		<category><![CDATA[trecos]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[gratis]]></category>
		<category><![CDATA[jogo]]></category>
		<category><![CDATA[sdl]]></category>
		<category><![CDATA[tetris clone]]></category>

		<guid isPermaLink="false">http://www.athanazio.com/2009/05/24/jogo-feito-em-sdl-timetris/</guid>
		<description><![CDATA[Olas ! em minhas aventuras de jogos, desenvolvi mais um para a competição ludum dare, agora na versão mini. O tema desta competição era &#8220;tempo&#8221;, e era necessário usar as trilhas sonoras fornecidas pela competição. fiz um tetris que usa relógios como os elementos gráficos do jogo. baixe aqui o jogo !timetris_minild9_20090524]]></description>
			<content:encoded><![CDATA[<div id="HOTWordsTxt" name="HOTWordsTxt"><p>Olas ! em minhas aventuras de jogos, desenvolvi mais um para a competição ludum dare, agora na versão mini.<br />
O tema desta competição era &#8220;tempo&#8221;, e era necessário usar as trilhas sonoras fornecidas pela competição. fiz um tetris que usa relógios como os elementos gráficos do jogo.</p>
<p>baixe aqui o jogo !<a href='http://www.athanazio.com/wp-content/uploads/2009/05/timetris_minild9_20090524.zip'>timetris_minild9_20090524</a></p>
<p><a href="http://www.athanazio.com/wp-content/uploads/2009/05/screenshot_timetris1.png"><img src="http://www.athanazio.com/wp-content/uploads/2009/05/screenshot_timetris1-383x300.png" alt="screenshot_timetris1" title="screenshot_timetris1" width="383" height="300" class="alignnone size-medium wp-image-1920" /></a></p>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.athanazio.com/2009/05/24/jogo-feito-em-sdl-timetris/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>criando jogos com LOVE2D &#8211; lição 1</title>
		<link>http://www.athanazio.com/2009/04/28/criando-jogos-com-love2d-licao-1/</link>
		<comments>http://www.athanazio.com/2009/04/28/criando-jogos-com-love2d-licao-1/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 03:30:00 +0000</pubDate>
		<dc:creator>athanazio</dc:creator>
				<category><![CDATA[games]]></category>
		<category><![CDATA[videos]]></category>
		<category><![CDATA[curso]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[gratis]]></category>
		<category><![CDATA[jogos]]></category>
		<category><![CDATA[love2d]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.athanazio.com/?p=1871</guid>
		<description><![CDATA[criando jogos com LOVE2D &#8211; lição 1 from Hamilton Lima on Vimeo. Esta é a primeira aula do curso de criação de jogos usando o framework LOVE2D, espero que vc se divirta tanto quanto eu !! =) nesta lição falamos de : - introdução ao LOVE2D - uso de imagens na tela - eventos de [...]]]></description>
			<content:encoded><![CDATA[<div id="HOTWordsTxt" name="HOTWordsTxt"><p><object width="500" height="380"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=4345324&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=4345324&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object><br /><a href="http://vimeo.com/4345324">criando jogos com LOVE2D &#8211; lição 1</a> from <a href="http://vimeo.com/athanazio">Hamilton Lima</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>Esta é a primeira aula do curso de criação de jogos usando o framework LOVE2D, espero que vc se divirta tanto quanto eu !! =) nesta lição falamos de :<br />
- introdução ao LOVE2D<br />
- uso de imagens na tela<br />
- eventos de teclados</p>
<p>abs</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.athanazio.com/2009/04/28/criando-jogos-com-love2d-licao-1/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>diodontidae &#8211; jogo novo</title>
		<link>http://www.athanazio.com/2009/04/20/diodontidae-jogo-novo/</link>
		<comments>http://www.athanazio.com/2009/04/20/diodontidae-jogo-novo/#comments</comments>
		<pubDate>Mon, 20 Apr 2009 21:29:58 +0000</pubDate>
		<dc:creator>athanazio</dc:creator>
				<category><![CDATA[trecos]]></category>
		<category><![CDATA[diodontidae]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[gratis]]></category>
		<category><![CDATA[jogo]]></category>
		<category><![CDATA[love]]></category>

		<guid isPermaLink="false">http://www.athanazio.com/?p=1825</guid>
		<description><![CDATA[Neste fim de semana participei de outra competicao de jogos, mais uma maratona de 48 horas !! veja o listao da competicao ! www.ludumdare.com Eu fiz um jogo onde vc controla um diodontidae, que é um baiacú e vc come o lixo do fundo do mar e joga latinhas nos porcos que sujam o mar. [...]]]></description>
			<content:encoded><![CDATA[<div id="HOTWordsTxt" name="HOTWordsTxt"><p>Neste fim de semana participei de outra competicao de jogos, mais uma maratona de 48 horas !! veja o listao da competicao ! <a href="http://www.ludumdare.com/compo/category/ld14/?tag=final+final&amp;mythumb_nav=1">www.ludumdare.com</a></p>
<p>Eu fiz um jogo onde vc controla um diodontidae,<br />
que é um baiacú e vc come o lixo do fundo do mar e joga latinhas nos porcos que sujam o mar. aqui esta o link para baixar o jogo : <a href="http://www.vacavitoria.com/jogos/diodontidae-necandi/">http://www.vacavitoria.com/jogos/diodontidae-necandi/</a></p>
<p><a href="http://www.athanazio.com/wp-content/uploads/2009/04/diodontidae-necandi_tela.png"><img class="alignnone size-medium wp-image-1826" title="diodontidae-necandi_tela" src="http://www.athanazio.com/wp-content/uploads/2009/04/diodontidae-necandi_tela-386x300.png" alt="diodontidae-necandi_tela" width="386" height="300" /></a></p>
<p>se vc tiver o <a href="http://love2d.org/download">LOVE </a> instalado basta executar o arquivo .love <a href="http://www.athanazio.com/wp-content/uploads/2009/04/diodontidae_necandi_v1.love">diodontidae_necandi_v1</a></p>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.athanazio.com/2009/04/20/diodontidae-jogo-novo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>LOVE games &#8211; belly</title>
		<link>http://www.athanazio.com/2009/04/16/love-games-belly/</link>
		<comments>http://www.athanazio.com/2009/04/16/love-games-belly/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 14:52:23 +0000</pubDate>
		<dc:creator>athanazio</dc:creator>
				<category><![CDATA[trecos]]></category>
		<category><![CDATA[belly]]></category>
		<category><![CDATA[eletronica]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[jogo]]></category>
		<category><![CDATA[love]]></category>
		<category><![CDATA[love2d]]></category>
		<category><![CDATA[musica]]></category>

		<guid isPermaLink="false">http://www.athanazio.com/?p=1811</guid>
		<description><![CDATA[Olas ! estou estudando uma nova game engine que se chama LOVE separei um jogo em divertido que baixei do forum, que vc compoe uma musica eletronica a medida que clica nas coisas na tela, muito show !! instale o player do game engine e clique ae em baixo para jogar clique aqui para jogar [...]]]></description>
			<content:encoded><![CDATA[<div id="HOTWordsTxt" name="HOTWordsTxt"><p>Olas ! estou estudando uma nova game engine que se chama <a href="http://love2d.org/">LOVE</a></p>
<p>separei um jogo em divertido que baixei do forum, que vc compoe uma musica eletronica a medida que clica nas coisas na tela, muito show !!</p>
<p><img class="alignnone size-full wp-image-1816" title="belly-game" src="http://www.athanazio.com/wp-content/uploads/2009/04/belly-game.jpg" alt="belly-game" width="400" height="414" /></p>
<p><a href="http://downloads.sourceforge.net/love/love-0.5-0.exe">instale o player do game engine</a> e clique ae em baixo para jogar</p>
<p>clique aqui para jogar <a href="http://www.athanazio.com/wp-content/uploads/2009/04/belly-05-mod.love">belly-05-mod</a></p>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.athanazio.com/2009/04/16/love-games-belly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sons gratuitos e experimentais</title>
		<link>http://www.athanazio.com/2009/01/11/sons-gratuitos-e-experimentais/</link>
		<comments>http://www.athanazio.com/2009/01/11/sons-gratuitos-e-experimentais/#comments</comments>
		<pubDate>Sun, 11 Jan 2009 07:50:02 +0000</pubDate>
		<dc:creator>athanazio</dc:creator>
				<category><![CDATA[games]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[sound]]></category>

		<guid isPermaLink="false">http://www.athanazio.com/?p=1554</guid>
		<description><![CDATA[muito show este site de efetios sonoros, tem uns experimentais muito legais http://www.freesound.org Este devo usar no jogo da galinha http://www.freesound.org/samplesViewSingle.php?id=49805]]></description>
			<content:encoded><![CDATA[<div id="HOTWordsTxt" name="HOTWordsTxt"><p>muito show este site de efetios sonoros, tem uns experimentais muito legais<br />
<a href="http://www.freesound.org">http://www.freesound.org</a><br />
Este devo usar no jogo da galinha<br />
<a href="http://www.freesound.org/samplesViewSingle.php?id=49805">http://www.freesound.org/samplesViewSingle.php?id=49805</a></p>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.athanazio.com/2009/01/11/sons-gratuitos-e-experimentais/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GPU Gems 3 &#8211; capitulos 11 a 13 disponíveis</title>
		<link>http://www.athanazio.com/2009/01/09/gpu-gems-3-capitulos-11-a-13/</link>
		<comments>http://www.athanazio.com/2009/01/09/gpu-gems-3-capitulos-11-a-13/#comments</comments>
		<pubDate>Fri, 09 Jan 2009 09:57:52 +0000</pubDate>
		<dc:creator>athanazio</dc:creator>
				<category><![CDATA[trecos]]></category>
		<category><![CDATA[1-13]]></category>
		<category><![CDATA[e-book]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[gems]]></category>
		<category><![CDATA[geometry]]></category>
		<category><![CDATA[gpu]]></category>
		<category><![CDATA[light]]></category>
		<category><![CDATA[nvidia]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[shadow]]></category>
		<category><![CDATA[shadows]]></category>

		<guid isPermaLink="false">http://www.athanazio.com/?p=1532</guid>
		<description><![CDATA[A Nvidia liberou mais capitulos do livro online GPU Gems 3, estão disponíveis do capítulo 1 ao 13   Part I: Geometry Chapter 1. Generating Complex Procedural Terrains Using the GPU Chapter 2. Animated Crowd Rendering Chapter 3. DirectX 10 Blend Shapes: Breaking the Limits Chapter 4. Next-Generation SpeedTree Rendering Chapter 5. Generic Adaptive Mesh [...]]]></description>
			<content:encoded><![CDATA[<div id="HOTWordsTxt" name="HOTWordsTxt"><p>A Nvidia liberou mais capitulos do livro online GPU Gems 3, estão disponíveis do capítulo 1 ao 13</p>
<p> </p>
<ul>
<li><a href="http://http.developer.nvidia.com/GPUGems3/gpugems3_part01.html"><em><span><strong><em>Part I: Geometry</em></strong></span></em></a>
<ul>
<li><a href="http://http.developer.nvidia.com/GPUGems3/gpugems3_ch01.html">Chapter 1. Generating Complex Procedural Terrains Using the GPU</a></li>
<li><a href="http://http.developer.nvidia.com/GPUGems3/gpugems3_ch02.html">Chapter 2. Animated Crowd Rendering</a></li>
<li><a href="http://http.developer.nvidia.com/GPUGems3/gpugems3_ch03.html">Chapter 3. DirectX 10 Blend Shapes: Breaking the Limits</a></li>
<li><a href="http://http.developer.nvidia.com/GPUGems3/gpugems3_ch04.html">Chapter 4. Next-Generation SpeedTree Rendering</a></li>
<li><a href="http://http.developer.nvidia.com/GPUGems3/gpugems3_ch05.html">Chapter 5. Generic Adaptive Mesh Refinement</a></li>
<li><a href="http://http.developer.nvidia.com/GPUGems3/gpugems3_ch06.html">Chapter 6. GPU-Generated Procedural Wind Animations for Trees</a></li>
<li><a href="http://http.developer.nvidia.com/GPUGems3/gpugems3_ch07.html">Chapter 7. Point-Based Visualization of Metaballs on a GPU</a></li>
</ul>
</li>
<li><a href="http://http.developer.nvidia.com/GPUGems3/gpugems3_part02.html"><em>Part II: Light and Shadows</em></a>
<ul>
<li><a href="http://http.developer.nvidia.com/GPUGems3/gpugems3_ch08.html">Chapter 8. Summed-Area Variance Shadow Maps</a></li>
<li><a href="http://http.developer.nvidia.com/GPUGems3/gpugems3_ch09.html">Chapter 9. Interactive Cinematic Relighting with Global Illumination</a></li>
<li><a href="http://http.developer.nvidia.com/GPUGems3/gpugems3_ch10.html">Chapter 10. Parallel-Split Shadow Maps on Programmable GPUs</a></li>
<li><a href="http://http.developer.nvidia.com/GPUGems3/gpugems3_ch11.html">Chapter 11. Efficient and Robust Shadow Volumes Using Hierarchical Occlusion Culling and Geometry Shaders</a></li>
<li><a href="http://http.developer.nvidia.com/GPUGems3/gpugems3_ch12.html">Chapter 12. High-Quality Ambient Occlusion</a></li>
<li><a href="http://http.developer.nvidia.com/GPUGems3/gpugems3_ch13.html">Chapter 13. Volumetric Light Scattering as a Post-Process</a></li>
</ul>
</li>
</ul>
<p> </p>
<p>fonte : <a href="http://news.developer.nvidia.com/2009/01/gpu-gems-3-chapters-11-12-13-now-online.html">http://news.developer.nvidia.com/2009/01/gpu-gems-3-chapters-11-12-13-now-online.html</a></p>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.athanazio.com/2009/01/09/gpu-gems-3-capitulos-11-a-13/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>last.fm musica pra chuchu</title>
		<link>http://www.athanazio.com/2009/01/05/lastfm-musica-pra-chuchu/</link>
		<comments>http://www.athanazio.com/2009/01/05/lastfm-musica-pra-chuchu/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 12:05:16 +0000</pubDate>
		<dc:creator>athanazio</dc:creator>
				<category><![CDATA[dicas]]></category>
		<category><![CDATA[fm]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[gratis]]></category>
		<category><![CDATA[last]]></category>
		<category><![CDATA[lastfm]]></category>
		<category><![CDATA[musica]]></category>
		<category><![CDATA[radio]]></category>
		<category><![CDATA[songs]]></category>

		<guid isPermaLink="false">http://www.athanazio.com/?p=1478</guid>
		<description><![CDATA[musica pra chuchu ! esta eh minha reação a este site show que meu vizinho me indicou hoje ! http://www.last.fm/home digratis, bonito, propaganda na medida certa, limpinho, e tem as coisas estranhas que gosto de ouvir !!]]></description>
			<content:encoded><![CDATA[<div id="HOTWordsTxt" name="HOTWordsTxt"><p><a href="http://www.athanazio.com/wp-content/uploads/2009/01/last_fm_screenshot.jpg"><img class="alignnone size-medium wp-image-1479" title="last_fm_screenshot" src="http://www.athanazio.com/wp-content/uploads/2009/01/last_fm_screenshot-450x288.jpg" alt="" width="450" height="288" /></a></p>
<p>musica pra chuchu ! esta eh minha reação a este site show que meu vizinho me indicou hoje ! <a href="http://www.last.fm/home">http://www.last.fm/home</a> digratis, bonito, propaganda na medida certa, limpinho, e tem as coisas estranhas que gosto de ouvir !!</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.athanazio.com/2009/01/05/lastfm-musica-pra-chuchu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>player de video FLV</title>
		<link>http://www.athanazio.com/2008/11/27/player-de-video-flv/</link>
		<comments>http://www.athanazio.com/2008/11/27/player-de-video-flv/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 10:14:40 +0000</pubDate>
		<dc:creator>athanazio</dc:creator>
				<category><![CDATA[dicas]]></category>
		<category><![CDATA[flv]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.athanazio.com/?p=1399</guid>
		<description><![CDATA[Quer fugir do youtube ? quer fazer seu próprio site de videos ? hein hein ? seus problemas se acabaram !! use o http://flv-player.net/ e tibum ! tudo arresorvido !! huauhauha Muito customizável o tal de player de video, não usei só dei uma olhada bem superficial.]]></description>
			<content:encoded><![CDATA[<div id="HOTWordsTxt" name="HOTWordsTxt"><p><img class="alignnone size-full wp-image-1400" title="flv-player" src="http://www.athanazio.com/wp-content/uploads/2008/11/flv-player.png" alt="" width="337" height="257" /></p>
<p>Quer fugir do youtube ? quer fazer seu próprio site de videos ? hein hein ? seus problemas se acabaram !! use o <a href="http://flv-player.net/">http://flv-player.net/</a> e tibum ! tudo arresorvido !! huauhauha</p>
<p>Muito customizável o tal de player de video, não usei só dei uma olhada bem superficial.</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.athanazio.com/2008/11/27/player-de-video-flv/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MS virtual server de gratis</title>
		<link>http://www.athanazio.com/2006/04/05/ms-virtual-server-de-gratis/</link>
		<comments>http://www.athanazio.com/2006/04/05/ms-virtual-server-de-gratis/#comments</comments>
		<pubDate>Wed, 05 Apr 2006 03:56:56 +0000</pubDate>
		<dc:creator>athanazio</dc:creator>
				<category><![CDATA[free]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[virtual server]]></category>

		<guid isPermaLink="false">http://www.athanazio.pro.br/?p=454</guid>
		<description><![CDATA[a Microsoft esta disponibilzando para download gratuito o Virtual Server 2005 R2 &#8211; Enterprise Edition veja o artigo sobre o assunto, vale a pena começar a pesquisar sobre o assunto de verticalização &#8230;.]]></description>
			<content:encoded><![CDATA[<div id="HOTWordsTxt" name="HOTWordsTxt"><p>a Microsoft esta disponibilzando para download gratuito o <a href="http://www.microsoft.com/windowsserversystem/virtualserver/default.mspx">Virtual Server 2005 R2 &#8211; Enterprise Edition</a><br />
<a href="http://www.eweek.com/article2/0,1895,1945069,00.asp">veja o artigo sobre o assunto,</a><br />
vale a pena começar a pesquisar sobre o assunto de verticalização &#8230;.</p>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.athanazio.com/2006/04/05/ms-virtual-server-de-gratis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

