<?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>Welcome in Coolmaddyworld's</title>
	<atom:link href="http://coolmaddyworld.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://coolmaddyworld.wordpress.com</link>
	<description>Open Mind, Open Source...</description>
	<lastBuildDate>Tue, 24 Jan 2012 03:56:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='coolmaddyworld.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Welcome in Coolmaddyworld's</title>
		<link>http://coolmaddyworld.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://coolmaddyworld.wordpress.com/osd.xml" title="Welcome in Coolmaddyworld&#039;s" />
	<atom:link rel='hub' href='http://coolmaddyworld.wordpress.com/?pushpress=hub'/>
		<item>
		<title>How to sftp in java using jsch : Example</title>
		<link>http://coolmaddyworld.wordpress.com/2011/10/31/how-to-sftp-in-java-using-jsch-example/</link>
		<comments>http://coolmaddyworld.wordpress.com/2011/10/31/how-to-sftp-in-java-using-jsch-example/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 20:26:58 +0000</pubDate>
		<dc:creator>coolmaddyworld</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[jSch]]></category>
		<category><![CDATA[SFTP]]></category>

		<guid isPermaLink="false">http://coolmaddyworld.wordpress.com/?p=155</guid>
		<description><![CDATA[Hi, Well i got some interesting work today. Transfer a file from a machine to another using java. From last couple of months i was working on uploading  the excel files using UI, which is quite easy and for me just some hours of work. But this time i need to upload a file on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coolmaddyworld.wordpress.com&amp;blog=7111015&amp;post=155&amp;subd=coolmaddyworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>Well i got some interesting work today. Transfer a file from a machine to another using java. From last couple of months i was working on uploading  the excel files using UI, which is quite easy and for me just some hours of work. But this time i need to upload a file on server and after finish of upload, need to transfer it to another machine which will consume it. Quite interesting stuff cause was exhausted by doing the same stuff, excel file upload and UI from last 2 or 3 mnths.</p>
<p>Well to do this i Google some key words and found using <a href="http://www.jcraft.com/jsch/">Java Secure Channel</a> <a title="http://www.jcraft.com/jsch/" href="http://www.jcraft.com/jsch/">jsch</a> library we can do it easily in JAVA. It is also used by  <a href="http://ant.apache.org/">ANT</a>, <a href="http://www.eclipse.org/">Eclipse</a>, <a title="http://www.netbeans.org/" href="http://www.netbeans.org/" target="_blank">NetBeans</a> and some other big projects. Then i thought to give it a try  and wrote a Util class for my project using jsch. I added copy, and move methods in class for copy the file (without deleting the original location) and to Move the file (After copying delete the original file) respectively. You need to download and add <a title="http://sourceforge.net/projects/jsch/files/jsch.jar/0.1.44/jsch-0.1.44.jar/download" href="http://sourceforge.net/projects/jsch/files/jsch.jar/0.1.44/jsch-0.1.44.jar/download"> jsch.jar</a>  file in ur classpath.</p>
<p>Below is the code i wrote for my sftp util class, use it share it and enjoy the coding.</p>
<p>package com.maddy.util;</p>
<p>import java.io.File;<br />
import java.io.FileInputStream;</p>
<p>import com.jcraft.jsch.Channel;<br />
import com.jcraft.jsch.ChannelSftp;<br />
import com.jcraft.jsch.JSch;<br />
import com.jcraft.jsch.Session;</p>
<p>public class SftpUtility {</p>
<p>private String sftpHost ;<br />
private int    sftpPort ;<br />
private String sftpUser ;<br />
private String sftpPassword ;<br />
private String sftpDir ;</p>
<p>public SftpUtility(String sftpHost, int sftpPort, String sftpUser,<br />
String sftpPassword, String sftpDir) {<br />
super();<br />
this.sftpHost = sftpHost;<br />
this.sftpPort = sftpPort;<br />
this.sftpUser = sftpUser;<br />
this.sftpPassword = sftpPassword;<br />
this.sftpDir = sftpDir;<br />
}</p>
<p>public String getSftpHost() {<br />
return sftpHost;<br />
}</p>
<p>public void setSftpHost(String sftpHost) {<br />
this.sftpHost = sftpHost;<br />
}</p>
<p>public int getSftpPort() {<br />
return sftpPort;<br />
}</p>
<p>public void setSftpPort(int sftpPort) {<br />
this.sftpPort = sftpPort;<br />
}</p>
<p>public String getSftpUser() {<br />
return sftpUser;<br />
}</p>
<p>public void setSftpUser(String sftpUser) {<br />
this.sftpUser = sftpUser;<br />
}</p>
<p>public String getSftpPassword() {<br />
return sftpPassword;<br />
}</p>
<p>public void setSftpPassword(String sftpPassword) {<br />
this.sftpPassword = sftpPassword;<br />
}</p>
<p>public String getSftpDir() {<br />
return sftpDir;<br />
}</p>
<p>public void setSftpDir(String sftpDir) {<br />
this.sftpDir = sftpDir;<br />
}</p>
<p>public boolean moveFileToDir(String localFilePath){<br />
return moveFileToDir(localFilePath, null, null, true);<br />
}<br />
public boolean moveFileToDir(String localFilePath, String remoteDirPath){<br />
return moveFileToDir(localFilePath, remoteDirPath, null, true);<br />
}<br />
public boolean moveFileToDir(String localFilePath, String remoteDirPath, String remoteFileName){<br />
return moveFileToDir(localFilePath, remoteDirPath, remoteFileName, true);<br />
}</p>
<p>public boolean copyFileToDir(String localFilePath){<br />
return moveFileToDir(localFilePath, null, null, false);<br />
}<br />
public boolean copyFileToDir(String localFilePath, String remoteDirPath){<br />
return moveFileToDir(localFilePath, remoteDirPath, null, false);<br />
}<br />
public boolean copyFileToDir(String localFilePath, String remoteDirPath, String remoteFileName){<br />
return moveFileToDir(localFilePath, remoteDirPath, remoteFileName, false);<br />
}</p>
<p>public boolean moveFileToDir(String localFilePath, String remoteDirPath, String remoteFileName, boolean isDelete){<br />
boolean returnResult = false;<br />
boolean deleteSuccess = false;<br />
Session     session     = null;<br />
Channel     channel     = null;<br />
ChannelSftp channelSftp = null;</p>
<p>try{<br />
JSch jsch = new JSch();<br />
session = jsch.getSession(this.sftpUser,this.sftpHost,this.sftpPort);<br />
session.setPassword(this.sftpPassword);<br />
java.util.Properties config = new java.util.Properties();<br />
config.put(&#8220;StrictHostKeyChecking&#8221;, &#8220;no&#8221;);<br />
session.setConfig(config);<br />
session.connect();<br />
channel = session.openChannel(&#8220;sftp&#8221;);<br />
channel.connect();<br />
channelSftp = (ChannelSftp)channel;<br />
if(null != remoteDirPath)<br />
channelSftp.cd(remoteDirPath);<br />
else<br />
channelSftp.cd(this.sftpDir);</p>
<p>File f = new File(localFilePath);<br />
String fileName = f.getName();<br />
if(null != remoteFileName &amp;&amp; remoteFileName.length() &gt; 0)<br />
fileName = remoteFileName;</p>
<p>channelSftp.put(new FileInputStream(f), fileName);<br />
//Disconnecting the channel<br />
channel.disconnect();<br />
//Disconnecting the session<br />
session.disconnect();<br />
if(isDelete){<br />
deleteSuccess = f.delete();<br />
}else{<br />
deleteSuccess = true;<br />
}<br />
returnResult = deleteSuccess;<br />
}catch(Exception ex){<br />
ex.printStackTrace();<br />
}</p>
<p>return returnResult;<br />
}</p>
<p>}</p>
<p> <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Cheers !!</p>
<p>Open Mind, Open Source.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coolmaddyworld.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coolmaddyworld.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coolmaddyworld.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coolmaddyworld.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coolmaddyworld.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coolmaddyworld.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coolmaddyworld.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coolmaddyworld.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coolmaddyworld.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coolmaddyworld.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coolmaddyworld.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coolmaddyworld.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coolmaddyworld.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coolmaddyworld.wordpress.com/155/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coolmaddyworld.wordpress.com&amp;blog=7111015&amp;post=155&amp;subd=coolmaddyworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coolmaddyworld.wordpress.com/2011/10/31/how-to-sftp-in-java-using-jsch-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fc9052f3cec68cc4d61d2fb9910aee47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">coolmaddyworld</media:title>
		</media:content>
	</item>
		<item>
		<title>MySQL Cheat Sheet</title>
		<link>http://coolmaddyworld.wordpress.com/2011/10/18/mysql-cheat-sheet/</link>
		<comments>http://coolmaddyworld.wordpress.com/2011/10/18/mysql-cheat-sheet/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 10:28:09 +0000</pubDate>
		<dc:creator>coolmaddyworld</dc:creator>
				<category><![CDATA[MySql]]></category>
		<category><![CDATA[Command]]></category>

		<guid isPermaLink="false">http://coolmaddyworld.wordpress.com/?p=148</guid>
		<description><![CDATA[Found a mysql cheat sheet on Net, thought share with yo&#8230; as well as with me also in future&#8230;.. Selecting a database: mysql&#62; USE database; Listing databases: mysql&#62; SHOW DATABASES; Listing tables in a db: mysql&#62; SHOW TABLES; Describing the format of a table: mysql&#62; DESCRIBE table; Creating a database: mysql&#62; CREATE DATABASE db_name; Creating [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coolmaddyworld.wordpress.com&amp;blog=7111015&amp;post=148&amp;subd=coolmaddyworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Found a mysql cheat sheet on Net, thought share with yo&#8230; as well as with me also in future&#8230;.. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<pre><strong>Selecting a database:</strong>

mysql&gt; USE database;

<strong>Listing databases:</strong>

mysql&gt; SHOW DATABASES;

<strong>Listing tables in a db:</strong>

mysql&gt; SHOW TABLES;

<strong>Describing the format of a table:</strong>

mysql&gt; DESCRIBE table;

<strong>Creating a database:</strong>

mysql&gt; CREATE DATABASE db_name;

<strong>Creating a table:</strong>

mysql&gt; CREATE TABLE table_name (field1_name TYPE(SIZE), field2_name TYPE(SIZE));
Ex: mysql&gt; CREATE TABLE pet (name VARCHAR(20), sex CHAR(1), birth DATE);

<strong>Load tab-delimited data into a table:</strong>

mysql&gt; LOAD DATA LOCAL INFILE "infile.txt" INTO TABLE table_name;
(Use \n for NULL)

<strong>Inserting one row at a time:</strong>

mysql&gt; INSERT INTO table_name VALUES ('MyName', 'MyOwner', '2002-08-31');
(Use NULL for NULL)

<strong>Retrieving information (general):</strong>

mysql&gt; SELECT from_columns FROM table WHERE conditions;
All values: SELECT * FROM table;
Some values: SELECT * FROM table WHERE rec_name = "value";
Multiple critera: SELECT * FROM TABLE WHERE rec1 = "value1" AND rec2 = "value2";

<strong>Reloading a new data set into existing table:</strong>

mysql&gt; SET AUTOCOMMIT=1; # used for quick recreation of table
mysql&gt; DELETE FROM pet;
mysql&gt; LOAD DATA LOCAL INFILE "infile.txt" INTO TABLE table;

<strong>Fixing all records with a certain value:</strong>

mysql&gt; UPDATE table SET column_name = "new_value" WHERE record_name = "value";

<strong>Selecting specific columns:</strong>

mysql&gt; SELECT column_name FROM table;

<strong>Retrieving unique output records:</strong>

mysql&gt; SELECT DISTINCT column_name FROM table;

<strong>Sorting:</strong>

mysql&gt; SELECT col1, col2 FROM table ORDER BY col2;
Backwards: SELECT col1, col2 FROM table ORDER BY col2 DESC;

<strong>Date calculations:</strong>

mysql&gt; SELECT CURRENT_DATE, (YEAR(CURRENT_DATE)-YEAR(date_col)) AS time_diff [FROM table];
MONTH(some_date) extracts the month value and DAYOFMONTH() extracts day.

<strong>Pattern Matching:</strong>

mysql&gt; SELECT * FROM table WHERE rec LIKE "blah%";
(% is wildcard - arbitrary # of chars)
Find 5-char values: SELECT * FROM table WHERE rec like "_____";
(_ is any single character)

<strong>Extended Regular Expression Matching:</strong>

mysql&gt; SELECT * FROM table WHERE rec RLIKE "^b$";
(. for char, [...] for char class, * for 0 or more instances
^ for beginning, {n} for repeat n times, and $ for end)
(RLIKE or REGEXP)
To force case-sensitivity, use "REGEXP BINARY"

<strong>Counting Rows:</strong>

mysql&gt; SELECT COUNT(*) FROM table;

<strong>Grouping with Counting:</strong>

mysql&gt; SELECT owner, COUNT(*) FROM table GROUP BY owner;
(GROUP BY groups together all records for each 'owner')

<strong>Selecting from multiple tables:</strong>

(Example)
mysql&gt; SELECT pet.name, comment FROM pet, event WHERE pet.name = event.name;
(You can join a table to itself to compare by using 'AS')

<strong>Currently selected database:</strong>

mysql&gt; SELECT DATABASE();

<strong>Maximum value:</strong>

mysql&gt; SELECT MAX(col_name) AS label FROM table;

<strong>Auto-incrementing rows:</strong>

mysql&gt; CREATE TABLE table (number INT NOT NULL AUTO_INCREMENT, name CHAR(10) NOT NULL);
mysql&gt; INSERT INTO table (name) VALUES ("tom"),("dick"),("harry");

<strong>Adding a column to an already-created table:</strong>

mysql&gt; ALTER TABLE tbl ADD COLUMN [column_create syntax] AFTER col_name;

<strong>Removing a column:</strong>

mysql&gt; ALTER TABLE tbl DROP COLUMN col;
(Full <a href="http://www.mysql.com/doc/en/ALTER_TABLE.html">ALTER TABLE</a> syntax available at mysql.com.)

<strong>Batch mode (feeding in a script):</strong>

# mysql -u user -p &lt; batch_file
(Use -t for nice table layout and -vvv for command echoing.)
Alternatively: mysql&gt; source batch_file;

<strong>Backing up a database with mysqldump:</strong>

# mysqldump --opt -u username -p database &gt; database_backup.sql
(Use 'mysqldump --opt --all-databases &gt; all_backup.sql' to backup everything.)
(More info at <a href="http://www.mysql.com/doc/en/mysqldump.html">MySQL's docs</a>.)</pre>
<p>&nbsp;</p>
<p>Thanks to Neal Parikh for this useful information. All credit goes to him, for original post click <a title="http://www.nparikh.org/notes/mysql.php" href="http://www.nparikh.org/notes/mysql.php" target="_blank">here</a>.</p>
<p>Open Mind, Open Source.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coolmaddyworld.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coolmaddyworld.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coolmaddyworld.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coolmaddyworld.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coolmaddyworld.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coolmaddyworld.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coolmaddyworld.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coolmaddyworld.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coolmaddyworld.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coolmaddyworld.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coolmaddyworld.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coolmaddyworld.wordpress.com/148/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coolmaddyworld.wordpress.com/148/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coolmaddyworld.wordpress.com/148/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coolmaddyworld.wordpress.com&amp;blog=7111015&amp;post=148&amp;subd=coolmaddyworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coolmaddyworld.wordpress.com/2011/10/18/mysql-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fc9052f3cec68cc4d61d2fb9910aee47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">coolmaddyworld</media:title>
		</media:content>
	</item>
		<item>
		<title>Converting Double to String without scientific (E) notation in java</title>
		<link>http://coolmaddyworld.wordpress.com/2011/08/04/converting-double-to-string-without-scientific-e-notation-in-java/</link>
		<comments>http://coolmaddyworld.wordpress.com/2011/08/04/converting-double-to-string-without-scientific-e-notation-in-java/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 07:07:55 +0000</pubDate>
		<dc:creator>coolmaddyworld</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://coolmaddyworld.wordpress.com/2011/08/04/converting-double-to-string-without-scientific-e-notation-in-java/</guid>
		<description><![CDATA[A numeric field in excel files was represented as string in database. Even though this number was not used for calculation, it seems for some reason, the database designer has kept it that way! Trouble started when the POI library&#8217;s getNumericCellValue() method returned the numbers in the form of scientific notation. The number 12,345,600 would [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coolmaddyworld.wordpress.com&amp;blog=7111015&amp;post=130&amp;subd=coolmaddyworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A numeric field in excel files was represented as string in database. Even though this number was not used for calculation, it seems for some reason, the database designer has kept it that way! Trouble started when the POI library&#8217;s getNumericCellValue() method returned the numbers in the form of scientific notation. The number 12,345,600 would be returned as 123.456E5. But I need it in plain text 1245600 without scientific notation and grouping of numbers!</p>
<p>Solution to this problem lies in configuring NumberFormat or DecimalFormat class found in the package java.text. Here is solution code:</p>
<p style="padding-left:30px;"><strong>Double comSysNumber = Cell.getNumericCellValue();<br />
NumberFormat f = NumberFormat.getInstance();<br />
f.setGroupingUsed(false);<br />
String refinedNumber = f.format(comSysNumber);</strong></p>
<p>Now the string variable refinedNumber is all set to be stored into my database <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> . Hope this becomes useful to others.</p>
<p>I just reshare, Thanks to this post: <a href="http://technopaper.blogspot.com/2009/06/converting-double-to-string-without-e.html" target="_blank">http://technopaper.blogspot.com/2009/06/converting-double-to-string-without-e.html</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coolmaddyworld.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coolmaddyworld.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coolmaddyworld.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coolmaddyworld.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coolmaddyworld.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coolmaddyworld.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coolmaddyworld.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coolmaddyworld.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coolmaddyworld.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coolmaddyworld.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coolmaddyworld.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coolmaddyworld.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coolmaddyworld.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coolmaddyworld.wordpress.com/130/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coolmaddyworld.wordpress.com&amp;blog=7111015&amp;post=130&amp;subd=coolmaddyworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coolmaddyworld.wordpress.com/2011/08/04/converting-double-to-string-without-scientific-e-notation-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fc9052f3cec68cc4d61d2fb9910aee47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">coolmaddyworld</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Install couchdb 1.0.1 on Ubuntu 10.04 step by step</title>
		<link>http://coolmaddyworld.wordpress.com/2010/11/25/install-couchdb-1-0-1-on-ubuntu-10-04-step-by-step/</link>
		<comments>http://coolmaddyworld.wordpress.com/2010/11/25/install-couchdb-1-0-1-on-ubuntu-10-04-step-by-step/#comments</comments>
		<pubDate>Thu, 25 Nov 2010 20:29:32 +0000</pubDate>
		<dc:creator>coolmaddyworld</dc:creator>
				<category><![CDATA[CouchDB]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://coolmaddyworld.wordpress.com/?p=111</guid>
		<description><![CDATA[Hi, From last couple of month i am using &#8220;Hadoop&#8221; and &#8220;CouchDB&#8221; in my project with Python language. Honestly speaking I was a RDBMS guy, and before worked with &#8220;Postgresql&#8220;(One of my all time fav. db ) database. So as usual i started applying Rdbms concepts in couchdb (cause for me database means RDBMS)and start [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coolmaddyworld.wordpress.com&amp;blog=7111015&amp;post=111&amp;subd=coolmaddyworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>From last couple of month i am using &#8220;<a title="Hadoop" href="http://hadoop.apache.org/" target="_blank">Hadoop</a>&#8221; and &#8220;<a title="CouchDB" href="http://couchdb.apache.org/" target="_blank">CouchDB</a>&#8221; in my project with <a title="Python" href="http://www.python.org/" target="_blank">Python</a> language. Honestly speaking I was a RDBMS guy, and before worked with &#8220;<a title="Postgresql" href="http://www.postgresql.org/" target="_blank">Postgresql</a>&#8220;(One of my all time fav. db ) database. So as usual i started applying Rdbms concepts in couchdb (cause for me database means RDBMS)and start working, and totally got frustrated by Couchdb for a complete week. then after that, i started reading <a title="CouchDB: The Definitive Guide" href="http://guide.couchdb.org/" target="_blank">CouchDB: The Definitive Guide</a>, and get to know that DBMS is not always RDBMS .  There also some  DB&#8217;s which are not using SQL queries to get, put data in db. Ok enough talk lets come to the topic. and try to solve our problems <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Steps to Install couchdb on <a title="ubuntu" href="http://www.ubuntu.com/" target="_blank">ubuntu</a> 10.04:</p>
<p>1. Install the required packages:</p>
<p style="padding-left:30px;">Open your terminal and run the following command in your terminal:</p>
<p style="padding-left:30px;">#sudo apt-get install libicu-dev libcurl4-gnutls-dev libtool erlang-dev erlang</p>
<p style="padding-left:30px;">It will show you a message and ask for your permission to processed. Press &#8220;y&#8221; and it will start the required pkg installation.</p>
<p>2. Download the couchdb from net:</p>
<p style="padding-left:30px;">#wget http://www.fightrice.com/mirrors/apache//couchdb/1.0.1/apache-couchdb-1.0.1.tar.gz</p>
<p style="padding-left:30px;">or you can download from below link too by using your browser</p>
<p style="padding-left:30px;"><a title="Download couchdb" href="http://www.apache.org/dyn/closer.cgi?path=/couchdb/1.0.1/apache-couchdb-1.0.1.tar.gz">http://www.apache.org/dyn/closer.cgi?path=/couchdb/1.0.1/apache-couchdb-1.0.1.tar.gz</a></p>
<p>3. Extract the compressed file:</p>
<p style="padding-left:30px;">#tar xvzf apache-couchdb-1.0.1.tar.gz</p>
<p style="padding-left:30px;">it will create a new directory in same directory, where you downloaded the compressed file.</p>
<p>4. Configure The couchdb to install:</p>
<p style="padding-left:30px;">#./configure &#8211;prefix=&lt;directory path where you installing the couchdb&gt;</p>
<p style="padding-left:30px;">e.g #./configure &#8211;prefix=/home/maddy/ProgramFiles/couch_install/</p>
<p style="padding-left:30px;">SpiderMonkey Problem:  If it will show you the below message, it means &#8220;libmozjs-dev&#8221; is missing in your system(By default it is not present in ubuntu 10.04) so you need to install it first. Here you have two approach to to solve the problem. First run it with latest Xulrunner(Recommended by apache couchdb, you can find the steps <a title="http://wiki.apache.org/couchdb/Installing_on_Ubuntu" href="http://wiki.apache.org/couchdb/Installing_on_Ubuntu" target="_blank">here</a>), second download and install the pkg manually(Below is the steps provided).</p>
<p style="padding-left:30px;">Error: configure: error: Could not find the js library.<br />
Is the Mozilla SpiderMonkey library installed?</p>
<p style="padding-left:30px;">Solution: download and install</p>
<p style="padding-left:30px;">&#8220;libmozjs0d&#8221; (download: ﻿<a title="libmozjs0d" href="http://packages.ubuntu.com/karmic/i386/libmozjs0d/download">link1﻿</a>, link2) or you can wget also:</p>
<p style="padding-left:30px;">&#8220;libmozjs-dev&#8221; (download: <a title="libmozjs-dev" href="http://packages.ubuntu.com/karmic/all/libmozjs-dev/download">link1</a>, link2) or you can wget also:</p>
<p style="padding-left:30px;">#wget http://launchpadlibrarian.net/24586256/libmozjs0d_1.8.1.18%2Bnobinonly.b308.cvs20090331t155113-0ubuntu0.8.10.1_i386.deb</p>
<p style="padding-left:30px;">#wget http://launchpadlibrarian.net/17059687/libmozjs-dev_1.8.1.16%2Bnobinonly-0ubuntu1_all.deb</p>
<p>5.  Configure it again:</p>
<p style="padding-left:30px;">#./configure &#8211;prefix=/home/maddy/ProgramFiles/couch_install/</p>
<p style="padding-left:30px;">If it will show you below message after running the configure command again it means everything going fine <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="padding-left:30px;">&#8220;You have configured Apache CouchDB, time to relax.<br />
Run `make &amp;&amp; sudo make install&#8217; to install.&#8221;</p>
<p>6.     install couchDB</p>
<p style="padding-left:30px;">#make &amp;&amp; sudo make install</p>
<p style="padding-left:30px;">It will show you a message like this, and now really time to relax. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
You have installed Apache CouchDB, time to relax.</p>
<p>7.   Change the directory  permission :</p>
<p style="padding-left:30px;">#sudo chown -R &lt;current-ubuntu-username&gt;: ${prefix}/var/{lib,log,run}/couchdb ${prefix}/etc/couchdbsudo</p>
<p style="padding-left:30px;">#chmod 0770 ${prefix}/var/{lib,log,run}/couchdb ${prefix}/etc/couchdb</p>
<p>8. Start the server:</p>
<p style="padding-left:30px;">go to couch install directory and run</p>
<p style="padding-left:30px;">#./etc/init.d/couchdb start</p>
<p style="padding-left:30px;"><span style="line-height:0;"><a title="Download couchdb" href="http://www.apache.org/dyn/closer.cgi?path=/couchdb/1.0.1/apache-couchdb-1.0.1.tar.gz">﻿</a><strong>Error:</strong> * Starting database server</span></p>
<p style="padding-left:30px;"><span style="line-height:0;">chown: changing ownership of `/home/maddy/ProgramFiles/couch_install/var/run/couchdb&#8217;: Operation not permitted<br />
</span></p>
<p style="padding-left:30px;">su: Authentication failure</p>
<p style="padding-left:30px;"><strong>Solution</strong>: /home/maddy/ProgramFiles/couch_install/etc/default #  sudo vim couchdb ,</p>
<p style="padding-left:30px;">Now change the &#8220;COUCHDB_USER=couchdb&#8221; to COUCHDB_USER=&lt;ubuntu-user-name&gt;</p>
<p style="padding-left:30px;">and start the couchdb server again</p>
<p style="padding-left:30px;">#./etc/init.d/couchdb start</p>
<p>9.     Open browser and check this link  <a href="http://localhost:5984/_utils">http://localhost:5984/_utils</a></p>
<p>10.  Time for beer     <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="padding-left:30px;">&nbsp;</p>
<p>Cheers !!<br />
Open Mind, Open Source</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coolmaddyworld.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coolmaddyworld.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coolmaddyworld.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coolmaddyworld.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coolmaddyworld.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coolmaddyworld.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coolmaddyworld.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coolmaddyworld.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coolmaddyworld.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coolmaddyworld.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coolmaddyworld.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coolmaddyworld.wordpress.com/111/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coolmaddyworld.wordpress.com/111/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coolmaddyworld.wordpress.com/111/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coolmaddyworld.wordpress.com&amp;blog=7111015&amp;post=111&amp;subd=coolmaddyworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coolmaddyworld.wordpress.com/2010/11/25/install-couchdb-1-0-1-on-ubuntu-10-04-step-by-step/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fc9052f3cec68cc4d61d2fb9910aee47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">coolmaddyworld</media:title>
		</media:content>
	</item>
		<item>
		<title>Postgres SQL Commands</title>
		<link>http://coolmaddyworld.wordpress.com/2009/09/23/postgres-sql-commands/</link>
		<comments>http://coolmaddyworld.wordpress.com/2009/09/23/postgres-sql-commands/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 06:34:24 +0000</pubDate>
		<dc:creator>coolmaddyworld</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[postgres]]></category>

		<guid isPermaLink="false">http://coolmaddyworld.wordpress.com/2009/09/23/postgres-sql-commands/</guid>
		<description><![CDATA[I started using postgreSQL command line mode and then stop, again start and stop. So keep forgetting the some common commands. Listing them here so if i again forget no need to do google again. 1. # \l : List of all DataBases 2. # \c database-name : Connact to database 3. # \d :List [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coolmaddyworld.wordpress.com&amp;blog=7111015&amp;post=109&amp;subd=coolmaddyworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I started using postgreSQL command line mode and then stop, again start and stop. So keep forgetting the some common commands. Listing them here so if i again forget no need to do google again.</p>
<p>1. # \l : List of all DataBases<br />
2. # \c database-name : Connact to database<br />
3. # \d :List tables in database<br />
4. # \d table-name <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> escribe table<br />
5. # select * from table-name :List table contents<br />
6. # \d for list of table and then &#8220;q&#8221; to came out<br />
7. # \? : To see all available commands</p>
<table border="0"></table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coolmaddyworld.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coolmaddyworld.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coolmaddyworld.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coolmaddyworld.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coolmaddyworld.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coolmaddyworld.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coolmaddyworld.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coolmaddyworld.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coolmaddyworld.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coolmaddyworld.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coolmaddyworld.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coolmaddyworld.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coolmaddyworld.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coolmaddyworld.wordpress.com/109/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coolmaddyworld.wordpress.com&amp;blog=7111015&amp;post=109&amp;subd=coolmaddyworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coolmaddyworld.wordpress.com/2009/09/23/postgres-sql-commands/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fc9052f3cec68cc4d61d2fb9910aee47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">coolmaddyworld</media:title>
		</media:content>
	</item>
		<item>
		<title>A rare pic from great bollywood movie &#8220;SHOLEY&#8221;</title>
		<link>http://coolmaddyworld.wordpress.com/2009/04/29/sholey-pic/</link>
		<comments>http://coolmaddyworld.wordpress.com/2009/04/29/sholey-pic/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 09:29:51 +0000</pubDate>
		<dc:creator>coolmaddyworld</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://coolmaddyworld.wordpress.com/2009/04/29/96/</guid>
		<description><![CDATA[AND THIS PICTURE WAS TAKEN WHEN SUPERHIT SHOLEY WAS STARTED&#8230;&#8230; They were looking at ashrani when he was doing practice first time with his funny Jailer&#8217;s dress&#8230; ALONE on one rock&#8230;   &#8230;.. I am on cloud nine cause i made a request to Mr. Bachchan to &#8220;come on my blog and put a comment [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coolmaddyworld.wordpress.com&amp;blog=7111015&amp;post=96&amp;subd=coolmaddyworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="attachment_102" class="wp-caption alignnone" style="width: 580px"><img class="size-full wp-image-102" title="ATT245952" src="http://coolmaddyworld.files.wordpress.com/2009/05/att2459521.jpg?w=590" alt="sholey"   /><p class="wp-caption-text">Amitabh Bachchan...... (Jai --&gt; Jaidev),  Dharmendra...... (Veeru),  Sanjeev Kumar......( Thakur Baldev Singh),  Amjad Khan......( Gabbar Singh) </p></div>
<p>AND THIS PICTURE WAS TAKEN WHEN SUPERHIT SHOLEY WAS STARTED&#8230;&#8230;</p>
<p>They were looking at ashrani when he was doing practice first time with his funny Jailer&#8217;s dress&#8230; ALONE on one rock&#8230;</p>
<p> </p>
<p> <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  &#8230;.. I am on cloud nine cause i made a request to Mr. Bachchan to &#8220;come on my blog and put a comment on my blog if he really like it&#8221; &#8230;and he really did it&#8230;&#8230;yipeeeeeeeeeee. Wish u a very much  gud luck Mr. Bachchan. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coolmaddyworld.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coolmaddyworld.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coolmaddyworld.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coolmaddyworld.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coolmaddyworld.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coolmaddyworld.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coolmaddyworld.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coolmaddyworld.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coolmaddyworld.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coolmaddyworld.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coolmaddyworld.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coolmaddyworld.wordpress.com/96/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coolmaddyworld.wordpress.com/96/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coolmaddyworld.wordpress.com/96/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coolmaddyworld.wordpress.com&amp;blog=7111015&amp;post=96&amp;subd=coolmaddyworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coolmaddyworld.wordpress.com/2009/04/29/sholey-pic/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fc9052f3cec68cc4d61d2fb9910aee47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">coolmaddyworld</media:title>
		</media:content>

		<media:content url="http://coolmaddyworld.files.wordpress.com/2009/05/att2459521.jpg" medium="image">
			<media:title type="html">ATT245952</media:title>
		</media:content>
	</item>
		<item>
		<title>dell vostro a840 windows xp driver</title>
		<link>http://coolmaddyworld.wordpress.com/2009/04/05/dell-vostro-a840-windows-xp-driver/</link>
		<comments>http://coolmaddyworld.wordpress.com/2009/04/05/dell-vostro-a840-windows-xp-driver/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 10:35:27 +0000</pubDate>
		<dc:creator>coolmaddyworld</dc:creator>
				<category><![CDATA[Dell notebook]]></category>
		<category><![CDATA[Drivers]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[WIn XP Sp2]]></category>
		<category><![CDATA[Dell]]></category>
		<category><![CDATA[Driver]]></category>
		<category><![CDATA[vostro]]></category>
		<category><![CDATA[Win XP]]></category>

		<guid isPermaLink="false">http://coolmaddyworld.wordpress.com/?p=39</guid>
		<description><![CDATA[Hi, What i am thinking is Microsoft have lots of business  minded peoples to sell Windows Vista, and that&#8217;s why only they made bond with most of the notebook sellers to give vista only(Other then linux i think Win XP is the biggest competitor of vista), no other flavor of windows( like win XP) . [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coolmaddyworld.wordpress.com&amp;blog=7111015&amp;post=39&amp;subd=coolmaddyworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>What i am thinking is Microsoft have lots of business  minded peoples to sell Windows Vista, and that&#8217;s why only they made bond with most of the notebook sellers to give vista only(Other then linux i think Win XP is the biggest competitor of vista), no other flavor of windows( like win XP) . Like others i am also a win XP lover, and had a chance to install it on my friend notebook(Dell vostro A840). But the problem is DELL provided us a driver cd  for Windows Vista, so some drivers working for windows XP(Most of them not working really), for rest of the thing we need to find out win XP drivers for his notebook and install on it. Again i googled and found some links to download and install the drivers for our notebook.</p>
<p>Here I am including the links to download and install windows xp drivers for DELL Vostro system.</p>
<ul>
<li><a href="http://ftp.us.dell.com/network/R189840.exe">Realtek LAN driver</a></li>
</ul>
<ul>
<li><a href="http://ftp.us.dell.com/network/R193564.exe">ell Wireless 1395 WLAN MiniCard</a></li>
</ul>
<ul>
<li><a href="http://ftp.us.dell.com/input/R189727.EXE">Alps Touchpad driver</a></li>
</ul>
<ul>
<li><a href="http://ftp.us.dell.com/chipset/R189723.exe">Intel Chipset driver</a></li>
</ul>
<ul>
<li><a href="http://ftp.us.dell.com/chipset/R190079.exe">Card Reader driver</a></li>
</ul>
<ul>
<li><a href="http://ftp.us.dell.com/utility/Dell_System-Software_A00_R193108.exe">Dell system utility software</a></li>
</ul>
<ul>
<li><a href="http://ftp.us.dell.com/audio/R192894.EXE">Conexant Audio driver</a></li>
</ul>
<ul>
<li><a href="http://ftp.us.dell.com/comm/R190098.exe">Conexant Modem driver</a></li>
</ul>
<ul>
<li><a href="http://ftp.us.dell.com/video/R189835.EXE">Intel GM965 Graphics driver</a></li>
</ul>
<p>For sound driver we faced a problem related to  conexant sound driver in winxp sp2(DELL Vostro A840).  Conexant sound driver is not working. Once i install the audio driver the system replys cannot find the media device. Again we goggled it, and found a solution(mentioning below in steps to apply the solution).</p>
<ol>
<li>remove sound drive(if installed )</li>
<li>Download driver <a href="ftp://ftp.hp.com/pub/softpaq/sp32501-33000/sp32646.exe" target="_blank">sp32646.exe </a>(Other link: <a href="http://www.4shared.com/file/34731432/b0916bb/sp32646.html?dirPwdVerified=c910d2f5"> link</a> )</li>
<li>then download  <a href="ftp://ftp.hp.com/pub/softpaq/sp34001-34500/sp34386.exe" target="_blank">sp34386exe</a> (Other link:<a href="http://files.filefront.com/sp34386exe/;8984671;/fileinfo.html" target="_blank"> link</a> ,  <a href="http://www.4shared.com/get/34732813/55971225/sp34386.html" target="_blank">link</a>)</li>
<li>install both of them(same order)</li>
<li>then install DELL DRIVERS<a href="http://ftp.us.dell.com/audio/R192894.EXE"> Conexant Audio driver</a> &amp;<a href="http://ftp.us.dell.com/comm/R190098.exe"> Conexant Modem driver</a> .</li>
</ol>
<p>Guys thnx for your  reply&#8217;s,  i forgot to add one more thing and Mr. Thong comment remind it to me. Problem is &#8220;WLAN not working&#8221;  for that i installed <a href="http://ftp.us.dell.com/comm/R194080.exe" target="_blank">QMI Wireless LAN <span class="searchterm6">Driver</span>s version: 1.05.0725</a> driver(R194080.exe). And it start working for me. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Restart the windows, and Enjoy the Win XP sp2 on your system.</p>
<p>Cheers !!</p>
<p>Maddy</p>
<p>Open Mind, Open Source</p>
<p>Note: I want to give all of my credit to the writer of this <a href="http://seoroot.com/blog/windows-xp/dell-vostro-a840-windows-xp-drivers-download.html" target="_blank">blog</a> to provide the valuable information.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coolmaddyworld.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coolmaddyworld.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coolmaddyworld.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coolmaddyworld.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coolmaddyworld.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coolmaddyworld.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coolmaddyworld.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coolmaddyworld.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coolmaddyworld.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coolmaddyworld.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coolmaddyworld.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coolmaddyworld.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coolmaddyworld.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coolmaddyworld.wordpress.com/39/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coolmaddyworld.wordpress.com&amp;blog=7111015&amp;post=39&amp;subd=coolmaddyworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coolmaddyworld.wordpress.com/2009/04/05/dell-vostro-a840-windows-xp-driver/feed/</wfw:commentRss>
		<slash:comments>33</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fc9052f3cec68cc4d61d2fb9910aee47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">coolmaddyworld</media:title>
		</media:content>
	</item>
		<item>
		<title>Dell Vostro A840 Internet Not working in Ubuntu 8.04</title>
		<link>http://coolmaddyworld.wordpress.com/2009/04/04/dell-vostro-a840-internet-not-working-in-ubuntu-804/</link>
		<comments>http://coolmaddyworld.wordpress.com/2009/04/04/dell-vostro-a840-internet-not-working-in-ubuntu-804/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 08:33:04 +0000</pubDate>
		<dc:creator>coolmaddyworld</dc:creator>
				<category><![CDATA[Dell notebook]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Dell]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Realtek 8168/8169]]></category>
		<category><![CDATA[vostro]]></category>

		<guid isPermaLink="false">http://coolmaddyworld.wordpress.com/?p=30</guid>
		<description><![CDATA[Hi, My friend bought a new &#8220;DELL vostro A840 Notebook&#8221;. An avarage configuration(Core 2 duo, 2GB ram, 160GB HD, with Ubuntu 8.04 linux)  notebook in decent price some around 32k(600$). I like it cause it is the best for the people who do not need lots of xtra feateres in there laptop(or u can say [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coolmaddyworld.wordpress.com&amp;blog=7111015&amp;post=30&amp;subd=coolmaddyworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>My friend bought a new &#8220;DELL vostro A840 Notebook&#8221;. An avarage configuration(Core 2 duo, 2GB ram, 160GB HD, with Ubuntu 8.04 linux)  notebook in decent price some around 32k(600$). I like it cause it is the best for the people who do not need lots of xtra feateres in there laptop(or u can say it is purely for busniess people). We checked all the things at shop all ports, internet, wifi each and everything which we are able to check there and everything working fine(in ubuntu). He is not familier with ubuntu linux so he made it duel boot(Win XP, and ubuntu 8.04), And then problem will start to come in ubuntu linux. <strong>Internet Not working in ubuntu 8.04. </strong> We checked every thing and found that the problem is coming in  ethernet card (<em>Realtek RTL810</em>). I search the ubuntu forum and found a thread <a title="HERE" href="http://ubuntuforums.org/showthread.php?t=538448" target="_blank">here</a> , they provide some solution there .</p>
<p>The problem coming due the disabled Wake-On-Lan setting of  wired ethernet cards.</p>
<p>Every time when we shutdown the winxp it disable the Wake-On-Lan(to save the power). After that when u boot with ubuntu, ethernet card not wakup so it is not connecting you with internet.</p>
<p><strong>what is the fix?</strong></p>
<p>To fix the problem you need to setup ur Wake-On-Lan settings in BIOS and Windows OS. I am giving the steps to set the settings. (I did these steps in DELL Vostro A840, You can do it according to your system ).</p>
<p>Enable Wake-On-Lan in BIOS:</p>
<ul>
<li> In your system go in to the BIOS (after switch on the power press F12 to go in BIOS).</li>
</ul>
<ul>
<li> head to the Power management section and look for a Wake-on-LAN setting. If you find one, go ahead and make sure it&#8217;s enabled, then save and exit your BIOS and start up your notebook.</li>
</ul>
<p>Enable Wake-On-Lan in BIOS:</p>
<ul>
<li> MyComputer &#8211;&gt; properties &#8211;&gt;Hardware &#8211;&gt; Device manager.</li>
<li>Select your Ethernet card &#8211;&gt; properties &#8211;&gt; power management tab.</li>
<li>Uncheck the option saying &#8220;Allow the computer to turn off this device to save the power &#8220;.</li>
<li>Now head to the Advanced tab, which is full of options for your network adapter. We&#8217;re concerned with two options here. The first is the Wake From Shutdown entry near the end of the list. Scroll down to it and change the value to enable.</li>
</ul>
<p>Done</p>
<p>Restart your computer, boot in <a href="http://www.ubuntu.com/" target="_blank">ubuntu</a> (Do n0t forget to attache your  internet cable), open your browser and enjoy the browsing.</p>
<p>cheers !!</p>
<p>Maddy &amp; Varun</p>
<p>Open Mind, Open Source</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coolmaddyworld.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coolmaddyworld.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coolmaddyworld.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coolmaddyworld.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coolmaddyworld.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coolmaddyworld.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coolmaddyworld.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coolmaddyworld.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coolmaddyworld.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coolmaddyworld.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coolmaddyworld.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coolmaddyworld.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coolmaddyworld.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coolmaddyworld.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coolmaddyworld.wordpress.com&amp;blog=7111015&amp;post=30&amp;subd=coolmaddyworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coolmaddyworld.wordpress.com/2009/04/04/dell-vostro-a840-internet-not-working-in-ubuntu-804/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fc9052f3cec68cc4d61d2fb9910aee47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">coolmaddyworld</media:title>
		</media:content>
	</item>
		<item>
		<title>How To Create Hibernate Mapping Files Using Ant and PostgreSQL Database?</title>
		<link>http://coolmaddyworld.wordpress.com/2009/03/30/how-to-create-hibernate-mapping-files-using-ant-and-postgresql-database/</link>
		<comments>http://coolmaddyworld.wordpress.com/2009/03/30/how-to-create-hibernate-mapping-files-using-ant-and-postgresql-database/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 07:50:08 +0000</pubDate>
		<dc:creator>coolmaddyworld</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[Spring]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Ant]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[mapping]]></category>
		<category><![CDATA[postgresSql]]></category>

		<guid isPermaLink="false">http://coolmaddyworld.wordpress.com/?p=9</guid>
		<description><![CDATA[Hi Guys, So At last my First blog about technology is here&#8230;.. For a web application project, i need to create the hibernate mapping files (.hbm.xml, .java). First i tried  to create the files by using &#8220;Hibernate Tool&#8221; plug-in for eclipse, it is good and provide a nice UI to create the files. I tried [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coolmaddyworld.wordpress.com&amp;blog=7111015&amp;post=9&amp;subd=coolmaddyworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi Guys,</p>
<p>So At last my First blog about technology is here&#8230;.. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>For a web application project, i need to create the hibernate mapping files (.hbm.xml, .java). First i tried  to create the files by using &#8220;Hibernate Tool&#8221; plug-in for eclipse, it is good and provide a nice UI to create the files. I tried lots of tutorial, but i don&#8217;t know what went wrong and i totally screwed by the &#8220;HibernateTool&#8221;. I spend my 2 days to generate the files by using it, but fail. So i drooped the plan to use &#8220;HibernateTool&#8221; UI. I was looking for some other way to generate the files, I was googling (that&#8217;s what m always doing in trouble&#8230;.like others) and i found a tutorial to generate the files using by ANT build and &#8220;Hibernate Tool&#8221; jar files. But that is for MySQL data base. so after doing some R&amp;D on it m successfully able to create the mapping files.</p>
<p> <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Q: How To Create Hibernate Mapping Files Using Ant and PostgreSQL Database?<br />
A: By following the blow steps.</strong></p>
<p><strong>1.  Create Directories:</strong></p>
<p style="padding-left:30px;">first u need to create a directory structure like this.</p>
<p style="padding-left:30px;">HibernateToolProject<br />
|____/src<br />
|            |____hibernate.cfg.xml<br />
|<br />
|____/lib(contains jar files)<br />
|<br />
|____build.xml</p>
<p><strong>2. Add required .jar files:</strong></p>
<p style="padding-left:30px;">
For generate mapping file using postgreSQL database and ANT build, u need to add below jar files in your lib directory.</p>
<p style="padding-left:30px;">* commons-collections.jar<br />
* commons-lang.jar<br />
* commons-logging.jar<br />
* dom4j-1.6.1.jar<br />
* ehcache-1.2.3.jar<br />
* freemarker.jar<br />
* hibernate-3.1beta3.jar<br />
* hibernate-tools.jar<br />
* jtidy-r8-20060801.jar<br />
* log4j-1.2.11.jar<br />
* postgresal-8.3-603.jdbc2ee.jar<br />
* postgresal-8.3-603.jdbc4.jar<br />
* velocity-1.5.jar<br />
to get all the jar just google them by name and u will get all of them(this is what i did and i got all the files from different different locations)</p>
<p><strong>3.  hibernate.cfg.xml:</strong></p>
<p style="padding-left:30px;">Add the following code and change the &#8220;hibernate.connection.url&#8221;,  &#8220;hibernate.connection.password&#8221;,  &#8220;hibernate.connection.username&#8221; according to your database.</p>
<p style="padding-left:30px;">&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;UTF-8&#8243;?&gt;<br />
&lt;!DOCTYPE hibernate-configuration PUBLIC<br />
&#8220;-//Hibernate/Hibernate Configuration DTD 3.0//EN&#8221;<br />
&#8220;http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd&#8221;&gt;<br />
&lt;hibernate-configuration&gt;<br />
&lt;session-factory name=&#8221;HibernateProject&#8221;&gt;<br />
&lt;property name=&#8221;hibernate.connection.driver_class&#8221;&gt;org.postgresql.Driver&lt;/property&gt;<br />
&lt;property name=&#8221;hibernate.connection.password&#8221;&gt;password&lt;/property&gt;<br />
&lt;property name=&#8221;hibernate.connection.url&#8221;&gt;jdbc:postgresql://localhost:5432/TestDb&lt;/property&gt;<br />
&lt;property name=&#8221;hibernate.connection.username&#8221;&gt;admin&lt;/property&gt;<br />
&lt;property name=&#8221;hibernate.dialect&#8221;&gt;org.hibernate.dialect.PostgreSQLDialect&lt;/property&gt;<br />
&lt;/session-factory&gt;<br />
&lt;/hibernate-configuration&gt;</p>
<p><strong>4.  build.xml:</strong></p>
<p style="padding-left:30px;">Add the following code in your build.xml<br />
&lt;project name=&#8221;springapp&#8221; basedir=&#8221;.&#8221; default=&#8221;gen_hibernate&#8221;&gt;</p>
<p style="padding-left:30px;">&lt;taskdef name=&#8221;hibernatetool&#8221;<br />
classname=&#8221;org.hibernate.tool.ant.HibernateToolTask&#8221;&gt;<br />
&lt;classpath&gt;<br />
&lt;fileset dir=&#8221;lib&#8221;&gt;<br />
&lt;include name=&#8221;**/*.jar&#8221;/&gt;<br />
&lt;/fileset&gt;<br />
&lt;/classpath&gt;<br />
&lt;/taskdef&gt;</p>
<p style="padding-left:30px;">&lt;target name=&#8221;gen_hibernate&#8221;<br />
description=&#8221;generate hibernate classes&#8221;&gt;<br />
&lt;hibernatetool&gt;</p>
<p style="padding-left:30px;">&lt;jdbcconfiguration<br />
configurationfile=&#8221;src/hibernate.cfg.xml&#8221;<br />
packagename=&#8221;com.maddy.db&#8221;<br />
/&gt;<br />
&lt;hbm2hbmxml destdir=&#8221;src&#8221; /&gt;<br />
&lt;hbm2java  destdir=&#8221;src&#8221; /&gt;<br />
&lt;/hibernatetool&gt;<br />
&lt;/target&gt;</p>
<p style="padding-left:30px;">&lt;/project&gt;</p>
<p><strong>5.  Run it:</strong></p>
<p style="padding-left:30px;">there is two way to run it.<br />
First through eclipse: select build.xml and right click on it&#8230;Select RunAs&#8211;&gt;AntBuild. And     it will create a new directory in your srcdirectory &#8220;com/maddy/db&#8221;. Refresh the project  and you will find the mapping files inside this directory.<br />
Second install ANT build in ur system. set ANT_HOME and JAVA_HOME, in your<br />
enviroment variable, then go to inside &#8220;HibernateToolProject&#8221; directory througn command  line and run command ANT.  This will do the same thing and create the same directory(as   mention above) and give you all mapping files(.hbm.xml and .java).</p>
<p> <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thats all guys. cheers !!<br />
Open Mind, Open Source.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coolmaddyworld.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coolmaddyworld.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coolmaddyworld.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coolmaddyworld.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coolmaddyworld.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coolmaddyworld.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coolmaddyworld.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coolmaddyworld.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coolmaddyworld.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coolmaddyworld.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coolmaddyworld.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coolmaddyworld.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coolmaddyworld.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coolmaddyworld.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coolmaddyworld.wordpress.com&amp;blog=7111015&amp;post=9&amp;subd=coolmaddyworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coolmaddyworld.wordpress.com/2009/03/30/how-to-create-hibernate-mapping-files-using-ant-and-postgresql-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fc9052f3cec68cc4d61d2fb9910aee47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">coolmaddyworld</media:title>
		</media:content>
	</item>
		<item>
		<title>Earth Hour 2009</title>
		<link>http://coolmaddyworld.wordpress.com/2009/03/27/earth-hour-2009/</link>
		<comments>http://coolmaddyworld.wordpress.com/2009/03/27/earth-hour-2009/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 06:03:28 +0000</pubDate>
		<dc:creator>coolmaddyworld</dc:creator>
				<category><![CDATA[Nature]]></category>
		<category><![CDATA[Earth Hour 2009]]></category>

		<guid isPermaLink="false">http://coolmaddyworld.wordpress.com/2009/03/27/earth-hour-2009/</guid>
		<description><![CDATA[Today i just found a small caption for earth hour in a mail signature, sent by one of my friend working in a software company. Curiously i Google the word &#8220;earth hours&#8221; and found a complete web site and the great peoples behind that. They are simply great cause, i also want to do something [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coolmaddyworld.wordpress.com&amp;blog=7111015&amp;post=4&amp;subd=coolmaddyworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="attachment_3" class="wp-caption alignleft" style="width: 160px"><a href="http://www.earthhour.in"> <img class="size-thumbnail wp-image-3" title="EH_A2_Template_FINAL.indd" src="http://coolmaddyworld.files.wordpress.com/2009/03/earth_hour4.jpg?w=150&#038;h=147" alt="Earth Hours" width="150" height="147" /></a><p class="wp-caption-text">Earth Hours</p></div>
<p>Today i just found a small caption for earth hour in a mail signature, sent by one of my friend working in a software company. Curiously i Google the word &#8220;earth hours&#8221; and found a complete web site and the great peoples behind that. They are simply great cause, i also want to do something for my planet, for my motherland for my earth. But the thig which makes these guys great is they are doing it.</p>
<p>The good thing is i am also participating in this global event. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . Which is really making me very happy. I was always trying to do lil lil for all these climate changes daily, like trying to saving water, use less light, keep clean the things. I dn&#8217;t know what other people doing or thinking about this, But it giving me a &#8220;feel good&#8221; feeling. I am not a great person, i am not a millionaire, I am not a politically powerful person. I am  just a normal men. Who have a sense to understand his responsibility. And i think this is my responcibility to keep clean my earth, keep safe for all, keep it from global warming, for our predecessor, for our child&#8217;s, for our self.</p>
<p>Click on above pic or <a href="http://www.earthhour.in">Click Here</a> for visit the WebSiite.</p>
<p><span style="font-family:Helvetica;"><strong><span style="font-size:12pt;color:green;">Turn off the lights, turn on hope&#8230; </span></strong></span></p>
<span style="text-align:center; display: block;"><a href="http://coolmaddyworld.wordpress.com/2009/03/27/earth-hour-2009/"><img src="http://img.youtube.com/vi/L53gWEJjCW4/2.jpg" alt="" /></a></span>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/coolmaddyworld.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/coolmaddyworld.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/coolmaddyworld.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/coolmaddyworld.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/coolmaddyworld.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/coolmaddyworld.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/coolmaddyworld.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/coolmaddyworld.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/coolmaddyworld.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/coolmaddyworld.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/coolmaddyworld.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/coolmaddyworld.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/coolmaddyworld.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/coolmaddyworld.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=coolmaddyworld.wordpress.com&amp;blog=7111015&amp;post=4&amp;subd=coolmaddyworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://coolmaddyworld.wordpress.com/2009/03/27/earth-hour-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fc9052f3cec68cc4d61d2fb9910aee47?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">coolmaddyworld</media:title>
		</media:content>

		<media:content url="http://coolmaddyworld.files.wordpress.com/2009/03/earth_hour4.jpg?w=150" medium="image">
			<media:title type="html">EH_A2_Template_FINAL.indd</media:title>
		</media:content>
	</item>
	</channel>
</rss>
