<?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>Blog de Warticles</title>
	<atom:link href="http://warticles.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://warticles.wordpress.com</link>
	<description>Leave a comment and help us improve.You can also visit the Blogster blog on Blogster.com at www.blogster.com/goutham</description>
	<lastBuildDate>Tue, 06 Dec 2011 09:29:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='warticles.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Blog de Warticles</title>
		<link>http://warticles.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://warticles.wordpress.com/osd.xml" title="Blog de Warticles" />
	<atom:link rel='hub' href='http://warticles.wordpress.com/?pushpress=hub'/>
		<item>
		<title>How To Run Your Own Web Server In A Few Minutes on Windows OS</title>
		<link>http://warticles.wordpress.com/2010/11/19/how-to-run-your-own-web-server-in-a-few-minutes-on-windows-os/</link>
		<comments>http://warticles.wordpress.com/2010/11/19/how-to-run-your-own-web-server-in-a-few-minutes-on-windows-os/#comments</comments>
		<pubDate>Fri, 19 Nov 2010 01:42:07 +0000</pubDate>
		<dc:creator>warticles</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://warticles.wordpress.com/2010/11/19/how-to-run-your-own-web-server-in-a-few-minutes-on-windows-os/</guid>
		<description><![CDATA[A step by step guide on how to install PHP 5.x.x, Apache 2.2.x, phpMyadmin and MySql 5.x. Have you ever thought of running your own web server before? Does that sound too geeky? Actually, configuring your own web server is an easy task if you have enough information to refer from especially when you encounter [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=warticles.wordpress.com&amp;blog=6285846&amp;post=150&amp;subd=warticles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A step by step guide on how to install PHP 5.x.x, Apache 2.2.x, phpMyadmin and MySql 5.x.</p>
<p>Have you ever thought of running your own web server before? Does that sound too geeky? Actually, configuring your own web server is an easy task if you have enough information to refer from especially when you encounter errors. Let me get straight to installions of softwares required to build a functioning web server. First you would need PHP and Apache. If you only plan to test your PHP scripts, then those two softwares are enough for you. You will use phpMyAdmin and MySql to store and handle databases such as log in information. O.K Let&#8217;s get started.</p>
<p>Note: If you&#8217;re new to programming, you should consider installing WAMP server. A pre-configured server package (Windows,Apache,MySql,PHP).<br />
You don&#8217;t require any programming skills to install WAMP server. <a href="http://www.wampserver.com/">Click Here</a> to go to WAMP server website.</p>
<p>Installation Guide<br />
1.<a href="http://anyweb.tk/howtowebserver.php#php">PHP</a><br />
2.<a href="http://anyweb.tk/howtowebserver.php#apache">Apache Server</a><br />
3.<a href="http://anyweb.tk/howtowebserver.php#mysql">MySql Community Server</a><br />
4.<a href="http://anyweb.tk/howtowebserver.php#phpmyadmin">phpMyAdmin</a></p>
<h4><a>Installing PHP</a></h4>
<p>Download a Windows binary from <a href="http://windows.php.net/download"> http://windows.php.net/download</a>. In this tutorial, I will use PHP 5.3.3 Win32 VC6 Thread Safe. <a href="http://windows.php.net/downloads/releases/php-5.3.3-Win32-VC6-x86.zip"> Download.</a> When you have finished download, follow the steps described below.<br />
1. Unzip the folder into &quot;C:/php&quot;. You can choose other direcotries as well such as &quot;C:/server/php&quot;.<br />
2. Rename &quot;php.ini-development&quot; to &quot;php.ini&quot;<br />
3. Open &quot;php.ini&quot;<br />
4. Search for and uncomment following lines,i.e, to delete &quot;;&quot; infront of each line.<br />
* ;extension_dir = &quot;/ext&quot; (note:Add directory to &quot;ext&quot; folder. For example, &quot;c:/php/ext&quot;.change it to your actual direcotory if different)<br />
* ;extension=php_mysql.dll (e.g. change it to extension=php_mysql.dll. Follow the same procedure.)<br />
* ;extension=php_mysqli.dll<br />
* ;extension=php_pdo_mysql.dll<br />
* ;extension=php_mbstring.dll<br />
When you have finished, save and close php.ini.<br />
5.Now you need to add path to PHP variables. Go to My Computer and go to properties (right-click) and then go to Advanced Settings. Click on Environmnet Variables tab (at the bottom in Windows 7). Chose <strong>PATH</strong> and click on <strong>Edit</strong>. You will see something like &quot;C:\Program Files\&quot;. Append &quot;;C:\php\ext&quot; to that line. After editing, it should look like <strong><em>C:\Program Files\;C\PHP\ext</em></strong>. Do not forget to add &quot;;&quot; infront of C:/php/ext.<br />
Since you have not installed any server you will not be able to run PHP scripts. Let&#8217;s get on to installing Apache server.</p>
<p><a> Installing Apache</a></p>
<p>1.Download <a href="http://mirrors.geoexpat.com/apache//httpd/binaries/win32/httpd-2.2.17-win32-x86-openssl-0.9.8o.msi">Apahce MSI Installer</a><br />
2.Follow the instructions (difficulty: Easy)<br />
3.Add &quot;yourname.xyz&quot; for domain names or any other extension might work. For email address, add anything@yourname.xyz. These are just examples. You can choose your own names. Don&#8217;t worry about those names at the moment,you can edit later.<br />
4. Choose <strong>Typical installation.</strong><br />
5. Wait for a while<br />
6. You&#8217;re done. No, not yet.Let&#8217;s configure your Apache server to handle php scripts.<br />
7. Go to your Apache folder (e.g C:/Program Files/Apache Software Foundation/Apache2.2/) and open &quot;conf&quot; folder and search for &quot;httpd.conf&quot; file to edit. 8. In &quot;httpd.conf&quot; file, search for a block of lines starting with #LoadModule and add the following block to the end of those lines.</p>
<p># Load php module<br />
LoadModule php5_module &quot;c:/php/php5apache2_2.dll&quot;<br />
AddHandler application/x-httpd-php .php</p>
<p># configure the path to php.ini<br />
PHPIniDir &quot;C:/php&quot;</p>
<p>Note: For older versions of Apache2 use php5apache2.dll<br />
9. Add the following to the end of the file:</p>
<p><code><br />
&lt;FilesMatch \.php$&gt;<br />
SetHandler application/x-httpd-php<br />
&lt;/FilesMatch&gt; </code></p>
<p>This code ensures that only files that end in .php are executed, for example, &quot;abc.php.txt&quot; will not be executed as PHP file but rather as a text file.<br />
10. Now restart your computer for changes to take effect.</p>
<p>Testing your server</p>
<p><code> &lt;?php<br />
echo &quot;Welcome to my Web Server!&quot;; ?&gt;<br />
?&gt; </code></p>
<p>Copy and paste the above code in Note Pad and save as &quot;test.php&quot; in your Apache htdocs directory. C:/Program Files/Apache Software Foundation/Apache2.2/htdocs<br />
Now load your web server by entering <a href="http://127.0.0.1">http://127.0.0.1</a> or <a href="http://localhost">http://localhost</a> in your browser. If your server is configured correctly it will out put the following code.</p>
<p>Welcome to my Web Server!</p>
<p>Cheers!<br />
If you have any problem installing your server, you can contact me using <a href="http://anyweb.tk/contactus.php">Contact Us</a> page. I will respond to your message.</p>
<p><a>Installing MySql Community Server</a></p>
<p>1. <a href="http://gd.tuwien.ac.at/db/mysql/Downloads/MySQL-5.5/mysql-5.5.7-rc-win32.msi"> Download</a> MySql 5.5.7 MSI Installer<br />
2. Choose <strong>Typical Installation</strong><br />
3. Launch Configuration Wizard<br />
4. Click Next. Choose <strong>Detailed Configuration.</strong><br />
5. Choose <strong>Developer Machine</strong><br />
6. Choose <strong>Multi-functional Database</strong><br />
7. Set directory path to &quot;C:/Data&quot;.Click <strong>Next</strong><br />
8.Choose <strong>Decision Support (DSS)/OLAP.</strong> Click<strong> Next</strong><br />
9.Tick <strong>Enable TCP/IP networking</strong> and<strong> Add firewall exception for this port</strong> and <strong>Enable Strict mode. </strong>Click Next.<br />
10.This step configures MySql as a<strong> Windows service</strong>. Check both boxes. Click <strong>Next</strong>.<br />
11.Change root password. Do not allow root access from remote machines if you&#8217;re not sure about what to do with this.<br />
12.Execute. Finished!</p>
<p><a>Installing phpMyAdmin</a></p>
<p>1.<a href="http://www.phpmyadmin.net/">Download phpMyAdmin</a><br />
2. Unzip the folder into <strong>htdocs</strong> folder under Apache folder. (e.g. C:/Program Files/Apache Software Foundation/Apache2.2/htdocs/phpmyadmin)<br />
3.You&#8217;re done.<br />
4 You should be able to load phpMyAdmin by entering <strong><a href="http://localhost/phpmyadmin">http://localhost/phpmyadmin</a></strong> in your web browser. If you encounter an error, it is possible that you did not configure PHP correctly. Make sure that mbstring.dll is loaded and &quot;MySql/bin&quot; is added to the PATH in environment variables as described above in PHP installation section.</p>
<p>If you have any question about this tutorail, you may contact me by using <a href="http://anyweb.tk/contactus.php">Contact Us</a> page. I will respond to your messages. Thanks for visiting Any Web website. Happy Coding!</p>
<p><a href="http://www.anyweb.tk">www.anyweb.tk</a><br />
<a href="http://www.anyweb.de.tf">www.anyweb.de.tf</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/warticles.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/warticles.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/warticles.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/warticles.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/warticles.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/warticles.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/warticles.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/warticles.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/warticles.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/warticles.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/warticles.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/warticles.wordpress.com/150/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/warticles.wordpress.com/150/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/warticles.wordpress.com/150/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=warticles.wordpress.com&amp;blog=6285846&amp;post=150&amp;subd=warticles&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://warticles.wordpress.com/2010/11/19/how-to-run-your-own-web-server-in-a-few-minutes-on-windows-os/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1e41b4d76be34fa05a4d49f4db100e29?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">warticles</media:title>
		</media:content>
	</item>
		<item>
		<title>Any Web,Inc</title>
		<link>http://warticles.wordpress.com/2010/10/16/any-webinc/</link>
		<comments>http://warticles.wordpress.com/2010/10/16/any-webinc/#comments</comments>
		<pubDate>Sat, 16 Oct 2010 06:30:45 +0000</pubDate>
		<dc:creator>warticles</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://warticles.wordpress.com/2010/10/16/any-webinc/</guid>
		<description><![CDATA[Hello, Everyone I would like to introduce you to a new website. Any Web,Inc has just launched a new website. You can ask question about Computing and business. It is a free counseling service. There are also a few gadgets like currency converter, ip address locator, whois domain look up,etc and you cal also play [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=warticles.wordpress.com&amp;blog=6285846&amp;post=149&amp;subd=warticles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hello, Everyone<br />
I would like to introduce you to a new website. Any Web,Inc has just launched a new website.<br />
You can ask question about Computing and business. It is a free counseling service.<br />
There are also a few gadgets like currency converter, ip address locator, whois domain look up,etc and you cal</p>
<p>also play free flash games. Though the website is still underconstruction, you can see that<br />
it is gonna rock soon.<br />
Take a visit now.<br />
<a href="http://www.anyweb.tk">www.anyweb.tk</a><br />
<a href="http://www.anyweb.de.tf">www.anyweb.de.tf</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/warticles.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/warticles.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/warticles.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/warticles.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/warticles.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/warticles.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/warticles.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/warticles.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/warticles.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/warticles.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/warticles.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/warticles.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/warticles.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/warticles.wordpress.com/149/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=warticles.wordpress.com&amp;blog=6285846&amp;post=149&amp;subd=warticles&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://warticles.wordpress.com/2010/10/16/any-webinc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1e41b4d76be34fa05a4d49f4db100e29?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">warticles</media:title>
		</media:content>
	</item>
		<item>
		<title>something about life &#8211; goutham&#8217;s Blog &#8211; Blogster</title>
		<link>http://warticles.wordpress.com/2010/10/08/something-about-life-gouthams-blog-blogster/</link>
		<comments>http://warticles.wordpress.com/2010/10/08/something-about-life-gouthams-blog-blogster/#comments</comments>
		<pubDate>Fri, 08 Oct 2010 11:43:59 +0000</pubDate>
		<dc:creator>warticles</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://warticles.wordpress.com/?p=147</guid>
		<description><![CDATA[something about life &#8211; goutham&#8217;s Blog &#8211; Blogster.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=warticles.wordpress.com&amp;blog=6285846&amp;post=147&amp;subd=warticles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="https://www.ctunnel.com/index.php/1010110A/d7d951c769287258edd2d35597eae16dc07ec9b660d83714b3dc631ab50e499afc4c8059afccb07cbecab2cc2a43d3cd86f016960#comment-1017k">something about life &#8211; goutham&#8217;s Blog &#8211; Blogster</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/warticles.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/warticles.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/warticles.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/warticles.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/warticles.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/warticles.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/warticles.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/warticles.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/warticles.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/warticles.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/warticles.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/warticles.wordpress.com/147/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/warticles.wordpress.com/147/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/warticles.wordpress.com/147/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=warticles.wordpress.com&amp;blog=6285846&amp;post=147&amp;subd=warticles&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://warticles.wordpress.com/2010/10/08/something-about-life-gouthams-blog-blogster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1e41b4d76be34fa05a4d49f4db100e29?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">warticles</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows 95</title>
		<link>http://warticles.wordpress.com/2010/10/08/windows-95/</link>
		<comments>http://warticles.wordpress.com/2010/10/08/windows-95/#comments</comments>
		<pubDate>Fri, 08 Oct 2010 02:22:57 +0000</pubDate>
		<dc:creator>warticles</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://warticles.wordpress.com/2010/10/08/windows-95/</guid>
		<description><![CDATA[i need to run registry and disk cleaner in my head. Deep-freeze is no good in 21st century. PHP5 is missing php5isapi.dll file. There is an IP address conflict between two religions that use the same protocol. Some softwares installed are not legitimate. Some are copied under GNU license. Some are Made In Here. Everday, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=warticles.wordpress.com&amp;blog=6285846&amp;post=146&amp;subd=warticles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h6>i need to run registry and disk cleaner in my head. Deep-freeze is no good in 21st century. PHP5 is missing php5isapi.dll file. There is an IP address conflict between two religions that use the same protocol. Some softwares installed are not legitimate. Some are copied under GNU license. Some are Made In Here. Everday, at least one program crashes or slows down. It is not optimized for current problems; it is either outdated or prepared for the invisible future. Ah, there is also no anti-virus, firewall is outdated. Connection ports do not listen carefully and restrict free flow of ideas.</h6>
<p>Copy Right. Allowed free flow of ideas. Can be copied anywhere any time if you agree to put author&#8217;s name and blog addresses.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/warticles.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/warticles.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/warticles.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/warticles.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/warticles.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/warticles.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/warticles.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/warticles.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/warticles.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/warticles.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/warticles.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/warticles.wordpress.com/146/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/warticles.wordpress.com/146/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/warticles.wordpress.com/146/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=warticles.wordpress.com&amp;blog=6285846&amp;post=146&amp;subd=warticles&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://warticles.wordpress.com/2010/10/08/windows-95/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1e41b4d76be34fa05a4d49f4db100e29?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">warticles</media:title>
		</media:content>
	</item>
		<item>
		<title>About Life</title>
		<link>http://warticles.wordpress.com/2010/10/06/about-life/</link>
		<comments>http://warticles.wordpress.com/2010/10/06/about-life/#comments</comments>
		<pubDate>Wed, 06 Oct 2010 17:57:00 +0000</pubDate>
		<dc:creator>warticles</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://warticles.wordpress.com/2010/10/06/about-life/</guid>
		<description><![CDATA[Is it better to go with the flow rather than going your own way? Is it easier to follow than lead? Are irrational people happier than rational and pragmatic ones? Suppose, you&#8217;re a young man and you have plans to build a prosperous life. How much can you be sure of your own goal? Do [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=warticles.wordpress.com&amp;blog=6285846&amp;post=145&amp;subd=warticles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Is it better to go with the flow rather than going your own way? Is it easier to follow than lead? Are irrational people happier than rational and pragmatic ones? Suppose, you&#8217;re a young man and you have plans to build a prosperous life. How much can you be sure of your own goal? Do all people achieve their goals in life? Or just a few? Suppose, you become a CEO of a large firm, you will still be struggling. Would you be happier if you had a small firm in the suburbs and run a small business of your own that pays you less than a CEO&#8217;s job? What kinds of things make you happy at the moment and what parts of your plans and your own attitude will change over years? After 20 years, will you still be willing to work for something that you dream now.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/warticles.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/warticles.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/warticles.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/warticles.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/warticles.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/warticles.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/warticles.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/warticles.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/warticles.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/warticles.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/warticles.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/warticles.wordpress.com/145/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/warticles.wordpress.com/145/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/warticles.wordpress.com/145/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=warticles.wordpress.com&amp;blog=6285846&amp;post=145&amp;subd=warticles&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://warticles.wordpress.com/2010/10/06/about-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1e41b4d76be34fa05a4d49f4db100e29?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">warticles</media:title>
		</media:content>
	</item>
		<item>
		<title>Persistence</title>
		<link>http://warticles.wordpress.com/2010/10/03/persistence/</link>
		<comments>http://warticles.wordpress.com/2010/10/03/persistence/#comments</comments>
		<pubDate>Sun, 03 Oct 2010 16:07:49 +0000</pubDate>
		<dc:creator>warticles</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://warticles.wordpress.com/2010/10/03/persistence/</guid>
		<description><![CDATA[&#34;Keep going, when you fail again and again; until you get what you want.&#34; That has been one of the most helpful words in my life. It is more encouraging than the words of people who try to encourage me. Since my childhood, I felt like I am always struggling to get something unusual or [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=warticles.wordpress.com&amp;blog=6285846&amp;post=144&amp;subd=warticles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&quot;Keep going, when you fail again and again; until you get what you want.&quot; That has been one of the most helpful words in my life. It is more encouraging than the words of people who try to encourage me. Since my childhood, I felt like I am always struggling to get something unusual or just to get a higher place, to distinguish myself from others.</p>
<p>When playing soccer, everybody knew that I was a bad player and I always had to be a goal keeper or a defender since I could not make any goals. That couldn&#8217;t keep me from playing it. I only knew one thing; if I keep playing and playing I will improve and at least, I will become a better player.</p>
<p>When I was in high school, I wasn’t doing very good in Maths and I was often annoyed by students who has already learned the lessons somewhere else and try to convince teachers that they&#8217;re smart. That is ridiculous, I thought. When everybody has finished the quizzes, I would often sit in silence, in the back rows, and think of how can I cope with these monsters who can finish in 3 minutes, it takes me 30 minutes and in the end, with an error. I felt like an idiot trying to cope with normal kids.</p>
<p>Weeks after the classes has started, I got angrier and started to think like an egoist. &quot;Even if these morons can finish, why can&#8217;t I?&quot; I admit that it is not a good attitude. However, there were some people, who helped me think that way; the smartest guys in the class. In my eyses, they looked so proud. And I got angry because I never wanted to be inferior to anyone.</p>
<p>At home, I would sit down with a blank paper and there would be scratches everywhere. Sometimes it took me about 2 hours to solve a trigonometry problem which other students can solve in less than 10 minutes. I wouldn&#8217;t move to the next lesson until I finish the lesson I am doing now, however difficult it may be. That was a blind confidence and it helped me a lot during those years. In the final exam, I could achieve one of the highest scores in mathematics, in my school.</p>
<p>That experience gives me the courage to keep going when my plans turn out to be a failure or when things seem impossible. It is no exageration to say that it helped me survive the worst days of my life; when I tried to leave med school to go abroad for study. Many people scoffed at my idea since I do not have enough financial resources. I see it as a similar math problem that I solved 5 years ago. I solved my high school maths and now I have grow up to solve today’s math problems.</p>
<p>These days, I study business and economics papers, which , at some points, make no sense at all. It gets worse in programming with all the strange codes. When I unpack a software, I feel terrible.” How will I be able to write such complex programs? Will I even learn in this life? “It is so overwhelming that I feel like it is impossible. Now I remember how I struggled with Maths during my high school days and it is a great lesson I learned from a great experience. Nothing is impossible if you persist! That is simple,”never give up!”.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/warticles.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/warticles.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/warticles.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/warticles.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/warticles.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/warticles.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/warticles.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/warticles.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/warticles.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/warticles.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/warticles.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/warticles.wordpress.com/144/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/warticles.wordpress.com/144/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/warticles.wordpress.com/144/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=warticles.wordpress.com&amp;blog=6285846&amp;post=144&amp;subd=warticles&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://warticles.wordpress.com/2010/10/03/persistence/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1e41b4d76be34fa05a4d49f4db100e29?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">warticles</media:title>
		</media:content>
	</item>
		<item>
		<title>Business Course Materials</title>
		<link>http://warticles.wordpress.com/2010/10/03/business-course-materials/</link>
		<comments>http://warticles.wordpress.com/2010/10/03/business-course-materials/#comments</comments>
		<pubDate>Sun, 03 Oct 2010 16:05:38 +0000</pubDate>
		<dc:creator>warticles</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://warticles.wordpress.com/2010/10/03/business-course-materials/</guid>
		<description><![CDATA[After studying at a university for one month, I came back home because of financial problems. These days I am learning from course materials from some universities that are available for free download. Some business papers are so so&#8230;&#8230; Their way of writing is like &#34;1+2=3, as 1,2 and 3 are numbers, they have their [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=warticles.wordpress.com&amp;blog=6285846&amp;post=143&amp;subd=warticles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After studying at a university for one month, I came back home because of financial problems. These days I am learning from course materials from some universities that are available for free download. Some business papers are so so&#8230;&#8230;</p>
<p>Their way of writing is like &quot;1+2=3, as 1,2 and 3 are numbers, they have their own values which are different, if you add 1+3 it would equal to 4 but in this situation we add 1+2, therefore the result is 3.&quot; I don&#8217;t know why they write like that. They could have skipped many sentences.</p>
<p>That may not be strange to you, however, it drives me crazy.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/warticles.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/warticles.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/warticles.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/warticles.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/warticles.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/warticles.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/warticles.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/warticles.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/warticles.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/warticles.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/warticles.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/warticles.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/warticles.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/warticles.wordpress.com/143/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=warticles.wordpress.com&amp;blog=6285846&amp;post=143&amp;subd=warticles&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://warticles.wordpress.com/2010/10/03/business-course-materials/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1e41b4d76be34fa05a4d49f4db100e29?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">warticles</media:title>
		</media:content>
	</item>
		<item>
		<title>$50Bn for infrastructure</title>
		<link>http://warticles.wordpress.com/2010/10/01/50bn-for-infrastructure/</link>
		<comments>http://warticles.wordpress.com/2010/10/01/50bn-for-infrastructure/#comments</comments>
		<pubDate>Fri, 01 Oct 2010 09:39:47 +0000</pubDate>
		<dc:creator>warticles</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://warticles.wordpress.com/2010/10/01/50bn-for-infrastructure/</guid>
		<description><![CDATA[Copied From www.blogster.com/goutham (Posted about a month ago) I was watching BBC last night and I learned about Obama&#8217;s plan to rebuild railroads and runways to reduce unemployment rate which is now 9.6% in America. It&#8217;s quite an unusual rate for a country like US. Obama says that his plan to invest $50 in infrastructure [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=warticles.wordpress.com&amp;blog=6285846&amp;post=142&amp;subd=warticles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Copied From <a href="http://www.blogster.com/goutham">www.blogster.com/goutham</a> (Posted about a month ago)</p>
<p>I was watching BBC last night and I learned about Obama&#8217;s plan to rebuild railroads and runways to reduce unemployment rate which is now 9.6% in America. It&#8217;s quite an unusual rate for a country like US. Obama says that his plan to invest $50 in infrastructure would create new jobs and stimulate the economy. But how? What is the effect of $50bn investment in such a huge economy? It would probably reduce unemployment to some percent and profit companies that the gov choose to work with. I tried to draw a concept map. As $50bn comes or will come from tax cut, it is using federal deposit, which will go to the companies and workers. And workers will spend the money they get which would surely be a very low amount and the money gov gets from tax would also be low . It would somehow stimulate the economy and help some people. Is it all about getting votes? Is he gonna spend more money on infrastructure to produce a better effect on economy?If yes,where would thatmoney come from? Higher taxes on large firms? Maybe not. I could draw a concept map however cannot understand how much it can serve to the sluggish economy. How the circulation of $50bn will affect the world&#8217;s largest economy?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/warticles.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/warticles.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/warticles.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/warticles.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/warticles.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/warticles.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/warticles.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/warticles.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/warticles.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/warticles.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/warticles.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/warticles.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/warticles.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/warticles.wordpress.com/142/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=warticles.wordpress.com&amp;blog=6285846&amp;post=142&amp;subd=warticles&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://warticles.wordpress.com/2010/10/01/50bn-for-infrastructure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1e41b4d76be34fa05a4d49f4db100e29?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">warticles</media:title>
		</media:content>
	</item>
		<item>
		<title>Alcoholism Studies</title>
		<link>http://warticles.wordpress.com/2010/09/04/alcoholism-studies/</link>
		<comments>http://warticles.wordpress.com/2010/09/04/alcoholism-studies/#comments</comments>
		<pubDate>Sat, 04 Sep 2010 06:09:19 +0000</pubDate>
		<dc:creator>warticles</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://warticles.wordpress.com/2010/09/04/alcoholism-studies/</guid>
		<description><![CDATA[When there is nothing to do around, 99% of people who has a history of drinking, readily resort on drinking to overcome pressures of lonliness, stress, anxiety, boredom and or other unnamed factors. And number of cigarettes smoked is also increased by at least 100% in most cases. Due to continuous drinking and smoking, body [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=warticles.wordpress.com&amp;blog=6285846&amp;post=141&amp;subd=warticles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When there is nothing to do around, 99% of people who has a history of drinking, readily resort on drinking to overcome pressures of lonliness, stress, anxiety, boredom and or other unnamed factors. And number of cigarettes smoked is also increased by at least 100% in most cases. Due to continuous drinking and smoking, body and mind experiences stress from unhealthy situation, it is more likely that one will continue drinking before finding an interesting activity other than drinking. Only a few people create activities for themselves in situations where it seems there is not much to do around. Many people remained unaware that drinking and smoking can be replaced by many other productive activities that are healthy and fun at the same time.</p>
<p>Studies based mainly on college-aged, unmarried, unemployed people. There may be slight or significant differences according to age,sex, location and social status.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/warticles.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/warticles.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/warticles.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/warticles.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/warticles.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/warticles.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/warticles.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/warticles.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/warticles.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/warticles.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/warticles.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/warticles.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/warticles.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/warticles.wordpress.com/141/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=warticles.wordpress.com&amp;blog=6285846&amp;post=141&amp;subd=warticles&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://warticles.wordpress.com/2010/09/04/alcoholism-studies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1e41b4d76be34fa05a4d49f4db100e29?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">warticles</media:title>
		</media:content>
	</item>
		<item>
		<title>Sharp wire brushes leave your caviar looking clean</title>
		<link>http://warticles.wordpress.com/2010/07/28/sharp-wire-brushes-leave-your-caviar-looking-clean/</link>
		<comments>http://warticles.wordpress.com/2010/07/28/sharp-wire-brushes-leave-your-caviar-looking-clean/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 16:21:43 +0000</pubDate>
		<dc:creator>warticles</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://warticles.wordpress.com/2010/07/28/sharp-wire-brushes-leave-your-caviar-looking-clean/</guid>
		<description><![CDATA[Sharp wire brushes leave your caviar looking clean&#8230;.. I&#8217;m coming back soon.. . been busy applying for colleges, still unfinished. But i will write about my experience in preparing.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=warticles.wordpress.com&amp;blog=6285846&amp;post=140&amp;subd=warticles&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sharp wire brushes leave your caviar looking clean&#8230;..</p>
<p>I&#8217;m coming back soon.. . been busy applying for colleges, still unfinished. But i will write about my experience in preparing.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/warticles.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/warticles.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/warticles.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/warticles.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/warticles.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/warticles.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/warticles.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/warticles.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/warticles.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/warticles.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/warticles.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/warticles.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/warticles.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/warticles.wordpress.com/140/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=warticles.wordpress.com&amp;blog=6285846&amp;post=140&amp;subd=warticles&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://warticles.wordpress.com/2010/07/28/sharp-wire-brushes-leave-your-caviar-looking-clean/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1e41b4d76be34fa05a4d49f4db100e29?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">warticles</media:title>
		</media:content>
	</item>
	</channel>
</rss>
