<?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>Gianvito&#039;s</title>
	<atom:link href="http://gianvito.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://gianvito.wordpress.com</link>
	<description>Stay hungry, stay foolish.</description>
	<lastBuildDate>Sat, 28 Jan 2012 00:14:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='gianvito.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Gianvito&#039;s</title>
		<link>http://gianvito.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://gianvito.wordpress.com/osd.xml" title="Gianvito&#039;s" />
	<atom:link rel='hub' href='http://gianvito.wordpress.com/?pushpress=hub'/>
		<item>
		<title>[How to] Install Apache Tomcat on MacOsX</title>
		<link>http://gianvito.wordpress.com/2010/03/22/how-to-install-apache-tomcat-on-macosx/</link>
		<comments>http://gianvito.wordpress.com/2010/03/22/how-to-install-apache-tomcat-on-macosx/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 18:05:12 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[America]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/?p=455</guid>
		<description><![CDATA[There are a few steps to follow: Download latest version of tomcat -&#62; Apache Tomcat Homepage Extract it and rename the folder to &#8220;Tomcat&#8221; Now move it to /Library folder with this command (after &#8220;cd&#8221;ing to the folder before the unzipped one, apache version may changes) mv apache-tomcat-6.0.26 /Library/Tomcat Get a script to simplify tomcat starting [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=455&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><a href="http://gianvito.files.wordpress.com/2010/03/schermata-2010-03-22-a-19-02-411.png"><img class="aligncenter size-full wp-image-465" title="Schermata 2010-03-22 a 19.02.41" src="http://gianvito.files.wordpress.com/2010/03/schermata-2010-03-22-a-19-02-411.png?w=600" alt=""   /></a></p>
<p><span id="more-455"></span></p>
<p>There are a few steps to follow:</p>
<ul>
<li>Download latest version of tomcat -&gt; <a href="http://tomcat.apache.org/">Apache Tomcat Homepage</a></li>
<li>Extract it and rename the folder to &#8220;Tomcat&#8221;</li>
<li>Now move it to /Library folder with this command (after &#8220;cd&#8221;ing to the folder before the unzipped one, apache version may changes)
<ul>
<li>mv apache-tomcat-6.0.26 /Library/Tomcat</li>
</ul>
</li>
<li>Get a script to simplify tomcat starting and stopping</li>
</ul>
<div id="_mcePaste" style="text-align:left;padding-left:60px;">#!/bin/bash</div>
<div id="_mcePaste" style="text-align:left;padding-left:60px;">case $1 in</div>
<div id="_mcePaste" style="text-align:left;padding-left:60px;">start)</div>
<div id="_mcePaste" style="text-align:left;padding-left:60px;">sh /Library/Tomcat/bin/startup.sh</div>
<div id="_mcePaste" style="text-align:left;padding-left:60px;">;;</div>
<div id="_mcePaste" style="text-align:left;padding-left:60px;">stop)</div>
<div id="_mcePaste" style="text-align:left;padding-left:60px;">sh /Library/Tomcat/bin/shutdown.sh</div>
<div id="_mcePaste" style="text-align:left;padding-left:60px;">;;</div>
<div id="_mcePaste" style="text-align:left;padding-left:60px;">restart)</div>
<div id="_mcePaste" style="text-align:left;padding-left:60px;">sh /Library/Tomcat/bin/shutdown.sh</div>
<div id="_mcePaste" style="text-align:left;padding-left:60px;">sh /Library/Tomcat/bin/startup.sh</div>
<div id="_mcePaste" style="text-align:left;padding-left:60px;">;;</div>
<div id="_mcePaste" style="text-align:left;padding-left:60px;">*)</div>
<div id="_mcePaste" style="text-align:left;padding-left:60px;">echo &#8220;Usage: start|stop|restart&#8221;</div>
<div id="_mcePaste" style="text-align:left;padding-left:60px;">;;</div>
<div id="_mcePaste" style="text-align:left;padding-left:60px;">esac</div>
<div id="_mcePaste" style="text-align:left;padding-left:60px;">exit 0</div>
<ul>
<li>Put it in a file named &#8220;tomcat&#8221; and move it to /usr/bin (&#8220;chmod +x tomcat&#8221; before run it)</li>
<li>Now set the system variable &#8220;JAVA_HOME&#8221; to &#8220;/Library/Java/Home&#8221; using $ENV preference panel (Simple)</li>
<li>Now use tomcat &#8220;tomcat start&#8221; and stop it with &#8220;tomcat stop&#8221;</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/455/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/455/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/455/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/455/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/455/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/455/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/455/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/455/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/455/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/455/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/455/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/455/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/455/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/455/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=455&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2010/03/22/how-to-install-apache-tomcat-on-macosx/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2010/03/schermata-2010-03-22-a-19-02-411.png" medium="image">
			<media:title type="html">Schermata 2010-03-22 a 19.02.41</media:title>
		</media:content>
	</item>
		<item>
		<title>Stay hungry, stay foolish.</title>
		<link>http://gianvito.wordpress.com/2010/02/24/stay-hungry-stay-foolish/</link>
		<comments>http://gianvito.wordpress.com/2010/02/24/stay-hungry-stay-foolish/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 07:35:50 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/?p=449</guid>
		<description><![CDATA[I am honored to be with you today at your commencement from one of the finest universities in the world. I never graduated from college. Truth be told, this is the closest I&#8217;ve ever gotten to a college graduation. Today I want to tell you three stories from my life. That&#8217;s it. No big deal. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=449&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am honored to be with you today at your commencement from one of the finest universities in the world. I never graduated from college. Truth be told, this is the closest I&#8217;ve ever gotten to a college graduation. Today I want to tell you three stories from my life. That&#8217;s it. No big deal. Just three stories.</p>
<p>The first story is about connecting the dots.</p>
<p><span id="more-449"></span></p>
<p>I dropped out of Reed College after the first 6 months, but then stayed around as a drop-in for another 18 months or so before I really quit. So why did I drop out?</p>
<p>It started before I was born. My biological mother was a young, unwed college graduate student, and she decided to put me up for adoption. She felt very strongly that I should be adopted by college graduates, so everything was all set for me to be adopted at birth by a lawyer and his wife. Except that when I popped out they decided at the last minute that they really wanted a girl. So my parents, who were on a waiting list, got a call in the middle of the night asking: &#8220;We have an unexpected baby boy; do you want him?&#8221; They said: &#8220;Of course.&#8221; My biological mother later found out that my mother had never graduated from college and that my father had never graduated from high school. She refused to sign the final adoption papers. She only relented a few months later when my parents promised that I would someday go to college.</p>
<p>And 17 years later I did go to college. But I naively chose a college that was almost as expensive as Stanford, and all of my working-class parents&#8217; savings were being spent on my college tuition. After six months, I couldn&#8217;t see the value in it. I had no idea what I wanted to do with my life and no idea how college was going to help me figure it out. And here I was spending all of the money my parents had saved their entire life. So I decided to drop out and trust that it would all work out OK. It was pretty scary at the time, but looking back it was one of the best decisions I ever made. The minute I dropped out I could stop taking the required classes that didn&#8217;t interest me, and begin dropping in on the ones that looked interesting.</p>
<p>It wasn&#8217;t all romantic. I didn&#8217;t have a dorm room, so I slept on the floor in friends&#8217; rooms, I returned coke bottles for the 5¢ deposits to buy food with, and I would walk the 7 miles across town every Sunday night to get one good meal a week at the Hare Krishna temple. I loved it. And much of what I stumbled into by following my curiosity and intuition turned out to be priceless later on. Let me give you one example:</p>
<p>Reed College at that time offered perhaps the best calligraphy instruction in the country. Throughout the campus every poster, every label on every drawer, was beautifully hand calligraphed. Because I had dropped out and didn&#8217;t have to take the normal classes, I decided to take a calligraphy class to learn how to do this. I learned about serif and san serif typefaces, about varying the amount of space between different letter combinations, about what makes great typography great. It was beautiful, historical, artistically subtle in a way that science can&#8217;t capture, and I found it fascinating.</p>
<p>None of this had even a hope of any practical application in my life. But ten years later, when we were designing the first Macintosh computer, it all came back to me. And we designed it all into the Mac. It was the first computer with beautiful typography. If I had never dropped in on that single course in college, the Mac would have never had multiple typefaces or proportionally spaced fonts. And since Windows just copied the Mac, its likely that no personal computer would have them. If I had never dropped out, I would have never dropped in on this calligraphy class, and personal computers might not have the wonderful typography that they do. Of course it was impossible to connect the dots looking forward when I was in college. But it was very, very clear looking backwards ten years later.</p>
<p>Again, you can&#8217;t connect the dots looking forward; you can only connect them looking backwards. So you have to trust that the dots will somehow connect in your future. You have to trust in something — your gut, destiny, life, karma, whatever. This approach has never let me down, and it has made all the difference in my life.</p>
<p>My second story is about love and loss.</p>
<p>I was lucky — I found what I loved to do early in life. Woz and I started Apple in my parents garage when I was 20. We worked hard, and in 10 years Apple had grown from just the two of us in a garage into a $2 billion company with over 4000 employees. We had just released our finest creation — the Macintosh — a year earlier, and I had just turned 30. And then I got fired. How can you get fired from a company you started? Well, as Apple grew we hired someone who I thought was very talented to run the company with me, and for the first year or so things went well. But then our visions of the future began to diverge and eventually we had a falling out. When we did, our Board of Directors sided with him. So at 30 I was out. And very publicly out. What had been the focus of my entire adult life was gone, and it was devastating.</p>
<p>I really didn&#8217;t know what to do for a few months. I felt that I had let the previous generation of entrepreneurs down &#8211; that I had dropped the baton as it was being passed to me. I met with David Packard and Bob Noyce and tried to apologize for screwing up so badly. I was a very public failure, and I even thought about running away from the valley. But something slowly began to dawn on me — I still loved what I did. The turn of events at Apple had not changed that one bit. I had been rejected, but I was still in love. And so I decided to start over.</p>
<p>I didn&#8217;t see it then, but it turned out that getting fired from Apple was the best thing that could have ever happened to me. The heaviness of being successful was replaced by the lightness of being a beginner again, less sure about everything. It freed me to enter one of the most creative periods of my life.</p>
<p>During the next five years, I started a company named NeXT, another company named Pixar, and fell in love with an amazing woman who would become my wife. Pixar went on to create the worlds first computer animated feature film, <em>Toy Story</em>, and is now the most successful animation studio in the world. In a remarkable turn of events, Apple bought NeXT, I returned to Apple, and the technology we developed at NeXT is at the heart of Apple&#8217;s current renaissance. And Laurene and I have a wonderful family together.</p>
<p>I&#8217;m pretty sure none of this would have happened if I hadn&#8217;t been fired from Apple. It was awful tasting medicine, but I guess the patient needed it. Sometimes life hits you in the head with a brick. Don&#8217;t lose faith. I&#8217;m convinced that the only thing that kept me going was that I loved what I did. You&#8217;ve got to find what you love. And that is as true for your work as it is for your lovers. Your work is going to fill a large part of your life, and the only way to be truly satisfied is to do what you believe is great work. And the only way to do great work is to love what you do. If you haven&#8217;t found it yet, keep looking. Don&#8217;t settle. As with all matters of the heart, you&#8217;ll know when you find it. And, like any great relationship, it just gets better and better as the years roll on. So keep looking until you find it. Don&#8217;t settle.</p>
<p>My third story is about death.</p>
<p>When I was 17, I read a quote that went something like: &#8220;If you live each day as if it was your last, someday you&#8217;ll most certainly be right.&#8221; It made an impression on me, and since then, for the past 33 years, I have looked in the mirror every morning and asked myself: &#8220;If today were the last day of my life, would I want to do what I am about to do today?&#8221; And whenever the answer has been &#8220;No&#8221; for too many days in a row, I know I need to change something.</p>
<p>Remembering that I&#8217;ll be dead soon is the most important tool I&#8217;ve ever encountered to help me make the big choices in life. Because almost everything — all external expectations, all pride, all fear of embarrassment or failure &#8211; these things just fall away in the face of death, leaving only what is truly important. Remembering that you are going to die is the best way I know to avoid the trap of thinking you have something to lose. You are already naked. There is no reason not to follow your heart.</p>
<p>About a year ago I was diagnosed with cancer. I had a scan at 7:30 in the morning, and it clearly showed a tumor on my pancreas. I didn&#8217;t even know what a pancreas was. The doctors told me this was almost certainly a type of cancer that is incurable, and that I should expect to live no longer than three to six months. My doctor advised me to go home and get my affairs in order, which is doctor&#8217;s code for prepare to die. It means to try to tell your kids everything you thought you&#8217;d have the next 10 years to tell them in just a few months. It means to make sure everything is buttoned up so that it will be as easy as possible for your family. It means to say your goodbyes.</p>
<p>I lived with that diagnosis all day. Later that evening I had a biopsy, where they stuck an endoscope down my throat, through my stomach and into my intestines, put a needle into my pancreas and got a few cells from the tumor. I was sedated, but my wife, who was there, told me that when they viewed the cells under a microscope the doctors started crying because it turned out to be a very rare form of pancreatic cancer that is curable with surgery. I had the surgery and I&#8217;m fine now.</p>
<p>This was the closest I&#8217;ve been to facing death, and I hope its the closest I get for a few more decades. Having lived through it, I can now say this to you with a bit more certainty than when death was a useful but purely intellectual concept:</p>
<p>No one wants to die. Even people who want to go to heaven don&#8217;t want to die to get there. And yet death is the destination we all share. No one has ever escaped it. And that is as it should be, because Death is very likely the single best invention of Life. It is Life&#8217;s change agent. It clears out the old to make way for the new. Right now the new is you, but someday not too long from now, you will gradually become the old and be cleared away. Sorry to be so dramatic, but it is quite true.</p>
<p>Your time is limited, so don&#8217;t waste it living someone else&#8217;s life. Don&#8217;t be trapped by dogma — which is living with the results of other people&#8217;s thinking. Don&#8217;t let the noise of others&#8217; opinions drown out your own inner voice. And most important, have the courage to follow your heart and intuition. They somehow already know what you truly want to become. Everything else is secondary.</p>
<p>When I was young, there was an amazing publication called <em>The Whole Earth Catalog</em>, which was one of the bibles of my generation. It was created by a fellow named Stewart Brand not far from here in Menlo Park, and he brought it to life with his poetic touch. This was in the late 1960&#8242;s, before personal computers and desktop publishing, so it was all made with typewriters, scissors, and polaroid cameras. It was sort of like Google in paperback form, 35 years before Google came along: it was idealistic, and overflowing with neat tools and great notions.</p>
<p>Stewart and his team put out several issues of <em>The Whole Earth Catalog</em>, and then when it had run its course, they put out a final issue. It was the mid-1970s, and I was your age. On the back cover of their final issue was a photograph of an early morning country road, the kind you might find yourself hitchhiking on if you were so adventurous. Beneath it were the words: &#8220;Stay Hungry. Stay Foolish.&#8221; It was their farewell message as they signed off. Stay Hungry. Stay Foolish. And I have always wished that for myself. And now, as you graduate to begin anew, I wish that for you.</p>
<p>Stay Hungry. Stay Foolish.</p>
<p>Thank you all very much.</p>
<p style="text-align:right;">Steve Jobs</p>
<p style="text-align:left;">source: <a href="http://news.stanford.edu/news/2005/june15/jobs-061505.html">http://news.stanford.edu/news/2005/june15/jobs-061505.html</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/449/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/449/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/449/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/449/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/449/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/449/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/449/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=449&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2010/02/24/stay-hungry-stay-foolish/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>
	</item>
		<item>
		<title>No Fglrx, No RadeonHd&#8230; Simply Ati-Dri</title>
		<link>http://gianvito.wordpress.com/2010/02/21/no-fglrx-no-radeonhd-simply-ati-dri/</link>
		<comments>http://gianvito.wordpress.com/2010/02/21/no-fglrx-no-radeonhd-simply-ati-dri/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 22:29:52 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[archlinux]]></category>
		<category><![CDATA[drivers]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ati]]></category>
		<category><![CDATA[ati-dri]]></category>
		<category><![CDATA[catalyst]]></category>
		<category><![CDATA[compiz]]></category>
		<category><![CDATA[radeon]]></category>
		<category><![CDATA[radeonhd]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/?p=439</guid>
		<description><![CDATA[I&#8217;ve tried all of Linux ati driver alternatives&#8230; And I&#8217;ve never been so excited about performances and functionalities. Especially with the Fglrx ones. One of the motivations that push me to find an alternative is with catalyst drivers (from ATI) you can&#8217;t change user without logging out from your account. I was looking for something [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=439&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><a href="http://gianvito.files.wordpress.com/2010/02/screen2.png"></a><a href="http://gianvito.files.wordpress.com/2010/02/screen1.jpeg"></a></p>
<div><span style="color:#0000ee;"><span style="color:#000000;"></p>
<p style="text-align:center;"><a href="http://gianvito.files.wordpress.com/2010/02/screen1.jpeg"><img class="aligncenter size-medium wp-image-445" style="display:block;margin-left:auto;margin-right:auto;border:0 initial initial;" title="screen" src="http://gianvito.files.wordpress.com/2010/02/screen1.jpeg?w=300&#038;h=187" alt="" width="300" height="187" /></a></p>
<p><em>I&#8217;ve tried all of Linux ati driver alternatives&#8230; And I&#8217;ve never been so excited about performances and functionalities.</em></p>
<p><em>Especially with the Fglrx ones. One of the motivations that push me to find an alternative is with catalyst drivers (from ATI) you can&#8217;t change user without logging out from your account.</em></p>
<p><em>I was looking for something that was stable and in the same time allows me to use compiz.</em></p>
<p><em>So I&#8217;ve tried RadeonHd drivers&#8230; in every version&#8230; From the stable one to the git one.</em></p>
<p><em>Putting &#8220;radeonhd&#8221; in the xorg.conf after installing them you simply get a grey window and X restarts.</em></p>
<p><em>My start point is this:</em></p>
<p><em>Processor: Q8200 clocked to 2.92 Ghz</em></p>
<p><em>Video Card: Gainward HD4850 1Gb DDR3</em></p>
<p><em>So this is the problem&#8230; And this is the solution&#8230;</em></p>
<p style="text-align:center;"><span id="more-439"></span><img style="border:0 initial initial;" title="screen2" src="http://gianvito.files.wordpress.com/2010/02/screen2.png?w=490&#038;h=124" alt="" width="490" height="124" /></p>
<p style="text-align:center;"><em>And then replace your previous driver in the xorg.conf with</em></p>
<div id="_mcePaste" style="text-align:center;"><strong>Driver      &#8221;radeon&#8221;</strong></div>
<div style="text-align:center;"><em>So in the end i also put in this post the other options I&#8217;ve applied to my xorg.con</em>f</div>
<div style="text-align:center;">
<div style="text-align:left;"><span style="white-space:pre;"> </span><strong>Option &#8220;AccelMethod&#8221; &#8220;exa&#8221; </strong></div>
<div style="text-align:left;"><span style="white-space:pre;"><strong> </strong></span><strong>Option &#8220;DRI&#8221; &#8220;on&#8221; </strong></div>
<div style="text-align:left;"><span style="white-space:pre;"><strong> </strong></span><strong>Option &#8220;ColorTiling&#8221; &#8220;on&#8221;</strong></div>
<div style="text-align:left;"><span style="white-space:pre;"><strong> </strong></span><strong>Option &#8220;EnablePageFlip&#8221; &#8220;on&#8221; </strong></div>
<div style="text-align:left;"><span style="white-space:pre;"><strong> </strong></span><strong>Option &#8220;EXAVSync&#8221; &#8220;yes&#8221;</strong></div>
<div style="text-align:left;"><span style="white-space:pre;"><strong> </strong></span><strong>Option &#8220;RenderAccel&#8221; &#8220;on&#8221;</strong></div>
<div style="text-align:left;"><span style="white-space:pre;"><strong> </strong></span><strong>Option &#8220;XAANoOffscreenPixmaps&#8221; &#8220;true&#8221;</strong></div>
</div>
<div style="text-align:left;"><strong><br />
</strong></div>
<div style="text-align:left;">
<div style="text-align:left;"><strong>Section &#8220;DRI&#8221;</strong></div>
<div style="text-align:left;"><strong> Group        &#8221;video&#8221;</strong></div>
<div style="text-align:left;"><strong> Mode         0666</strong></div>
<div style="text-align:left;"><strong>EndSection</strong></div>
<div style="text-align:left;"><strong><br />
</strong></div>
<div style="text-align:left;"><strong>Section &#8220;ServerFlags&#8221;</strong></div>
<div style="text-align:left;"><span style="white-space:pre;"><strong> </strong></span><strong>Option &#8220;AIGLX&#8221; &#8220;true&#8221;</strong></div>
<div style="text-align:left;"><strong>EndSection</strong></div>
<div style="text-align:left;"><strong><br />
</strong></div>
<div style="text-align:left;"><strong>Section &#8220;Extensions&#8221;</strong></div>
<div style="text-align:left;"><strong> Option &#8220;Composite&#8221; &#8220;Enable&#8221;</strong></div>
<div style="text-align:left;"><strong>EndSection</strong></div>
</div>
<div style="text-align:center;"><em>And these are the modules</em></div>
<div style="text-align:left;">
<div style="text-align:left;"><strong>Section &#8220;Module&#8221;</strong></div>
<div style="text-align:left;"><span style="white-space:pre;"><strong> </strong></span><strong>Load  &#8221;dri&#8221;</strong></div>
<div style="text-align:left;"><span style="white-space:pre;"><strong> </strong></span><strong>Load  &#8221;dbe&#8221;</strong></div>
<div style="text-align:left;"><span style="white-space:pre;"><strong> </strong></span><strong>Load  &#8221;drm&#8221;</strong></div>
<div style="text-align:left;"><span style="white-space:pre;"><strong> </strong></span><strong>Load  &#8221;extmod&#8221;</strong></div>
<div style="text-align:left;"><span style="white-space:pre;"><strong> </strong></span><strong>Load  &#8221;dri2&#8243;</strong></div>
<div style="text-align:left;"><span style="white-space:pre;"><strong> </strong></span><strong>Load  &#8221;glx&#8221;</strong></div>
<div style="text-align:left;"><span style="white-space:pre;"><strong> </strong></span><strong>Load  &#8221;xtrap&#8221;</strong></div>
<div style="text-align:left;"><span style="white-space:pre;"><strong> </strong></span><strong>Load  &#8221;freetype&#8221;</strong></div>
<div style="text-align:left;"><strong>EndSection</strong></div>
</div>
<p></span></span></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/439/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/439/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/439/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/439/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/439/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/439/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/439/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/439/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/439/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/439/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/439/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/439/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/439/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/439/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=439&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2010/02/21/no-fglrx-no-radeonhd-simply-ati-dri/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2010/02/screen1.jpeg?w=300" medium="image">
			<media:title type="html">screen</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2010/02/screen2.png" medium="image">
			<media:title type="html">screen2</media:title>
		</media:content>
	</item>
		<item>
		<title>Engineering Windows 7 &#8211; Microsoft Blog Source</title>
		<link>http://gianvito.wordpress.com/2009/05/10/engineering-windows-7-microsoft-blog-source/</link>
		<comments>http://gianvito.wordpress.com/2009/05/10/engineering-windows-7-microsoft-blog-source/#comments</comments>
		<pubDate>Sun, 10 May 2009 15:05:49 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[corei7]]></category>
		<category><![CDATA[drivers]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[geforce]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[nvidia]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2009/05/10/engineering-windows-7-microsoft-blog-source/</guid>
		<description><![CDATA[&#160; Vista was (and will be for a few time) a forward step about security, but we’ve to say it was a back step about speed related to Windows Xp. Microsoft with the new 7 will search for a new desktop experience providing better speeds for the main ui increasing productivity in every task. Gaming [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=438&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image_thumb_3" border="0" alt="image_thumb_3" src="http://gianvito.files.wordpress.com/2009/05/image_thumb_3.png?w=240&#038;h=84" width="240" height="84" />&#160;<img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="image_thumb_4" border="0" alt="image_thumb_4" src="http://gianvito.files.wordpress.com/2009/05/image_thumb_4.png?w=240&#038;h=84" width="240" height="84" /> </p>
<p>Vista was (and will be for a few time) a forward step about security, but we’ve to say it was a back step about speed related to Windows Xp.</p>
<p>Microsoft with the new 7 will search for a new desktop experience providing better speeds for the main ui increasing productivity in every task.</p>
<p>Gaming first of all! :)…</p>
<p> <span id="more-438"></span>
<p>Visit the link below to know more about new 7’s features..</p>
<p>Link:</p>
<ul>
<li><a href="http://blogs.msdn.com/e7/archive/2009/04/25/engineering-windows-7-for-graphics-performance.aspx">Microsoft Blog Source</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/438/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/438/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/438/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/438/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/438/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/438/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/438/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/438/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/438/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/438/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/438/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/438/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/438/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/438/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=438&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2009/05/10/engineering-windows-7-microsoft-blog-source/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2009/05/image_thumb_3.png" medium="image">
			<media:title type="html">image_thumb_3</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2009/05/image_thumb_4.png" medium="image">
			<media:title type="html">image_thumb_4</media:title>
		</media:content>
	</item>
		<item>
		<title>Even more standard with another collaboration&#8230; This time with Nintendo&#8230;</title>
		<link>http://gianvito.wordpress.com/2009/03/19/even-more-standard-with-another-collaboration-this-time-with-nintendo/</link>
		<comments>http://gianvito.wordpress.com/2009/03/19/even-more-standard-with-another-collaboration-this-time-with-nintendo/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 17:45:36 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[America]]></category>
		<category><![CDATA[drivers]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[geforce]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[nvidia]]></category>
		<category><![CDATA[physix]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2009/03/19/even-more-standard-with-another-collaboration-this-time-with-nintendo/</guid>
		<description><![CDATA[Link: NVIDIA Becomes A Nintendo WorldWide Third Party Tools Provider With PhysX SDK For Wii<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=435&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" height="44" alt="nvidia_logo" src="http://gianvito.files.wordpress.com/2009/03/nvidia-logo.png?w=180&#038;h=44" width="180" border="0"> </p>
<p>Link:</p>
<ul>
<li><a href="http://www.nvidia.com/object/io_1237459794715.html">NVIDIA Becomes A Nintendo WorldWide Third Party Tools Provider With PhysX SDK For Wii</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/435/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/435/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/435/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/435/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/435/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/435/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/435/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/435/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=435&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2009/03/19/even-more-standard-with-another-collaboration-this-time-with-nintendo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2009/03/nvidia-logo.png" medium="image">
			<media:title type="html">nvidia_logo</media:title>
		</media:content>
	</item>
		<item>
		<title>Even more complicated for Ati&#8230;</title>
		<link>http://gianvito.wordpress.com/2009/03/17/even-more-complicated-for-ati/</link>
		<comments>http://gianvito.wordpress.com/2009/03/17/even-more-complicated-for-ati/#comments</comments>
		<pubDate>Tue, 17 Mar 2009 16:07:21 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[America]]></category>
		<category><![CDATA[drivers]]></category>
		<category><![CDATA[folding]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[geforce]]></category>
		<category><![CDATA[nvidia]]></category>
		<category><![CDATA[physix]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/?p=425</guid>
		<description><![CDATA[Reading NVIDIA Provides Physics Technology For PLAYSTATION®3 I&#8217;ve just thinked about ported PC Games from PS3&#8230; And ATI Users&#8230; like me (for now :) )&#8230; Is it just the begin of the end for Workstation Ati Graphic Cards? Link: http://www.nvidia.com/object/io_1237287245570.html<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=425&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><img class="aligncenter size-full wp-image-426" title="physx" src="http://gianvito.files.wordpress.com/2009/03/physx.jpg?w=600" alt="physx"   /></p>
<p>Reading NVIDIA Provides Physics Technology For PLAYSTATION®3 I&#8217;ve just thinked about ported PC Games from PS3&#8230; And ATI Users&#8230; like me (for now :) )&#8230;</p>
<p>Is it just the begin of the end for Workstation Ati Graphic Cards?</p>
<p>Link:</p>
<ul>
<li><a href="http://www.nvidia.com/object/io_1237287245570.html">http://www.nvidia.com/object/io_1237287245570.html</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/425/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/425/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/425/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=425&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2009/03/17/even-more-complicated-for-ati/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2009/03/physx.jpg" medium="image">
			<media:title type="html">physx</media:title>
		</media:content>
	</item>
		<item>
		<title>Finally Wired magazine in Italian</title>
		<link>http://gianvito.wordpress.com/2009/02/25/finally-wired-magazine-in-italian/</link>
		<comments>http://gianvito.wordpress.com/2009/02/25/finally-wired-magazine-in-italian/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 18:57:54 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[America]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2009/02/25/finally-wired-magazine-in-italian/</guid>
		<description><![CDATA[One of the most important magazine about technology and everything around is arrived in Italy… and it comes with an associated site. Links: Wired.it Wired.it News<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=424&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img style="border-bottom:0;border-left:0;display:block;float:none;margin-left:auto;border-top:0;margin-right:auto;border-right:0;" title="wired.it" border="0" alt="wired.it" src="http://gianvito.files.wordpress.com/2009/02/wiredit.jpg?w=240&#038;h=51" width="240" height="51" /> </p>
<p>One of the most important magazine about technology and everything around is arrived in Italy… and it comes with an associated site.</p>
<p>Links:</p>
<ul>
<li><a href="http://www.wired.it">Wired.it</a></li>
<li><a href="http://www.wired.it/news.aspx">Wired.it News</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/424/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/424/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/424/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/424/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/424/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/424/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/424/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/424/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=424&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2009/02/25/finally-wired-magazine-in-italian/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2009/02/wiredit.jpg" medium="image">
			<media:title type="html">wired.it</media:title>
		</media:content>
	</item>
		<item>
		<title>San Francisco City Hall gets its own electric vehicle charging stations &#8211; by Engadget</title>
		<link>http://gianvito.wordpress.com/2009/02/20/san-francisco-city-hall-gets-its-own-electric-vehicle-charging-stations-by-engadget/</link>
		<comments>http://gianvito.wordpress.com/2009/02/20/san-francisco-city-hall-gets-its-own-electric-vehicle-charging-stations-by-engadget/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 23:13:48 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[America]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2009/02/20/san-francisco-city-hall-gets-its-own-electric-vehicle-charging-stations-by-engadget/</guid>
		<description><![CDATA[America is another thing. Link: http://www.engadget.com/2009/02/19/san-francisco-city-hall-gets-its-own-electric-vehicle-charging-s/&#160;&#160;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=422&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>America is another thing.</p>
<p align="center"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="sf-smartlet-02-19-09" border="0" alt="sf-smartlet-02-19-09" src="http://gianvito.files.wordpress.com/2009/02/sfsmartlet021909.jpg?w=240&#038;h=180" width="240" height="180" /> </p>
<p>Link:</p>
<ul>
<li><a title="http://www.engadget.com/2009/02/19/san-francisco-city-hall-gets-its-own-electric-vehicle-charging-s/" href="http://www.engadget.com/2009/02/19/san-francisco-city-hall-gets-its-own-electric-vehicle-charging-s/">http://www.engadget.com/2009/02/19/san-francisco-city-hall-gets-its-own-electric-vehicle-charging-s/</a>&#160;&#160; </li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/422/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/422/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/422/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/422/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/422/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/422/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/422/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/422/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/422/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/422/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/422/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/422/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/422/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/422/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=422&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2009/02/20/san-francisco-city-hall-gets-its-own-electric-vehicle-charging-stations-by-engadget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2009/02/sfsmartlet021909.jpg" medium="image">
			<media:title type="html">sf-smartlet-02-19-09</media:title>
		</media:content>
	</item>
		<item>
		<title>Wall-e – A must see movie</title>
		<link>http://gianvito.wordpress.com/2009/02/19/wall-e-a-must-see-movie/</link>
		<comments>http://gianvito.wordpress.com/2009/02/19/wall-e-a-must-see-movie/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 22:59:12 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[geforce]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[movie]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[nvidia]]></category>
		<category><![CDATA[physix]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2009/02/19/wall-e-a-must-see-movie/</guid>
		<description><![CDATA[In this movie are described things can really happen in the future… the aims of the machines vs the emotions of the humans Link Official Site (Italiano) Official Site (English)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=419&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In this movie are described things can really happen in the future… the aims of the machines vs the emotions of the humans</p>
<p align="center"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="walle" src="http://gianvito.files.wordpress.com/2009/02/walle-thumb.jpg?w=240&#038;h=160" border="0" alt="walle" width="240" height="160" /></p>
<p>Link</p>
<ul>
<li><a title="http://www.disney.it/Film/Wall-E/" href="http://www.disney.it/Film/Wall-E/">Official Site (Italiano)</a></li>
<li><a href="http://disney.go.com/disneypictures/wall-e/">Official Site (English)</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/419/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/419/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/419/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/419/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/419/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/419/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/419/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/419/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=419&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2009/02/19/wall-e-a-must-see-movie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2009/02/walle-thumb.jpg" medium="image">
			<media:title type="html">walle</media:title>
		</media:content>
	</item>
		<item>
		<title>What Happens When Satellites Fall &#8211; Space.com</title>
		<link>http://gianvito.wordpress.com/2009/01/24/what-happens-when-satellites-fall-spacecom/</link>
		<comments>http://gianvito.wordpress.com/2009/01/24/what-happens-when-satellites-fall-spacecom/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 23:46:13 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[space]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/?p=405</guid>
		<description><![CDATA[&#8220;The recent trials of an out-of-control communications satellite and a defunct, leaky Soviet-era spacecraft toting its own nuclear reactor call up the question: What exactly happens when satellites die in space?&#8221; Link: http://www.space.com/businesstechnology/090123-falling-satellites.html<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=405&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<address><span><span><span style="font-family:arial;font-size:x-small;"><span style="font-family:arial;"><span style="font-size:10pt;font-family:Arial;">&#8220;The recent trials of an out-of-control communications satellite and a defunct, leaky Soviet-era spacecraft toting its own nuclear reactor call up the question: What exactly happens when satellites die in space?&#8221;</span></span></span></span></span></address>
<p style="text-align:left;"><span><span><span style="font-family:arial;font-size:x-small;"><span style="font-family:arial;"><span style="font-size:10pt;font-family:Arial;"><img class="aligncenter size-full wp-image-406" title="090123-satellites-fall-01" src="http://gianvito.files.wordpress.com/2009/01/090123-satellites-fall-01.jpg?w=600" alt="090123-satellites-fall-01"   />Link:</span></span></span></span></span></p>
<ul>
<li>
<pre><span><span><span style="font-family:arial;font-size:x-small;"><span style="font-family:arial;"><span style="font-size:10pt;font-family:Arial;"><a href="http://www.space.com/businesstechnology/090123-falling-satellites.html">http://www.space.com/businesstechnology/090123-falling-satellites.html</a>
</span></span></span></span></span></pre>
</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/405/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/405/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/405/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=405&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2009/01/24/what-happens-when-satellites-fall-spacecom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2009/01/090123-satellites-fall-01.jpg" medium="image">
			<media:title type="html">090123-satellites-fall-01</media:title>
		</media:content>
	</item>
		<item>
		<title>NASA Sees the &#8216;Dark Side&#8217; of the Sun &#8211; Space@Nasa</title>
		<link>http://gianvito.wordpress.com/2009/01/24/nasa-sees-the-dark-side-of-the-sun-spacenasa/</link>
		<comments>http://gianvito.wordpress.com/2009/01/24/nasa-sees-the-dark-side-of-the-sun-spacenasa/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 23:43:21 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[folding]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[wallpapers]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/?p=402</guid>
		<description><![CDATA[&#8220;Today, NASA researchers announced an event that will transform our view of the Sun and, in the process, super-charge the field of solar physics for many years to come. &#8220; Link: http://science.nasa.gov/headlines/y2009/23jan_darkside.htm<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=402&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<address><span style="color:#000000;">&#8220;Today, NASA researchers announced an event                      that will transform our view of the Sun and, in the process,                      super-charge the field of solar physics for many years to                      come. &#8220;</span></address>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-403" title="296975main_stereoconcept_hi_med" src="http://gianvito.files.wordpress.com/2009/01/296975main_stereoconcept_hi_med.jpg?w=600" alt="296975main_stereoconcept_hi_med"   /></p>
<p style="text-align:left;">Link:</p>
<ul>
<li>
<pre><a href="http://science.nasa.gov/headlines/y2009/23jan_darkside.htm">http://science.nasa.gov/headlines/y2009/23jan_darkside.htm</a></pre>
</li>
</ul>
<p><img src="/Users/Gianvito/AppData/Local/Temp/moz-screenshot.jpg" alt="" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/402/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=402&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2009/01/24/nasa-sees-the-dark-side-of-the-sun-spacenasa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2009/01/296975main_stereoconcept_hi_med.jpg" medium="image">
			<media:title type="html">296975main_stereoconcept_hi_med</media:title>
		</media:content>
	</item>
		<item>
		<title>The Red Planet is Not a Dead Planet – Space@Nasa</title>
		<link>http://gianvito.wordpress.com/2009/01/16/the-red-planet-is-not-a-dead-planet-spacenasa/</link>
		<comments>http://gianvito.wordpress.com/2009/01/16/the-red-planet-is-not-a-dead-planet-spacenasa/#comments</comments>
		<pubDate>Fri, 16 Jan 2009 01:39:05 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2009/01/16/the-red-planet-is-not-a-dead-planet-spacenasa/</guid>
		<description><![CDATA[Link: http://science.nasa.gov/headlines/y2009/15jan_marsmethane.htm<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=394&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center"><img style="border-right:0;border-top:0;display:inline;border-left:0;border-bottom:0;" title="303609main_satreya_vid_01_1280_03_med" src="http://gianvito.files.wordpress.com/2009/01/303609main-satreya-vid-01-1280-03-med-thumb.jpg?w=240&#038;h=212" border="0" alt="303609main_satreya_vid_01_1280_03_med" width="240" height="212" /></p>
<p align="left">Link:</p>
<ul>
<li>
<div><a href="http://science.nasa.gov/headlines/y2009/15jan_marsmethane.htm">http://science.nasa.gov/headlines/y2009/15jan_marsmethane.htm</a></div>
</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/394/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/394/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/394/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/394/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/394/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/394/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/394/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/394/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/394/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/394/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/394/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/394/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/394/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/394/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=394&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2009/01/16/the-red-planet-is-not-a-dead-planet-spacenasa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2009/01/303609main-satreya-vid-01-1280-03-med-thumb.jpg" medium="image">
			<media:title type="html">303609main_satreya_vid_01_1280_03_med</media:title>
		</media:content>
	</item>
		<item>
		<title>Mathematica Users Get 100x Performance Boost From NVIDIA CUDA</title>
		<link>http://gianvito.wordpress.com/2008/11/20/mathematica-users-get-100x-performance-boost-from-nvidia-cuda/</link>
		<comments>http://gianvito.wordpress.com/2008/11/20/mathematica-users-get-100x-performance-boost-from-nvidia-cuda/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 23:25:21 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[folding]]></category>
		<category><![CDATA[geforce]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[nvidia]]></category>
		<category><![CDATA[physix]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2008/11/20/mathematica-users-get-100x-performance-boost-from-nvidia-cuda/</guid>
		<description><![CDATA[I&#8217;m using it for an exam&#8230; and i&#8217;ve to say it&#8217;s very powerful&#8230; with a few commands you can do very complex calculations&#8230; And when there is hard work to do here Nvidia comes&#8230; with his CUDA&#8230; Mathematica will never be the same :D (it seems a spot for NVIDIA!) Source: http://www.nvidia.com/object/io_1227010734073.html<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=391&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center"><a href="http://gianvito.files.wordpress.com/2008/11/20-11-2008-024.jpg"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" height="105" alt="20-11-2008 0.24" src="http://gianvito.files.wordpress.com/2008/11/20-11-2008-024-thumb.jpg?w=566&#038;h=105" width="566" border="0"></a> </p>
<p>I&#8217;m using it for an exam&#8230; and i&#8217;ve to say it&#8217;s very powerful&#8230; with a few commands you can do very complex calculations&#8230; And when there is hard work to do here Nvidia comes&#8230; with his CUDA&#8230; Mathematica will never be the same :D (it seems a spot for NVIDIA!)</p>
<p>Source:</p>
<ul>
<li><a title="http://www.nvidia.com/object/io_1227010734073.html" href="http://www.nvidia.com/object/io_1227010734073.html">http://www.nvidia.com/object/io_1227010734073.html</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/391/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/391/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/391/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/391/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/391/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/391/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/391/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/391/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=391&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/11/20/mathematica-users-get-100x-performance-boost-from-nvidia-cuda/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/11/20-11-2008-024-thumb.jpg" medium="image">
			<media:title type="html">20-11-2008 0.24</media:title>
		</media:content>
	</item>
		<item>
		<title>Hubble Directly Observes a Planet Orbiting Another Star &#8211; Space@NASA</title>
		<link>http://gianvito.wordpress.com/2008/11/14/hubble-directly-observes-a-planet-orbiting-another-star-spacenasa/</link>
		<comments>http://gianvito.wordpress.com/2008/11/14/hubble-directly-observes-a-planet-orbiting-another-star-spacenasa/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 21:53:46 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2008/11/14/hubble-directly-observes-a-planet-orbiting-another-star-spacenasa/</guid>
		<description><![CDATA[&#8220;The planet, called Fomalhaut b, orbits the 200-million-year-old star every 872 years.&#8221; Not a planet for humans for sure (hoping a smaller and hotter planet near the central sun will be a life source!)&#8230; but it&#8217;s a great discover&#8230; Source: http://science.nasa.gov/headlines/y2008/13nov_fomalhaut.htm<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=386&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center"><strong>&#8220;The planet, called Fomalhaut b, orbits the 200-million-year-old star every 872 years.&#8221;</strong></p>
<p align="center"><a href="http://gianvito.files.wordpress.com/2008/11/290280main-fomalhaut-concept-hi-strip.jpg"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" height="155" alt="290280main_fomalhaut_concept_HI_strip" src="http://gianvito.files.wordpress.com/2008/11/290280main-fomalhaut-concept-hi-strip-thumb.jpg?w=240&#038;h=155" width="240" border="0"></a> </p>
<p align="left">Not a planet for humans for sure (hoping a smaller and hotter planet near the central sun will be a life source!)&#8230; but it&#8217;s a great discover&#8230; </p>
<p align="left"><em>Source:</em></p>
<ul>
<li>
<div align="left"><a href="http://science.nasa.gov/headlines/y2008/13nov_fomalhaut.htm" target="_blank">http://science.nasa.gov/headlines/y2008/13nov_fomalhaut.htm</a></div>
</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/386/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/386/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/386/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/386/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/386/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/386/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/386/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/386/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/386/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/386/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/386/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/386/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/386/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/386/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=386&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/11/14/hubble-directly-observes-a-planet-orbiting-another-star-spacenasa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/11/290280main-fomalhaut-concept-hi-strip-thumb.jpg" medium="image">
			<media:title type="html">290280main_fomalhaut_concept_HI_strip</media:title>
		</media:content>
	</item>
		<item>
		<title>And Cray is the most powerful SuperComputer in the World! (Again)</title>
		<link>http://gianvito.wordpress.com/2008/11/12/and-cray-is-the-most-powerful-supercomputer-in-the-world-again/</link>
		<comments>http://gianvito.wordpress.com/2008/11/12/and-cray-is-the-most-powerful-supercomputer-in-the-world-again/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 17:40:29 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[folding]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2008/11/12/and-cray-is-the-most-powerful-supercomputer-in-the-world-again/</guid>
		<description><![CDATA[Source: http://www.engadget.com/2008/11/12/cray-supercomputer-is-worlds-fastest-that-were-allowed-to-kno/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=382&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center"><strong><a href="http://gianvito.files.wordpress.com/2008/11/cray-jaguar-600.jpg"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" src="http://gianvito.files.wordpress.com/2008/11/cray-jaguar-600-thumb.jpg?w=604&#038;h=189" border="0" alt="cray-jaguar-600" width="604" height="189" /></a> </strong></p>
<p><strong>Source:</strong></p>
<ul>
<li><a title="http://www.engadget.com/2008/11/12/cray-supercomputer-is-worlds-fastest-that-were-allowed-to-kno/" href="http://www.engadget.com/2008/11/12/cray-supercomputer-is-worlds-fastest-that-were-allowed-to-kno/">http://www.engadget.com/2008/11/12/cray-supercomputer-is-worlds-fastest-that-were-allowed-to-kno/</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/382/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/382/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/382/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/382/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/382/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/382/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/382/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/382/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/382/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/382/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/382/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/382/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/382/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/382/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=382&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/11/12/and-cray-is-the-most-powerful-supercomputer-in-the-world-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/11/cray-jaguar-600-thumb.jpg" medium="image">
			<media:title type="html">cray-jaguar-600</media:title>
		</media:content>
	</item>
		<item>
		<title>Mercury as never seen before &#8211; By Science@NASA</title>
		<link>http://gianvito.wordpress.com/2008/10/08/mercury-as-never-seen-before-by-sciencenasa/</link>
		<comments>http://gianvito.wordpress.com/2008/10/08/mercury-as-never-seen-before-by-sciencenasa/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 06:22:31 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2008/10/08/mercury-as-never-seen-before-by-sciencenasa/</guid>
		<description><![CDATA[&#34;We are now on the correct trajectory for eventual insertion into orbit around Mercury, and all of our instruments returned data as planned.&#34; by MESSENGER Principal Investigator Sean Solomon Link: http://science.nasa.gov/headlines/y2008/07oct_firstresults.htm<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=379&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[</p>
<p><em>&quot;We are now on the correct trajectory for eventual insertion into orbit around Mercury, and all of our instruments returned data as planned.&quot;</em></p>
<p align="right"><em>by MESSENGER Principal Investigator Sean Solomon</em></p>
<p><a href="http://gianvito.files.wordpress.com/2008/10/rays-strip.jpg"><img title="rays_strip" style="border-right:0;border-top:0;display:block;float:none;margin-left:auto;border-left:0;margin-right:auto;border-bottom:0;" height="228" alt="rays_strip" src="http://gianvito.files.wordpress.com/2008/10/rays-strip-thumb.jpg?w=240&#038;h=228" width="240" border="0" /></a> </p>
<p>Link:</p>
<ul>
<li><a title="http://science.nasa.gov/headlines/y2008/07oct_firstresults.htm" href="http://science.nasa.gov/headlines/y2008/07oct_firstresults.htm">http://science.nasa.gov/headlines/y2008/07oct_firstresults.htm</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/379/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/379/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/379/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=379&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/10/08/mercury-as-never-seen-before-by-sciencenasa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/10/rays-strip-thumb.jpg" medium="image">
			<media:title type="html">rays_strip</media:title>
		</media:content>
	</item>
		<item>
		<title>Hubble Space Telescope is celebrating its 10th anniversary with a cosmic &quot;landscape&quot; &#8211; by Space.com</title>
		<link>http://gianvito.wordpress.com/2008/10/02/hubble-space-telescope-is-celebrating-its-10th-anniversary-with-a-cosmic-landscape-by-spacecom/</link>
		<comments>http://gianvito.wordpress.com/2008/10/02/hubble-space-telescope-is-celebrating-its-10th-anniversary-with-a-cosmic-landscape-by-spacecom/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 16:37:38 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[wallpapers]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2008/10/02/hubble-space-telescope-is-celebrating-its-10th-anniversary-with-a-cosmic-landscape-by-spacecom/</guid>
		<description><![CDATA[Link: http://www.space.com/imageoftheday/image_of_day_081002.html<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=368&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img title="081002-iod-hubble-04" style="border-right:0;border-top:0;display:block;float:none;margin-left:auto;border-left:0;margin-right:auto;border-bottom:0;" height="125" alt="081002-iod-hubble-04" src="http://gianvito.files.wordpress.com/2008/10/081002iodhubble041.jpg?w=240&#038;h=125" width="240" border="0" /> </p>
<p>Link:</p>
<ul>
<li><a title="http://www.space.com/imageoftheday/image_of_day_081002.html" href="http://www.space.com/imageoftheday/image_of_day_081002.html">http://www.space.com/imageoftheday/image_of_day_081002.html</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/368/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=368&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/10/02/hubble-space-telescope-is-celebrating-its-10th-anniversary-with-a-cosmic-landscape-by-spacecom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/10/081002iodhubble041.jpg" medium="image">
			<media:title type="html">081002-iod-hubble-04</media:title>
		</media:content>
	</item>
		<item>
		<title>Messenger Returns to Mercury &#8211; By Space@NASA</title>
		<link>http://gianvito.wordpress.com/2008/10/01/messenger-returns-to-mercury-by-spacenasa/</link>
		<comments>http://gianvito.wordpress.com/2008/10/01/messenger-returns-to-mercury-by-spacenasa/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 21:20:49 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[wallpapers]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2008/10/01/messenger-returns-to-mercury-by-spacenasa/</guid>
		<description><![CDATA[Link: http://science.nasa.gov/headlines/y2008/01oct_mercuryflyby2.htm<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=350&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[</p>
<p><img title="murchie05_lg_strip" style="border-right:0;border-top:0;display:block;float:none;margin-left:auto;border-left:0;margin-right:auto;border-bottom:0;" height="253" alt="murchie05_lg_strip" src="http://gianvito.files.wordpress.com/2008/10/murchie05-lg-strip2.jpg?w=240&#038;h=253" width="240" border="0" /> </p>
<p>Link:</p>
<ul>
<li><a title="http://science.nasa.gov/headlines/y2008/01oct_mercuryflyby2.htm" href="http://science.nasa.gov/headlines/y2008/01oct_mercuryflyby2.htm">http://science.nasa.gov/headlines/y2008/01oct_mercuryflyby2.htm</a> </li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/350/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/350/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=350&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/10/01/messenger-returns-to-mercury-by-spacenasa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/10/murchie05-lg-strip2.jpg" medium="image">
			<media:title type="html">murchie05_lg_strip</media:title>
		</media:content>
	</item>
		<item>
		<title>NVISION08 &#8220;Physx and CUDA&#8221; &#8211; Nvidia Developers Links and Screenshots</title>
		<link>http://gianvito.wordpress.com/2008/09/22/nvision08-the-art-of-physx-a-guide-to-game-creativity-nvidia-developers-link/</link>
		<comments>http://gianvito.wordpress.com/2008/09/22/nvision08-the-art-of-physx-a-guide-to-game-creativity-nvidia-developers-link/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 20:58:17 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[games]]></category>
		<category><![CDATA[geforce]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[nvidia]]></category>
		<category><![CDATA[physix]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2008/09/22/nvision08-the-art-of-physx-a-guide-to-game-creativity-nvidia-developers-link/</guid>
		<description><![CDATA[Basic rules to follow to do a great work with Physx API by Monier Maher during NVISION08 High Performance Computing by David B. Kirk &#160; Interesting Screenshots CUDA large applications!! Folding@Home Power!! A simple C parallel Code More Power… Less consumes!! Innovation by NVIDIA!! This would be the first important thing a developer must follow! [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=327&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center"><strong><em><img title="softbodies" style="display:inline;border-width:0;" height="180" alt="softbodies" src="http://gianvito.files.wordpress.com/2008/09/softbodies.jpg?w=240&#038;h=180" width="240" border="0"> </em></strong></p>
<p><span id="more-327"></span>
<p align="center"><strong><em><a href="http://developer.nvidia.com/object/nvision08-artofphysx.html" target="_blank"><font size="2">Basic rules to follow to do a great work with Physx API by Monier Maher during NVISION08</font></a></em></strong></p>
<p align="center"><a href="http://developer.nvidia.com/object/nvision08-kirk.html"><font size="2">High Performance Computing by David B. Kirk</font></a></p>
<p align="center">&nbsp;</p>
<h2 align="center"> Interesting Screenshots</h2>
<p align="center"><img title="2008-09-23_011837" style="border-right:0;border-top:0;display:inline;border-left:0;border-bottom:0;" height="307" alt="2008-09-23_011837" src="http://gianvito.files.wordpress.com/2008/09/20080923-0118371.jpg?w=513&#038;h=307" width="513" border="0"> </p>
<p align="center"><strong><em>CUDA large applications!!</em></strong></p>
<p align="center"><img title="2008-09-23_011856" style="border-right:0;border-top:0;display:inline;border-left:0;border-bottom:0;" height="307" alt="2008-09-23_011856" src="http://gianvito.files.wordpress.com/2008/09/20080923-011856.jpg?w=509&#038;h=307" width="509" border="0"></p>
<p align="center"><a href="mailto:Folding@Home"><em>Folding@Home</em></a><em> Power!!</em></p>
<p align="center"><img title="2008-09-23_011750" style="border-right:0;border-top:0;display:inline;border-left:0;border-bottom:0;" height="306" alt="2008-09-23_011750" src="http://gianvito.files.wordpress.com/2008/09/20080923-011750.jpg?w=511&#038;h=306" width="511" border="0"> </p>
<p align="center"><strong>A simple C parallel Code</strong></p>
<p align="center"><img title="2008-09-23_011927" style="border-right:0;border-top:0;display:inline;border-left:0;border-bottom:0;" height="307" alt="2008-09-23_011927" src="http://gianvito.files.wordpress.com/2008/09/20080923-0119271.jpg?w=514&#038;h=307" width="514" border="0"> </p>
<p align="center"><strong><em>More Power… Less consumes!!</em></strong></p>
<p align="center"><strong><em><img title="nvidiainnovationgeforce" style="border-right:0;border-top:0;display:inline;border-left:0;border-bottom:0;" height="309" alt="nvidiainnovationgeforce" src="http://gianvito.files.wordpress.com/2008/09/nvidiainnovationgeforce1.jpg?w=511&#038;h=309" width="511" border="0"> </em></strong></p>
<p align="center"><strong><em>Innovation by NVIDIA!!</em></strong></p>
<p align="center"><img title="nvisionphysx" style="border-right:0;border-top:0;display:block;float:none;margin-left:auto;border-left:0;margin-right:auto;border-bottom:0;" height="308" alt="nvisionphysx" src="http://gianvito.files.wordpress.com/2008/09/nvisionphysx1.jpg?w=514&#038;h=308" width="514" border="0"><em><strong>This would be the first important thing a developer must follow! :)</strong></em>&nbsp;</p>
<p><strong><em>Link:</em></strong></p>
<ul>
<li><a href="http://developer.nvidia.com/object/nvision08-artofphysx.html" target="_blank">The Art of Physx</a>
<li><a href="http://developer.nvidia.com/object/nvision08-kirk.html">High Performance Computing by David B. Kirk</a></li>
</ul>
<div class="wlWriterEditableSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:13e23a97-f296-4368-94f1-84f5f83dc9bf" style="display:inline;float:none;margin:0;padding:0;">Technorati Tag: <a href="http://technorati.com/tags/nvidia" rel="tag">nvidia</a>,<a href="http://technorati.com/tags/cuda" rel="tag">cuda</a>,<a href="http://technorati.com/tags/physx" rel="tag">physx</a>,<a href="http://technorati.com/tags/geforce" rel="tag">geforce</a>,<a href="http://technorati.com/tags/tesla" rel="tag">tesla</a>,<a href="http://technorati.com/tags/teraflops" rel="tag">teraflops</a>,<a href="http://technorati.com/tags/games" rel="tag">games</a>,<a href="http://technorati.com/tags/news" rel="tag">news</a></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/327/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/327/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/327/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/327/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/327/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/327/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/327/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/327/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=327&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/09/22/nvision08-the-art-of-physx-a-guide-to-game-creativity-nvidia-developers-link/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/09/softbodies.jpg" medium="image">
			<media:title type="html">softbodies</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/09/20080923-0118371.jpg" medium="image">
			<media:title type="html">2008-09-23_011837</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/09/20080923-011856.jpg" medium="image">
			<media:title type="html">2008-09-23_011856</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/09/20080923-011750.jpg" medium="image">
			<media:title type="html">2008-09-23_011750</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/09/20080923-0119271.jpg" medium="image">
			<media:title type="html">2008-09-23_011927</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/09/nvidiainnovationgeforce1.jpg" medium="image">
			<media:title type="html">nvidiainnovationgeforce</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/09/nvisionphysx1.jpg" medium="image">
			<media:title type="html">nvisionphysx</media:title>
		</media:content>
	</item>
		<item>
		<title>[Resolved] 177.98 Digital Vibrance Issue</title>
		<link>http://gianvito.wordpress.com/2008/09/13/resolved-17798-digital-vibrance-issue/</link>
		<comments>http://gianvito.wordpress.com/2008/09/13/resolved-17798-digital-vibrance-issue/#comments</comments>
		<pubDate>Sat, 13 Sep 2008 12:47:09 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[nvidia]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2008/09/13/resolved-17798-digital-vibrance-issue/</guid>
		<description><![CDATA[177.98 has a know issue related to digital vibrance at 100% when you start Windows Xp. A workaround to fix this one is to Use Rivatuner.. Selecting your monitor&#8230; Click on the second Customize button&#8230; Now select Desktop and overlay color scheme&#8230; And now adjust your settings and click on &#8220;Apply this color schemes at [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=321&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center"><a href="http://gianvito.files.wordpress.com/2008/09/nvidia-logo1.png"><img style="border-width:0;" height="304" alt="nvidia-logo" src="http://gianvito.files.wordpress.com/2008/09/nvidia-logo-thumb1.png?w=454&#038;h=304" width="454" border="0"></a> </p>
<p>177.98 has a know issue related to digital vibrance at 100% when you start Windows Xp.</p>
<p>A workaround to fix this one is to Use Rivatuner..</p>
<p><span id="more-321"></span>
<p align="center"><a href="http://gianvito.files.wordpress.com/2008/09/rivatuner1.jpg"><img style="border-width:0;" height="457" alt="Rivatuner" src="http://gianvito.files.wordpress.com/2008/09/rivatuner-thumb1.jpg?w=449&#038;h=457" width="449" border="0"></a> </p>
<p align="left">Selecting your monitor&#8230; Click on the second Customize button&#8230;</p>
<p align="center"><a href="http://gianvito.files.wordpress.com/2008/09/rivatuner21.jpg"><img style="border-width:0;" height="442" alt="Rivatuner2" src="http://gianvito.files.wordpress.com/2008/09/rivatuner2-thumb.jpg?w=686&#038;h=442" width="686" border="0"></a> </p>
<p align="left">Now select <strong><em>Desktop and overlay color scheme</em></strong>&#8230;</p>
<p align="center"><a href="http://gianvito.files.wordpress.com/2008/09/rv2.jpg"><img style="border-width:0;" height="562" alt="rv2" src="http://gianvito.files.wordpress.com/2008/09/rv2-thumb.jpg?w=494&#038;h=562" width="494" border="0"></a> </p>
<p align="left">And now adjust your settings and click on <strong>&#8220;Apply this color schemes at Windows Startup&#8221;</strong></p>
<p align="left"><strong>Done. :)</strong></p>
<p align="left">
<div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:2caeb1d4-d9a9-40fd-883b-bc19ce3d4304" style="display:inline;margin:0;padding:0;">Technorati Tag: <a href="http://technorati.com/tags/rivatuner" rel="tag">rivatuner</a>,<a href="http://technorati.com/tags/177.98" rel="tag">177.98</a>,<a href="http://technorati.com/tags/digital" rel="tag">digital</a>,<a href="http://technorati.com/tags/vibrance" rel="tag">vibrance</a>,<a href="http://technorati.com/tags/100" rel="tag">100</a>,<a href="http://technorati.com/tags/nvidia" rel="tag">nvidia</a>,<a href="http://technorati.com/tags/colours" rel="tag">colours</a>,<a href="http://technorati.com/tags/schemes" rel="tag">schemes</a></div>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/321/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/321/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/321/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/321/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/321/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=321&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/09/13/resolved-17798-digital-vibrance-issue/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/09/nvidia-logo-thumb1.png" medium="image">
			<media:title type="html">nvidia-logo</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/09/rivatuner-thumb1.jpg" medium="image">
			<media:title type="html">Rivatuner</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/09/rivatuner2-thumb.jpg" medium="image">
			<media:title type="html">Rivatuner2</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/09/rv2-thumb.jpg" medium="image">
			<media:title type="html">rv2</media:title>
		</media:content>
	</item>
		<item>
		<title>CERN&#8230; No collissions yet</title>
		<link>http://gianvito.wordpress.com/2008/09/10/cern-no-collissions-yet/</link>
		<comments>http://gianvito.wordpress.com/2008/09/10/cern-no-collissions-yet/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 21:18:54 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2008/09/10/cern-no-collissions-yet/</guid>
		<description><![CDATA[While Ginevra is full of protons shootings (without results since now&#8230; )&#8230; In another part of the Universe a Scream of Black Hole&#8217;s Birth has been Detected and &#8220;A spectacular nearby star explosion observed in 1843 is now thought to be a previously unknown type of explosion that leaves stars intact.&#8221;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=304&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" height="157" alt="cernvsblackhole2" src="http://gianvito.files.wordpress.com/2008/09/cernvsblackhole21.jpg?w=478&#038;h=157" width="478" border="0"> </p>
<p>While Ginevra is full of protons shootings (without results since now&#8230; )&#8230; In another part of the Universe a <b><a href="http://www.space.com/scienceastronomy/080910-gammaray-burst.html" target="_blank">Scream of Black Hole&#8217;s Birth has been Detected </a></b>and <a href="http://www.space.com/scienceastronomy/080910-eta-carinae.html" target="_blank">&#8220;A spectacular nearby star explosion observed in 1843 is now thought to be a previously unknown type of explosion that leaves stars intact.&#8221;</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/304/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/304/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/304/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/304/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/304/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=304&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/09/10/cern-no-collissions-yet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/09/cernvsblackhole21.jpg" medium="image">
			<media:title type="html">cernvsblackhole2</media:title>
		</media:content>
	</item>
		<item>
		<title>Interesting way to get computing units cooler :) &#8211; by Google</title>
		<link>http://gianvito.wordpress.com/2008/09/09/interesting-way-to-get-computing-units-cooler-by-google/</link>
		<comments>http://gianvito.wordpress.com/2008/09/09/interesting-way-to-get-computing-units-cooler-by-google/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 12:02:32 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2008/09/09/interesting-way-to-get-computing-units-cooler-by-google/</guid>
		<description><![CDATA[&#160; A great idea to use sea water to get more cold to Google&#8217;s Units&#8230; Protecting our World Link: US patents &#38; trademark office link Source: (Italian)&#160; Technorati Tag: pc,google,cooling,ideas,patents<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=297&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center"><img style="border-width:0;" height="188" alt="Google sea copy" src="http://gianvito.files.wordpress.com/2008/09/google-sea-copy.jpg?w=240&#038;h=188" width="240" border="0">&nbsp;</p>
</p>
<p><span id="more-297"></span>
</p>
<p align="left">A great idea to use sea water to get more cold to Google&#8217;s Units&#8230; Protecting our World</p>
<p>Link:</p>
<ul>
<li><strong><em><a href="http://appft1.uspto.gov/netacgi/nph-Parser?Sect1=PTO1&amp;Sect2=HITOFF&amp;d=PG01&amp;p=1&amp;u=%2Fnetahtml%2FPTO%2Fsrchnum.html&amp;r=1&amp;f=G&amp;l=50&amp;s1=%2220080209234%22.PGNR.&amp;OS=DN/20080209234&amp;RS=DN/20080209234" target="_blank">US patents &amp; trademark office link</a></em></strong>
<li><strong><em><a href="http://www.downloadblog.it/post/7666/google-brevetta-i-data-center-galleggianti" target="_blank">Source: (Italian)</a></em></strong>&nbsp;</li>
</ul>
<p>
<div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:a01367a1-8b27-49b7-b9bc-0cdb1c552866" style="display:inline;margin:0;padding:0;">Technorati Tag: <a href="http://technorati.com/tags/pc" rel="tag">pc</a>,<a href="http://technorati.com/tags/google" rel="tag">google</a>,<a href="http://technorati.com/tags/cooling" rel="tag">cooling</a>,<a href="http://technorati.com/tags/ideas" rel="tag">ideas</a>,<a href="http://technorati.com/tags/patents" rel="tag">patents</a></div></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/297/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/297/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/297/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/297/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/297/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=297&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/09/09/interesting-way-to-get-computing-units-cooler-by-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/09/google-sea-copy.jpg" medium="image">
			<media:title type="html">Google sea copy</media:title>
		</media:content>
	</item>
		<item>
		<title>Hubble Space Telescope Upgrade</title>
		<link>http://gianvito.wordpress.com/2008/09/09/hubble-space-telescope-upgrade/</link>
		<comments>http://gianvito.wordpress.com/2008/09/09/hubble-space-telescope-upgrade/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 10:45:36 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2008/09/09/hubble-space-telescope-upgrade/</guid>
		<description><![CDATA[&#160; News: Installing the Wide Field Camera 3 (WFC3) — A new and more powerful main camera that bests its predecessors by seeing in both ultraviolet and near infrared as well as visible light. Hubble would be able to see 90 times more objects than it did at launch in April 1990. Replacing six Rate [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=295&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center">&nbsp;<img style="border-width:0;" height="166" alt="080108-hubble-space-02" src="http://gianvito.files.wordpress.com/2008/09/080108-hubble-space-02.jpg?w=244&#038;h=166" width="244" border="0"></p>
</p>
<p><span id="more-295"></span>
</p>
<p><em><strong>News:</strong></em></p>
<ul>
<li><em>Installing the Wide Field Camera 3 (WFC3) — A new and more powerful main camera that bests its predecessors by seeing in both ultraviolet and near infrared as well as visible light. Hubble would be able to see </em><a href="http://www.space.com/businesstechnology/080123-hubble-upgrades-techwed.html"><em>90 times more objects</em></a><em> than it did at launch in April 1990. </em>
<li><em>Replacing six Rate Sensor Units (RSU) — The gyroscopes help keep Hubble pointed precisely at distant stars and galaxies for hours at a time. Hubble can technically limp by on two or even one gyroscope, but the fresh exchange ensures that the science keeps flowing. </em>
<li><em>Replacing six Nickel Hydrogen Batteries — The suitcase -sized batteries get swapped out for the first time in 16 years, giving Hubble an extra lease on life for the next 5 to 10 years. The batteries keep Hubble humming during the night portion of its orbit. </em>
<li><em>Adding the Cosmic Origins Spectrograph (COS) — This instrument uses the ultraviolet range to find out the temperature, density, chemical composition and velocity of intergalactic gas and galaxies, with ten times the sensitivity of current Hubble instruments. </em>
<li><em>Repairing the Space Telescope Imaging Spectrometer (STIS) — A two-sided instrument that uniquely scans across all light wavelengths of objects such as planets, comets, stars and galaxies. Spacewalkers will replace a failed power converter to restore one side of the damaged device. </em>
<li><em>Replacing the Fine Guidance Sensor (FGS) — One of three optical sensors that help Hubble lock onto targets with a system of mirrors and lenses. The old FGS returns home after being removed from Hubble during an earlier servicing mission. </em>
<li><em>Fixing the Advance Camera for Surveys (ACS) — A highly efficient survey tool with a wide field of view that became damaged. Astronauts hope to repair some of its capabilities since it failed last year. </em>
<li><em>Adding new Thermal Insulation — The multilayer insulation on Hubble has become torn and broken by the harsh environment of space. The new thermal blankets protect the damaged insulation and helps maintain a steady temperature for Hubble.</em> </li>
</ul>
<p>Links:</p>
<ul>
<li><a href="http://www.space.com/missionlaunches/080908-hubble-upgrade.html" target="_blank">Source (space.com)</a> </li>
</ul>
<div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:6720c81c-e22c-446f-b713-145e7c5a6a11" style="display:inline;margin:0;padding:0;">Technorati Tag: <a href="http://technorati.com/tags/hubble" rel="tag">hubble</a>,<a href="http://technorati.com/tags/space" rel="tag">space</a>,<a href="http://technorati.com/tags/telescope" rel="tag">telescope</a>,<a href="http://technorati.com/tags/upgrade" rel="tag">upgrade</a>,<a href="http://technorati.com/tags/news" rel="tag">news</a>,<a href="http://technorati.com/tags/nasa" rel="tag">nasa</a></div>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/295/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/295/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/295/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=295&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/09/09/hubble-space-telescope-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/09/080108-hubble-space-02.jpg" medium="image">
			<media:title type="html">080108-hubble-space-02</media:title>
		</media:content>
	</item>
		<item>
		<title>Google web browser &#8211; Google Chrome &#8211; With a lot of important features</title>
		<link>http://gianvito.wordpress.com/2008/09/02/google-web-browser-google-chrome-with-a-lot-of-important-features/</link>
		<comments>http://gianvito.wordpress.com/2008/09/02/google-web-browser-google-chrome-with-a-lot-of-important-features/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 18:56:02 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[chrome]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2008/09/02/google-web-browser-google-chrome-with-a-lot-of-important-features/</guid>
		<description><![CDATA[&#8220;People are watching and uploading videos, chatting with each other, playing web-based games&#8230; All these things that didn&#8217;t exist when the first browsers were created&#8221; Chrome Comix There are nothing to say&#8230; just read this comix :) http://www.google.com/googlebooks/chrome/# And download it here: http://www.google.com/chrome Screenshots: Technorati Tag: google,pc,browser,firefox,chrome,comix,download<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=284&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center"><em>&#8220;People are watching and uploading videos, chatting with each other, playing web-based games&#8230; All these things that didn&#8217;t exist when the first browsers were created&#8221;</em></p>
<p align="right"><strong>Chrome Comix</strong></p>
<p align="center"><img style="border-width:0;" height="55" alt="logo_sm" src="http://gianvito.files.wordpress.com/2008/09/logo-sm.jpg?w=150&#038;h=55" width="150" border="0"> </p>
<p><span id="more-284"></span>
<p>There are nothing to say&#8230; just read this comix :)</p>
<ul>
<li><a title="http://www.google.com/googlebooks/chrome/#" href="http://www.google.com/googlebooks/chrome/#">http://www.google.com/googlebooks/chrome/#</a></li>
</ul>
<p>And download it here:</p>
<ul>
<li><a title="http://www.google.com/chrome" href="http://www.google.com/chrome">http://www.google.com/chrome</a></li>
</ul>
<p><strong><em>Screenshots:</em></strong></p>
<p><a href="http://gianvito.files.wordpress.com/2008/09/chrome1.png"><img style="border-width:0;" height="148" alt="chrome1" src="http://gianvito.files.wordpress.com/2008/09/chrome1-thumb.png?w=244&#038;h=148" width="244" border="0"></a> <a href="http://gianvito.files.wordpress.com/2008/09/chrome2.png"><img style="border-width:0;" height="233" alt="chrome2" src="http://gianvito.files.wordpress.com/2008/09/chrome2-thumb.png?w=244&#038;h=233" width="244" border="0"></a> <a href="http://gianvito.files.wordpress.com/2008/09/chrome21.png"><img style="border-width:0;" height="141" alt="chrome21" src="http://gianvito.files.wordpress.com/2008/09/chrome21-thumb.png?w=244&#038;h=141" width="244" border="0"></a> </p>
<div class="wlWriterSmartContent" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:ecb8e12d-92ba-4fda-a33b-612f83ff81e1" style="display:inline;margin:0;padding:0;">Technorati Tag: <a href="http://technorati.com/tags/google" rel="tag">google</a>,<a href="http://technorati.com/tags/pc" rel="tag">pc</a>,<a href="http://technorati.com/tags/browser" rel="tag">browser</a>,<a href="http://technorati.com/tags/firefox" rel="tag">firefox</a>,<a href="http://technorati.com/tags/chrome" rel="tag">chrome</a>,<a href="http://technorati.com/tags/comix" rel="tag">comix</a>,<a href="http://technorati.com/tags/download" rel="tag">download</a></div>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/284/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/284/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/284/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=284&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/09/02/google-web-browser-google-chrome-with-a-lot-of-important-features/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/09/logo-sm.jpg" medium="image">
			<media:title type="html">logo_sm</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/09/chrome1-thumb.png" medium="image">
			<media:title type="html">chrome1</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/09/chrome2-thumb.png" medium="image">
			<media:title type="html">chrome2</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/09/chrome21-thumb.png" medium="image">
			<media:title type="html">chrome21</media:title>
		</media:content>
	</item>
		<item>
		<title>Wireless Power broadcasting system</title>
		<link>http://gianvito.wordpress.com/2008/08/31/wireless-power-broadcasting-system/</link>
		<comments>http://gianvito.wordpress.com/2008/08/31/wireless-power-broadcasting-system/#comments</comments>
		<pubDate>Sun, 31 Aug 2008 11:41:03 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2008/08/31/wireless-power-broadcasting-system/</guid>
		<description><![CDATA[&#8220;Intel&#8217;s demo of a wireless power system that can broadcast 60 watts of power up to three feet at IDF with 75 percent efficiency has us giddy with excitement&#8221; Link: http://www.engadget.com/2008/08/21/intel-demos-a-wireless-power-broadcasting-system-villagers-terr/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=282&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center"><em>&#8220;Intel&#8217;s demo of a wireless power system that can broadcast 60 watts of power up to three feet at </em><a href="http://engadget.com/tag/idf"><em>IDF</em></a><em> with 75 percent efficiency has us giddy with excitement&#8221;</em></p>
<p align="center"><a href="http://gianvito.files.wordpress.com/2008/08/8-21-08-intelwireles.jpg"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" height="319" alt="8-21-08-intelwireles" src="http://gianvito.files.wordpress.com/2008/08/8-21-08-intelwireles-thumb.jpg?w=480&#038;h=319" width="480" border="0"></a> </p>
<p align="left">Link:</p>
<ul>
<li>
<div align="left"><a title="http://www.engadget.com/2008/08/21/intel-demos-a-wireless-power-broadcasting-system-villagers-terr/" href="http://www.engadget.com/2008/08/21/intel-demos-a-wireless-power-broadcasting-system-villagers-terr/">http://www.engadget.com/2008/08/21/intel-demos-a-wireless-power-broadcasting-system-villagers-terr/</a></div>
</li>
</ul>
<p align="left">
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/282/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/282/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/282/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=282&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/08/31/wireless-power-broadcasting-system/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/08/8-21-08-intelwireles-thumb.jpg" medium="image">
			<media:title type="html">8-21-08-intelwireles</media:title>
		</media:content>
	</item>
		<item>
		<title>Corei7 could be very interesting&#8230; as motherboards will support it&#8230;</title>
		<link>http://gianvito.wordpress.com/2008/08/28/corei7-could-be-very-interesting-as-motherboards-will-support-it/</link>
		<comments>http://gianvito.wordpress.com/2008/08/28/corei7-could-be-very-interesting-as-motherboards-will-support-it/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 16:35:06 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[corei7]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[geforce]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[nvidia]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2008/08/28/corei7-could-be-very-interesting-as-motherboards-will-support-it/</guid>
		<description><![CDATA[&#8220;provide support for up to six graphics cards, 24GB of DDR3-1333 RAM (or 6GB of DDR3-1900/2000 using overclocked 2GB DIMMs)&#8221; Link: http://www.engadget.com/2008/08/27/gigabyte-shows-off-robust-core-i7-prototype-motherboard/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=279&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center"><strong>&#8220;provide support for up to <em>six</em> graphics cards, 24GB of DDR3-1333 RAM (or 6GB of DDR3-1900/2000 using overclocked 2GB DIMMs)&#8221;</strong></p>
<p align="center"><a href="http://gianvito.files.wordpress.com/2008/08/8-26-08-gigabyte-extreme-ed-mobo.jpg"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" height="272" alt="8-26-08-gigabyte-extreme-ed-mobo" src="http://gianvito.files.wordpress.com/2008/08/8-26-08-gigabyte-extreme-ed-mobo-thumb.jpg?w=450&#038;h=272" width="450" border="0"></a> </p>
<p align="left"><strong><em>Link:</em></strong></p>
<ul>
<li>
<div align="left"><a title="http://www.engadget.com/2008/08/27/gigabyte-shows-off-robust-core-i7-prototype-motherboard/" href="http://www.engadget.com/2008/08/27/gigabyte-shows-off-robust-core-i7-prototype-motherboard/">http://www.engadget.com/2008/08/27/gigabyte-shows-off-robust-core-i7-prototype-motherboard/</a></div>
</li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/279/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/279/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/279/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/279/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/279/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=279&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/08/28/corei7-could-be-very-interesting-as-motherboards-will-support-it/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/08/8-26-08-gigabyte-extreme-ed-mobo-thumb.jpg" medium="image">
			<media:title type="html">8-26-08-gigabyte-extreme-ed-mobo</media:title>
		</media:content>
	</item>
		<item>
		<title>Latest Nasa Telescope: FERMI</title>
		<link>http://gianvito.wordpress.com/2008/08/27/latest-nasa-telescope-fermi/</link>
		<comments>http://gianvito.wordpress.com/2008/08/27/latest-nasa-telescope-fermi/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 12:16:47 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2008/08/27/latest-nasa-telescope-fermi/</guid>
		<description><![CDATA[&#8220;To explore the violent and unpredictable gamma ray universe&#8221; Link: http://science.nasa.gov/headlines/y2008/26aug_firstlight.htm<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=276&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center"><a href="http://gianvito.files.wordpress.com/2008/08/267663main-glast-concept-226-three.jpg"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" height="134" alt="267663main_glast_concept_226_three" src="http://gianvito.files.wordpress.com/2008/08/267663main-glast-concept-226-three-thumb.jpg?w=203&#038;h=134" width="203" border="0"></a> </p>
<p align="left"><em>&#8220;To explore the violent and unpredictable gamma ray universe&#8221;</em></p>
<p align="left">Link:</p>
<ul>
<li>
<div align="left"><a title="http://science.nasa.gov/headlines/y2008/26aug_firstlight.htm" href="http://science.nasa.gov/headlines/y2008/26aug_firstlight.htm">http://science.nasa.gov/headlines/y2008/26aug_firstlight.htm</a></div>
</li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/276/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/276/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/276/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/276/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/276/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=276&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/08/27/latest-nasa-telescope-fermi/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/08/267663main-glast-concept-226-three-thumb.jpg" medium="image">
			<media:title type="html">267663main_glast_concept_226_three</media:title>
		</media:content>
	</item>
		<item>
		<title>It&#8217;s so useful (for me and i wish for you too), it earns a new post!</title>
		<link>http://gianvito.wordpress.com/2008/08/24/its-so-useful-for-me-and-i-wish-for-you-too-it-earns-a-new-post/</link>
		<comments>http://gianvito.wordpress.com/2008/08/24/its-so-useful-for-me-and-i-wish-for-you-too-it-earns-a-new-post/#comments</comments>
		<pubDate>Sun, 24 Aug 2008 17:55:36 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[archlinux]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[nvidia]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2008/08/24/its-so-useful-for-me-and-i-wish-for-you-too-it-earns-a-new-post/</guid>
		<description><![CDATA[Do you had (and i think have now&#8230; if you hadn&#8217;t fix that) problems with nvidia drivers? Do you have a new graphic card (from nvidia (8,9,GT200 series))? 2d performance are so poor? Especially, gtk performance are poor? Try to modify your xorg options like this: Textually: Option &#8220;NvAGP&#8221; &#8220;0&#8243;Option &#8220;NoLogo&#8221; &#8220;True&#8221;Option &#8220;AllowGLXWithComposite&#8221; &#8220;1&#8243;Option &#8220;AddARGBVisuals&#8221; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=263&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center"><img style="border-width:0;" height="252" alt="nvidiawind" src="http://gianvito.files.wordpress.com/2008/08/nvidiawind1.jpg?w=430&#038;h=252" width="430" border="0"> </p>
<ul>
<li>Do you had (and i think have now&#8230; if you hadn&#8217;t fix that) problems with nvidia drivers?
<li>Do you have a new graphic card (from nvidia (8,9,GT200 series))?
<li>2d performance are so poor?
<li>Especially, gtk performance are poor?</li>
</ul>
<p><span id="more-263"></span>
<p>Try to modify your xorg options like this:</p>
<p align="center"><a href="http://gianvito.files.wordpress.com/2008/08/xorgsettings21.jpg"><img style="border-width:0;" height="306" alt="xorgsettings2" src="http://gianvito.files.wordpress.com/2008/08/xorgsettings2-thumb1.jpg?w=355&#038;h=306" width="355" border="0"></a> </p>
<p align="left">Textually:</p>
<p>Option &#8220;NvAGP&#8221; &#8220;0&#8243;<br />Option &#8220;NoLogo&#8221; &#8220;True&#8221;<br />Option &#8220;AllowGLXWithComposite&#8221; &#8220;1&#8243;<br />Option &#8220;AddARGBVisuals&#8221; &#8220;True&#8221;<br />Option &#8220;AddARGBGLXVisuals&#8221; &#8220;True&#8221;<br />Option &#8220;Coolbits&#8221; &#8220;1&#8243;<br />Option &#8220;TripleBuffer&#8221; &#8220;1&#8243;<br />Option &#8220;AllowIndirectPixmaps&#8221; &#8220;1&#8243;<br />Option &#8220;AccelMethod&#8221; &#8220;XAA&#8221;<br />Option &#8220;XAANoOffscreenPixmaps&#8221; &#8220;true&#8221;<br />Option &#8220;DRI&#8221; &#8220;true&#8221;<br />Option &#8220;PixmapCacheSize&#8221; &#8220;2500000&#8243;<br />Option &#8220;AllowSHMPixmaps&#8221; &#8220;0&#8243;<br />Option &#8220;OnDemandVBlankInterrupts&#8221; &#8220;true&#8221;<br />Option &#8220;RenderAccel&#8221; &#8220;True&#8221; </p>
<p>and these are results i had from a <a href="http://gianvito.wordpress.com/2008/08/20/gtk-engine-benchmarks-2-the-update/" target="_blank">previous post</a>:</p>
<p align="center"><a href="http://gianvito.files.wordpress.com/2008/08/image.png"><img style="border-width:0;" height="483" alt="image" src="http://gianvito.files.wordpress.com/2008/08/image-thumb.png?w=684&#038;h=483" width="684" border="0"></a> </p>
<p align="left">I hope this will help you to solve some performance problems&#8230;</p>
<p align="left">
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/263/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/263/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/263/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=263&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/08/24/its-so-useful-for-me-and-i-wish-for-you-too-it-earns-a-new-post/feed/</wfw:commentRss>
		<slash:comments>44</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/08/nvidiawind1.jpg" medium="image">
			<media:title type="html">nvidiawind</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/08/xorgsettings2-thumb1.jpg" medium="image">
			<media:title type="html">xorgsettings2</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/08/image-thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
		<item>
		<title>Space.com 21 August Interesting Links</title>
		<link>http://gianvito.wordpress.com/2008/08/20/spacecom-21-august-interesting-links/</link>
		<comments>http://gianvito.wordpress.com/2008/08/20/spacecom-21-august-interesting-links/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 22:16:32 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2008/08/20/spacecom-21-august-interesting-links/</guid>
		<description><![CDATA[&#8220;Next we can say dark matter doesn&#8217;t exist, it&#8217;s just that the total solar output of the stars is not sufficient to light up all the matter in the universe. :)&#8221; (Comment) invisible_ghost wrote: Links: Space &#8216;Ropes&#8217; Hang Together by Threads Middleweight Black Holes Nearly Ruled Out<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=247&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center"><em>&#8220;Next we can say dark matter doesn&#8217;t exist, it&#8217;s just that the total solar output of the stars is not sufficient to light up all the matter in the universe. :)&#8221;</em></p>
<p align="right"><strong><em>(Comment) </em><a href="http://www.space.com/common/community/profile.php?userid=958653&amp;plckPersonaPage=PersonaHome&amp;sid=sitelife.space.com"><em>invisible_ghost</em></a></strong><em> wrote:</em></p>
<p align="center"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" height="244" alt="080820-filaments-02" src="http://gianvito.files.wordpress.com/2008/08/080820-filaments-021.jpg?w=244&#038;h=244" width="244" border="0"> </p>
<p align="left"><strong>Links:</strong></p>
<ul>
<li>
<div align="left"><b><a href="http://www.space.com/scienceastronomy/080820-galaxy-filament.html" target="_blank">Space &#8216;Ropes&#8217; Hang Together by Threads</a></b></div>
<li>
<p><b><a href="http://www.space.com/scienceastronomy/080820-black-hole-sizes.html" target="_blank">Middleweight Black Holes Nearly Ruled Out</a> </b></p>
</li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/247/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/247/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/247/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/247/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/247/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=247&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/08/20/spacecom-21-august-interesting-links/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/08/080820-filaments-021.jpg" medium="image">
			<media:title type="html">080820-filaments-02</media:title>
		</media:content>
	</item>
		<item>
		<title>Gtk-Engines Benchmarks 2 &#8211; &#8220;The Update&#8221;</title>
		<link>http://gianvito.wordpress.com/2008/08/20/gtk-engine-benchmarks-2-the-update/</link>
		<comments>http://gianvito.wordpress.com/2008/08/20/gtk-engine-benchmarks-2-the-update/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 17:19:00 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[archlinux]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2008/08/20/gtk-engine-benchmarks-2-the-update/</guid>
		<description><![CDATA[Static page (I&#8217;ve not updated benchmarks): http://gianvito.wordpress.com/gtk-engines-benchmarks/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=235&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Static page (I&#8217;ve not updated benchmarks):</p>
<ul>
<li><a href="http://gianvito.wordpress.com/gtk-engines-benchmarks/">http://gianvito.wordpress.com/gtk-engines-benchmarks/</a></li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/235/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/235/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/235/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=235&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/08/20/gtk-engine-benchmarks-2-the-update/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>
	</item>
		<item>
		<title>Begin to Help Linux development &#8211; A guide written by Jonathan Corbet</title>
		<link>http://gianvito.wordpress.com/2008/08/20/begin-to-help-linux-development-a-guide-written-by-jonathan-corbet/</link>
		<comments>http://gianvito.wordpress.com/2008/08/20/begin-to-help-linux-development-a-guide-written-by-jonathan-corbet/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 15:46:02 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[archlinux]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2008/08/20/begin-to-help-linux-development-a-guide-written-by-jonathan-corbet/</guid>
		<description><![CDATA[Link: http://ldn.linuxfoundation.org/how-participate-linux-community Source: http://www.hwupgrade.it/news/software/una-guida-per-contribuire-allo-sviluppo-del-kernel-linux_26208.html<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=222&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" src="http://gianvito.files.wordpress.com/2008/08/linux-foundation.jpg?w=139&#038;h=43" border="0" alt="Linux_Foundation" width="139" height="43" /></p>
<p align="left"><strong>Link:</strong></p>
<ul>
<li>
<div><a title="http://ldn.linuxfoundation.org/how-participate-linux-community" href="http://ldn.linuxfoundation.org/how-participate-linux-community">http://ldn.linuxfoundation.org/how-participate-linux-community</a></div>
</li>
</ul>
<p><strong>Source: </strong><a title="http://www.hwupgrade.it/news/software/una-guida-per-contribuire-allo-sviluppo-del-kernel-linux_26208.html" href="http://www.hwupgrade.it/news/software/una-guida-per-contribuire-allo-sviluppo-del-kernel-linux_26208.html">http://www.hwupgrade.it/news/software/una-guida-per-contribuire-allo-sviluppo-del-kernel-linux_26208.html</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/222/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/222/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/222/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/222/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/222/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/222/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/222/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/222/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/222/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/222/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=222&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/08/20/begin-to-help-linux-development-a-guide-written-by-jonathan-corbet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/08/linux-foundation.jpg" medium="image">
			<media:title type="html">Linux_Foundation</media:title>
		</media:content>
	</item>
		<item>
		<title>Living with a Star</title>
		<link>http://gianvito.wordpress.com/2008/08/20/living-with-a-star/</link>
		<comments>http://gianvito.wordpress.com/2008/08/20/living-with-a-star/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 01:22:52 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2008/08/20/living-with-a-star/</guid>
		<description><![CDATA[&#160; &#160; Links: Science@Nasa &#8212;-&#62;&#160; http://science.nasa.gov/headlines/y2008/19aug_lws.htm<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=217&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p align="center">&nbsp;<img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" height="244" alt="SDOinSES4_med" src="http://gianvito.files.wordpress.com/2008/08/sdoinses4-med.jpg?w=229&#038;h=244" width="229" border="0"> </p>
<p><strong><em>Links:</em></strong></p>
<ul>
<li><a href="mailto:Science@Nasa">Science@Nasa</a> &#8212;-&gt;&nbsp; <a title="http://science.nasa.gov/headlines/y2008/19aug_lws.htm" href="http://science.nasa.gov/headlines/y2008/19aug_lws.htm">http://science.nasa.gov/headlines/y2008/19aug_lws.htm</a></li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/217/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/217/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/217/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/217/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/217/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=217&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/08/20/living-with-a-star/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/08/sdoinses4-med.jpg" medium="image">
			<media:title type="html">SDOinSES4_med</media:title>
		</media:content>
	</item>
		<item>
		<title>Warmonger &#8211; Using Native Physx Support by Nvidia &#8211; Benchmarks</title>
		<link>http://gianvito.wordpress.com/2008/08/17/warmonger-using-native-physx-support-by-nvidia-benchmarks/</link>
		<comments>http://gianvito.wordpress.com/2008/08/17/warmonger-using-native-physx-support-by-nvidia-benchmarks/#comments</comments>
		<pubDate>Sun, 17 Aug 2008 11:41:39 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[games]]></category>
		<category><![CDATA[geforce]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[physix]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2008/08/17/warmonger-using-native-physx-support-by-nvidia-benchmarks/</guid>
		<description><![CDATA[Finally I&#8217;ve downloaded Warmonger and i&#8217;ve tried it. Screenshots: Benchmarks: Athlon64 @ 2.4 Ghz 2 gb Ram Nvidia Geforce 9600 gt 177.83 Nvidia Driver Physx 8.08.01 Driver Physx Disabled (using Fraps) Physx Enabled (Using Fraps) More than 4 times faster! :)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=214&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center"><a href="http://gianvito.files.wordpress.com/2008/08/warmonger1.jpg"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" src="http://gianvito.files.wordpress.com/2008/08/warmonger-thumb.jpg?w=644&#038;h=404" border="0" alt="warmonger" width="644" height="404" /></a></p>
<p><span id="more-214"></span></p>
<p>Finally I&#8217;ve downloaded Warmonger and i&#8217;ve tried it.</p>
<p><strong><em>Screenshots:</em></strong></p>
<p><a href="http://gianvito.files.wordpress.com/2008/08/wscreen2.jpg"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" src="http://gianvito.files.wordpress.com/2008/08/wscreen2-thumb.jpg?w=244&#038;h=154" border="0" alt="wscreen2" width="244" height="154" /></a> <a href="http://gianvito.files.wordpress.com/2008/08/wscreen.jpg"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" src="http://gianvito.files.wordpress.com/2008/08/wscreen-thumb.jpg?w=244&#038;h=154" border="0" alt="wscreen" width="244" height="154" /></a> <a href="http://gianvito.files.wordpress.com/2008/08/wscreen9.jpg"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" src="http://gianvito.files.wordpress.com/2008/08/wscreen9-thumb.jpg?w=244&#038;h=154" border="0" alt="wscreen9" width="244" height="154" /></a> <a href="http://gianvito.files.wordpress.com/2008/08/wscreen11.jpg"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" src="http://gianvito.files.wordpress.com/2008/08/wscreen11-thumb.jpg?w=244&#038;h=154" border="0" alt="wscreen11" width="244" height="154" /></a> <a href="http://gianvito.files.wordpress.com/2008/08/wscreen21.jpg"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" src="http://gianvito.files.wordpress.com/2008/08/wscreen21-thumb.jpg?w=244&#038;h=154" border="0" alt="wscreen21" width="244" height="154" /></a></p>
<p><strong><em>Benchmarks:</em></strong></p>
<ul>
<li>Athlon64 @ 2.4 Ghz</li>
<li>2 gb Ram</li>
<li>Nvidia Geforce 9600 gt</li>
<li>177.83 Nvidia Driver</li>
<li>Physx 8.08.01 Driver</li>
</ul>
<p align="center"><a href="http://gianvito.files.wordpress.com/2008/08/wmgame-2008-08-17-13-15-27-78.jpg"><strong><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" src="http://gianvito.files.wordpress.com/2008/08/wmgame-2008-08-17-13-15-27-78-thumb.jpg?w=244&#038;h=154" border="0" alt="WMGame 2008-08-17 13-15-27-78" width="244" height="154" /></strong></a><strong> Physx Disabled (using Fraps)</strong></p>
<p align="center"><a href="http://gianvito.files.wordpress.com/2008/08/wmgame-2008-08-17-13-20-47-25.jpg"><strong><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" src="http://gianvito.files.wordpress.com/2008/08/wmgame-2008-08-17-13-20-47-25-thumb.jpg?w=244&#038;h=154" border="0" alt="WMGame 2008-08-17 13-20-47-25" width="244" height="154" /></strong></a><strong> Physx Enabled (Using Fraps)</strong></p>
<p align="center"><strong><a href="http://gianvito.files.wordpress.com/2008/08/wbenchs.jpg"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" src="http://gianvito.files.wordpress.com/2008/08/wbenchs-thumb.jpg?w=483&#038;h=291" border="0" alt="wbenchs" width="483" height="291" /></a> </strong></p>
<p align="center"><strong>More than 4 times faster! :)</strong></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/214/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/214/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/214/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/214/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/214/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=214&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/08/17/warmonger-using-native-physx-support-by-nvidia-benchmarks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/08/warmonger-thumb.jpg" medium="image">
			<media:title type="html">warmonger</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/08/wscreen2-thumb.jpg" medium="image">
			<media:title type="html">wscreen2</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/08/wscreen-thumb.jpg" medium="image">
			<media:title type="html">wscreen</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/08/wscreen9-thumb.jpg" medium="image">
			<media:title type="html">wscreen9</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/08/wscreen11-thumb.jpg" medium="image">
			<media:title type="html">wscreen11</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/08/wscreen21-thumb.jpg" medium="image">
			<media:title type="html">wscreen21</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/08/wmgame-2008-08-17-13-15-27-78-thumb.jpg" medium="image">
			<media:title type="html">WMGame 2008-08-17 13-15-27-78</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/08/wmgame-2008-08-17-13-20-47-25-thumb.jpg" medium="image">
			<media:title type="html">WMGame 2008-08-17 13-20-47-25</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/08/wbenchs-thumb.jpg" medium="image">
			<media:title type="html">wbenchs</media:title>
		</media:content>
	</item>
		<item>
		<title>Nvidia 177.83 Driver Release + 8.08.1 Physx version w/ Physx pack &#8212;- &gt; 2000+ mbs to download :)</title>
		<link>http://gianvito.wordpress.com/2008/08/13/nvidia-17783-driver-release-w-physx-pack-2000-mbs-to-download/</link>
		<comments>http://gianvito.wordpress.com/2008/08/13/nvidia-17783-driver-release-w-physx-pack-2000-mbs-to-download/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 15:32:12 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2008/08/13/nvidia-17783-driver-release-w-physx-pack-2000-mbs-to-download/</guid>
		<description><![CDATA[&#160; &#160; Visit the link to download new software for your NVIDIA Geforce 8/9/GT200 Series Links: Force Within &#8212;&#8211;&#62;&#160; http://www.nvidia.com/content/forcewithin/us/download.asp<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=193&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center">&nbsp;</p>
<p align="center"><a href="http://gianvito.files.wordpress.com/2008/08/forcewithin.jpg"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" height="70" alt="forcewithin" src="http://gianvito.files.wordpress.com/2008/08/forcewithin-thumb.jpg?w=244&#038;h=70" width="244" border="0"></a>&nbsp; </p>
<p align="left">Visit the link to download new software for your NVIDIA Geforce 8/9/GT200 Series</p>
<p>Links:</p>
<ul>
<li>Force Within &#8212;&#8211;&gt;&nbsp; <a title="http://www.nvidia.com/content/forcewithin/us/download.asp" href="http://www.nvidia.com/content/forcewithin/us/download.asp">http://www.nvidia.com/content/forcewithin/us/download.asp</a></li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/193/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/193/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/193/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/193/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/193/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=193&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/08/13/nvidia-17783-driver-release-w-physx-pack-2000-mbs-to-download/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/08/forcewithin-thumb.jpg" medium="image">
			<media:title type="html">forcewithin</media:title>
		</media:content>
	</item>
		<item>
		<title>Space.Com Interesting Links &#8211; Part 3</title>
		<link>http://gianvito.wordpress.com/2008/08/10/spacecom-interesting-links-part-3/</link>
		<comments>http://gianvito.wordpress.com/2008/08/10/spacecom-interesting-links-part-3/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 09:59:40 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2008/08/10/spacecom-interesting-links-part-3/</guid>
		<description><![CDATA[Links: Perseid Meteor Shower Peaks August 12 Study: All Planets Are Born in Killer Environments Milky Way&#8217;s Dark Matter Clumpier Than Thought Dark Energy Signs Seen in Giant Clusters and Voids<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=183&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center"><img style="border-right:0;border-top:0;border-left:0;border-bottom:0;" src="http://gianvito.files.wordpress.com/2008/08/080808-ns-meteorshower-01-thumb.jpg?w=167&#038;h=114" border="0" alt="080808-ns-meteorshower-01" width="167" height="114" /></p>
<p align="left"><strong><em>Links:</em></strong></p>
<ul>
<li>
<div><strong><a href="http://www.space.com/spacewatch/080808-ns-perseid-meteors.html" target="_blank">Perseid Meteor Shower Peaks August 12</a></strong></div>
</li>
<li>
<div><strong><a href="http://www.space.com/scienceastronomy/080807-planet-evolution.html" target="_blank">Study: All Planets Are Born in Killer Environments</a></strong></div>
</li>
<li>
<div><strong><a href="http://www.space.com/scienceastronomy/080806-clumpy-dark-matter.html" target="_blank">Milky Way&#8217;s Dark Matter Clumpier Than Thought</a></strong></div>
</li>
<li><strong><a href="http://www.space.com/scienceastronomy/080804-mm-dark-energy-superclusters.html" target="_blank">Dark Energy Signs Seen in Giant Clusters and Voids</a> </strong></li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/183/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/183/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/183/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/183/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/183/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=183&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/08/10/spacecom-interesting-links-part-3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/08/080808-ns-meteorshower-01-thumb.jpg" medium="image">
			<media:title type="html">080808-ns-meteorshower-01</media:title>
		</media:content>
	</item>
		<item>
		<title>Play Games with physics support by graphic Cards &#8211; Nvidia Physx Drivers 8.07.18 &#8212;-&gt; now supports Geforce 8,9,gtx series</title>
		<link>http://gianvito.wordpress.com/2008/08/05/play-games-with-physics-support-by-graphic-cards-nvidia-physx-drivers-80718-now-supports-geforce-89gtx-series/</link>
		<comments>http://gianvito.wordpress.com/2008/08/05/play-games-with-physics-support-by-graphic-cards-nvidia-physx-drivers-80718-now-supports-geforce-89gtx-series/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 20:38:34 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[folding]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[geforce]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[nvidia]]></category>
		<category><![CDATA[physix]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2008/08/05/play-games-with-physics-support-by-graphic-cards-nvidia-physx-drivers-80718-now-supports-geforce-89gtx-series/</guid>
		<description><![CDATA[Update: On August 12 NVIDIA will release official physx and graphic drivers Links: Nvidia website &#8212;&#8211;&#62; www.nvidia.com Physx Drivers &#8212;&#8211;&#62; http://en.expreview.com/img/software/0808/PhysX_8.07.18_SystemSoftware.exe Supported games &#8212;-&#62; http://www.nzone.com/object/nzone_physxgames_home.html Folding@Home project &#8212;&#8211;&#62; http://folding.stanford.edu/ guru3d forum post &#8212;&#8211;&#62; http://forums.guru3d.com/showthread.php?t=269514 We&#8217;ve to say Nvidia IS the leader in graphic hardware. Especially for innovations. After Nvidia bought Ageia Physx&#8230; Engineers wanted to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=180&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center"><a href="http://gianvito.files.wordpress.com/2008/08/nvidia-logo2.jpg"><img style="border-width:0;" src="http://gianvito.files.wordpress.com/2008/08/nvidia-logo2-thumb.jpg?w=240&#038;h=228" border="0" alt="nvidia_logo2" width="240" height="228" /></a></p>
<p><span id="more-180"></span></p>
<p><strong>Update</strong>: On August 12 NVIDIA will release official physx and graphic drivers</p>
<p><strong>Links:</strong></p>
<ul>
<li>Nvidia website &#8212;&#8211;&gt; <a href="http://www.nvidia.com">www.nvidia.com</a></li>
<li>Physx Drivers &#8212;&#8211;&gt; <a title="http://en.expreview.com/img/software/0808/PhysX_8.07.18_SystemSoftware.exe" href="http://en.expreview.com/img/software/0808/PhysX_8.07.18_SystemSoftware.exe">http://en.expreview.com/img/software/0808/PhysX_8.07.18_SystemSoftware.exe</a></li>
<li>Supported games &#8212;-&gt; <a title="http://www.nzone.com/object/nzone_physxgames_home.html" href="http://www.nzone.com/object/nzone_physxgames_home.html">http://www.nzone.com/object/nzone_physxgames_home.html</a></li>
<li><a href="mailto:Folding@Home">Folding@Home</a> project &#8212;&#8211;&gt; <a title="http://folding.stanford.edu/English/Papers" href="http://folding.stanford.edu/">http://folding.stanford.edu/</a></li>
<li>guru3d forum post &#8212;&#8211;&gt; <a title="http://forums.guru3d.com/showthread.php?t=269514" href="http://forums.guru3d.com/showthread.php?t=269514">http://forums.guru3d.com/showthread.php?t=269514</a></li>
</ul>
<p>We&#8217;ve to say <strong>Nvidia IS the leader</strong> in graphic hardware. Especially for innovations.</p>
<p>After Nvidia bought Ageia Physx&#8230; Engineers wanted to use this technology on their graphic cards.</p>
<p>In fact a GPU is faster than a CPU in some kind of calculation&#8230; cause CPU was born to be a general purpouse calculator and it has to manage different aspects to respect compatibility on every system and with every program (but it&#8217;s not the only reason).</p>
<p>So when we use GPU to calculate the physic we give out from main processor that work (making it better)&#8230; and we can concentrate to give more realism to a project (like a game).</p>
<p>GPU (as processor) is used also in <a href="mailto:Folding@Home">Folding@Home</a> software&#8230; Where we process very complex calculation through Graphic Units to give an hand to the medicine.</p>
<p>All is faster&#8230; In the latest time where we&#8217;ve only support for GTX cards and 9800 gtx&#8230; and statistics says <a href="mailto:Folding@Home">Folding@Home</a> begins to be a real weapon against diseases as consequence of a greater success related to the use of graphics cards (and PS3 CPU) <strong>to understand protein folding, misfolding, and related misfunction </strong>(<a href="mailto:Folding@Home">Folding@Home</a> goal).</p>
<p>Directly from <a href="mailto:Folding@Home">Folding@Home</a> website:</p>
<p><em><strong>&#8221; ABSTRACT.</strong> Commercial graphics processors (GPUs) have high compute capacity at very low cost, which makes them attractive for general purpose scientic computing. In this poster we show how graphics processors can be used for N-body simulations to obtain large improvements in performance over current generation CPUs. We have developed a highly optimized algorithm for performing the O(N^2) force calculations that constitute the major part of stellar and molecular dynamics simulations. In the calculations, we achieve sustained performance of nearly 100 GFlops on an ATI X1900XTX. The performance on GPUs 25x an Intel Pentium4, and 2x specialized hardware such as GRAPE-6A, but at a fraction of the cost. Furthermore, the wide availability of GPUs has signicant implications for cluster computing and distributed computing efforts like </em><a href="mailto:Folding@Home"><em>Folding@Home</em></a><em>. &#8220;</em></p>
<p>So i downloaded them from the link above&#8230; and i&#8217;ve tried to get it working (on a 9600 gt) <strong>(nothing more simple)</strong>.</p>
<p align="center"><a href="http://gianvito.files.wordpress.com/2008/08/nvidiaproperties.jpg"><img style="border-width:0;" src="http://gianvito.files.wordpress.com/2008/08/nvidiaproperties-thumb.jpg?w=494&#038;h=523" border="0" alt="nvidiaproperties" width="494" height="523" /></a></p>
<p align="center"><a href="http://gianvito.files.wordpress.com/2008/08/physx1.jpg"><img style="border-width:0;" src="http://gianvito.files.wordpress.com/2008/08/physx1-thumb.jpg?w=841&#038;h=662" border="0" alt="physx1" width="841" height="662" /></a></p>
<p align="center"><a href="http://gianvito.files.wordpress.com/2008/08/physx2.jpg"><img style="border-width:0;" src="http://gianvito.files.wordpress.com/2008/08/physx2-thumb.jpg?w=846&#038;h=660" border="0" alt="physx2" width="846" height="660" /></a></p>
<p align="center"><a href="http://gianvito.files.wordpress.com/2008/08/physx3.jpg"><img style="border-width:0;" src="http://gianvito.files.wordpress.com/2008/08/physx3-thumb.jpg?w=832&#038;h=664" border="0" alt="physx3" width="832" height="664" /></a></p>
<p align="center"><a href="http://gianvito.files.wordpress.com/2008/08/fluids.jpg"><img style="border-width:0;" src="http://gianvito.files.wordpress.com/2008/08/fluids-thumb.jpg?w=841&#038;h=664" border="0" alt="fluids" width="841" height="664" /></a></p>
<p align="center">Here is a list (taken from the link above) of physx supported games:</p>
<p align="center"><em><a href="http://gianvito.files.wordpress.com/2008/08/supportedgames.jpg"><img style="border-width:0;" src="http://gianvito.files.wordpress.com/2008/08/supportedgames-thumb.jpg?w=564&#038;h=1019" border="0" alt="supportedgames" width="564" height="1019" /></a> </em></p>
<p align="center"><em>I&#8217;ve to download 3d mark to see real differences (nophysx &#8211; physx) but my actual dialup connection doesn&#8217;t allow me to do it.</em></p>
<p align="center">If you&#8217;ve some interesting links where we can find benchmarks and other&#8230; just comment it :)</p>
<p><em></em><a title="http://folding.stanford.edu/English/Papers" href="http://folding.stanford.edu/English/Papers"></a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/180/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/180/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/180/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/180/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/180/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=180&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/08/05/play-games-with-physics-support-by-graphic-cards-nvidia-physx-drivers-80718-now-supports-geforce-89gtx-series/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/08/nvidia-logo2-thumb.jpg" medium="image">
			<media:title type="html">nvidia_logo2</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/08/nvidiaproperties-thumb.jpg" medium="image">
			<media:title type="html">nvidiaproperties</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/08/physx1-thumb.jpg" medium="image">
			<media:title type="html">physx1</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/08/physx2-thumb.jpg" medium="image">
			<media:title type="html">physx2</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/08/physx3-thumb.jpg" medium="image">
			<media:title type="html">physx3</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/08/fluids-thumb.jpg" medium="image">
			<media:title type="html">fluids</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/08/supportedgames-thumb.jpg" medium="image">
			<media:title type="html">supportedgames</media:title>
		</media:content>
	</item>
		<item>
		<title>New Interesting &quot;space.com&quot; links</title>
		<link>http://gianvito.wordpress.com/2008/07/30/new-interesting-spacecom-links/</link>
		<comments>http://gianvito.wordpress.com/2008/07/30/new-interesting-spacecom-links/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 22:41:55 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/2008/07/31/new-interesting-spacecom-links/</guid>
		<description><![CDATA[I&#8217;ve missed writing something on this blog cause my 56K connection (it&#8217;s really annoying to get wordpress writing section loaded with this connection)&#8230; However here some interesting links i read in these days (all from space.com): Water Ice on Mars confirmed http://www.space.com/missionlaunches/080731-phoenix-update.html How the First Stars Were Born http://www.space.com/scienceastronomy/080731-first-stars.html European Team Discovers New Alien World [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=162&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve missed writing something on this blog cause my 56K connection (it&#8217;s really annoying to get wordpress writing section loaded with this connection)&#8230;</p>
<p align="center"><a href="http://gianvito.files.wordpress.com/2008/07/080724-supernova-01.jpg"><img style="border-width:0;" src="http://gianvito.files.wordpress.com/2008/07/080724-supernova-01-thumb.jpg?w=167&#038;h=114" border="0" alt="080724-supernova-01" width="167" height="114" /></a></p>
<p>However here some interesting links i read in these days (all from space.com):</p>
<p><strong>Water Ice on Mars confirmed</strong></p>
<p><a title="http://www.space.com/missionlaunches/080731-phoenix-update.html" href="http://www.space.com/missionlaunches/080731-phoenix-update.html">http://www.space.com/missionlaunches/080731-phoenix-update.html</a></p>
<p><strong>How the First Stars Were Born </strong></p>
<p><a title="http://www.space.com/scienceastronomy/080731-first-stars.html" href="http://www.space.com/scienceastronomy/080731-first-stars.html">http://www.space.com/scienceastronomy/080731-first-stars.html</a></p>
<p><strong>European Team Discovers New Alien World </strong></p>
<p><a title="http://www.space.com/scienceastronomy/080724-new-exoplanet.html" href="http://www.space.com/scienceastronomy/080724-new-exoplanet.html">http://www.space.com/scienceastronomy/080724-new-exoplanet.html</a></p>
<p><strong>Explosive Star Doesn&#8217;t Fit the Mold </strong></p>
<p><a title="http://www.space.com/080724-supernova-abnormal.html" href="http://www.space.com/080724-supernova-abnormal.html">http://www.space.com/080724-supernova-abnormal.html</a></p>
<p><strong>Secret of Colorful Auroras Revealed </strong></p>
<p><a title="http://www.space.com/scienceastronomy/080724-themis-aurora-mystery.html" href="http://www.space.com/scienceastronomy/080724-themis-aurora-mystery.html">http://www.space.com/scienceastronomy/080724-themis-aurora-mystery.html</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/162/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/162/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/162/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=162&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/07/30/new-interesting-spacecom-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/07/080724-supernova-01-thumb.jpg" medium="image">
			<media:title type="html">080724-supernova-01</media:title>
		</media:content>
	</item>
		<item>
		<title>Ati (fglrx) drivers 8.5 released (+) a workaround to delete &#8220;Ati &#8211; Testing use only&#8221; watermark</title>
		<link>http://gianvito.wordpress.com/2008/05/22/ati-fglrx-drivers-85-released/</link>
		<comments>http://gianvito.wordpress.com/2008/05/22/ati-fglrx-drivers-85-released/#comments</comments>
		<pubDate>Thu, 22 May 2008 17:47:29 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[archlinux]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/?p=144</guid>
		<description><![CDATA[Links: Ati HomePage Ati Linux Driver (x86) Page Ati 8.5 drivers release notes WorkAround to (A little watermark on the right lower corner &#8212;&#62; &#8220;Ati &#8211; Testing use only&#8221;) Open a terminal and: sudo nano /eti/ati/signature delete UNSIGNED copy and paste this string into /etc/ati/signature Reboot<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=144&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><img class="aligncenter size-full wp-image-145" src="http://gianvito.files.wordpress.com/2008/05/logo_ati_091.jpg?w=600" alt=""   /></p>
<p style="text-align:left;"><strong>Links:</strong></p>
<ul>
<li><a href="http://ati.amd.com/">Ati HomePage</a></li>
<li><a href="http://ati.amd.com/support/drivers/linux/linux-radeon.html">Ati Linux Driver (x86) Page</a></li>
<li><a href="https://a248.e.akamai.net/f/674/9206/0/www2.ati.com/drivers/linux/catalyst_85_linux.html">Ati 8.5 drivers release notes</a></li>
</ul>
<p><strong> </strong></p>
<p><strong>WorkAround to (</strong>A little watermark on the right lower corner &#8212;&gt; &#8220;Ati &#8211; Testing use only&#8221;<strong>)</strong></p>
<p>Open a terminal and:</p>
<ul>
<li><em>sudo nano /eti/ati/signature</em></li>
<li>delete UNSIGNED</li>
<li>copy and paste <a href="http://xoomer.alice.it/gianvitorepo/ati8.5string.txt">this string</a> into /etc/ati/signature</li>
<li>Reboot</li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/144/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/144/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/144/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=144&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/05/22/ati-fglrx-drivers-85-released/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/05/logo_ati_091.jpg" medium="image" />
	</item>
		<item>
		<title>Planets by the Dozen</title>
		<link>http://gianvito.wordpress.com/2008/05/09/planets-by-the-dozen/</link>
		<comments>http://gianvito.wordpress.com/2008/05/09/planets-by-the-dozen/#comments</comments>
		<pubDate>Fri, 09 May 2008 05:13:45 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/?p=143</guid>
		<description><![CDATA[&#8220;You know the planets of our solar system, each a unique world with its own distinctive appearance, size, and chemistry. Mars, with its bitter-cold, rusty red sands; Venus, a fiery world shrouded in thick clouds of sulfuric acid; sideways Uranus and its strange vertical rings. The variety is breathtaking.&#8220; scienze.nasa.gov http://science.nasa.gov/headlines/y2008/08may_marvels.htm<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=143&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><em>&#8220;<span style="font-family:Verdana,Arial,Helvetica,sans-serif;font-size:x-small;">You know the planets of our solar system,                      each a unique world with its own distinctive appearance, size,                      and chemistry. Mars, with its bitter-cold, rusty red sands;                      Venus, a fiery world shrouded in thick clouds of sulfuric                      acid; sideways Uranus and its strange vertical rings. The                      variety is breathtaking.</span></em><em>&#8220;</em></p>
<p style="text-align:right;"><strong>scienze.nasa.gov</strong></p>
<p style="text-align:center;"><img class="aligncenter" src="http://science.nasa.gov/headlines/y2008/images/marvels/Riecken1.jpg" alt="" /></p>
<p style="text-align:right;"><strong><br />
</strong></p>
<p style="text-align:center;"><a href="http://science.nasa.gov/headlines/y2008/08may_marvels.htm">http://science.nasa.gov/headlines/y2008/08may_marvels.htm</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/143/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/143/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/143/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=143&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/05/09/planets-by-the-dozen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://science.nasa.gov/headlines/y2008/images/marvels/Riecken1.jpg" medium="image" />
	</item>
		<item>
		<title>John Woo&#8217;s Stranglehold &#8211; A Max Payne&#8217;s revival</title>
		<link>http://gianvito.wordpress.com/2008/05/08/john-woos-stranglehold-a-max-paynes-revival/</link>
		<comments>http://gianvito.wordpress.com/2008/05/08/john-woos-stranglehold-a-max-paynes-revival/#comments</comments>
		<pubDate>Thu, 08 May 2008 21:13:00 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[games]]></category>
		<category><![CDATA[action game]]></category>
		<category><![CDATA[action pc]]></category>
		<category><![CDATA[john woo]]></category>
		<category><![CDATA[pc game]]></category>
		<category><![CDATA[stranglehold]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/?p=142</guid>
		<description><![CDATA[Stranglehold – Official Site for The Only Authentic John Woo Video Game Experience.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=142&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='600' height='368' src='http://www.youtube.com/embed/6Iiwl9j6Hsg?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent' frameborder='0'></iframe></span></p>
<p style="text-align:center;"><a href="www.strangleholdgame.com/"><strong>Stranglehold</strong></a> – Official Site for The Only Authentic John Woo Video Game Experience.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/142/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/142/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/142/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=142&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/05/08/john-woos-stranglehold-a-max-paynes-revival/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>
	</item>
		<item>
		<title>Tupac &#8211; A great utility that completes Pacman (not only a famous rapper)</title>
		<link>http://gianvito.wordpress.com/2008/04/28/tupac-a-great-utility-that-completes-pacman-not-only-a-famous-rapper/</link>
		<comments>http://gianvito.wordpress.com/2008/04/28/tupac-a-great-utility-that-completes-pacman-not-only-a-famous-rapper/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 13:17:39 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[archlinux]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[repository]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/?p=135</guid>
		<description><![CDATA[&#8220;A cached pacman implementatioin&#8221; Pacman Description Tupac (rapper) R.I.P. (click on the numbers on the right to change pages)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=135&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><em>&#8220;A cached pacman implementatioin&#8221;</em></p>
<p style="text-align:right;"><strong>Pacman Description</strong></p>
<p style="text-align:center;"><img class="size-full wp-image-136 aligncenter" src="http://gianvito.files.wordpress.com/2008/04/tupac9.jpg?w=600" alt=""   /></p>
<p style="text-align:center;"><em>Tupac (rapper) R.I.P.<br />
</em></p>
<p style="text-align:center;"><em>(click on the numbers on the right to change pages)</em></p>
<p style="text-align:center;"><span id="more-135"></span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/135/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/135/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/135/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=135&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/04/28/tupac-a-great-utility-that-completes-pacman-not-only-a-famous-rapper/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/04/tupac9.jpg" medium="image" />
	</item>
		<item>
		<title>New Compiz-Fusion Plugins</title>
		<link>http://gianvito.wordpress.com/2008/04/15/new-compiz-fusion-plugins/</link>
		<comments>http://gianvito.wordpress.com/2008/04/15/new-compiz-fusion-plugins/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 13:17:28 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[archlinux]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[repository]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/?p=134</guid>
		<description><![CDATA[New Compiz-Fusion Plugins I&#8217;ve just updated compiz fusion (git) in the repo&#8230; You can install it from there adding this and then: sudo pacman -S compiz-fusion-git<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=134&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:center;"><strong>New Compiz-Fusion Plugins</strong></p>
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='600' height='368' src='http://www.youtube.com/embed/kKJBPCy2l3g?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent' frameborder='0'></iframe></span>
<p>I&#8217;ve just updated compiz fusion (git) in the repo&#8230; You can install it from there adding <a href="http://gianvito.wordpress.com/my-archlinux-repository/">this</a> and then:</p>
<p style="text-align:center;"><em>sudo pacman -S compiz-fusion-git</em></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/134/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/134/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/134/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=134&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/04/15/new-compiz-fusion-plugins/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>
	</item>
		<item>
		<title>GreaseMonkey And Userscripts.org &#8211; A way to give useful tools to your Firefox</title>
		<link>http://gianvito.wordpress.com/2008/04/08/greasemonkey-and-userscriptsorg-a-way-to-give-to-your-firefox-useful-tools/</link>
		<comments>http://gianvito.wordpress.com/2008/04/08/greasemonkey-and-userscriptsorg-a-way-to-give-to-your-firefox-useful-tools/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 17:07:34 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[archlinux]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/?p=131</guid>
		<description><![CDATA[&#8220;Allows you to customize the way a webpage displays using small bits of JavaScript. Hundreds of scripts, for a wide variety of popular sites, are already available at http://userscripts.org. You can write your own scripts, too. Check out http://wiki.greasespot.net/ to get started.&#8221; by &#8220;https://addons.mozilla.org/it/firefox/addon/748&#8243; (click on the numbers on the right to change pages)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=131&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><em>&#8220;Allows you to customize the way a webpage displays using small bits of JavaScript. Hundreds of scripts, for a wide variety of popular sites, are already available at http://userscripts.org. You can write your own scripts, too. Check out http://wiki.greasespot.net/ to get started.&#8221;</em></p>
<p style="text-align:right;"><strong>by &#8220;https://addons.mozilla.org/it/firefox/addon/748&#8243;</strong></p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-133" src="http://gianvito.files.wordpress.com/2008/04/gr.png?w=600" alt="" /></p>
<p style="text-align:center;">(click on the numbers on the right to change pages)</p>
<p style="text-align:center;"><span id="more-131"></span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/131/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/131/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/131/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=131&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/04/08/greasemonkey-and-userscriptsorg-a-way-to-give-to-your-firefox-useful-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/04/gr.png" medium="image" />
	</item>
		<item>
		<title>Interesting &#8220;Space@Nasa&#8221; &amp; &#8220;Space.com&#8221; links</title>
		<link>http://gianvito.wordpress.com/2008/04/02/interesting-spacenasa-spacecom-links/</link>
		<comments>http://gianvito.wordpress.com/2008/04/02/interesting-spacenasa-spacecom-links/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 20:32:26 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[space]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[&#8220;When scientists peer at distant galaxies, it&#8217;s like looking back in time because their light has taken so long to reach us.&#8220; by &#8220;http://www.space.com&#8221; Update 8/04/2008 Added some links Links: Naked-eye Gamma Ray Burst Smallest Black Hole found Galaxy Evolution seen in action Space Radiation too deadly for mars missions Venus and Mars: Surprising Similarities [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=129&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><em>&#8220;<span><span><span style="font-family:arial;font-size:x-small;"><span style="font-family:arial;">When scientists peer at distant galaxies, it&#8217;s like looking back in time because their light has taken so long to reach us.</span></span></span></span>&#8220;</em></p>
<p align="right"><strong>by &#8220;http://www.space.com&#8221;</strong></p>
<p align="center"><img src="http://gianvito.files.wordpress.com/2008/04/080401-tiny-bh-01.jpg?w=600" alt="080401-tiny-bh-01.jpg" /></p>
<p style="text-align:left;"><strong>Update 8/04/2008</strong></p>
<ul>
<li>Added some links</li>
</ul>
<p align="center"><span id="more-129"></span></p>
<p align="left"><strong><span style="text-decoration:underline;">Links:</span> </strong></p>
<ul>
<li><a href="http://science.nasa.gov/headlines/y2008/21mar_nakedeye.htm">Naked-eye Gamma                      Ray Burst</a></li>
<li><a href="http://www.space.com/scienceastronomy/080401-smallest-blackhole.html">Smallest Black Hole found</a></li>
<li><a href="http://www.space.com/scienceastronomy/080401-st-galaxy-collisions.html">Galaxy Evolution seen in action</a></li>
<li><a href="http://www.space.com/missionlaunches/080331-radiation-shielding.html">Space Radiation too deadly for mars missions</a></li>
<li><a href="http://www.space.com/scienceastronomy/080317-mm-mars-venus.html">Venus and Mars: Surprising Similarities Found</a></li>
<li><a href="http://www.space.com/scienceastronomy/080317-io-spots.html">Io Creates Spots on Jupiter</a></li>
<li><a href="http://www.space.com/scienceastronomy/080317-volcanic-mars.html">Five Volcanic Episodes On Mars Identified by Scientists</a></li>
<li><a href="http://www.space.com/missionlaunches/080318-vanguard-solar.html">First Solar-Powered Satellite Still Flying at 50</a></li>
<li><a href="http://www.space.com/scienceastronomy/080319-saturn-rings.html">The Vanishing Rings of Saturn</a></li>
<li> <a href="http://www.space.com/scienceastronomy/080320-titan-ocean.html">Evidence for Ocean Found at Saturn&#8217;s Moon Titan</a></li>
<li><a href="http://www.space.com/scienceastronomy/080324-oldest-asteroids.html">Oldest-Known Asteroids in Solar System Identified</a></li>
<li><a href="http://www.space.com/scienceastronomy/080326-cassini-flyby-update.html">Seeds of Life Found Near Saturn</a></li>
<li> <a href="http://www.space.com/searchforlife/080403-seti-mother-meteor.html">The Mother of All Meteor Storms</a></li>
<li><a href="http://www.space.com/scienceastronomy/080404-spin-star.html">Star Theory Gets New Spin</a></li>
<li><a href="http://www.space.com/scienceastronomy/080407-mm-hubble-supernova.html">Massive Star Mystery: Do They Explode?</a></li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/129/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/129/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/129/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=129&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/04/02/interesting-spacenasa-spacecom-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/04/080401-tiny-bh-01.jpg" medium="image">
			<media:title type="html">080401-tiny-bh-01.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Maccio Capatonda &#8211; Speciale Cinema &#8220;Rocchio 47&#8243; (Italian)</title>
		<link>http://gianvito.wordpress.com/2008/04/01/maccio-capatonda-speciale-cinema-rocchio-47/</link>
		<comments>http://gianvito.wordpress.com/2008/04/01/maccio-capatonda-speciale-cinema-rocchio-47/#comments</comments>
		<pubDate>Tue, 01 Apr 2008 22:05:14 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[maccio capatonda]]></category>
		<category><![CDATA[capatonda]]></category>
		<category><![CDATA[divertente]]></category>
		<category><![CDATA[humor]]></category>
		<category><![CDATA[maccio]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/?p=128</guid>
		<description><![CDATA[&#8220;Non ho mai visto tanta vecchiaia in un solo uomo!!&#8221;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=128&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<!--YouTube Error: bad URL entered-->
<p align="center">&#8220;Non ho mai visto tanta vecchiaia in un solo uomo!!&#8221;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/128/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/128/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/128/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/128/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/128/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=128&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/04/01/maccio-capatonda-speciale-cinema-rocchio-47/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>
	</item>
		<item>
		<title>Hubble Space Telescope &#8211; A look to the UNIVERSE</title>
		<link>http://gianvito.wordpress.com/2008/03/22/hubble-space-telescope-a-look-to-the-universe/</link>
		<comments>http://gianvito.wordpress.com/2008/03/22/hubble-space-telescope-a-look-to-the-universe/#comments</comments>
		<pubDate>Sat, 22 Mar 2008 00:32:13 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[space]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/?p=124</guid>
		<description><![CDATA[&#8220;Edwin Powell Hubble (November 20, 1889 – September 28, 1953) was an American astronomer. He profoundly changed astronomers&#8217; understanding of the nature of the universe by demonstrating the existence of other galaxies besides the Milky Way. He also discovered that the degree of redshift observed in light coming from a galaxy increased in proportion to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=124&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><i>&#8220;<b>Edwin Powell Hubble</b> (<a href="http://en.wikipedia.org/wiki/November_20" title="November 20">November 20</a>, <a href="http://en.wikipedia.org/wiki/1889" title="1889">1889</a> – <a href="http://en.wikipedia.org/wiki/September_28" title="September 28">September 28</a>, <a href="http://en.wikipedia.org/wiki/1953" title="1953">1953</a>) was an <a href="http://en.wikipedia.org/wiki/USA" class="mw-redirect" title="USA">American</a> <a href="http://en.wikipedia.org/wiki/Astronomy" title="Astronomy">astronomer</a>. He profoundly changed astronomers&#8217; understanding of the nature of the universe by demonstrating the existence of other galaxies besides the <a href="http://en.wikipedia.org/wiki/Milky_Way" title="Milky Way">Milky Way</a>. He also discovered that the degree of redshift observed in light coming from a galaxy increased in proportion to the distance of that galaxy from the Milky Way. This became known as <a href="http://en.wikipedia.org/wiki/Hubble%27s_law" title="Hubble's law">Hubble&#8217;s law</a>, and would help establish that the universe is expanding.&#8221;</i></p>
<p align="right"><b>From WikiPedia </b></p>
<p align="center">&nbsp;</p>
<div align="center"><img src="http://gianvito.files.wordpress.com/2008/03/hubble20040813a2.jpg?w=600" alt="hubble20040813a2.jpg" /></div>
<p align="left">&nbsp;</p>
<div style="text-align:center;" align="center"><a href="http://esamultimedia.esa.int/images/spcs/hubble/hubble20040813a.jpg">Full Screen Version</a></div>
<div style="text-align:center;" align="left"></div>
<div style="text-align:center;" align="center"></div>
<div style="text-align:center;" align="center"></div>
<blockquote>
<blockquote>
<blockquote>
<blockquote></blockquote>
</blockquote>
</blockquote>
</blockquote>
<p>Thanks to the Telescope which has his name&#8230; we can give a look to things which will never be seen without it.</p>
<p align="left"><b>Links:</b></p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Edwin_Hubble">Edwin Hubble</a></li>
<li><a href="http://en.wikipedia.org/wiki/Hubble_Space_Telescope">Hubble Telescope</a></li>
<li><a href="http://hubble.nasa.gov/">Hubble Main Page</a></li>
<li><a href="http://hubblesite.org/gallery/wallpaper/+2">Hubble Pictures (Wallpapers)</a></li>
<li><a href="http://hubble.nasa.gov/multimedia">Hubble Multimedia</a></li>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/124/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/124/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/124/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/124/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/124/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=124&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/03/22/hubble-space-telescope-a-look-to-the-universe/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/03/hubble20040813a2.jpg" medium="image">
			<media:title type="html">hubble20040813a2.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Gnome 2.22 Released</title>
		<link>http://gianvito.wordpress.com/2008/03/13/gnome-222-released/</link>
		<comments>http://gianvito.wordpress.com/2008/03/13/gnome-222-released/#comments</comments>
		<pubDate>Thu, 13 Mar 2008 10:38:17 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[archlinux]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[repository]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[themes]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/?p=118</guid>
		<description><![CDATA[Let&#8217;s see how to install it on ArchLinux&#8230; Update 10/04/2008 Gnome 2.22 in [extra] Gnome 2.22.1 released (click on the numbers on the right to change pages)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=118&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center"><img src="http://gianvito.files.wordpress.com/2008/03/gnome222.png?w=600" alt="gnome222.png" /></p>
<p>Let&#8217;s see how to install it on ArchLinux&#8230;  <strong></strong></p>
<p><strong>Update 10/04/2008</strong></p>
<ul>
<li>Gnome 2.22 in [extra]</li>
<li>Gnome 2.22.1 released</li>
</ul>
<p align="center">(click on the numbers on the right to change pages)</p>
<p align="center"><span id="more-118"></span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/118/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/118/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/118/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/118/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/118/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=118&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/03/13/gnome-222-released/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/03/gnome222.png" medium="image">
			<media:title type="html">gnome222.png</media:title>
		</media:content>
	</item>
		<item>
		<title>Celestia &#8211; The Planetarium</title>
		<link>http://gianvito.wordpress.com/2008/03/07/celestia-the-planetarium/</link>
		<comments>http://gianvito.wordpress.com/2008/03/07/celestia-the-planetarium/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 17:39:58 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[archlinux]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[space]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/?p=109</guid>
		<description><![CDATA[The Space&#8230; An infinite universe where I think we aren&#8217;t lonely&#8230; but we have to do great steps to know if there is intelligent life in the other galaxies. Today we&#8217;ll talking about a great software written by Chris Laurel. CELESTIA (click on the numbers on the right to change pages)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=109&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The Space&#8230; An infinite universe where I think we aren&#8217;t lonely&#8230; but we have to do great steps to know if there is intelligent life in the other galaxies.</p>
<p align="center"> <img src="http://gianvito.files.wordpress.com/2008/03/m31_andromeda_galaxy1.jpg?w=600" alt="m31_andromeda_galaxy1.jpg" /></p>
<p>Today we&#8217;ll talking about a great software written by <b>Chris Laurel</b>.</p>
<p align="center"><u><b>CELESTIA</b></u></p>
<p align="center">(click on the numbers on the right to change pages) <span id="more-109"></span> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/109/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/109/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/109/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=109&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/03/07/celestia-the-planetarium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/03/m31_andromeda_galaxy1.jpg" medium="image">
			<media:title type="html">m31_andromeda_galaxy1.jpg</media:title>
		</media:content>
	</item>
		<item>
		<title>Amarok &#8211; A Superb media player</title>
		<link>http://gianvito.wordpress.com/2008/03/05/amarok-a-superb-media-player/</link>
		<comments>http://gianvito.wordpress.com/2008/03/05/amarok-a-superb-media-player/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 17:42:56 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[archlinux]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/?p=103</guid>
		<description><![CDATA[&#8221; There are many things that are broken, non existent or flat out ugly, and we are well aware of that. Some things also work rather well. The purpose of this release is to inspire folks to stand up and help us finish Amarok 2.0.&#8221; From Amarok Main Site (21/01/2008) Waiting for the next great [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=103&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center"> <img src="http://gianvito.files.wordpress.com/2008/03/am2.png?w=600" alt="am2.png" /></p>
<p><i>&#8221;             There are many <b>things that are broken</b>, non existent or flat out ugly, and we are well aware of that. Some things also work rather well. The purpose of this release is to inspire folks to stand up and help us finish Amarok 2.0.&#8221;</i></p>
<p align="right"><i><b>From Amarok Main Site (21/01/2008)</b></i></p>
<p align="center"> Waiting for the next great release of this wonderful music player. We&#8217;re going to see how to install version 1.4.8 and configure postgresql to manage collections.</p>
<p align="center"> (See how to install it and configure it clicking on the right &#8220;pages&#8221;)</p>
<div align="center"><span id="more-103"></span></div>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/103/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/103/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/103/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=103&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/03/05/amarok-a-superb-media-player/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/03/am2.png" medium="image">
			<media:title type="html">am2.png</media:title>
		</media:content>
	</item>
		<item>
		<title>An Overview on Linux, Windows &amp; Mac (Italian)</title>
		<link>http://gianvito.wordpress.com/2008/03/05/an-overview-on-linux-windows-mac-italian/</link>
		<comments>http://gianvito.wordpress.com/2008/03/05/an-overview-on-linux-windows-mac-italian/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 16:17:18 +0000</pubDate>
		<dc:creator>gianvito</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://gianvito.wordpress.com/?p=104</guid>
		<description><![CDATA[Here is the link of the article (from www.tomshw.it): Tomshw<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=104&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="center"><img src="http://gianvito.files.wordpress.com/2008/03/linux-mac-windows2.jpg?w=600" alt="linux-mac-windows2.jpg" /></p>
<p><b>Here is the link of the article (from www.tomshw.it):</b> <a href="http://www.tomshw.it/business.php?guide=200802061"><b></b></a></p>
<p align="center"><a href="http://www.tomshw.it/business.php?guide=200802061"><b>Tomshw</b></a></p>
<ul></ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gianvito.wordpress.com/104/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gianvito.wordpress.com/104/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gianvito.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gianvito.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gianvito.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gianvito.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gianvito.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gianvito.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gianvito.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gianvito.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gianvito.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gianvito.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gianvito.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gianvito.wordpress.com/104/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gianvito.wordpress.com/104/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gianvito.wordpress.com/104/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gianvito.wordpress.com&amp;blog=2900638&amp;post=104&amp;subd=gianvito&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gianvito.wordpress.com/2008/03/05/an-overview-on-linux-windows-mac-italian/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f5709f762da93cf2c61a1ca060bc32ee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gianvito</media:title>
		</media:content>

		<media:content url="http://gianvito.files.wordpress.com/2008/03/linux-mac-windows2.jpg" medium="image">
			<media:title type="html">linux-mac-windows2.jpg</media:title>
		</media:content>
	</item>
	</channel>
</rss>
