<?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>Masud Ibn Afjal&#039;s Blog</title>
	<atom:link href="http://rushoblack.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://rushoblack.wordpress.com</link>
	<description>Try to Help the People</description>
	<lastBuildDate>Tue, 14 Jun 2011 09:44:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='rushoblack.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/d7f4bddda6a272b1c51d0cc97dbdad68?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Masud Ibn Afjal&#039;s Blog</title>
		<link>http://rushoblack.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://rushoblack.wordpress.com/osd.xml" title="Masud Ibn Afjal&#039;s Blog" />
	<atom:link rel='hub' href='http://rushoblack.wordpress.com/?pushpress=hub'/>
		<item>
		<title>PHP Script for Converting MySQL Data to MS EXCEL File .xls format</title>
		<link>http://rushoblack.wordpress.com/2011/02/03/php-script-for-converting-mysql-data-to-ms-excel-file-xls-format/</link>
		<comments>http://rushoblack.wordpress.com/2011/02/03/php-script-for-converting-mysql-data-to-ms-excel-file-xls-format/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 08:15:34 +0000</pubDate>
		<dc:creator>rushoblack</dc:creator>
				<category><![CDATA[PHP Script]]></category>
		<category><![CDATA[mysql to .xls]]></category>
		<category><![CDATA[php script]]></category>

		<guid isPermaLink="false">http://rushoblack.wordpress.com/?p=90</guid>
		<description><![CDATA[$host = &#8216;HOST_NAME&#8217;; $user = &#8216;DB_USER&#8217;; $pass = &#8216;DB_USER_PASS&#8217;; $db = &#8216;DB_NAME&#8217;; $table = &#8216;TABLE_NAME&#8217;; $file = &#8216;FILE_NAME&#8217;; $query  = &#8220;SELECT * FROM &#8220;.$table.&#8221;"; $result = mysql_query($query) or die(&#8216;Error, query failed&#8217;); $tsv  = array(); $html = array(); while($row = mysql_fetch_array($result, MYSQL_NUM)) { $tsv[]  = implode(&#8220;\t&#8221;, $row); $html[] = &#8220;&#60;tr&#62;&#60;td&#62;&#8221; .implode(&#8220;&#60;/td&#62;&#60;td&#62;&#8221;, $row) .              &#8220;&#60;/td&#62;&#60;/tr&#62;&#8221;; } $tsv [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rushoblack.wordpress.com&amp;blog=6972970&amp;post=90&amp;subd=rushoblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>$host = &#8216;HOST_NAME&#8217;;<br />
$user = &#8216;DB_USER&#8217;;<br />
$pass = &#8216;DB_USER_PASS&#8217;;<br />
$db = &#8216;DB_NAME&#8217;;<br />
$table = &#8216;TABLE_NAME&#8217;;<br />
$file = &#8216;FILE_NAME&#8217;;</p>
<p>$query  = &#8220;SELECT * FROM &#8220;.$table.&#8221;";<br />
$result = mysql_query($query) or die(&#8216;Error, query failed&#8217;);</p>
<p>$tsv  = array();<br />
$html = array();<br />
while($row = mysql_fetch_array($result, MYSQL_NUM))<br />
{<br />
$tsv[]  = implode(&#8220;\t&#8221;, $row);<br />
$html[] = &#8220;&lt;tr&gt;&lt;td&gt;&#8221; .implode(&#8220;&lt;/td&gt;&lt;td&gt;&#8221;, $row) .              &#8220;&lt;/td&gt;&lt;/tr&gt;&#8221;;<br />
}</p>
<p>$tsv = implode(&#8220;\r\n&#8221;, $tsv);<br />
$html = &#8220;&lt;table&gt;&#8221; . implode(&#8220;\r\n&#8221;, $html) . &#8220;&lt;/table&gt;&#8221;;</p>
<p>$fileName = &#8216;mysql-to-excel.xls&#8217;;<br />
header(&#8220;Content-type: application/vnd.ms-excel&#8221;);<br />
header(&#8220;Content-Disposition: attachment; filename=$fileName&#8221;);</p>
<p>print $tsv;<br />
exit;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rushoblack.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rushoblack.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rushoblack.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rushoblack.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rushoblack.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rushoblack.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rushoblack.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rushoblack.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rushoblack.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rushoblack.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rushoblack.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rushoblack.wordpress.com/90/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rushoblack.wordpress.com/90/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rushoblack.wordpress.com/90/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rushoblack.wordpress.com&amp;blog=6972970&amp;post=90&amp;subd=rushoblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rushoblack.wordpress.com/2011/02/03/php-script-for-converting-mysql-data-to-ms-excel-file-xls-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/42a86c4f7579bf1ac2717eca1b6118d8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rushoblack</media:title>
		</media:content>
	</item>
		<item>
		<title>PHP Script for Converting MySQL Data to Comma Delimited CSV File</title>
		<link>http://rushoblack.wordpress.com/2011/02/03/php-script-for-converting-mysql-data-to-comma-delimited-csv-file/</link>
		<comments>http://rushoblack.wordpress.com/2011/02/03/php-script-for-converting-mysql-data-to-comma-delimited-csv-file/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 07:57:01 +0000</pubDate>
		<dc:creator>rushoblack</dc:creator>
				<category><![CDATA[PHP Script]]></category>
		<category><![CDATA[mysql to .CSV]]></category>
		<category><![CDATA[php script]]></category>

		<guid isPermaLink="false">http://rushoblack.wordpress.com/?p=84</guid>
		<description><![CDATA[There are many reasons you could want to convert a MySQL database to a comma deliminated CSV file. This Script help you &#8230; $host = 'HOST_NAME'; $user = 'DB_USER'; $pass = 'DB_USER_PASS'; $db = 'DB_NAME'; $table = 'TABLE_NAME'; $file = 'FILE_NAME'; $link = mysql_connect($host, $user, $pass) or die("Can not connect." . mysql_error()); mysql_select_db($db) or die("Can [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rushoblack.wordpress.com&amp;blog=6972970&amp;post=84&amp;subd=rushoblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There are many reasons you could want to convert a MySQL database to a comma deliminated CSV file.<br />
This Script help you &#8230;</p>
<p><code>$host = 'HOST_NAME';<br />
$user = 'DB_USER';<br />
$pass = 'DB_USER_PASS';<br />
$db = 'DB_NAME';<br />
$table = 'TABLE_NAME';<br />
$file = 'FILE_NAME';</code><br />
<code><br />
$link = mysql_connect($host, $user, $pass) or die("Can not connect." . mysql_error());<br />
mysql_select_db($db) or die("Can not connect.");</code></p>
<p>$result = mysql_query(&#8220;SHOW COLUMNS FROM &#8220;.$table.&#8221;");<br />
$i = 0;<br />
if (mysql_num_rows($result) &gt; 0) {<br />
while ($row = mysql_fetch_assoc($result)) {<br />
$csv_output .= $row['Field'].&#8221;; &#8220;;<br />
$i++;<br />
}<br />
}</p>
<p><code><br />
$csv_output .= "\n";</code></p>
<p>$values = mysql_query(&#8220;SELECT * FROM &#8220;.$table.&#8221;");<br />
while ($rowr = mysql_fetch_row($values)) {<br />
for ($j=0;$j &lt; $i;$j++) {<br />
$csv_output .= $rowr[$j].&#8221;; &#8220;;<br />
}<br />
$csv_output .= &#8220;\n&#8221;;<br />
}</p>
<p><code><br />
$filename = $file."_".date("Y-m-d_H-i",time());<br />
header("Content-type: application/vnd.ms-excel");<br />
header("Content-disposition: csv" . date("Y-m-d") . ".csv");<br />
header( "Content-disposition: filename=".$filename.".csv");<br />
print $csv_output;<br />
exit;<br />
</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rushoblack.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rushoblack.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rushoblack.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rushoblack.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rushoblack.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rushoblack.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rushoblack.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rushoblack.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rushoblack.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rushoblack.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rushoblack.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rushoblack.wordpress.com/84/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rushoblack.wordpress.com/84/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rushoblack.wordpress.com/84/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rushoblack.wordpress.com&amp;blog=6972970&amp;post=84&amp;subd=rushoblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rushoblack.wordpress.com/2011/02/03/php-script-for-converting-mysql-data-to-comma-delimited-csv-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/42a86c4f7579bf1ac2717eca1b6118d8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rushoblack</media:title>
		</media:content>
	</item>
		<item>
		<title>45000 baby names list in .CSV,.XLS &amp; .SQL file format</title>
		<link>http://rushoblack.wordpress.com/2011/02/03/45000-baby-names-list-in-csv-xls-sql-file-format/</link>
		<comments>http://rushoblack.wordpress.com/2011/02/03/45000-baby-names-list-in-csv-xls-sql-file-format/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 05:39:23 +0000</pubDate>
		<dc:creator>rushoblack</dc:creator>
				<category><![CDATA[Product for Sale]]></category>
		<category><![CDATA[baby name list]]></category>
		<category><![CDATA[baby name meaning]]></category>
		<category><![CDATA[web scraping]]></category>

		<guid isPermaLink="false">http://rushoblack.wordpress.com/?p=81</guid>
		<description><![CDATA[I collected about 45000 baby names,gender, meanings of those names, origin,alternative origin and other details. I collect those data from different web site by web scraping script. Here all data are in three separate formats: MySQL, MS Excel &#38; .CSV It can be used to create a baby names directory. Or application for Iphone,android or [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rushoblack.wordpress.com&amp;blog=6972970&amp;post=81&amp;subd=rushoblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I collected about 45000 baby names,gender, meanings of those names, origin,alternative origin and other details.</p>
<p>I collect those data from different web site by web scraping script.</p>
<p>Here all data are in three separate formats: MySQL, MS Excel &amp; .CSV<br />
It can be used to create a baby names directory. Or application for Iphone,android or any platform related with baby name directory ..</p>
<p><strong>Total price of the database is $59 USD.</strong></p>
<p>To view this product <a href="http://www.freelancer.com/marketplace/product/Database-of-Baby-Names-with.html">Click here</a>..</p>
<p>In freelancer there is a problem (this link doesnot work now) ..You couldn&#8217;t downloads or buy from free-market.(already 2 sold from here)  </p>
<p>So it is better for you to buy directly from me ..</p>
<p>You can buy it directly from me after<a href="http://theweb-coder.com/contact-webcoder"> <strong>contacting me </strong></a>&#8230; or you can hire me <a href="http://www.odesk.com/referrals/track/mafjal?redir=http%3A%2F%2Fwww.odesk.com%2Fusers%2F%7E%7Eaa10dda06ea78557"><strong>at odesk .</strong></a>.then pay me ..After contract started I will send you the Database file. (Here also 3 times sold by this way)</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rushoblack.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rushoblack.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rushoblack.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rushoblack.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rushoblack.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rushoblack.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rushoblack.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rushoblack.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rushoblack.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rushoblack.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rushoblack.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rushoblack.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rushoblack.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rushoblack.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rushoblack.wordpress.com&amp;blog=6972970&amp;post=81&amp;subd=rushoblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rushoblack.wordpress.com/2011/02/03/45000-baby-names-list-in-csv-xls-sql-file-format/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/42a86c4f7579bf1ac2717eca1b6118d8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rushoblack</media:title>
		</media:content>
	</item>
		<item>
		<title>Sidebar ads widget plugin</title>
		<link>http://rushoblack.wordpress.com/2010/09/05/sidebar-ads-widget-plugin/</link>
		<comments>http://rushoblack.wordpress.com/2010/09/05/sidebar-ads-widget-plugin/#comments</comments>
		<pubDate>Sun, 05 Sep 2010 10:24:29 +0000</pubDate>
		<dc:creator>rushoblack</dc:creator>
				<category><![CDATA[My Plugin]]></category>

		<guid isPermaLink="false">http://rushoblack.wordpress.com/?p=66</guid>
		<description><![CDATA[The Sidebar ads Upload Plugin for uploads ads with icon images,text &#38; target link You can manage your sidebar ads from wp admin panel.. Here you can &#8230; 1. Uploads ads with icon images, text,target link,ads display order.. 2. Edit or delete your ads . 3. Can change display order. When you install Sidebar ads [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rushoblack.wordpress.com&amp;blog=6972970&amp;post=66&amp;subd=rushoblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The Sidebar ads Upload Plugin for uploads ads with icon images,text &amp; target link</p>
<p>You can manage your sidebar ads from wp admin panel..<br />
Here you can &#8230;<br />
1. Uploads ads with icon images, text,target link,ads display order..<br />
2. Edit or delete your ads .<br />
3. Can change display order.</p>
<p>When you install Sidebar ads widget plugin then ..You get &#8230;<br />
An admin control panel of yours ads ..where you can upload new ads,edit,delete,set order.</p>
<p>You get a widget which can drag &amp; drop into your sidebar&#8230;</p>
<p>&nbsp;</p>
<p><a href="http://http://www.freelancer.com/marketplace/product/Customize-ads-widget-Plugin-1.html"><strong>You can View the product here</strong></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rushoblack.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rushoblack.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rushoblack.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rushoblack.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rushoblack.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rushoblack.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rushoblack.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rushoblack.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rushoblack.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rushoblack.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rushoblack.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rushoblack.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rushoblack.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rushoblack.wordpress.com/66/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rushoblack.wordpress.com&amp;blog=6972970&amp;post=66&amp;subd=rushoblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rushoblack.wordpress.com/2010/09/05/sidebar-ads-widget-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/42a86c4f7579bf1ac2717eca1b6118d8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rushoblack</media:title>
		</media:content>
	</item>
		<item>
		<title>oDesk Certificate</title>
		<link>http://rushoblack.wordpress.com/2010/05/02/odesk-certificate/</link>
		<comments>http://rushoblack.wordpress.com/2010/05/02/odesk-certificate/#comments</comments>
		<pubDate>Sun, 02 May 2010 07:22:36 +0000</pubDate>
		<dc:creator>rushoblack</dc:creator>
				<category><![CDATA[Certificate]]></category>
		<category><![CDATA[odesk]]></category>

		<guid isPermaLink="false">http://rushoblack.wordpress.com/?p=61</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rushoblack.wordpress.com&amp;blog=6972970&amp;post=61&amp;subd=rushoblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.odesk.com/users/~~aa10dda06ea78557"><img src="http://www.odesk.com/api/exams/v1/1267592/image" alt="oDesk Certified oDesk Professional" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rushoblack.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rushoblack.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rushoblack.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rushoblack.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rushoblack.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rushoblack.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rushoblack.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rushoblack.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rushoblack.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rushoblack.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rushoblack.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rushoblack.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rushoblack.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rushoblack.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rushoblack.wordpress.com&amp;blog=6972970&amp;post=61&amp;subd=rushoblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rushoblack.wordpress.com/2010/05/02/odesk-certificate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/42a86c4f7579bf1ac2717eca1b6118d8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rushoblack</media:title>
		</media:content>

		<media:content url="http://www.odesk.com/api/exams/v1/1267592/image" medium="image">
			<media:title type="html">oDesk Certified oDesk Professional</media:title>
		</media:content>
	</item>
		<item>
		<title>New Year 2010</title>
		<link>http://rushoblack.wordpress.com/2010/01/01/new-year-2010/</link>
		<comments>http://rushoblack.wordpress.com/2010/01/01/new-year-2010/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 04:28:31 +0000</pubDate>
		<dc:creator>rushoblack</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[new year]]></category>

		<guid isPermaLink="false">http://rushoblack.wordpress.com/2010/01/01/new-year-2010/</guid>
		<description><![CDATA[Happy new Year 2010 to all of the visitor of this site&#8230;&#8230;&#8230;..<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rushoblack.wordpress.com&amp;blog=6972970&amp;post=57&amp;subd=rushoblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Happy new Year 2010 to all of the visitor of this site&#8230;&#8230;&#8230;..</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rushoblack.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rushoblack.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rushoblack.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rushoblack.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rushoblack.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rushoblack.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rushoblack.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rushoblack.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rushoblack.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rushoblack.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rushoblack.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rushoblack.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rushoblack.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rushoblack.wordpress.com/57/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rushoblack.wordpress.com&amp;blog=6972970&amp;post=57&amp;subd=rushoblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rushoblack.wordpress.com/2010/01/01/new-year-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/42a86c4f7579bf1ac2717eca1b6118d8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rushoblack</media:title>
		</media:content>
	</item>
		<item>
		<title>Masud Professional Project Work</title>
		<link>http://rushoblack.wordpress.com/2009/10/21/masud-professional-project-work/</link>
		<comments>http://rushoblack.wordpress.com/2009/10/21/masud-professional-project-work/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 05:14:26 +0000</pubDate>
		<dc:creator>rushoblack</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[really fun wine show]]></category>
		<category><![CDATA[simplemarriage]]></category>
		<category><![CDATA[trade for travel]]></category>

		<guid isPermaLink="false">http://rushoblack.wordpress.com/?p=13</guid>
		<description><![CDATA[http://unique-landscapes.com/blog/ http://simplemarriage.net/ http://tradefortravel.com/wp http://reallyfunwineshow.com/ http://www.ambercrestwinery.com/ http://getirshelp.com/Internal-Revenue-Manual/ http://www.superstarmortgagebroker.com/products/index.cfm http://trainingforspeed.com/ http://unique-landscapes.com/wp/ http://imcsites.com/wp/ http://www.osfsfa.com/ http://nicknoorani.com/Beta/ http://www.mortgagemarketingcoach.com/ars/ Coming.. Coming..<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rushoblack.wordpress.com&amp;blog=6972970&amp;post=13&amp;subd=rushoblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ul>
<li><a href="http://unique-landscapes.com/blog/">http://unique-landscapes.com/blog/</a></li>
<li><a href="http://simplemarriage.net/">http://simplemarriage.net/</a></li>
<li><a href="http://tradefortravel.com/wp">http://tradefortravel.com/wp</a></li>
<li><a href="http://reallyfunwineshow.com/">http://reallyfunwineshow.com/</a></li>
<li><a href="http://www.ambercrestwinery.com/">http://www.ambercrestwinery.com/</a></li>
<li><a href="http://getirshelp.com/Internal-Revenue-Manual/">http://getirshelp.com/Internal-Revenue-Manual/</a></li>
<li><a href="http://www.superstarmortgagebroker.com/products/index.cfm">http://www.superstarmortgagebroker.com/products/index.cfm</a></li>
<li><a href="http://trainingforspeed.com/">http://trainingforspeed.com/</a></li>
<li><a href="http://unique-landscapes.com/wp/">http://unique-landscapes.com/wp/</a></li>
<li><a href="http://imcsites.com/wp/">http://imcsites.com/wp/ </a></li>
<li><a href="http://www.osfsfa.com/">http://www.osfsfa.com/</a></li>
<li><a href="http://nicknoorani.com/Beta/">http://nicknoorani.com/Beta/</a></li>
<li><a href="http://www.mortgagemarketingcoach.com/ars/">http://www.mortgagemarketingcoach.com/ars/</a></li>
<li><a>Coming..</a></li>
<li><a>Coming..</a></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rushoblack.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rushoblack.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rushoblack.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rushoblack.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rushoblack.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rushoblack.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rushoblack.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rushoblack.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rushoblack.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rushoblack.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rushoblack.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rushoblack.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rushoblack.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rushoblack.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rushoblack.wordpress.com&amp;blog=6972970&amp;post=13&amp;subd=rushoblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rushoblack.wordpress.com/2009/10/21/masud-professional-project-work/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/42a86c4f7579bf1ac2717eca1b6118d8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rushoblack</media:title>
		</media:content>
	</item>
		<item>
		<title>Enjoyable Day</title>
		<link>http://rushoblack.wordpress.com/2009/08/10/enjoyable-day/</link>
		<comments>http://rushoblack.wordpress.com/2009/08/10/enjoyable-day/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 10:20:47 +0000</pubDate>
		<dc:creator>rushoblack</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rushoblack.wordpress.com/?p=7</guid>
		<description><![CDATA[To day is day for Enjoy &#8230;bcoz no time for work &#8230;&#8230;we are free for all tension &#8230;.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rushoblack.wordpress.com&amp;blog=6972970&amp;post=7&amp;subd=rushoblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To day is day for Enjoy &#8230;bcoz no time for work &#8230;&#8230;we are free for all tension &#8230;.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rushoblack.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rushoblack.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rushoblack.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rushoblack.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rushoblack.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rushoblack.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rushoblack.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rushoblack.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rushoblack.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rushoblack.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rushoblack.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rushoblack.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rushoblack.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rushoblack.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rushoblack.wordpress.com&amp;blog=6972970&amp;post=7&amp;subd=rushoblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rushoblack.wordpress.com/2009/08/10/enjoyable-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/42a86c4f7579bf1ac2717eca1b6118d8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rushoblack</media:title>
		</media:content>
	</item>
		<item>
		<title>How can I Use WP function</title>
		<link>http://rushoblack.wordpress.com/2009/03/16/how-can-i-use-wp-function/</link>
		<comments>http://rushoblack.wordpress.com/2009/03/16/how-can-i-use-wp-function/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 03:36:16 +0000</pubDate>
		<dc:creator>rushoblack</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://rushoblack.wordpress.com/?p=3</guid>
		<description><![CDATA[If you try to use the word press function to create or edit word press themes. Please visit http://www.wpdesigner.com and download the tutorial then self try to create or edit your Word press<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rushoblack.wordpress.com&amp;blog=6972970&amp;post=3&amp;subd=rushoblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you try to use the word press function to create or edit word press themes.</p>
<p>Please visit <a href="http://www.wpdesigner.com/">http://www.wpdesigner.com </a>and download the tutorial then self try to create or edit your Word press</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rushoblack.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rushoblack.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rushoblack.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rushoblack.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rushoblack.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rushoblack.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rushoblack.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rushoblack.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rushoblack.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rushoblack.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rushoblack.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rushoblack.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rushoblack.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rushoblack.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rushoblack.wordpress.com&amp;blog=6972970&amp;post=3&amp;subd=rushoblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rushoblack.wordpress.com/2009/03/16/how-can-i-use-wp-function/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/42a86c4f7579bf1ac2717eca1b6118d8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rushoblack</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://rushoblack.wordpress.com/2009/03/16/hello-world/</link>
		<comments>http://rushoblack.wordpress.com/2009/03/16/hello-world/#comments</comments>
		<pubDate>Mon, 16 Mar 2009 03:23:44 +0000</pubDate>
		<dc:creator>rushoblack</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rushoblack.wordpress.com&amp;blog=6972970&amp;post=1&amp;subd=rushoblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Welcome to <a href="http://wordpress.com/">WordPress.com</a>. This is your first post. Edit or delete it and start blogging!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/rushoblack.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/rushoblack.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/rushoblack.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/rushoblack.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/rushoblack.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/rushoblack.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/rushoblack.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/rushoblack.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/rushoblack.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/rushoblack.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/rushoblack.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/rushoblack.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/rushoblack.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/rushoblack.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=rushoblack.wordpress.com&amp;blog=6972970&amp;post=1&amp;subd=rushoblack&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://rushoblack.wordpress.com/2009/03/16/hello-world/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/42a86c4f7579bf1ac2717eca1b6118d8?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">rushoblack</media:title>
		</media:content>
	</item>
	</channel>
</rss>
