<?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>GKG welcomes you...</title>
	<atom:link href="http://gopihere.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://gopihere.wordpress.com</link>
	<description></description>
	<lastBuildDate>Sat, 18 Dec 2010 15:09:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='gopihere.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>GKG welcomes you...</title>
		<link>http://gopihere.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://gopihere.wordpress.com/osd.xml" title="GKG welcomes you..." />
	<atom:link rel='hub' href='http://gopihere.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Su-php RPM Method</title>
		<link>http://gopihere.wordpress.com/2010/12/18/su-php-rpm-method/</link>
		<comments>http://gopihere.wordpress.com/2010/12/18/su-php-rpm-method/#comments</comments>
		<pubDate>Sat, 18 Dec 2010 15:06:06 +0000</pubDate>
		<dc:creator>gopihere</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://gopihere.wordpress.com/?p=61</guid>
		<description><![CDATA[1. Download suphp from http://dag.wieers.com/rpm/packages/mod_suphp/ 2. Edit suphp.conf vi /etc/suphp.conf [global] logfile=/var/log/httpd/suphp_log loglevel=info webserver_user=apache docroot=/ env_path=/bin:/usr/bin umask=0022 min_uid=500 min_gid=48 ; Security options allow_file_group_writeable=false allow_file_others_writeable=false allow_directory_group_writeable=false allow_directory_others_writeable=false ;Check wheter script is within DOCUMENT_ROOT check_vhost_docroot=true ;Send minor error messages to browser errors_to_browser=true [handlers] ;Handler for php-scripts x-httpd-php=php:/usr/bin/php-cgi ;Handler for CGI-scripts x-suphp-cgi=execute:!self 3. Disable the original PHP 5 module. [root@example [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gopihere.wordpress.com&amp;blog=3771314&amp;post=61&amp;subd=gopihere&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>1. Download suphp from http://dag.wieers.com/rpm/packages/mod_suphp/</p>
<p>2. Edit suphp.conf</p>
<p>vi /etc/suphp.conf</p>
<p>[global]<br />
logfile=/var/log/httpd/suphp_log<br />
loglevel=info<br />
webserver_user=apache<br />
docroot=/<br />
env_path=/bin:/usr/bin<br />
umask=0022<br />
min_uid=500<br />
min_gid=48</p>
<p>; Security options<br />
allow_file_group_writeable=false<br />
allow_file_others_writeable=false<br />
allow_directory_group_writeable=false<br />
allow_directory_others_writeable=false</p>
<p>;Check wheter script is within DOCUMENT_ROOT<br />
check_vhost_docroot=true</p>
<p>;Send minor error messages to browser<br />
errors_to_browser=true</p>
<p>[handlers]<br />
;Handler for php-scripts<br />
x-httpd-php=php:/usr/bin/php-cgi</p>
<p>;Handler for CGI-scripts<br />
x-suphp-cgi=execute:!self</p>
<p>3. Disable the original PHP 5 module.</p>
<p>[root@example etc]# mv /etc/httpd/conf.d/php.conf /etc/httpd/conf.d/php.conf.disabled</p>
<p>[root@example etc]# vi /etc/httpd/conf.d/suphp.conf</p>
<p>LoadModule suphp_module modules/mod_suphp.so</p>
<p>suPHP_Engine on</p>
<p>AddHandler x-httpd-php .php<br />
AddHandler x-httpd-php .php .php4 .php3 .phtml</p>
<p># suPHP_UserGroup apache apache</p>
<p>suPHP_AddHandler x-httpd-php</p>
<p>4. I have the following VirtualHost definition in my apache config file:-</p>
<p>&lt;VirtualHost *:80&gt;<br />
ServerAdmin user<a href="mailto:webmaster@example.com">@example.com</a><br />
DocumentRoot /var/www/vhosts/example.com<br />
ServerName www.example.com<br />
suPHP_UserGroup user apache<br />
&lt;/VirtualHost&gt;</p>
<p>[root@example etc]# ls -l /var/www/vhosts/</p>
<p>total 4<br />
drwxr-xr-x 2 user apache 4096 2008-06-04 00:18 example.com</p>
<p>[root@example]# ls -l /var/www/vhosts/example.com/<br />
total 4<br />
-rw-r&#8211;r&#8211; 1 user apache 37 2008-06-04 00:18 index.php</p>
<p>Service httpd restart</p>
<p>Open a browser and try opening the www.example.com site (whatever is your virtualhost).</p>
<p>You should get the following , as a result of successful execution of suphp for your virtualhost.</p>
<p>[root@example ~]# tail -f /var/log/httpd/suphp_log<br />
[Wed Jun 04 10:43:18 2008] [info] Executing &#8220;/var/www/vhosts/example.com/index.php&#8221; as UID 501, GID 48</p>
<p>File Creation Test: (Last Test, for which we undergo all this pain) :-<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
Create a file through php script. It SHOULD get created as user webmaster and group apache (if your setup is successful).</p>
<p>Here is the code you can put in a file, say createfile.php in your documentroot. Note it is a MUST to setup the ownership and permission of your php file as the same owner / group of your document root.</p>
<p>vi /var/www/vhosts/example.com/createfile.php</p>
<p>&lt;?php<br />
$file=&#8221;testfile.html&#8221;;<br />
$fp=fopen($file,&#8221;w&#8221;);<br />
# echo &#8220;This script is being run as user (ID) : &#8220;. fileowner(&#8216;createfile.php&#8217;) . &#8220;&lt;br&gt;&#8221;;<br />
echo &#8220;The owner of the script being run : get_current_user : &#8221; . get_current_user() . &#8220;&lt;br&gt;&#8221;;<br />
echo &#8220;The UID of the user: int getmyuid ( void ) : &#8221; . getmyuid() . &#8220;&lt;br&gt;&#8221;;</p>
<p>if (fwrite($fp,&#8221;&lt;h1&gt;Hello&lt;/h1&gt;&#8221;))<br />
echo &#8220;File created.&#8221;;<br />
else<br />
echo &#8220;File not created !!!&#8221;;<br />
fclose($fp);<br />
?&gt;</p>
<p>chown user:apache /var/www/vhosts/example.com/createfile.php</p>
<p>Run this file through browser and you should see a file created as testfile.html in your documentroot . Just for the sake of completeness of this document, the contents of that file would be a word &#8220;Hello&#8221;.</p>
<p>As you can see from the file list below, the file is successfully created in my documentroot, with correct ownership and permissions.</p>
<p>[root@example etc]# ls -l /var/www/vhosts/example.com/<br />
total 12<br />
-rw-r&#8211;r&#8211; 1 user apache 247 2008-06-04 11:08 createfile.php<br />
-rw-r&#8211;r&#8211; 1 user apache  37 2008-06-04 00:18 index.php<br />
-rw-r&#8211;r&#8211; 1 user apache  14 2008-06-04 11:07 testfile.html</p>
<p>You should get the following , as a result of successful execution of suphp for your this file.</p>
<p>[root@user ~]# tail -f /var/log/httpd/suphp_log<br />
&#8230;<br />
&#8230;<br />
[Wed Jun 04 11:07:55 2008] [info] Executing &#8220;/var/www/vhosts/example.com/createfile.php&#8221; as UID 501, GID 48</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gopihere.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gopihere.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gopihere.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gopihere.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gopihere.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gopihere.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gopihere.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gopihere.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gopihere.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gopihere.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gopihere.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gopihere.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gopihere.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gopihere.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gopihere.wordpress.com&amp;blog=3771314&amp;post=61&amp;subd=gopihere&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gopihere.wordpress.com/2010/12/18/su-php-rpm-method/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8361d181686a9c217661bbc2edc8a4cc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gopihere</media:title>
		</media:content>
	</item>
		<item>
		<title>Nikon D90</title>
		<link>http://gopihere.wordpress.com/2008/12/25/nikon-d90/</link>
		<comments>http://gopihere.wordpress.com/2008/12/25/nikon-d90/#comments</comments>
		<pubDate>Thu, 25 Dec 2008 15:39:06 +0000</pubDate>
		<dc:creator>gopihere</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[D90]]></category>
		<category><![CDATA[Nikon D90]]></category>

		<guid isPermaLink="false">http://gopihere.wordpress.com/?p=48</guid>
		<description><![CDATA[The first-ever DSLR with HD video recording has been launched and its Nikon D90. Go and Grab it!!!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gopihere.wordpress.com&amp;blog=3771314&amp;post=48&amp;subd=gopihere&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The first-ever DSLR with <strong>HD video recording</strong> has been launched and its Nikon D90. Go and Grab it!!!</p>
<p><img class="alignright size-medium wp-image-53" title="nikon2" src="http://gopihere.files.wordpress.com/2008/12/nikon2.jpg?w=244&#038;h=185" alt="nikon2" width="244" height="185" /></p>
<p><img class="alignleft size-medium wp-image-49" title="Nikond90" src="http://gopihere.files.wordpress.com/2008/12/nikond90.jpg?w=211&#038;h=158" alt="Nikond90" width="211" height="158" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gopihere.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gopihere.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gopihere.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gopihere.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gopihere.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gopihere.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gopihere.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gopihere.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gopihere.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gopihere.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gopihere.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gopihere.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gopihere.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gopihere.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gopihere.wordpress.com&amp;blog=3771314&amp;post=48&amp;subd=gopihere&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gopihere.wordpress.com/2008/12/25/nikon-d90/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8361d181686a9c217661bbc2edc8a4cc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gopihere</media:title>
		</media:content>

		<media:content url="http://gopihere.files.wordpress.com/2008/12/nikon2.jpg?w=300" medium="image">
			<media:title type="html">nikon2</media:title>
		</media:content>

		<media:content url="http://gopihere.files.wordpress.com/2008/12/nikond90.jpg?w=300" medium="image">
			<media:title type="html">Nikond90</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu and Wubi</title>
		<link>http://gopihere.wordpress.com/2008/12/20/ubuntu-and-wubi/</link>
		<comments>http://gopihere.wordpress.com/2008/12/20/ubuntu-and-wubi/#comments</comments>
		<pubDate>Sat, 20 Dec 2008 12:01:41 +0000</pubDate>
		<dc:creator>gopihere</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[ubuntu 8.10]]></category>
		<category><![CDATA[wubi]]></category>

		<guid isPermaLink="false">http://gopihere.wordpress.com/?p=41</guid>
		<description><![CDATA[Wubi is an officially supported Ubuntu installer for Windows users that can bring you to the Linux world with a single click. Wubi allows you to install and uninstall Ubuntu as any other Windows application, in a simple and safe way. Are you curious about Linux and Ubuntu? Trying them out has never been easier! [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gopihere.wordpress.com&amp;blog=3771314&amp;post=41&amp;subd=gopihere&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Wubi is an officially supported Ubuntu installer for Windows users that can bring you to the Linux world with a single click. Wubi allows you to install and uninstall Ubuntu as any other Windows application, in a simple and safe way. Are you curious about Linux and Ubuntu? Trying them out has never been easier!</p>
<p>Wubi adds an entry to the Windows boot menu which allows you to run Linux. Ubuntu is installed within a file in the Windows file system (c:ubuntudisksroot.disk), this file is seen by Linux as a real hard disk.</p>
<p>You can download Wubi from <a href="http://wubi-installer.org">here</a></p>
<p>1.Run wubi, insert a password for the new account, and click “install”. The installation process from this point is fully automatic.</p>
<p><img class="alignright size-full wp-image-44" title="wubi" src="http://gopihere.files.wordpress.com/2008/12/wubi-123_small.png?w=510&#038;h=320" alt="wubi" width="510" height="320" /></p>
<p>2.The installation files (700MB) will be downloaded and checked, after which you will be asked to reboot. Do so and select Ubuntu at the boot screen.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>Wubi also gives you an option of installing Ubuntu from your existing ISO/CD instead of letting Wubi download a new one. If you have an image on CD, physical CDs will be detected automatically.</p>
<p>pre-downloaded ISOs should be placed in the same folder as Wubi.exe. Please note that Wubi 8.04.1 requires the Desktop 8.04.1 CD/ISO, while Wubi 8.04 requires the 8.04 CD/ISO. The DVD and Altrenate CD/ISO will not work.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>3.The installation will continue for another 10-15 minutes and the machine will reboot again. Thats it. Now you can select Ubuntu at the boot screen and start using it.</p>
<p>You can see installation steps with screeshot <a href="http://www.howtoforge.com/wubi_ubuntu_on_windows">here</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gopihere.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gopihere.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gopihere.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gopihere.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gopihere.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gopihere.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gopihere.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gopihere.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gopihere.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gopihere.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gopihere.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gopihere.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gopihere.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gopihere.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gopihere.wordpress.com&amp;blog=3771314&amp;post=41&amp;subd=gopihere&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gopihere.wordpress.com/2008/12/20/ubuntu-and-wubi/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8361d181686a9c217661bbc2edc8a4cc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gopihere</media:title>
		</media:content>

		<media:content url="http://gopihere.files.wordpress.com/2008/12/wubi-123_small.png" medium="image">
			<media:title type="html">wubi</media:title>
		</media:content>
	</item>
		<item>
		<title>USB3</title>
		<link>http://gopihere.wordpress.com/2008/11/15/usb3/</link>
		<comments>http://gopihere.wordpress.com/2008/11/15/usb3/#comments</comments>
		<pubDate>Sat, 15 Nov 2008 15:50:56 +0000</pubDate>
		<dc:creator>gopihere</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[USB3]]></category>

		<guid isPermaLink="false">http://gopihere.wordpress.com/?p=34</guid>
		<description><![CDATA[Hey..You know now its the time for the brand new USB3. USB3 has a speed of 4.8 Gbit/s, while contemporary USB 2.0 devices ensure only 480 Mbit/sec. This speed , for example, will allow to copy HD films of 27 Gb to a portable disk in 70 seconds instead of the necessary today 15 minutes. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gopihere.wordpress.com&amp;blog=3771314&amp;post=34&amp;subd=gopihere&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Hey..You know now its the time for the brand new USB3</strong>. <span style="font-size:small;">USB3 has a speed of 4.8 Gbit/s, while contemporary USB 2.0 devices ensure only 480 Mbit/sec. This speed , for example, will allow to copy HD films of 27 Gb to a portable disk in 70 seconds instead of the necessary today 15 minutes.</span></p>
<p><span style="font-size:small;">Great na !!! </span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gopihere.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gopihere.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gopihere.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gopihere.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gopihere.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gopihere.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gopihere.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gopihere.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gopihere.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gopihere.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gopihere.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gopihere.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gopihere.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gopihere.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gopihere.wordpress.com&amp;blog=3771314&amp;post=34&amp;subd=gopihere&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gopihere.wordpress.com/2008/11/15/usb3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8361d181686a9c217661bbc2edc8a4cc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gopihere</media:title>
		</media:content>
	</item>
		<item>
		<title>New Apple iPod Touch</title>
		<link>http://gopihere.wordpress.com/2008/09/11/new-apple-ipod-touch/</link>
		<comments>http://gopihere.wordpress.com/2008/09/11/new-apple-ipod-touch/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 22:13:53 +0000</pubDate>
		<dc:creator>gopihere</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[ipod touch]]></category>

		<guid isPermaLink="false">http://gopihere.wordpress.com/?p=18</guid>
		<description><![CDATA[The all new iPod Touch launched. * Sleek Design * More battery life of 36 hrs * Built in Speakers and much more All these for just $229 !!! Grab it dude !!!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gopihere.wordpress.com&amp;blog=3771314&amp;post=18&amp;subd=gopihere&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The all new iPod Touch launched.</p>
<p>* Sleek Design</p>
<p>* More battery life of 36 hrs</p>
<p>* Built in Speakers and much more</p>
<p>All these for just $229 !!! Grab it dude !!!</p>
<div id="attachment_20" class="wp-caption alignright" style="width: 459px"><a href="http://gopihere.files.wordpress.com/2008/09/ipodtouch_hero20080909.jpg"><img class="size-full wp-image-20" title="ipodtouch" src="http://gopihere.files.wordpress.com/2008/09/ipodtouch_hero20080909.jpg?w=449&#038;h=492" alt="The all new iPod Touch" width="449" height="492" /></a><p class="wp-caption-text">The all new iPod Touch</p></div>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gopihere.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gopihere.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gopihere.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gopihere.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gopihere.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gopihere.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gopihere.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gopihere.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gopihere.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gopihere.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gopihere.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gopihere.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gopihere.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gopihere.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gopihere.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gopihere.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gopihere.wordpress.com&amp;blog=3771314&amp;post=18&amp;subd=gopihere&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gopihere.wordpress.com/2008/09/11/new-apple-ipod-touch/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8361d181686a9c217661bbc2edc8a4cc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gopihere</media:title>
		</media:content>

		<media:content url="http://gopihere.files.wordpress.com/2008/09/ipodtouch_hero20080909.jpg" medium="image">
			<media:title type="html">ipodtouch</media:title>
		</media:content>
	</item>
		<item>
		<title>My friend did this!!!</title>
		<link>http://gopihere.wordpress.com/2008/05/24/video/</link>
		<comments>http://gopihere.wordpress.com/2008/05/24/video/#comments</comments>
		<pubDate>Sat, 24 May 2008 17:51:39 +0000</pubDate>
		<dc:creator>gopihere</dc:creator>
				<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://gopihere.wordpress.com/?p=14</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gopihere.wordpress.com&amp;blog=3771314&amp;post=14&amp;subd=gopihere&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<span style="text-align:center; display: block;"><a href="http://gopihere.wordpress.com/2008/05/24/video/"><img src="http://img.youtube.com/vi/NTbfHtLFKuA/2.jpg" alt="" /></a></span>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gopihere.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gopihere.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gopihere.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gopihere.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gopihere.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gopihere.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gopihere.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gopihere.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gopihere.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gopihere.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gopihere.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gopihere.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gopihere.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gopihere.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gopihere.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gopihere.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gopihere.wordpress.com&amp;blog=3771314&amp;post=14&amp;subd=gopihere&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gopihere.wordpress.com/2008/05/24/video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8361d181686a9c217661bbc2edc8a4cc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gopihere</media:title>
		</media:content>
	</item>
		<item>
		<title>New FM at cochin</title>
		<link>http://gopihere.wordpress.com/2008/05/22/new-fm-at-cochin/</link>
		<comments>http://gopihere.wordpress.com/2008/05/22/new-fm-at-cochin/#comments</comments>
		<pubDate>Thu, 22 May 2008 10:52:23 +0000</pubDate>
		<dc:creator>gopihere</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[FM at cochin]]></category>

		<guid isPermaLink="false">http://gopihere.wordpress.com/?p=9</guid>
		<description><![CDATA[Three new FM stations in cochin now&#8230; 91.9 &#8211; Radio Mango&#8211; 93.5 &#8211; S FM &#8212; kelkku kelkku kettukondae irikku 94.3 &#8211; Club FM &#8212; Ton kanakkinu fun Hear the title song of Club FM..Really super.. Mazhayathum veylathum&#8230;..<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gopihere.wordpress.com&amp;blog=3771314&amp;post=9&amp;subd=gopihere&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" style="float:right;" src="http://gopihere.files.wordpress.com/2008/05/img_offer_347.jpg?w=300&#038;h=300" alt="" width="300" height="300" />Three new FM stations in cochin now&#8230;</p>
<p>91.9 &#8211; Radio Mango&#8211;</p>
<p>93.5 &#8211; S FM &#8212; kelkku kelkku kettukondae irikku</p>
<p>94.3 &#8211; Club FM &#8212; Ton kanakkinu fun</p>
<p>Hear the title song of Club FM..Really super.. Mazhayathum veylathum&#8230;..</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gopihere.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gopihere.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gopihere.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gopihere.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gopihere.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gopihere.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gopihere.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gopihere.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gopihere.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gopihere.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gopihere.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gopihere.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gopihere.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gopihere.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gopihere.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gopihere.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gopihere.wordpress.com&amp;blog=3771314&amp;post=9&amp;subd=gopihere&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gopihere.wordpress.com/2008/05/22/new-fm-at-cochin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8361d181686a9c217661bbc2edc8a4cc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gopihere</media:title>
		</media:content>

		<media:content url="http://gopihere.files.wordpress.com/2008/05/img_offer_347.jpg" medium="image" />
	</item>
		<item>
		<title>BSNL Evdo in Linux</title>
		<link>http://gopihere.wordpress.com/2008/05/22/bsnl-evdo-in-linux/</link>
		<comments>http://gopihere.wordpress.com/2008/05/22/bsnl-evdo-in-linux/#comments</comments>
		<pubDate>Thu, 22 May 2008 09:01:09 +0000</pubDate>
		<dc:creator>gopihere</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[evdo]]></category>
		<category><![CDATA[evdo and linux]]></category>

		<guid isPermaLink="false">http://gopihere.wordpress.com/?p=8</guid>
		<description><![CDATA[How to connect BSNL EVDO to linux: 1.Insert the EvDO device into USB port                                   2. Login as root 3. Check whether the device is getting detected on your system or not. For that use the command: tail -f /var/log/messages Now you should see something like: &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; usb 4-1: configuration #1 chosen from 1 choice usbserial_generic [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gopihere.wordpress.com&amp;blog=3771314&amp;post=8&amp;subd=gopihere&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>How to connect BSNL EVDO to linux:</p>
<p>1.Insert the EvDO device into USB port                                   <img class="alignright" style="float:right;" src="http://gopihere.files.wordpress.com/2008/05/evdo.png?w=30&#038;h=59" alt="" width="30" height="59" /></p>
<p>2. Login as root</p>
<p>3. Check whether the device is getting detected on your system or not. For that use the command:</p>
<p><em>tail -f /var/log/messages</em></p>
<p>Now you should see something like:</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><em>usb 4-1: configuration #1 chosen from 1 choice<br />
usbserial_generic 4-1:1.0: generic converter detected<br />
usb 4-1: generic converter now attached to ttyUSB0</em></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>If not, then you have to do the following steps:</p>
<p>4. If you are using Ubuntu 7.04 and 7.10, then do the following also:</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><em>vi /etc/init.d/mountdevsubfs.sh</em></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>5. find the function do_start () and edit it, such that it shud look like :</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>#<br />
# Magic to make /proc/bus/usb work<br />
#<br />
mkdir -p /dev/bus/usb/.usbfs<br />
domount usbfs &#8220;&#8221; /dev/bus/usb/.usbfs -obusmode=0700,devmode=0600,listmode=0644<br />
ln -s .usbfs/devices /dev/bus/usb/devices<br />
mount &#8211;rbind /dev/bus/usb /proc/bus/usb</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>The above change creates a file called /proc/bus/usb/.usbfs/devices which is missing in the new Ubuntu releases.</p>
<p>6. Now execute the following command:</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p><em>etc/init.d/mountdevsubfs.sh restart</em></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>7. Now, your system can  identify the new USB device which you have inserted and you can confirm this by running lsusb command.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><em># lsusb<br />
Bus 005 Device 004: ID 046d:08c6 Logitech, Inc.<br />
Bus 005 Device 001: ID 0000:0000<br />
Bus 004 Device 027: ID 05c6:6000 Qualcomm, Inc.<br />
Bus 004 Device 001: ID 0000:0000</em></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>Here Qualcomm will be the EVDO device.<br />
8. Now insert the driver module into your kernel. Run this at the console to activate the module based on the vendor id and product id. Vendor ID and product ID can be determined from the lsusb command. [ Add 0x as prefix to convert into hexa decimal]</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><em># modprobe usbserial vendor=0x05c6 product=0&#215;6000</em></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>9. Now create the  dialup profile. Its can be created with “wvdialconf” command.</p>
<p>10. Open the /etc/wvdial.conf file and edit it according to your need. Give your phone number, username and password.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p># cat /etc/wvdial.conf</p>
<p>[Dialer Defaults]<br />
Init2 = ATQ0 V1 E1 S0=0 &amp;C1 &amp;D2 +FCLASS=0<br />
Modem Type = Analog Modem<br />
; Phone = &lt;Target Phone Number&gt;<br />
ISDN = 0<br />
; Username = &lt;Your Login Name&gt;<br />
Init1 = ATZ<br />
; Password = &lt;Your Password&gt;<br />
Modem = /dev/ttyUSB0<br />
Baud = 460800</p>
<p>Stupid Mode = 1</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>11. Now give &#8220;wvdial&#8221; command to connect. To disconnect, press ctrl + c.</p>
<p>12. Surf web &amp; enjooaaay.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gopihere.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gopihere.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gopihere.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gopihere.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gopihere.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gopihere.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gopihere.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gopihere.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gopihere.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gopihere.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gopihere.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gopihere.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gopihere.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gopihere.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gopihere.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gopihere.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gopihere.wordpress.com&amp;blog=3771314&amp;post=8&amp;subd=gopihere&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gopihere.wordpress.com/2008/05/22/bsnl-evdo-in-linux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8361d181686a9c217661bbc2edc8a4cc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gopihere</media:title>
		</media:content>

		<media:content url="http://gopihere.files.wordpress.com/2008/05/evdo.png?w=30" medium="image" />
	</item>
		<item>
		<title></title>
		<link>http://gopihere.wordpress.com/2008/05/20/hello-world/</link>
		<comments>http://gopihere.wordpress.com/2008/05/20/hello-world/#comments</comments>
		<pubDate>Tue, 20 May 2008 07:26:52 +0000</pubDate>
		<dc:creator>gopihere</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Never take some one for granted&#8230;hold every person close to your heart.. bcoz u might wake up 1 day and realize that u have lost a diamond while u were busy collecting stones&#8230;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gopihere.wordpress.com&amp;blog=3771314&amp;post=1&amp;subd=gopihere&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<blockquote><p><em>Never take some one for granted&#8230;hold every person close to your heart.. bcoz u might wake up 1 day and realize that u have lost a diamond while u were busy collecting stones&#8230;</em></p>
<p><img style="vertical-align:text-bottom;" src="http://gopihere.files.wordpress.com/2008/05/loose_colored_gemstones1.jpg?w=285&#038;h=198" alt="" width="285" height="198" /></p></blockquote>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/gopihere.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/gopihere.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gopihere.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gopihere.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gopihere.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gopihere.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gopihere.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gopihere.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gopihere.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gopihere.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gopihere.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gopihere.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gopihere.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gopihere.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gopihere.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gopihere.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gopihere.wordpress.com&amp;blog=3771314&amp;post=1&amp;subd=gopihere&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gopihere.wordpress.com/2008/05/20/hello-world/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8361d181686a9c217661bbc2edc8a4cc?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gopihere</media:title>
		</media:content>

		<media:content url="http://gopihere.files.wordpress.com/2008/05/loose_colored_gemstones1.jpg" medium="image" />
	</item>
	</channel>
</rss>
