<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2" -->
<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/"
	>

<channel>
	<title>DanielAndrade.net</title>
	<link>http://www.danielandrade.net</link>
	<description>Daniel Andrade Tech Stuff</description>
	<pubDate>Mon, 21 Jul 2008 04:21:53 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2</generator>
	<language>en</language>
			<item>
		<title>DIY: Binary Clock with Arduino</title>
		<link>http://www.danielandrade.net/2008/07/15/binary-clock-with-arduino/</link>
		<comments>http://www.danielandrade.net/2008/07/15/binary-clock-with-arduino/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 07:01:05 +0000</pubDate>
		<dc:creator>DanielAndrade</dc:creator>
		
		<category><![CDATA[Arduino]]></category>

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

		<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://www.danielandrade.net/2008/07/15/binary-clock-with-arduino/</guid>
		<description><![CDATA[Yesterday I was going to start watching a movie, when me and my friend pedro decided to give up on the movie and build a binary clock. After sometime thinking on how to program it, we made it. It works beautifully, so I decided to show here how I&#8217;ve done. It may not be the [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm4.static.flickr.com/3253/2673622074_d5d44ea966_t.jpg" alt="" align="left" />Yesterday I was going to start watching a movie, when me and my friend <a href="http://ovelha.org/pedro/">pedro</a> decided to give up on the movie and build a binary clock. After sometime thinking on how to program it, we made it. It works beautifully, so I decided to show here how I&#8217;ve done. It may not be the easiest way to make it work, but that&#8217;s what we&#8217;ve done.</p>
<p><strong>Parts:</strong><br />
- Arduino<br />
- 13x Leds (You choose the color)<br />
- 13x 220Ohms Resistors<br />
- 3x 2.2KOhms Resistos<br />
- 2x Push-Buttons<br />
- 1x Normal Button<br />
- Bread Board<br />
- Wire</p>
<p>Well, this is a quite simple circuit, but can be tricky for some people, so I will try to explain how it work and how to assemble.</p>
<p><strong>How it works</strong></p>
<p><img src='http://www.danielandrade.net/wp-content/uploads/2008/07/leds1.png' alt='leds1.png' /></p>
<p><img src='http://www.danielandrade.net/wp-content/uploads/2008/07/binary-example.png' alt='binary-example.png' /></p>
<p>I think with this images you can understand how it will work. The leds which are on, you just need to sum the numbers, and it will give current time.</p>
<p><strong>Assembling</strong><br />
To assemble the circuit, you will need to connect first the resistors and leds. To do it, just hook up leds + resistor from the pin 1 to 13. Remember that the bigger leg of the led is positive, and need to be connected to arduino output pin, and the other leg should be on the ground.</p>
<p>So that the code will work for the circuit, you should use the leds like this, LED 1 to PIN 1, LED 2 to PIN 2, and so on&#8230;</p>
<p><img src='http://www.danielandrade.net/wp-content/uploads/2008/07/imagem-binario.png' alt='imagem-binario.png' /></p>
<p>For connecting the buttons, I&#8217;ve used one digital input and two analog inputs. To set change the hour/minute, you will need to use two push-buttons. And they need to be connected to the analog input pin 0 and 5. And to turn leds ON/OFF I&#8217;ve used a normal button that is connected to digital input pin 0. To make it work, you need use one leg of the buttons on a 2.2K Ohm resistor connected to the 5V output together with the analog/digital input, and the other leg going to the ground, something like this:</p>
<p><img src='http://www.danielandrade.net/wp-content/uploads/2008/07/button1.png' alt='button1.png' /></p>
<p>If you don&#8217;t understand what I am trying to explain, you can go to the <a href="http://www.arduino.cc/en/Tutorial/Button">arduino website here</a>. </p>
<p><strong>Images + Video</strong></p>
<p><a href="http://www.flickr.com/photos/pasteler0/2672798839/" title="Binary Clock II by Daniel Spillere Andrade, on Flickr"><img src="http://farm4.static.flickr.com/3143/2672798839_87cc88de17.jpg" width="500" height="314" alt="Binary Clock II" /></a></p>
<p><a href="http://www.flickr.com/photos/pasteler0/2672795611/" title="Binary Clock I by Daniel Spillere Andrade, on Flickr"><img src="http://farm4.static.flickr.com/3281/2672795611_ebcc7224fc.jpg" width="500" height="375" alt="Binary Clock I" /></a></p>
<p><object width="500" height="377">
<param name="allowfullscreen" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="movie" value="http://www.vimeo.com/moogaloop.swf?clip_id=1349421&amp;server=www.vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" />	<embed src="http://www.vimeo.com/moogaloop.swf?clip_id=1349421&amp;server=www.vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="500" height="377"></embed></object></p>
<p><strong>Code</strong><br />
The clock code is based on the <a href="http://www.faludi.com/projects/open-source-arduino-clock/">open-source-arduino-clock</a> by Rob Faludi. I&#8217;ve made many changes, but the time counting the basically the same. So if you want to make another kind of clock, I suggest you to take a look on that website.</p>
<p>If the code below isn&#8217;t working, you can download it as .txt <a href="http://www.danielandrade.net/wp-content/uploads/2008/07/arduno-binary-clock.txt">HERE</a>.</p>
<div class="codesnip-container" >int second=0, minute=0, hour=0; //start the time on 00:00:00<br />
int munit,hunit,valm=0,valh=0,ledstats,i;</p>
<p>void setup() { //set outputs and inputs<br />
pinMode(1, OUTPUT);pinMode(2, OUTPUT);pinMode(3, OUTPUT);pinMode(4, OUTPUT);pinMode(5, OUTPUT);<br />
pinMode(6, OUTPUT);pinMode(7, OUTPUT);pinMode(8, OUTPUT);pinMode(9, OUTPUT);pinMode(10, OUTPUT);<br />
pinMode(11, OUTPUT);pinMode(12, OUTPUT);pinMode(13, OUTPUT);</p>
<p>pinMode(0, INPUT);<br />
}</p>
<p>void loop() {</p>
<p>static unsigned long lastTick = 0; // set up a local variable to hold the last time we moved forward one second<br />
// (static variables are initialized once and keep their values between function calls)<br />
// move forward one second every 1000 milliseconds</p>
<p>if (millis() - lastTick >= 1000) {<br />
	lastTick = millis();<br />
	second++;</p>
<p>}</p>
<p>// move forward one minute every 60 seconds<br />
	if (second >= 60) {<br />
	minute++;<br />
	second = 0; // reset seconds to zero<br />
}</p>
<p>// move forward one hour every 60 minutes<br />
if (minute >=60) {<br />
	hour++;<br />
	minute = 0; // reset minutes to zero<br />
}</p>
<p>if (hour >=24) {<br />
	hour=0;<br />
	minute = 0; // reset minutes to zero<br />
}</p>
<p>	munit = minute%10; //sets the variable munit and hunit for the unit digits<br />
	hunit = hour%10;</p>
<p>	ledstats = digitalRead(0);  // read input value, for setting leds off, but keeping count<br />
	if (ledstats == LOW) {</p>
<p>	for(i=1;i< =13;i++){<br />
	digitalWrite(i, LOW);}</p>
<p>	} else  {</p>
<p>	//minutes units<br />
	if(munit == 1 || munit == 3 || munit == 5 || munit == 7 || munit == 9) {  digitalWrite(1, HIGH);} else {  digitalWrite(1,LOW);}<br />
	if(munit == 2 || munit == 3 || munit == 6 || munit == 7) {digitalWrite(2, HIGH);} else {digitalWrite(2,LOW);}<br />
	if(munit == 4 || munit == 5 || munit == 6 || munit == 7) {digitalWrite(3, HIGH);} else {digitalWrite(3,LOW);}<br />
	if(munit == 8 || munit == 9) {digitalWrite(4, HIGH);} else {digitalWrite(4,LOW);}</p>
<p>	//minutes<br />
	if((minute >= 10 &#038;&#038; minute < 20) || (minute >= 30 &#038;&#038; minute < 40) || (minute >= 50 &#038;&#038; minute < 60))  {digitalWrite(5, HIGH);} else {digitalWrite(5,LOW);}<br />
	if(minute >= 20 &#038;&#038; minute < 40)  {digitalWrite(6, HIGH);} else {digitalWrite(6,LOW);}<br />
	if(minute >= 40 &#038;&#038; minute < 60) {digitalWrite(7, HIGH);} else {digitalWrite(7,LOW);}</p>
<p>	//hour units<br />
	if(hunit == 1 || hunit == 3 || hunit == 5 || hunit == 7 || hunit == 9) {digitalWrite(8, HIGH);} else {digitalWrite(8,LOW);}<br />
	if(hunit == 2 || hunit == 3 || hunit == 6 || hunit == 7) {digitalWrite(9, HIGH);} else {digitalWrite(9,LOW);}<br />
	if(hunit == 4 || hunit == 5 || hunit == 6 || hunit == 7) {digitalWrite(10, HIGH);} else {digitalWrite(10,LOW);}<br />
	if(hunit == 8 || hunit == 9) {digitalWrite(11, HIGH);} else {digitalWrite(11,LOW);}</p>
<p>	//hour<br />
	if(hour >= 10 &#038;&#038; hour < 20)  {digitalWrite(12, HIGH);} else {digitalWrite(12,LOW);}<br />
	if(hour >= 20 &#038;&#038; hour < 24)  {digitalWrite(13, HIGH);} else {digitalWrite(13,LOW);}</p>
<p>	}</p>
<p>	valm = analogRead(0);    // add one minute when pressed<br />
	 if(valm&lt;800) {<br />
	 minute++;<br />
	 second=0;<br />
	 delay(250);<br />
	}</p>
<p>	valh = analogRead(5);    // add one hour when pressed<br />
	 if(valh&lt;800) {<br />
	 hour++;<br />
	 second=0;<br />
	 delay(250);<br />
	}</p>
<p>}</p></div>
<p><a href="http://www.flickr.com/photos/pasteler0/2673622074/" title="Binary Clock III by Daniel Spillere Andrade, on Flickr"><img src="http://farm4.static.flickr.com/3253/2673622074_d5d44ea966.jpg" width="375" height="500" alt="Binary Clock III" /></a></p>
<p>Hope you liked, any question just ask! And if you make your own, send me pics =)</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danielandrade.net/2008/07/15/binary-clock-with-arduino/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Diablo 3 Gameplay Evolution</title>
		<link>http://www.danielandrade.net/2008/07/06/diablo-3-gameplay-evolution/</link>
		<comments>http://www.danielandrade.net/2008/07/06/diablo-3-gameplay-evolution/#comments</comments>
		<pubDate>Sun, 06 Jul 2008 14:08:48 +0000</pubDate>
		<dc:creator>DanielAndrade</dc:creator>
		
		<category><![CDATA[Games]]></category>

		<guid isPermaLink="false">http://www.danielandrade.net/2008/07/06/diablo-3-gameplay-evolution/</guid>
		<description><![CDATA[Cool video showing the evolution of diablo&#8217;s gameplay, worth taking a look! Can&#8217;t wait to play Diablo III  




  
]]></description>
			<content:encoded><![CDATA[<p>Cool video showing the evolution of diablo&#8217;s gameplay, worth taking a look! Can&#8217;t wait to play Diablo III <img src='http://www.danielandrade.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"  codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" id="gtembed" width="480" height="392">
<param name="allowScriptAccess" value="sameDomain" />
<param name="allowFullScreen" value="true" />
<param name="movie" value="http://www.gametrailers.com/remote_wrap.php?mid=35767"/>
<param name="quality" value="high" /> <embed src="http://www.gametrailers.com/remote_wrap.php?mid=35767" swLiveConnect="true" name="gtembed" align="middle" allowScriptAccess="sameDomain" allowFullScreen="true" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="480" height="392"></embed> </object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danielandrade.net/2008/07/06/diablo-3-gameplay-evolution/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Temperature Sensor + Arduino</title>
		<link>http://www.danielandrade.net/2008/07/05/temperature-sensor-arduino/</link>
		<comments>http://www.danielandrade.net/2008/07/05/temperature-sensor-arduino/#comments</comments>
		<pubDate>Sat, 05 Jul 2008 20:49:56 +0000</pubDate>
		<dc:creator>DanielAndrade</dc:creator>
		
		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.danielandrade.net/2008/07/05/temperature-senson-arduino/</guid>
		<description><![CDATA[Hello people, it&#8217;s been a while since I have posted projects on this website. This semester was really busy, I didn&#8217;t have time to much else, but soon I will have my winter holiday (Here in south our summer holiday is from December to February). 
Today I am going to show you how to build [...]]]></description>
			<content:encoded><![CDATA[<p>Hello people, it&#8217;s been a while since I have posted projects on this website. This semester was really busy, I didn&#8217;t have time to much else, but soon I will have my winter holiday (Here in south our summer holiday is from December to February). </p>
<p>Today I am going to show you how to build a simple temperature sensor using one <strong>LM35 Precision Temperature Sensor</strong> and <a href="http://www.arduino.cc">Arduino</a>, so you can hookup on your future projects. The circuit will send serial information about the temperature so you can use on your computer, change the code as you will. I&#8217;m planning to build a temperature sensor with max/min + clock + LCD, and when I get it done, I will post here.</p>
<p><strong>Parts:</strong><br />
- Arduino (You can use other microcontroller, but then you will need to change the code).<br />
- LM35 Precision Centigrade Temperature Sensor, you can get from any electronic store. Here is the <a href="http://www.national.com/ds/LM/LM35.pdf">DATA SHEET</a>.<br />
- BreadBoard</p>
<p><strong>Assembling:</strong><br />
This is a quick and simple step. Just connect the 5V output from arduino to the 1st pin of the sensor, ground the 3rd pin and the 2nd one, you connect to the 0 Analog Input.</p>
<p><strong>Down goes some pictures that may help you, click to enlarge:</strong></p>
<p><img src='http://www.danielandrade.net/wp-content/uploads/2008/07/temp-sensor.png' align="center" /></p>
<p><a href="http://www.flickr.com/photos/pasteler0/2640370158/" title="Temperature Sensor by Daniel Spillere Andrade, on Flickr"><img src="http://farm4.static.flickr.com/3024/2640370158_fa44b7b51f.jpg" width="500" height="282" alt="Temperature Sensor" /></a></p>
<p><a href="http://www.flickr.com/photos/pasteler0/2640375924/" title="sens by Daniel Spillere Andrade, on Flickr"><img src="http://farm4.static.flickr.com/3267/2640375924_09db130d57.jpg" width="500" height="299" alt="sens" /></a></p>
<p><a href="http://www.flickr.com/photos/pasteler0/2639548657/" title="processin by Daniel Spillere Andrade, on Flickr"><img src="http://farm4.static.flickr.com/3270/2639548657_c92de1f887.jpg" width="500" height="361" alt="processin" /></a></p>
<p>Here is the <strong>Arduino </strong>Code, just upload it and check the <strong>Serial Communication</strong> Option.</p>
<p>You can also download the <strong>.pde</strong> <a href="http://www.danielandrade.net/files/temperature_sensor_lm35.pde">HERE</a>.</p>
<div class="codesnip-container" >/* LM35DZ Temp Sensor */</p>
<p>int pin = 0; // analog pin<br />
int tempc = 0,tempf=0; // temperature variables<br />
int samples[8]; // variables to make a better precision<br />
int maxi = -100,mini = 100; // to start max/min temperature<br />
int i;</p>
<p>void setup()<br />
{<br />
  Serial.begin(9600); // start serial communication<br />
}</p>
<p>void loop()<br />
{</p>
<p>for(i = 0;i< =7;i++){ // gets 8 samples of temperature</p>
<p>  samples[i] = ( 5.0 * analogRead(pin) * 100.0) / 1024.0;<br />
  tempc = tempc + samples[i];<br />
  delay(1000);</p>
<p>}</p>
<p>tempc = tempc/8.0; // better precision<br />
tempf = (tempc * 9)/ 5 + 32; // converts to fahrenheit</p>
<p>if(tempc > maxi) {maxi = tempc;} // set max temperature<br />
if(tempc < mini) {mini = tempc;} // set min temperature</p>
<p>Serial.print(tempc,DEC);<br />
Serial.print(" Celsius, ");</p>
<p>Serial.print(tempf,DEC);<br />
Serial.print(" fahrenheit -> &#8220;);</p>
<p>Serial.print(maxi,DEC);<br />
Serial.print(&#8221; Max, &#8220;);<br />
Serial.print(mini,DEC);<br />
Serial.println(&#8221; Min&#8221;);</p>
<p>tempc = 0;</p>
<p>delay(1000); // delay before loop<br />
}</p></div>
<p>Anything just ask! <img src='http://www.danielandrade.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danielandrade.net/2008/07/05/temperature-sensor-arduino/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Diablo III is comming</title>
		<link>http://www.danielandrade.net/2008/06/28/diablo-iii-is-comming/</link>
		<comments>http://www.danielandrade.net/2008/06/28/diablo-iii-is-comming/#comments</comments>
		<pubDate>Sat, 28 Jun 2008 14:02:35 +0000</pubDate>
		<dc:creator>DanielAndrade</dc:creator>
		
		<category><![CDATA[Games]]></category>

		<category><![CDATA[aside]]></category>

		<guid isPermaLink="false">http://www.danielandrade.net/2008/06/28/diablo-iii-is-comming/</guid>
		<description><![CDATA[
Finally Blizzard has revealed information about the next Diablo, and man, I&#8217;m exited. The good thing is that it&#8217;s not MMORPG, it will be almost the same way it was before, but now with better graphics, new monsters and characters. I don&#8217;t know if it&#8217;s my connection or their server is loaded because of too [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://www.danielandrade.net/wp-content/uploads/2008/06/diablo.jpg' alt='diablo.jpg' /></p>
<p>Finally Blizzard has revealed information about the next Diablo, and man, I&#8217;m exited. The good thing is that it&#8217;s not MMORPG, it will be almost the same way it was before, but now with better graphics, new monsters and characters. I don&#8217;t know if it&#8217;s my connection or their server is loaded because of too many visits.<br />
Right now is happening the Blizzard Worldwide Paris, so let&#8217;s wait for more information about this! <img src='http://www.danielandrade.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Well, check out the <a href="http://eu.blizzard.com/diablo3/">blizzard website</a> and <a href="http://www.diablofans.com/">Diablo Fans</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danielandrade.net/2008/06/28/diablo-iii-is-comming/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Daniel Andrade in Portuguese</title>
		<link>http://www.danielandrade.net/2008/05/02/daniel-andrade-in-portuguese/</link>
		<comments>http://www.danielandrade.net/2008/05/02/daniel-andrade-in-portuguese/#comments</comments>
		<pubDate>Fri, 02 May 2008 08:05:00 +0000</pubDate>
		<dc:creator>DanielAndrade</dc:creator>
		
		<category><![CDATA[aside]]></category>

		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.danielandrade.net/2008/05/02/daniel-andrade-in-portuguese/</guid>
		<description><![CDATA[Hello everyone, this is just a quick post! I&#8217;m here to say, if you speak portuguese, I&#8217;m releasing my Brazilian Portuguese version Blog, I won&#8217;t forget this blog, but I think it would be nice to share some words in my own language. So if you are curious, or speak portuguese, I invite you to [...]]]></description>
			<content:encoded><![CDATA[<p>Hello everyone, this is just a quick post! I&#8217;m here to say, if you speak portuguese, I&#8217;m releasing my Brazilian Portuguese version Blog, I won&#8217;t forget this blog, but I think it would be nice to share some words in my own language. So if you are curious, or speak portuguese, I invite you to go to <a href="http://www.danielandrade.net/br">www.danielandrade.net/br</a> There isn&#8217;t much yet, and I&#8217;m REALLY without time because university, damn, I&#8217;m studying like hell. That&#8217;s the only bad thing about studying some engineering, specially electric. </p>
<p>Have you tried UBUNTU yet? <img src='http://www.danielandrade.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Tchau <img src='http://www.danielandrade.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danielandrade.net/2008/05/02/daniel-andrade-in-portuguese/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Huge List of Free WordPress Templates Sites</title>
		<link>http://www.danielandrade.net/2008/03/25/huge-list-of-free-wordpress-templates-sites/</link>
		<comments>http://www.danielandrade.net/2008/03/25/huge-list-of-free-wordpress-templates-sites/#comments</comments>
		<pubDate>Tue, 25 Mar 2008 23:05:42 +0000</pubDate>
		<dc:creator>DanielAndrade</dc:creator>
		
		<category><![CDATA[Wordpress]]></category>

		<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.danielandrade.net/2008/03/25/huge-list-of-free-wordpress-templates-sites/</guid>
		<description><![CDATA[Surfing on a Brazilian website called misterwp I&#8217;ve found this huge list of websites where you can find themes for your wordpress. As the website is in Portuguese, I&#8217;m sharing this here. So if you are looking for a new design for your blog, maybe here is a good place to start!  
.

 WordPress [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://www.danielandrade.net/wp-content/uploads/2008/03/club_small.gif' alt='club_small.gif' align='left' />Surfing on a Brazilian website called <a href="http://www.misterwp.com/entre-o-sistema/listao-de-sites-com-temas-para-wordpress/">misterwp</a> I&#8217;ve found this huge list of websites where you can find themes for your wordpress. As the website is in Portuguese, I&#8217;m sharing this here. So if you are looking for a new design for your blog, maybe here is a good place to start! <img src='http://www.danielandrade.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>.</p>
<div class="codesnip-container" >
<li> <a href="http://themes.wordpress.net/" class="external text" title="http://themes.wordpress.net/">WordPress Theme Viewer</a></li>
<li> <a href="http://wptemplates.org/" class="external text" title="http://wptemplates.org/">WordPress templates</a></li>
<li> <a href="http://pro-themes.com" class="external text" title="http://pro-themes.com">Hosting of High quality WP templates</a></li>
<li> <a href="http://www.blogohblog.com/" class="external text" title="http://www.blogohblog.com/">Modern WordPress Themes</a></li>
<li> <a href="http://www.wordpresstheme.com/" class="external text" title="http://www.wordpresstheme.com/">WordPressTheme.com</a></li>
<li> <a href="http://www.elegantwpthemes.com/" class="external text" title="http://www.elegantwpthemes.com/">ElegantWPThemes.com</a></li>
<li> <a href="http://www.wordpresswow.com" class="external text" title="http://www.wordpresswow.com">WordPress Wow Themes Gallery</a></li>
<li> <a href="http://wordpress.org/support/forum.php?id=5" class="external text" title="http://wordpress.org/support/forum.php?id=5">WordPress Support Themes forum</a></li>
<li> <a href="http://wpgarden.com/" class="external text" title="http://wpgarden.com/">WordPress Garden - Theme reviews</a></li>
<li> <a href="http://www.themespack.com/" class="external text" title="http://www.themespack.com/">WordPress Theme -ThemesPack</a></li>
<li> <a href="http://www.lukaret.com/wordpress-themes/" class="external text" title="http://www.lukaret.com/wordpress-themes/">WordPress Themes by Beng Hafner</a></li>
<li> <a href="http://wptheme.net/" class="external text" title="http://wptheme.net/">WordPresstheme.net Free WordPress Themes</a></li>
<li> <a href="http://www.bestwpthemes.com/" class="external text" title="http://www.bestwpthemes.com/">Best WordPress Themes</a></li>
<li> <a href="http://themes.rock-kitty.net" class="external text" title="http://themes.rock-kitty.net">Free WordPress Themes - Kate&#039;s Theme Viewer</a></li>
<li> <a href="http://www.einternetindex.com/themes/" class="external text" title="http://www.einternetindex.com/themes/">Free WordPress Themes</a></li>
<li> <a href="http://templatextreme.com/products/wordpress-themes/" class="external text" title="http://templatextreme.com/products/wordpress-themes/">Free WordPress Themes on TemplateXtreme</a></li>
<li> <a href="http://designoahu.com/wordpress-beer-theme" class="external text" title="http://designoahu.com/wordpress-beer-theme">Free beer theme by Jeremy Moseley</a></li>
<li> <a href="http://www.bloggingpro.com/archives/category/wordpress-themes/" class="external text" title="http://www.bloggingpro.com/archives/category/wordpress-themes/">Blogging Pro WordPress Themes Category</a></li>
<li> <a href="http://wpdemo.kaushalsheth.com/" class="external text" title="http://wpdemo.kaushalsheth.com/">Kaushal Sheth&#039;s WordPress Theme Viewer</a></li>
<li> <a href="http://biboz.net/themes/" class="external text" title="http://biboz.net/themes/">biboz.net Free WordPress Themes</a></li>
<li> <a href="http://www.siteground.com/wordpress-hosting/wordpress-themes.htm" class="external text" title="http://www.siteground.com/wordpress-hosting/wordpress-themes.htm">Free WordPress Themes by SiteGround</a></li>
<li> <a href="http://wpthemes.info/themes/" class="external text" title="http://wpthemes.info/themes/">WordPress Themes by Sadish</a></li>
<li> <a href="http://www.gii.in/themes/" class="external text" title="http://www.gii.in/themes/">Gii Themes</a></li>
<li> <a href="http://www.skinsforwp.com/free-wordpress-themes.html" class="external text" title="http://www.skinsforwp.com/free-wordpress-themes.html">Skins/Themes for WordPress</a></li>
<li> <a href="http://www.prissed.com/" class="external text" title="http://www.prissed.com/">WordPress Themes by priss</a></li>
<li> <a href="http://www.gfxedit.com/themes/wordpress/" class="external text" title="http://www.gfxedit.com/themes/wordpress/">GFXedit.com Themes</a></li>
<li> <a href="http://www.dirsurfer.com/blog/wp-free-templates/" class="external text" title="http://www.dirsurfer.com/blog/wp-free-templates/">Dirsurfer Themes</a></li>
<li><a href="http://www.emilyrobbins.com/how-to-blog/comprehensive-list-of-615-free-wordpress-15-and-20-themes-templates-available-for-download-266.htm" class="external text" title="http://www.emilyrobbins.com/how-to-blog/comprehensive-list-of-615-free-wordpress-15-and-20-themes-templates-available-for-download-266.htm">How to Blog&#039;s List of 980+ Themes</a></li>
<li> <a href="http://www.alexking.org/blog/2005/02/27/wordpress-theme-competition/" class="external text" title="http://www.alexking.org/blog/2005/02/27/wordpress-theme-competition/">Alex King&#039;s WordPress Theme Competition</a></li>
<li> <a href="http://www.johntp.com/wp-skins/" class="external text" title="http://www.johntp.com/wp-skins/">JohnTP&#039;s WordPress Themes Collection</a></li>
<li> <a href="http://gallery.wordpress.com/" class="external text" title="http://gallery.wordpress.com/">Gallery for WordPress</a></li>
<li> <a href="http://www.headsetoptions.org/" class="external text" title="http://www.headsetoptions.org/">Headsetoptions WordPress Themes</a></li>
<li> <a href="http://www.mandarinmusing.com/" class="external text" title="http://www.mandarinmusing.com/">Mandarinmusing WordPress Themes</a></li>
<li> <a href="http://themez.info/" class="external text" title="http://themez.info/">Themes for WordPress</a></li>
<li> <a href="http://www.yvoschaap.com/wpthemegen/" class="external text" title="http://www.yvoschaap.com/wpthemegen/">Yvo Schapp&#039;s WordPress Theme Generator</a></li>
<li> <a href="http://www.livelydirectory.com/blog/" class="external text" title="http://www.livelydirectory.com/blog/">Free WordPress Themes</a></li>
<li> <a href="http://milo.peety-passion.com/" class="external text" title="http://milo.peety-passion.com/">miloIIIIVII</a></li>
<li> <a href="http://www.reviewmytheme.com/" class="external text" title="http://www.reviewmytheme.com/">ReviewMyTheme Free WordPress Template</a></li>
<li> <a href="http://www.allinfodir.com/themes/" class="external text" title="http://www.allinfodir.com/themes/">AllinfoDir WordPress Themes</a></li>
<li> <a href="http://www.idk.in/blogs/?cat=14" class="external text" title="http://www.idk.in/blogs/?cat=14">Genuine WordPress Themes</a></li>
<li> <a href="http://www.elegantdirectory.com/wp-themes/" class="external text" title="http://www.elegantdirectory.com/wp-themes/">ElegantDirectory WordPress Themes</a></li>
<li> <a href="http://blog.rakcha.com/category/themes/" class="external text" title="http://blog.rakcha.com/category/themes/">High Quality Themes from rakCha</a></li>
<li> <a href="http://www.avivadirectory.com/downloads/category/wordpress-themes/" class="external text" title="http://www.avivadirectory.com/downloads/category/wordpress-themes/">Aviva WordPress Themes</a></li>
<li> <a href="http://www.deeplinklisting.com/blog/" class="external text" title="http://www.deeplinklisting.com/blog/">Deep Link Listing - Blogger - WordPress Themes</a></li>
<li> <a href="http://www.dirjournal.com/wp-themes/" class="external text" title="http://www.dirjournal.com/wp-themes/">Free Sponsored Themes</a></li>
<li> <a href="http://www.templatesfactory.net/blog/category/wp-themes/" class="external text" title="http://www.templatesfactory.net/blog/category/wp-themes/">Free WordPress Themes</a></li>
<li> <a href="http://www.wpthemesfree.com" class="external text" title="http://www.wpthemesfree.com">Free WordPress Themes</a></li>
<li> <a href="http://blogosquare.com/wordpress-themes/" class="external text" title="http://blogosquare.com/wordpress-themes/">BlogoSquare Free Theme downloads and reviews</a></li>
<li> <a href="http://www.get-index.com/wordpress-themes/" class="external text" title="http://www.get-index.com/wordpress-themes/">Free WordPress Themes</a></li>
<li> <a href="http://www.ventedoy.com/themes/" class="external text" title="http://www.ventedoy.com/themes/">Free High Quality WordPress Themes</a></li>
<li> <a href="http://www.themevibes.com" class="external text" title="http://www.themevibes.com">Free WordPress Themes</a></li>
<li> <a href="http://www.mygreencorner.com/freewordpressthemes.php" class="external text" title="http://www.mygreencorner.com/freewordpressthemes.php">Free WordPress Themes</a></li>
<li> <a href="http://www.jauhari.net/themes" class="external text" title="http://www.jauhari.net/themes">Free WordPress Themes</a></li>
<li> <a href="http://www.wpmix.com/" class="external text" title="http://www.wpmix.com/">WordPress Themes</a></li>
<li> <a href="http://templates.arcsin.se/category/wordpress-themes/" class="external text" title="http://templates.arcsin.se/category/wordpress-themes/">Free WordPress Themes at CSS Design Templates</a></li>
<li> <a href="http://themes.enquira.com/category/wordpress-themes/" class="external text" title="http://themes.enquira.com/category/wordpress-themes/">enQuira Themes</a></li>
<li> <a href="http://www.onehertz.com/portfolio/wordpress/" class="external text" title="http://www.onehertz.com/portfolio/wordpress/">Free &amp; Paid Themes at onehertz</a></li>
<li> <a href="http://www.drchetan.com/themes" class="external text" title="http://www.drchetan.com/themes">Chetan Free WordPress Themes</a></li>
<li> <a href="http://www.iguides.org/wp-themes/" class="external text" title="http://www.iguides.org/wp-themes/">iGuides Free WordPress Themes</a></li>
<li> <a href="http://www.romow.com/blog/category/free-wordpress-themes/" class="external text" title="http://www.romow.com/blog/category/free-wordpress-themes/">Free WordPress Themes by Romow</a></li>
<li> <a href="http://www.blogstheme.com/" class="external text" title="http://www.blogstheme.com/">Free WordPress Themes by blogstheme</a></li>
<li> <a href="http://extjswordpress.net/" class="external text" title="http://extjswordpress.net/">Ext JS powered WordPress Theme</a></li>
<li> <a href="http://cureless.net/works/wp-themes/" class="external text" title="http://cureless.net/works/wp-themes/">Free WordPress Themes by Yoru @ Cureless</a></li>
<li> <a href="http://www.cmdesignlounge.com/sponsored-themes/" class="external text" title="http://www.cmdesignlounge.com/sponsored-themes/">Themes by ChiQ Montes</a></li>
<li> <a href="http://www.allydirectory.com/wpthemes/" class="external text" title="http://www.allydirectory.com/wpthemes/">Free WordPress Themes</a></li>
<li> <a href="http://www.blueverse.com/resources/wordpress-themes/" class="external text" title="http://www.blueverse.com/resources/wordpress-themes/">Blueverse SEO WordPress Themes</a></li>
<li> <a href="http://www.themebox.org/" class="external text" title="http://www.themebox.org/">ThemeBox WordPress Themes</a></li>
<li> <a href="http://www.askgraphics.com/freetemplates/" class="external text" title="http://www.askgraphics.com/freetemplates/">WordPress Themes by AskGraphics.com</a></li>
<li> <a href="http://www.themetube.com/" class="external text" title="http://www.themetube.com/">Free WordPress Themes</a></li>
<li> <a href="http://www.madmouse.com/blog/" class="external text" title="http://www.madmouse.com/blog/">Squeaky&#039;s - WordPress Themes and Articles</a></li>
<li> <a href="http://www.thaslayer.com/category/templates/" class="external text" title="http://www.thaslayer.com/category/templates/">slayer&#039;s web 2.0 and AJAX Tweaked WordPress themes</a></li>
<li> <a href="http://www.themelogs.com/free-themes/" class="external text" title="http://www.themelogs.com/free-themes/">Free WordPress Themes</a></li>
<li> <a href="http://forums.digitalpoint.com/showthread.php?p=5342152" class="external text" title="http://forums.digitalpoint.com/showthread.php?p=5342152">Green Fury WordPress Theme</a></li>
<li> <a href="http://imjtk.com/wordpress-themes" class="external text" title="http://imjtk.com/wordpress-themes">JTk&#039;s Free Themes</a></li>
<li> <a href="http://www.webmastermarty.com/category/wordpress-themes/" class="external text" title="http://www.webmastermarty.com/category/wordpress-themes/">Webmaster Marty&#039;s WordPress Themes</a></li>
<li> <a href="http://www.bretema.info/" class="external text" title="http://www.bretema.info/">Brétema Themes</a></li>
<li> <a href="http://www.themeage.com/" class="external text" title="http://www.themeage.com/">Themeage</a></li>
<li> <a href="http://www.wpbay.com/" class="external text" title="http://www.wpbay.com/">Best WordPress Themes</a></li>
<li> <a href="http://wpthemez.com/" class="external text" title="http://wpthemez.com/">Unique WordPress Themes at wpthemez</a></li>
<li> <a href="http://ericulous.com/" class="external text" title="http://ericulous.com/">Ericulous WordPress Themes</a></li>
<li> <a href="http://wordpress-themes.chromaticsites.com/" class="external text" title="http://wordpress-themes.chromaticsites.com/">Professional WordPress Themes - Chromatic Sites</a></li>
<li> <a href="http://www.wordpresssite.com/" class="external text" title="http://www.wordpresssite.com/">WordPress Theme -ThemesGallery</a></li>
<li> <a href="http://wptemplates.org/" class="external text" title="http://wptemplates.org/">WordPress templates</a></li>
<li> <a href="http://www.wordpressthemed.com/" class="external text" title="http://www.wordpressthemed.com/">WordPress Themed</a></li>
<li> <a href="http://www.clazh.com/download/" class="external text" title="http://www.clazh.com/download/">Free WordPress Themes</a></li>
<li> <a href="http://www.uzzz.net/category/wordpress-templates" class="external text" title="http://www.uzzz.net/category/wordpress-templates">Uzzz Production Themes</a></li>
<li> <a href="http://www.balkhis.com/category/wp-themes/" class="external text" title="http://www.balkhis.com/category/wp-themes/">Balkhis WP Themes</a></li>
<li> <a href="http://www.idk.in/blogs/?cat=14" class="external text" title="http://www.idk.in/blogs/?cat=14">Genuine WordPress Themes</a></li>
<li> <a href="http://www.allinfodir.com/themes/" class="external text" title="http://www.allinfodir.com/themes/">AllinfoDir WordPress Themes</a></li>
<li> <a href="http://www.reviewmytheme.com/" class="external text" title="http://www.reviewmytheme.com/">ReviewMyTheme Free WordPress Template</a></li>
<li> <a href="http://www.rahmatblog.com/category/wordpress-theme/" class="external text" title="http://www.rahmatblog.com/category/wordpress-theme/">Rahmat&#039;s Free WordPress Themes</a></li>
<li> <a href="http://www.gomvents.com/free-wordpress-themes.html" class="external text" title="http://www.gomvents.com/free-wordpress-themes.html">Gomvents&#039; Free WordPress Themes - Updated Daily</a></li>
<li> <a href="http://www.wpthemespress.com/" class="external text" title="http://www.wpthemespress.com/">Free Premium WordPress Themes</a></li>
<li> <a href="http://www.dustin-hamilton.net/" class="external text" title="http://www.dustin-hamilton.net/">Dustin Hamilton Media Free Wordpress Themes</a></li>
</div>
<p>Via [<a href="http://www.misterwp.com/entre-o-sistema/listao-de-sites-com-temas-para-wordpress/">MISTERWP</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danielandrade.net/2008/03/25/huge-list-of-free-wordpress-templates-sites/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Ubuntu 8.04 CountDown</title>
		<link>http://www.danielandrade.net/2008/03/24/ubuntu-804-countdown/</link>
		<comments>http://www.danielandrade.net/2008/03/24/ubuntu-804-countdown/#comments</comments>
		<pubDate>Tue, 25 Mar 2008 01:34:01 +0000</pubDate>
		<dc:creator>DanielAndrade</dc:creator>
		
		<category><![CDATA[Ubuntu]]></category>

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

		<category><![CDATA[aside]]></category>

		<guid isPermaLink="false">http://www.danielandrade.net/2008/03/24/ubuntu-804-countdown/</guid>
		<description><![CDATA[It&#8217;s that time of the year again, everyone is just wating for the next release of this amazing OS! Let&#8217;s say hello to the new Ubuntu in:

]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s that time of the year again, everyone is just wating for the next release of this amazing OS! Let&#8217;s say hello to the new Ubuntu in:</p>
<p><script type="text/javascript" src="http://www.ubuntu.com/files/countdown/display.js"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danielandrade.net/2008/03/24/ubuntu-804-countdown/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How I built My HTPC</title>
		<link>http://www.danielandrade.net/2008/02/29/how-i-built-my-htpc/</link>
		<comments>http://www.danielandrade.net/2008/02/29/how-i-built-my-htpc/#comments</comments>
		<pubDate>Fri, 29 Feb 2008 21:15:48 +0000</pubDate>
		<dc:creator>DanielAndrade</dc:creator>
		
		<category><![CDATA[htpc]]></category>

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

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

		<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.danielandrade.net/2008/02/29/how-i-built-my-htpc/</guid>
		<description><![CDATA[I&#8217;ve built my HTPC like one year ago, don&#8217;t know why I have never written about it on this website. Well, for today, I will be presenting the place I spend many hours of my life, my Home Theater PC, my Media/File/Gaming/BackUp Server. The idea came many years ago, but without $, it was not [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve built my HTPC like one year ago, don&#8217;t know why I have never written about it on this website. Well, for today, I will be presenting the place I spend many hours of my life, my Home Theater PC, my Media/File/Gaming/BackUp Server. The idea came many years ago, but without $, it was not possible. Fist my main computer was near the tv, so I used to connect to my old tv using a S-Video Cable and a P2 to a RCA Cable, and as a Tube Tv, the quality wasn&#8217;t that good, and I couldn&#8217;t almost read any text on the screen, just big texts like subtitles.</p>
<p><a href="http://www.flickr.com/photos/pasteler0/2301054690/" title="My HTPC by Daniel Spillere Andrade, on Flickr"><img src="http://farm3.static.flickr.com/2359/2301054690_0a45503085.jpg" width="500" height="281" alt="My HTPC" /></a></p>
<p>When I decided to build a definitive HTPC, I looked for a hardware that would fit my needs, nothing too expensive, but something that would play High Definition files without problems, and also could play some games, like Pro Evolution Soccer (best game to play with friends) or Tomb Raider. By the time, I had a tube tv with component video (good, but could be so much better), and 5.1 sound connected to my Home Theater Sound System.</p>
<h2>parts</h2>
<p><strong>MotherBoard:</strong> <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16813131025">ASUS P5W DH Deluxe</a>, excellent MB for a HTPC, with many great features no it, like S/PDIF Port, a digital output for connecting to my 5.1 sound system, two on board 10/100/1000 network cards (two is good if you want to use it as a router or a firewall) plus wireless. USB, Firewire and eSATA makes file transfer to external hard drives easy and fast. It also have a remote control, so you can set the volume, turn it off and on (I don&#8217;t really use it very much)</p>
<p><img src='http://www.danielandrade.net/wp-content/uploads/2008/02/p5w.jpg' alt='' /></p>
<p><strong>Processor:</strong> I got a <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16819115016">Core 2 Duo E6420, 4mb cache</a>, very good for playing HD files and games.</p>
<p><img src='http://www.danielandrade.net/wp-content/uploads/2008/03/proc.jpg' alt='proc.jpg' /></p>
<p><strong>Case:</strong> The computer case could be anyone, but a receiver looking case would be much cooler. Here in Brazil wasn&#8217;t so easy to find one, and getting it from USA would be very expensive. Luckily I found the <a href="http://www.3rsys.com/english/products/view.asp?navi=case&#038;idx_num=81">M Station HT-3000</a> from 3R SYSTEM, a great case for my project. It comes with a small Blue LCD Display that can be used to show the time, current track song playing on iTunes or Winamp, the time of the film you&#8217;re watching or other things you can configure. It also comes with a remote control, very good one by the way, where you can use it to surf on your files, songs and videos, pause, exit programs, exit windows, or do almost anything the mouse/keyboard could do. Well, I believe this pictures show a little more about this case:<br />
<img src='http://www.danielandrade.net/wp-content/uploads/2008/02/3.jpg' alt='3.jpg' /></p>
<p><strong>Memory:</strong> I got 1GB DDR2-667 Corsair RAM memory, It&#8217;s enough for the kind of HTPC I want, maybe someday I put more, but till now I don&#8217;t need more. Remember to get one compatible with your mother board.</p>
<p><img src='http://www.danielandrade.net/wp-content/uploads/2008/03/mem.jpg' alt='mem.jpg' /></p>
<p><strong>Storage:</strong> For the start, I got a 320GB 7200rpm SATA-II, not so much storage, when you talk of High Definition Movies. So I got an External 500GB drive that attend my needs for now, and if I need, I can take it anywhere. Someday I&#8217;ll get more and faster drives, as I&#8217;m a media lover.</p>
<p><strong>Video Card:</strong> I got an e-GeForce 7600 GT 256mb PCI-E board from EVGA, with component, vga and dvi output (before I was using component to connect to my TV). I&#8217;m using a DVI to HDMI cable to connect to my LG 32&#8242; LCD Time Machine II screen, so I got now quality digital video on my tv.</p>
<p><img src='http://www.danielandrade.net/wp-content/uploads/2008/03/vga.jpg' alt='vga.jpg' /></p>
<p><img src='http://www.danielandrade.net/wp-content/uploads/2008/03/dvi-html.jpg' alt='dvi-html.jpg' /></p>
<p><strong>Power Supply:</strong> For the computer, a 500 watts is good enough.</p>
<p><img src='http://www.danielandrade.net/wp-content/uploads/2008/03/ps.jpg' alt='ps.jpg' /></p>
<p><strong>Mouse &#038; Keyboard:</strong> Now I needed a wireless mouse and keyboard, and I choose Microsoft&#8217;s wireless mouse and keyboard 2000. They are very good, but the only problem that they don&#8217;t have a good range, so when I want to use it from far, I need to put the small receiver near, and it&#8217;s so nice, as I need to keep moving it all the time.</p>
<p><img src='http://www.danielandrade.net/wp-content/uploads/2008/03/mk.jpg' alt='mk.jpg' /></p>
<h2>Software</h2>
<p>Well, as I want it to be not just a media player, but a gaming computer, I installed Win XP (never Vista ^^), so we can play videos and games without needing to use Wine, less time and effort.</p>
<p><strong>Programs I use very much:</strong></p>
<ol>
<li><strong>Media Players:</strong> Here we have many options, first there are the HTPC software, like the open source project <a href="http://www.team-mediaportal.com/">Media Portal</a>, where you can browse your films, musics, read rss, watch forecast and much more, with big letters and everything, it&#8217;s a good choice. For a long time I&#8217;ve used <a href="http://www.videolan.org/vlc/">VLC</a>, great PLAY EVERYTHING software, it&#8217;s good if you don&#8217;t want to install many different codecs, as it plays everything. Some days ago I discovered <a href="http://www.gomlab.com">GOM PLAYER</a>, it works like <a href="http://www.videolan.org/vlc/">VLC</a>, you don&#8217;t need to install more codecs, because it already plays everything. And I&#8217;m liking it very much, more then VLC, as it have a better interface and works better with subtitles. If you don&#8217;t know it, I suggest you to <a href="http://www.gomlab.com/">check it out</a>.</li>
<li><strong>FTPD:</strong> A FTP server is one of the easiest way to transfer files across computers, as you have more control of the files being transfered. I&#8217;m not a big fan of transferring files using Windows Explorer, many times it doesn&#8217;t work, or if anything goes wrong while transferring, you lose it all, and have to start all over again. For FTPD I like <a href="http://www.g6ftpserver.com/">GeneFTP</a>, and for Client, I use <a href="http://www.flashfxp.com/">FlashFXP</a> on Windows and gFTP on Linux (soon I&#8217;ll be needing a mac version also).</li>
<li><strong>VNC:</strong> When I need to install programs or do anything on it, I use <a href="http://www.uvnc.com/">UltraVNC</a>, so I can access visually the computer from anywhere. Software I like is VNC.</li>
<li><strong>Torrent:</strong> I love BitTorrent, and I use it almost everyday (downloading linux only, of course), and my client of choice is <a href="http://utorrent.com">uTorrent</a>, lightweight fast and very complete program, and one thing I like it the WebGUI, so I can check the process of downloading files and manage them from anywhere.</li>
<li><strong>BackUP:</strong> For having my data safe, I use <a href="http://www.2brightsparks.com/i">Syncback</a>, the best backup program I know, and it&#8217;s free. With it I able to backup my stuff using FTP, from everywhere. I also like to backup my photos to 3 different places at the same time (some can be though windows network, samba or ftp).</li>
<li><strong>Backup Your DVDs:</strong> For backing up my dvds, I&#8217;m using <a href="http://www.dvdshrink.org/">DVD Shrink</a>, very good software to save your precious dvds to your hard disk. Also good to save that movie you rented and didn&#8217;t have time to watch it.</li>
</ol>
<h2>links</h2>
<p>Here goes some good things to read and links before you start building your own HTPC. (I&#8217;ll add more links with time)</p>
<ol>
<li><a href="http://www.htpcforums.com">HTPC Forum</a></li>
<li><a href="http://paulstamatiou.com/2008/01/25/diy-200-dollar-pc">DIY - 200 Dollar PC</a></li>
<li><a href="http://lifehacker.com/software/geek-to-live/geek-to-live-automatically-back-up-your-hard-drive-147855.php">Geek to Live: Automatically back up your hard drive</a></li>
</ol>
<p>I&#8217;m still looking for some good photo viewer, I would like to find something like the amazing <a href="http://www.piclens.com/">PicLens</a>, do you know any?<br />
How would you build your own HTPC?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danielandrade.net/2008/02/29/how-i-built-my-htpc/feed/</wfw:commentRss>
		</item>
		<item>
		<title>OpenOffice 3D</title>
		<link>http://www.danielandrade.net/2008/02/19/openoffice-3d/</link>
		<comments>http://www.danielandrade.net/2008/02/19/openoffice-3d/#comments</comments>
		<pubDate>Tue, 19 Feb 2008 14:42:39 +0000</pubDate>
		<dc:creator>DanielAndrade</dc:creator>
		
		<category><![CDATA[Ubuntu]]></category>

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

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

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

		<category><![CDATA[Mods]]></category>

		<guid isPermaLink="false">http://www.danielandrade.net/2008/02/19/openoffice-3d/</guid>
		<description><![CDATA[It looks PowerPoint will have a great competitor now. People will start thinking twice before paying for Microsoft&#8217;s Office. Programmer Shane M. Mathews made great slideshow effects using 3D-OpenGL&#8217;s library. 
You can take a look of how it looks:



This feature will be available for everyone on the next OpenOffice.org 2.4.
]]></description>
			<content:encoded><![CDATA[<p>It looks PowerPoint will have a great competitor now. People will start thinking twice before paying for Microsoft&#8217;s Office. Programmer Shane M. Mathews made great slideshow effects using 3D-OpenGL&#8217;s library. </p>
<p><em>You can take a look of how it looks:</em></p>
<p><object width="425" height="355">
<param name="movie" value="http://www.youtube.com/v/jFge2zTSN-A&#038;rel=1"></param>
<param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/jFge2zTSN-A&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
<p>This feature will be available for everyone on the next OpenOffice.org 2.4.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danielandrade.net/2008/02/19/openoffice-3d/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What happens if you type &#8220;sudo rm -rf /&#8221; on Linux</title>
		<link>http://www.danielandrade.net/2008/02/12/what-happens-if-you-type-sudo-rm-rf-on-linux/</link>
		<comments>http://www.danielandrade.net/2008/02/12/what-happens-if-you-type-sudo-rm-rf-on-linux/#comments</comments>
		<pubDate>Tue, 12 Feb 2008 16:05:40 +0000</pubDate>
		<dc:creator>DanielAndrade</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.danielandrade.net/2008/02/12/what-happens-if-you-type-sudo-rm-rf-on-linux/</guid>
		<description><![CDATA[Want to know what happens if you type &#8220;sudo rm -rf /&#8221; on the terminal? Beware to don&#8217;t type this on your computer, it will erase all system root folders.
Watch the video below:



]]></description>
			<content:encoded><![CDATA[<p>Want to know what happens if you type &#8220;sudo rm -rf /&#8221; on the terminal? Beware to don&#8217;t type this on your computer, it will erase all system root folders.</p>
<p>Watch the video below:</p>
<p><object width="425" height="355">
<param name="movie" value="http://www.youtube.com/v/wWOjmvWPRvQ&#038;rel=1"></param>
<param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/wWOjmvWPRvQ&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.danielandrade.net/2008/02/12/what-happens-if-you-type-sudo-rm-rf-on-linux/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
