<?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/"
	>

<channel>
	<title>How Answer</title>
	<atom:link href="http://howanswer.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://howanswer.com</link>
	<description>Technology - Wordpress - Free Wordpress Themes</description>
	<lastBuildDate>Mon, 25 Jan 2010 18:51:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to insert text in multiple lines in vi editor</title>
		<link>http://howanswer.com/2010/01/25/how-to-insert-text-in-multiple-lines-in-vi-editor/</link>
		<comments>http://howanswer.com/2010/01/25/how-to-insert-text-in-multiple-lines-in-vi-editor/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 18:50:46 +0000</pubDate>
		<dc:creator>Steve Soe</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://howanswer.com/?p=276</guid>
		<description><![CDATA[<a href="http://howanswer.com/2010/01/25/how-to-insert-text-in-multiple-lines-in-vi-editor/"></a>In the vi editor, if you want to add the text before some keywords in the multiple lines,  you can use this awk script.
For example: I have this file name called &#8220;/root/temp&#8221; and I want to add the word &#8220;sddl&#8221; in front of the words &#8220;Device: -r&#8221;.  I wrote my awk script like this:
awk &#8216; [...]]]></description>
			<content:encoded><![CDATA[<p>In the vi editor, if you want to add the text before some keywords in the multiple lines,  you can use this awk script.</p>
<p>For example: I have this file name called &#8220;/root/temp&#8221; and I want to add the word &#8220;sddl&#8221; in front of the words &#8220;Device: -r&#8221;.  I wrote my awk script like this:</p>
<blockquote><p>awk &#8216; {<br />
if ($0 ~ /^\sddl/)<br />
print &#8220;Device:-r&#8221;$0<br />
else<br />
print $0</p>
<p>} &#8216; /root/temp</p></blockquote>
<p>If you run the script, you will see the output and then you can redirect the output to a new file.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fhowanswer.com%2F2010%2F01%2F25%2Fhow-to-insert-text-in-multiple-lines-in-vi-editor%2F&amp;linkname=How%20to%20insert%20text%20in%20multiple%20lines%20in%20vi%20editor"><img src="http://howanswer.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://howanswer.com/2010/01/25/how-to-insert-text-in-multiple-lines-in-vi-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Compress / Archive or Decompress / Unarchive / extract with Gzip, Zip, and Tar</title>
		<link>http://howanswer.com/2009/12/16/how-to-compress-archive-or-decompress-unarchive-extract-with-gzip-zip-and-tar/</link>
		<comments>http://howanswer.com/2009/12/16/how-to-compress-archive-or-decompress-unarchive-extract-with-gzip-zip-and-tar/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 22:04:25 +0000</pubDate>
		<dc:creator>Steve Soe</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://howanswer.com/?p=248</guid>
		<description><![CDATA[<a href="http://howanswer.com/2009/12/16/how-to-compress-archive-or-decompress-unarchive-extract-with-gzip-zip-and-tar/"></a>When the compressed files are downloaded on unix or linux, their extension are somtimes different like gz, zip, tar,  tar.gz. The commands to extract / decompress / unarchive these files are different, so here is the guide:
How to compress /archive  files with &#8220;zip&#8221;
zip -r filename.zip file1 file2 file2
How to decompress / unarchive / extract .zip [...]]]></description>
			<content:encoded><![CDATA[<p>When the compressed files are downloaded on unix or linux, their extension are somtimes different like gz, zip, tar,  tar.gz. The commands to extract / decompress / unarchive these files are different, so here is the guide:</p>
<p>How to compress /archive  files with <strong>&#8220;zip&#8221;</strong></p>
<blockquote><p><tt>zip -r filename.zip file1 file2 file2</tt></p></blockquote>
<p>How to decompress / unarchive / extract <strong>.zip extension</strong> <strong><br />
</strong></p>
<blockquote><p><tt>unzip filename.zip</tt></p></blockquote>
<p>How to compress /archive  files with <strong>&#8220;gzip&#8221;</strong></p>
<blockquote><p><tt>gzip filename.gz file1 file2 file3</tt></p></blockquote>
<p>How to decompress / unarchive / extract <strong>.gz extension</strong></p>
<blockquote><p><tt>gunzip filename.gz</tt></p></blockquote>
<p>How to compress /archive  files with<strong> &#8220;tar&#8221;</strong></p>
<blockquote><p><tt>tar -cvf foo.tar file1.txt file2.txt file3.txt</tt></p></blockquote>
<p>Or compress / archive the whole directory with &#8220;tar&#8221;</p>
<blockquote><p><tt>tar -cvf filename.tar files/directories</tt></p></blockquote>
<p>How to decompress / unarchive / extract <strong>.tar extension</strong></p>
<blockquote><p><tt>tar -xvf filename.tar</tt></p></blockquote>
<p>How to decompress / unarchive / extract <strong>.tgz</strong> or <strong>.tar.gz </strong>extension</p>
<blockquote><p><tt>tar -xzvf filename.tgz </tt></p></blockquote>
<p>or</p>
<blockquote><p><tt>tar -xzvf filename.tar.gz</tt></p></blockquote>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fhowanswer.com%2F2009%2F12%2F16%2Fhow-to-compress-archive-or-decompress-unarchive-extract-with-gzip-zip-and-tar%2F&amp;linkname=How%20to%20Compress%20%2F%20Archive%20or%20Decompress%20%2F%20Unarchive%20%2F%20extract%20with%20Gzip%2C%20Zip%2C%20and%20Tar"><img src="http://howanswer.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://howanswer.com/2009/12/16/how-to-compress-archive-or-decompress-unarchive-extract-with-gzip-zip-and-tar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install VMware ESX vib zip extension driver</title>
		<link>http://howanswer.com/2009/12/12/how-to-install-vmware-esx-vib-zip-extension-driver/</link>
		<comments>http://howanswer.com/2009/12/12/how-to-install-vmware-esx-vib-zip-extension-driver/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 03:39:12 +0000</pubDate>
		<dc:creator>Steve Soe</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[VMware ESX]]></category>

		<guid isPermaLink="false">http://howanswer.com/?p=228</guid>
		<description><![CDATA[<a href="http://howanswer.com/2009/12/12/how-to-install-vmware-esx-vib-zip-extension-driver/"></a>In normal situation, VMware driver update is quite simple if you are installing the driver from VMware driver CD/ ISO image by doing the following three steps:

Mount the driver CD or ISO image
Go to the VMupdates/RPMS/ on the driver CD.
 Run the "esxupdate update" command.

However,  some vendors may provide VIB or bundle zip files and  [...]]]></description>
			<content:encoded><![CDATA[<p>In normal situation, VMware driver update is quite simple if you are installing the driver from VMware driver CD/ ISO image by doing the following three steps:</p>
<ol type="1">
<li>Mount the driver CD or ISO image</li>
<li>Go to the <tt>VMupdates/RPMS/</tt> on the driver CD.</li>
<li> Run the <tt>"esxupdate update" </tt>command.</li>
</ol>
<p>However,  some vendors may provide VIB or bundle zip files and  just running <tt>"esxupdate update" </tt>command alone will not work.  You will need run additional options with esxupdate commands and here is how it is done -</p>
<p>For VIB files, run this command:</p>
<p>&#8220;esxupdate -b &lt;filename.vib&gt; update&#8221;</p>
<p>For bundle zip files, run this command:</p>
<p>&#8220;esxupdate update  &#8211;bundle &lt;bundle-filename.zip&gt;&#8221;</p>
<p>If you are still seeing warning messages, you may want to use with following additional options:</p>
<p>- -olderversion  (it will allow downgrading to older version)</p>
<p>- -maintenancemode  (go into maintenancemode to update)</p>
<p>- -nodeps (no dependency check)</p>
<p>- -nosigcheck (no signature check for installing unsigned driver)</p>
<p>After the installation, use the following commands to verify that the driver is loaded -</p>
<p><tt>"vmkload_mod -l"</tt></p>
<p>To check the driver version, run</p>
<p>&#8220;vmkload_mod -s &lt;driver name&gt;&#8221;</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fhowanswer.com%2F2009%2F12%2F12%2Fhow-to-install-vmware-esx-vib-zip-extension-driver%2F&amp;linkname=How%20to%20install%20VMware%20ESX%20vib%20zip%20extension%20driver"><img src="http://howanswer.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://howanswer.com/2009/12/12/how-to-install-vmware-esx-vib-zip-extension-driver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create a file in Windows</title>
		<link>http://howanswer.com/2009/10/11/how-to-create-a-file-in-windows/</link>
		<comments>http://howanswer.com/2009/10/11/how-to-create-a-file-in-windows/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 21:10:55 +0000</pubDate>
		<dc:creator>steve soe</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://howanswer.com/?p=76</guid>
		<description><![CDATA[<a href="http://howanswer.com/2009/10/11/how-to-create-a-file-in-windows/"></a>If you want to create or generate a file of a certain size in Windows XP, Server, Vista or later versions or MS-DOS, you can use the Fsutil command . Here is the instruction:
 
- Log in as user name with Administrator privileges
- Open command line CMD and type in:
&#8220;fsutil file createnew &#60;location\name of file&#62; [...]]]></description>
			<content:encoded><![CDATA[<p><span><span>If you want to create or generate a file of a certain size in Windows XP, Server, Vista or later versions or MS-DOS, </span></span><span><span>you can use the Fsutil command </span></span><span><span>. Here is the instruction:<br />
</span></span> <span id="more-76"></span></p>
<p>- Log in as user name with Administrator privileges</p>
<p>- Open command line CMD and type in:</p>
<p>&#8220;fsutil file createnew &lt;location\name of file&gt; &lt;size in bytes&gt;&#8221;</p>
<p>For example:</p>
<p>fsutil file createnew d:\temp\1MBfile.txt 1000000</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fhowanswer.com%2F2009%2F10%2F11%2Fhow-to-create-a-file-in-windows%2F&amp;linkname=How%20to%20create%20a%20file%20in%20Windows"><img src="http://howanswer.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://howanswer.com/2009/10/11/how-to-create-a-file-in-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download RBG Color Finder Retriever Free</title>
		<link>http://howanswer.com/2009/09/20/download-rbg-color-finder-retriever/</link>
		<comments>http://howanswer.com/2009/09/20/download-rbg-color-finder-retriever/#comments</comments>
		<pubDate>Sun, 20 Sep 2009 20:15:07 +0000</pubDate>
		<dc:creator>steve soe</dc:creator>
				<category><![CDATA[Downloads]]></category>

		<guid isPermaLink="false">http://howanswer.com/?p=56</guid>
		<description><![CDATA[<a href="http://howanswer.com/2009/09/20/download-rbg-color-finder-retriever/"><img width="150" src="http://howanswer.com/files/2009/12/color-finder.jpg" class="alignleft wp-post-image tfe" alt="color-finder" title="color-finder" /></a>This tools is to retrieve any color on the Desktop and return the RBG hex, html, dec color values. During Web site designing or playing around with graphics, sometimes we need a tool like this to know  RGB color value of a particular region.  An example &#8212; you need to know the background color value [...]]]></description>
			<content:encoded><![CDATA[<p>This tools is to retrieve any color on the Desktop and return the RBG hex, html, dec color values. During Web site designing or playing around with graphics, sometimes we need a tool like this to know  RGB color value of a particular region.  An example &#8212; you need to know the background color value of an image so that you can use the same color for the Web page. ColorFinder comes in handy exactly for this. You can pick the color from any pixel on the Desktop.</p>
<p><strong>How To Use</strong></p>
<p>Very Easy. Just launch the application. Drag &amp; Drop the color pointer  onto the color area.</p>
<h2><a title="Color Finder Retriever" href="http://howanswer.com/files/2009/12/ColorFinder.zip" target="_blank">Dowload Color Finder</a></h2>
<h2><a title="Color Finder Retriever" href="http://howanswer.com/files/2009/12/ColorFinder.zip" target="_blank"><img class="alignnone size-full wp-image-67" title="color-finder" src="http://howanswer.com/files/2009/12/color-finder.jpg" alt="color-finder" /></a></h2>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fhowanswer.com%2F2009%2F09%2F20%2Fdownload-rbg-color-finder-retriever%2F&amp;linkname=Download%20RBG%20Color%20Finder%20Retriever%20Free"><img src="http://howanswer.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://howanswer.com/2009/09/20/download-rbg-color-finder-retriever/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make Wordpress categories &amp; pages into horizontal menu</title>
		<link>http://howanswer.com/2009/09/19/how-to-make-wordpress-categories-pages-into-horizontal-menu/</link>
		<comments>http://howanswer.com/2009/09/19/how-to-make-wordpress-categories-pages-into-horizontal-menu/#comments</comments>
		<pubDate>Sun, 20 Sep 2009 04:04:44 +0000</pubDate>
		<dc:creator>steve soe</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://howanswer.com/?p=15</guid>
		<description><![CDATA[<a href="http://howanswer.com/2009/09/19/how-to-make-wordpress-categories-pages-into-horizontal-menu/"></a>Some of my readers asked me how I created my horizontal menu using Wordpress WP-Categories &#38; WP-Pages. The short answer is &#8212; I added the following two code in header.php page.

&#60;?php wp_list_pages(&#8216;title_li=&#38;depth=1&#38;exclude=&#8217;); ?&#62;  /* For Pages */ 
&#60;?php wp_list_categories(&#8217;sort_column=name&#38;sort_order=asc&#38;style=list&#38;children=true&#38;hierarchical=true&#38;title_li=0&#8242;); ?&#62;    /* For Categories */ 

Most of the Wordpress Themes have CSS tags for menu [...]]]></description>
			<content:encoded><![CDATA[<p>Some of my readers asked me how I created my horizontal menu using Wordpress WP-Categories &amp; WP-Pages. The short answer is &#8212; I added the following two code in header.php page.</p>
<div style="padding:10px;background:#eee;border: solid 1px #999999">
<p>&lt;?php wp_list_pages(&#8216;title_li=&amp;depth=1&amp;exclude=&#8217;); ?&gt; <span style="color: #008000"> /* For Pages */ </span></p>
<p>&lt;?php wp_list_categories(&#8217;sort_column=name&amp;sort_order=asc&amp;style=list&amp;children=true&amp;hierarchical=true&amp;title_li=0&#8242;); ?&gt;   <span style="color: #008000"> /* For Categories */ </span></div>
<p>
Most of the Wordpress Themes have CSS tags for menu bar in header.php. So, the above two code can be put in these menu tags. Here is the example &#8212; </p>
<div style="padding:10px;background:#eee;border: solid 1px #999999">
<p>&lt;div id=&#8221;menu&#8221;&gt;<br />
&lt;ul&gt;<br />
&lt;licurrent_page_item&#8221;; } ?&gt;&#8221;&gt;&lt;a href=&#8221;&lt;?php echo get_settings(&#8216;home&#8217;); ?&gt;&#8221;&gt;Home&lt;/a&gt;&lt;/li&gt;<br />
<span style="color: #0000ff"><br />
&lt;?php wp_list_pages(&#8216;title_li=&amp;depth=1&amp;exclude=&#8217;); ?&gt;<br />
&lt;?php wp_list_categories(&#8217;sort_column=name&amp;sort_order=asc&amp;style=list&amp;children=true&amp;hierarchical=true&amp;title_li=0&#8242;); ?&gt;<br />
</span><br />
&lt;/ul&gt;<br />
&lt;/div&gt;</div>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fhowanswer.com%2F2009%2F09%2F19%2Fhow-to-make-wordpress-categories-pages-into-horizontal-menu%2F&amp;linkname=How%20to%20make%20Wordpress%20categories%20%26amp%3B%20pages%20into%20horizontal%20menu"><img src="http://howanswer.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://howanswer.com/2009/09/19/how-to-make-wordpress-categories-pages-into-horizontal-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to find out HP EVA model</title>
		<link>http://howanswer.com/2009/09/15/how-to-find-out-hp-eva-model/</link>
		<comments>http://howanswer.com/2009/09/15/how-to-find-out-hp-eva-model/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 00:50:19 +0000</pubDate>
		<dc:creator>Steve Soe</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Server Storage]]></category>
		<category><![CDATA[Storage]]></category>

		<guid isPermaLink="false">http://howanswer.com/?p=7</guid>
		<description><![CDATA[<a href="http://howanswer.com/2009/09/15/how-to-find-out-hp-eva-model/"></a>Here is the table regarding EVA models:
Model IOSCAN output
EVA3000 HSV100(A/P) or HSV101(A/A)
EVA5000 HSV110(A/P) or HSV111(A/A)
EVA4xxx/6xxx HSV200
EVA8xxx HSV210
EVA4400 HSV300
Note:
A/P &#8211; Active/Passive, for VCS 3.xxx
A/A &#8211; Active/Active, for VCS 4.xxx
VCS &#8211; Virtual Controller Software (i.e., EVA firmware)
HSV &#8211; Hierarchical Storage Virtualization (controller)
If you have HP-UX OS, use diskinfo -v  to get the f/w revision.
]]></description>
			<content:encoded><![CDATA[<p>Here is the table regarding EVA models:</p>
<p>Model IOSCAN output<br />
EVA3000 HSV100(A/P) or HSV101(A/A)<br />
EVA5000 HSV110(A/P) or HSV111(A/A)<br />
EVA4xxx/6xxx HSV200<br />
EVA8xxx HSV210<br />
EVA4400 HSV300</p>
<p>Note:<br />
A/P &#8211; Active/Passive, for VCS 3.xxx<br />
A/A &#8211; Active/Active, for VCS 4.xxx<br />
VCS &#8211; Virtual Controller Software (i.e., EVA firmware)<br />
HSV &#8211; Hierarchical Storage Virtualization (controller)</p>
<p>If you have HP-UX OS, use diskinfo -v  to get the f/w revision.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fhowanswer.com%2F2009%2F09%2F15%2Fhow-to-find-out-hp-eva-model%2F&amp;linkname=How%20to%20find%20out%20HP%20EVA%20model"><img src="http://howanswer.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://howanswer.com/2009/09/15/how-to-find-out-hp-eva-model/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is difference between RAID 5 and RAID 6</title>
		<link>http://howanswer.com/2009/09/15/what-is-difference-between-raid-5-and-raid-6/</link>
		<comments>http://howanswer.com/2009/09/15/what-is-difference-between-raid-5-and-raid-6/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 00:45:29 +0000</pubDate>
		<dc:creator>Steve Soe</dc:creator>
				<category><![CDATA[Server Storage]]></category>
		<category><![CDATA[Storage]]></category>

		<guid isPermaLink="false">http://howanswer.com/?p=3</guid>
		<description><![CDATA[<a href="http://howanswer.com/2009/09/15/what-is-difference-between-raid-5-and-raid-6/"></a>RAID 5–Striped set with distributed parity. Distributed parity requires all drives but one to be present to operate; drive failure requires replacement, but the array is not destroyed by a single drive failure. Upon drive failure, any subsequent reads can be calculated from the distributed parity such that the drive failure is masked from the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>RAID 5–Striped set with distributed parity.</strong> Distributed parity requires all drives but one to be present to operate; drive failure requires replacement, but the array is not destroyed by a single drive failure. Upon drive failure, any subsequent reads can be calculated from the distributed parity such that the drive failure is masked from the end user. The array will have data loss in the event of a second drive failure and is vulnerable until the data that was on the failed drive is rebuilt onto a replacement drive.</p>
<p><strong>RAID6–Striped set with dual distributed Parity.</strong> Provides fault tolerance from two drive failures; array continues to operate with up to two failed drives. This makes larger RAID groups more practical, especially for high availability systems. This becomes increasingly important because large-capacity drives lengthen the time needed to recover from the failure of a single drive. Single parity RAID levels are vulnerable to data loss until the failed drive is rebuilt: the larger the drive, the longer the rebuild will take. Dual parity gives time to rebuild the array without the data being at risk if one drive, but no more, fails before the rebuild is complete.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fhowanswer.com%2F2009%2F09%2F15%2Fwhat-is-difference-between-raid-5-and-raid-6%2F&amp;linkname=What%20is%20difference%20between%20RAID%205%20and%20RAID%206"><img src="http://howanswer.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://howanswer.com/2009/09/15/what-is-difference-between-raid-5-and-raid-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daisy Flower Theme</title>
		<link>http://wordpress-themes.howanswer.com/2008/10/13/daisy-flower/</link>
		<comments>http://wordpress-themes.howanswer.com/2008/10/13/daisy-flower/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 02:54:21 +0000</pubDate>
		<dc:creator>steve soe</dc:creator>
				<category><![CDATA[Free Wordpress Themes]]></category>

		<guid isPermaLink="false">http://www.sushidating.com/theme-wordpress/?p=32</guid>
		<description><![CDATA[<a href="http://wordpress-themes.howanswer.com/2008/10/13/daisy-flower/"><img width="150" src="http://wordpress-themes.howanswer.com/files/2008/01/daisy-flower-800-600.png" class="alignleft wp-post-image tfe" alt="daisy-flower-800-600.png" title="" /></a>
Description:  Stylish Daisy Flower theme with transparent flowers background.  Two columns right sidebar theme with image. 
Total downloads: 12
  Preview  &#124; Download
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" src="http://wordpress-themes.howanswer.com/files/2008/01/daisy-flower-800-600.png" alt="daisy-flower-800-600.png" width="200" height="200" /></p>
<p>Description:  Stylish Daisy Flower theme with transparent flowers background.  Two columns right sidebar theme with image. </p>
<p>Total downloads: 12</p>
<h3><strong><span style="color: #000000"> <a href="http://wordpress-themes-demo.howanswer.com/?preview_theme=Daisy%20Flowers"> Preview </a> | <a href="http://wordpress-themes.howanswer.com/?download=daisy-flower">Download</a></span></strong></h3>
]]></content:encoded>
			<wfw:commentRss>http://wordpress-themes.howanswer.com/2008/10/13/daisy-flower/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grass Daisy Theme</title>
		<link>http://wordpress-themes.howanswer.com/2008/09/17/grass-daisy-theme/</link>
		<comments>http://wordpress-themes.howanswer.com/2008/09/17/grass-daisy-theme/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 02:13:35 +0000</pubDate>
		<dc:creator>steve soe</dc:creator>
				<category><![CDATA[Free Wordpress Themes]]></category>

		<guid isPermaLink="false">http://www.sushidating.com/theme-wordpress/?p=10</guid>
		<description><![CDATA[<a href="http://wordpress-themes.howanswer.com/2008/09/17/grass-daisy-theme/"><img width="150" src="http://wordpress-themes.howanswer.com/files/2008/01/grass-daisy-800-600.JPG" class="alignleft wp-post-image tfe" alt="grass-daisy-800-600.JPG" title="" /></a>

Description: Beautiful green theme with daisy flowers.

Total downloads: 7
  Preview  &#124; Download
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" src="http://wordpress-themes.howanswer.com/files/2008/01/grass-daisy-800-600.JPG" alt="grass-daisy-800-600.JPG" width="200" height="200" /><br />
<br />
Description: Beautiful green theme with daisy flowers.<br />
<br />
Total downloads: 7</p>
<h3><strong><span style="color: #000000"> <a href="http://wordpress-themes-demo.howanswer.com/?preview_theme=Grass%20Daisy"> Preview </a> | <a href="http://wordpress-themes.howanswer.com/?download=grass-daisy">Download</a></span></strong></h3>
]]></content:encoded>
			<wfw:commentRss>http://wordpress-themes.howanswer.com/2008/09/17/grass-daisy-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
