<?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>Techii</title>
	<atom:link href="http://techii.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://techii.wordpress.com</link>
	<description>More Experience Every Day !!</description>
	<lastBuildDate>Tue, 03 Nov 2009 16:43:25 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='techii.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/b1e1220a07684fd4488445a7d052ecd1?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Techii</title>
		<link>http://techii.wordpress.com</link>
	</image>
			<item>
		<title>Solution of &#8220;hoe requires RubyGems version &gt;= 1.3.1&#8243; problem</title>
		<link>http://techii.wordpress.com/2009/11/03/solution-of-hoe-requires-rubygems-version-1-3-1-problem/</link>
		<comments>http://techii.wordpress.com/2009/11/03/solution-of-hoe-requires-rubygems-version-1-3-1-problem/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 16:43:24 +0000</pubDate>
		<dc:creator>amabdelsalam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://techii.wordpress.com/2009/11/03/solution-of-hoe-requires-rubygems-version-1-3-1-problem/</guid>
		<description><![CDATA[gem uninstall rubygems-update
#Then
gem install rubygems-update -v 1.3.4
update_rubygems
#Then you can install hoe
gem install hoe
Reference: http://soft-dev-pro.blogspot.com/2009/07/update-rubygems.html
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techii.wordpress.com&blog=3180876&post=296&subd=techii&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>gem uninstall rubygems-update</p>
<p>#Then</p>
<p>gem install rubygems-update -v 1.3.4</p>
<p>update_rubygems</p>
<p>#Then you can install hoe</p>
<p>gem install hoe</p>
<p>Reference: <a href="http://soft-dev-pro.blogspot.com/2009/07/update-rubygems.html">http://soft-dev-pro.blogspot.com/2009/07/update-rubygems.html</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techii.wordpress.com/296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techii.wordpress.com/296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techii.wordpress.com/296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techii.wordpress.com/296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techii.wordpress.com/296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techii.wordpress.com/296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techii.wordpress.com/296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techii.wordpress.com/296/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techii.wordpress.com/296/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techii.wordpress.com/296/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techii.wordpress.com&blog=3180876&post=296&subd=techii&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://techii.wordpress.com/2009/11/03/solution-of-hoe-requires-rubygems-version-1-3-1-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6cc7fa7c4bc582a4886a8134f2f1f8fc?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">amabdelsalam</media:title>
		</media:content>
	</item>
		<item>
		<title>Changing MySQL root user password using MySQL sql command</title>
		<link>http://techii.wordpress.com/2009/10/31/changing-mysql-root-user-password-using-mysql-sql-command/</link>
		<comments>http://techii.wordpress.com/2009/10/31/changing-mysql-root-user-password-using-mysql-sql-command/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 07:53:38 +0000</pubDate>
		<dc:creator>amabdelsalam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://techii.wordpress.com/2009/10/31/changing-mysql-root-user-password-using-mysql-sql-command/</guid>
		<description><![CDATA[1) Login to mysql server, type following command at shell prompt:
$ mysql -u root -p
2) Use mysql database (type command at mysql&#62; prompt):
mysql&#62; use mysql;
3) Change password for user vivek:
mysql&#62; update user set password=PASSWORD(&#34;NEWPASSWORD&#34;) where User=&#8217;vivek&#8217;;
4) Reload privileges:
mysql&#62; flush privileges;
mysql&#62; quit
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techii.wordpress.com&blog=3180876&post=295&subd=techii&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>1) Login to mysql server, type following command at shell prompt:</p>
<p>$ mysql -u root -p</p>
<p>2) Use mysql database (type command at mysql&gt; prompt):</p>
<p>mysql&gt; use mysql;</p>
<p>3) Change password for user vivek:</p>
<p>mysql&gt; update user set password=PASSWORD(&quot;NEWPASSWORD&quot;) where User=&#8217;vivek&#8217;;</p>
<p>4) Reload privileges:</p>
<p>mysql&gt; flush privileges;</p>
<p>mysql&gt; quit</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techii.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techii.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techii.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techii.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techii.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techii.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techii.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techii.wordpress.com/295/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techii.wordpress.com/295/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techii.wordpress.com/295/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techii.wordpress.com&blog=3180876&post=295&subd=techii&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://techii.wordpress.com/2009/10/31/changing-mysql-root-user-password-using-mysql-sql-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6cc7fa7c4bc582a4886a8134f2f1f8fc?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">amabdelsalam</media:title>
		</media:content>
	</item>
		<item>
		<title>Prevent Tracking clicks on Google, Yahoo and Bing</title>
		<link>http://techii.wordpress.com/2009/10/22/prevent-tracking-clicks-on-google-yahoo-and-bing/</link>
		<comments>http://techii.wordpress.com/2009/10/22/prevent-tracking-clicks-on-google-yahoo-and-bing/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 07:27:16 +0000</pubDate>
		<dc:creator>amabdelsalam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://techii.wordpress.com/2009/10/22/prevent-tracking-clicks-on-google-yahoo-and-bing/</guid>
		<description><![CDATA[A good article about preventing Google, Yahoo and Bing from tracking clicks on websites
http://cybernetnews.com/how-to-stop-google-yahoo-bing-from-tracking-your-clicks/
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techii.wordpress.com&blog=3180876&post=294&subd=techii&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>A good article about preventing Google, Yahoo and Bing from tracking clicks on websites</p>
<p><a href="http://cybernetnews.com/how-to-stop-google-yahoo-bing-from-tracking-your-clicks/">http://cybernetnews.com/how-to-stop-google-yahoo-bing-from-tracking-your-clicks/</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techii.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techii.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techii.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techii.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techii.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techii.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techii.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techii.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techii.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techii.wordpress.com/294/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techii.wordpress.com&blog=3180876&post=294&subd=techii&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://techii.wordpress.com/2009/10/22/prevent-tracking-clicks-on-google-yahoo-and-bing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6cc7fa7c4bc582a4886a8134f2f1f8fc?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">amabdelsalam</media:title>
		</media:content>
	</item>
		<item>
		<title>Hotmail and Live Mail POP Access Settings</title>
		<link>http://techii.wordpress.com/2009/10/18/hotmail-and-live-mail-pop-access-settings/</link>
		<comments>http://techii.wordpress.com/2009/10/18/hotmail-and-live-mail-pop-access-settings/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 09:22:23 +0000</pubDate>
		<dc:creator>amabdelsalam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://techii.wordpress.com/2009/10/18/hotmail-and-live-mail-pop-access-settings/</guid>
		<description><![CDATA[
POP: pop3.live.com (port 995)
SMTP: smtp.live.com (port 25)

Note: make sure you check the box that indicates that your outgoing server requires authentication (in most mail clients this is not checked by default).


Username: your full email address
Password: your Windows Live ID password

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techii.wordpress.com&blog=3180876&post=293&subd=techii&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><ul>
<li>POP: pop3.live.com (port 995)</li>
<li>SMTP: smtp.live.com (port 25)
<ul>
<li>Note: make sure you check the box that indicates that <strong>your outgoing server requires authentication</strong> (in most mail clients this is not checked by default).</li>
</ul>
</li>
<li>Username: your full email address</li>
<li>Password: your Windows Live ID password</li>
</ul>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techii.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techii.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techii.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techii.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techii.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techii.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techii.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techii.wordpress.com/293/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techii.wordpress.com/293/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techii.wordpress.com/293/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techii.wordpress.com&blog=3180876&post=293&subd=techii&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://techii.wordpress.com/2009/10/18/hotmail-and-live-mail-pop-access-settings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6cc7fa7c4bc582a4886a8134f2f1f8fc?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">amabdelsalam</media:title>
		</media:content>
	</item>
		<item>
		<title>Sublime Text, a good text editor</title>
		<link>http://techii.wordpress.com/2009/10/17/sublime-text-a-good-text-editor/</link>
		<comments>http://techii.wordpress.com/2009/10/17/sublime-text-a-good-text-editor/#comments</comments>
		<pubDate>Sat, 17 Oct 2009 06:57:12 +0000</pubDate>
		<dc:creator>amabdelsalam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://techii.wordpress.com/2009/10/17/sublime-text-a-good-text-editor/</guid>
		<description><![CDATA[
Sublime Text is a sophisticated text editor for code, html and prose. You&#8217;ll love the slick user interface and extraordinary features.
try it here: http://www.sublimetext.com/
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techii.wordpress.com&blog=3180876&post=291&subd=techii&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://techii.files.wordpress.com/2009/10/moz-screenshot.jpg"><img src="http://techii.files.wordpress.com/2009/10/moz-screenshot.jpg?w=480&#038;h=192" alt="moz screenshot" title="moz screenshot" width="480" height="192" class="alignnone size-full wp-image-292" /></a></p>
<p>Sublime Text is a sophisticated text editor for code, html and prose. You&#8217;ll love the slick user interface and extraordinary features.<br />
try it here: <a href="http://www.sublimetext.com/">http://www.sublimetext.com/</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techii.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techii.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techii.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techii.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techii.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techii.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techii.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techii.wordpress.com/291/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techii.wordpress.com/291/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techii.wordpress.com/291/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techii.wordpress.com&blog=3180876&post=291&subd=techii&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://techii.wordpress.com/2009/10/17/sublime-text-a-good-text-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6cc7fa7c4bc582a4886a8134f2f1f8fc?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">amabdelsalam</media:title>
		</media:content>

		<media:content url="http://techii.files.wordpress.com/2009/10/moz-screenshot.jpg" medium="image">
			<media:title type="html">moz screenshot</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating shortcut for Outlook User Templates</title>
		<link>http://techii.wordpress.com/2009/10/14/creating-shortcut-for-outlook-user-templates/</link>
		<comments>http://techii.wordpress.com/2009/10/14/creating-shortcut-for-outlook-user-templates/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 15:34:26 +0000</pubDate>
		<dc:creator>amabdelsalam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://techii.wordpress.com/2009/10/14/creating-shortcut-for-outlook-user-templates/</guid>
		<description><![CDATA[Here is a good article about how to create a shortcut for user created templates:

http://articles.techrepublic.com.com/5100-22_11-6129939.html
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techii.wordpress.com&blog=3180876&post=289&subd=techii&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here is a good article about how to create a shortcut for user created templates:</p>
<p><a href="http://techii.files.wordpress.com/2009/10/image0015.png"><img src="http://techii.files.wordpress.com/2009/10/image0015.png?w=480&#038;h=63" alt="image0015" title="image0015" width="480" height="63" class="alignnone size-full wp-image-290" /></a></p>
<p><a href="http://articles.techrepublic.com.com/5100-22_11-6129939.html">http://articles.techrepublic.com.com/5100-22_11-6129939.html</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techii.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techii.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techii.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techii.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techii.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techii.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techii.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techii.wordpress.com/289/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techii.wordpress.com/289/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techii.wordpress.com/289/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techii.wordpress.com&blog=3180876&post=289&subd=techii&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://techii.wordpress.com/2009/10/14/creating-shortcut-for-outlook-user-templates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6cc7fa7c4bc582a4886a8134f2f1f8fc?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">amabdelsalam</media:title>
		</media:content>

		<media:content url="http://techii.files.wordpress.com/2009/10/image0015.png" medium="image">
			<media:title type="html">image0015</media:title>
		</media:content>
	</item>
		<item>
		<title>Recovery after Quick Format</title>
		<link>http://techii.wordpress.com/2009/10/14/recovery-after-quick-format/</link>
		<comments>http://techii.wordpress.com/2009/10/14/recovery-after-quick-format/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 15:16:06 +0000</pubDate>
		<dc:creator>amabdelsalam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://techii.wordpress.com/2009/10/14/recovery-after-quick-format/</guid>
		<description><![CDATA[A Friend of mine has faced the situation of formatting a wrong drive which contained many important data. After some search, here is a nice tool to solve the situation. The article, and images are taken from the website:
How to recover files after quick format?
Need to recover lost files after quick format? Now, don&#8217;t worry! [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techii.wordpress.com&blog=3180876&post=284&subd=techii&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>A Friend of mine has faced the situation of formatting a wrong drive which contained many important data. After some search, here is a nice tool to solve the situation. The article, and images are taken from the website:</p>
<h2>How to recover files after quick format?</h2>
<p>Need to recover lost files after <a href="http://www.easeus.com/format-hard-drive.htm">quick format</a>? Now, don&#8217;t worry! This article will tell you an easy and safe way to recover your files after quick format. EASEUS <a href="http://www.easeus.com/datarecoverywizard/">Data Recovery Wizard</a> provides a best solution for quick format recovery.</p>
<p><strong>What is quick format?</strong></p>
<p>When you are ready to format your <a href="http://www.easeus.com/resource/hard-disk-partition.htm">partitions</a>, you have two methods to format a partition; you can work with default formatting and other format methods. The difference between the regular format and the quick format is whether the volume will scan the bad sectors by using thechkdsk command or not. The latter will not scan the disk for bad sectors. It is used when your hard disk has been previously formatted and your hard disk is not damaged. All the data will be removed from the volume if you perform quick format.</p>
<p>If you accidentally perform quick format on your hard drive and lose all important files, there are still chances to recover files after quick format. If you need to perform quick format recovery, a professional <a href="http://www.easeus.com/">data recovery software</a> will help you to recover your lost files after quick format.</p>
<p>If you Google &quot;recover files from quick formatted disk&quot; for some data recovery software to recover files after quick format, you will find EASEUS<a href="http://www.easeus.com/datarecoverywizard/">Data Recovery Wizard</a> on the top.</p>
<p>EASEUS Data Recovery Wizard is a professional data recovery software to recover lost files after quick format, software crash, and other unknown reasons.</p>
<p><strong>How to do quick format recovery?</strong></p>
<p>&quot;<a href="http://www.easeus.com/datarecoverywizard/help/complete-recovery.htm">Complete Recovery</a>&quot; module built-in Data Recovery Wizard is designed for quick and full format recovery if you want to recover files after quick or full format. If you want to perform quick format recovery to recover files from formatted disk, please follow these steps after running Data Recovery Wizard.</p>
<p>1. Click the &quot;Complete Recovery&quot; button on the main window of Data Recovery Wizard:</p>
<p><a href="http://techii.files.wordpress.com/2009/10/image0012.jpg"><img src="http://techii.files.wordpress.com/2009/10/image0012.jpg?w=480&#038;h=331" alt="image0012" title="image0012" width="480" height="331" class="alignnone size-full wp-image-285" /></a></p>
<p>2. It will display a list of volumes found on the drives in your system. You should choose the volume that was formatted and click &quot;NEXT&quot; to start searching on this volume.</p>
<p><a href="http://techii.files.wordpress.com/2009/10/image002.jpg"><img src="http://techii.files.wordpress.com/2009/10/image002.jpg?w=480&#038;h=331" alt="image002" title="image002" width="480" height="331" class="alignnone size-full wp-image-286" /></a></p>
<p>3. After the scanning is finished, Data Recovery Wizard will permit you choosing 6 volumes at best to recover the data. And then, press &quot;NEXT&quot; button. The Data Recovery Wizard will launch the &quot;Building directory&quot; procedure to searching the files. You will see file/folder tree very soon.</p>
<p><a href="http://techii.files.wordpress.com/2009/10/image003.jpg"><img src="http://techii.files.wordpress.com/2009/10/image003.jpg?w=480&#038;h=332" alt="image003" title="image003" width="480" height="332" class="alignnone size-full wp-image-287" /></a></p>
<p>4. Select the file or directory that you want to recover and press the &quot;Next&quot; button.</p>
<p><a href="http://techii.files.wordpress.com/2009/10/image004.jpg"><img src="http://techii.files.wordpress.com/2009/10/image004.jpg?w=480&#038;h=331" alt="image004" title="image004" width="480" height="331" class="alignnone size-full wp-image-288" /></a></p>
<p>5. Select a directory and press the &quot;NEXT&quot; button to save the data.</p>
<p>After the five steps, quick format recovery is finished and you will recover the lost files after quick format.</p>
<p><strong>NOTE:</strong> Actually, you can free download the demo version to see if your can recover files after quick format or not. Just perform quick format recovery to recover your important files now.</p>
<p>Copyright: <a href="http://www.easeus.com/resource/quick-format-recovery.htm">http://www.easeus.com/resource/quick-format-recovery.htm</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techii.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techii.wordpress.com/284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techii.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techii.wordpress.com/284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techii.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techii.wordpress.com/284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techii.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techii.wordpress.com/284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techii.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techii.wordpress.com/284/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techii.wordpress.com&blog=3180876&post=284&subd=techii&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://techii.wordpress.com/2009/10/14/recovery-after-quick-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6cc7fa7c4bc582a4886a8134f2f1f8fc?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">amabdelsalam</media:title>
		</media:content>

		<media:content url="http://techii.files.wordpress.com/2009/10/image0012.jpg" medium="image">
			<media:title type="html">image0012</media:title>
		</media:content>

		<media:content url="http://techii.files.wordpress.com/2009/10/image002.jpg" medium="image">
			<media:title type="html">image002</media:title>
		</media:content>

		<media:content url="http://techii.files.wordpress.com/2009/10/image003.jpg" medium="image">
			<media:title type="html">image003</media:title>
		</media:content>

		<media:content url="http://techii.files.wordpress.com/2009/10/image004.jpg" medium="image">
			<media:title type="html">image004</media:title>
		</media:content>
	</item>
		<item>
		<title>SuperCopier 2.2 Supports Vista/Win7. A GREAT COPY TOOL</title>
		<link>http://techii.wordpress.com/2009/10/14/supercopier-2-2-supports-vistawin7-a-great-copy-tool/</link>
		<comments>http://techii.wordpress.com/2009/10/14/supercopier-2-2-supports-vistawin7-a-great-copy-tool/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 10:52:35 +0000</pubDate>
		<dc:creator>amabdelsalam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://techii.wordpress.com/2009/10/14/supercopier-2-2-supports-vistawin7-a-great-copy-tool/</guid>
		<description><![CDATA[Take a look on this great copy tool for Windows, now supports Vista/Windows 7

http://supercopier.sfxteam.org/?q=node/63
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techii.wordpress.com&blog=3180876&post=282&subd=techii&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Take a look on this great copy tool for Windows, now supports Vista/Windows 7</p>
<p><a href="http://techii.files.wordpress.com/2009/10/image0011.jpg"><img src="http://techii.files.wordpress.com/2009/10/image0011.jpg?w=413&#038;h=433" alt="image0011" title="image0011" width="413" height="433" class="alignnone size-full wp-image-283" /></a></p>
<p><a href="http://supercopier.sfxteam.org/?q=node/63">http://supercopier.sfxteam.org/?q=node/63</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techii.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techii.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techii.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techii.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techii.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techii.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techii.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techii.wordpress.com/282/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techii.wordpress.com/282/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techii.wordpress.com/282/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techii.wordpress.com&blog=3180876&post=282&subd=techii&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://techii.wordpress.com/2009/10/14/supercopier-2-2-supports-vistawin7-a-great-copy-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6cc7fa7c4bc582a4886a8134f2f1f8fc?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">amabdelsalam</media:title>
		</media:content>

		<media:content url="http://techii.files.wordpress.com/2009/10/image0011.jpg" medium="image">
			<media:title type="html">image0011</media:title>
		</media:content>
	</item>
		<item>
		<title>Distraction Free Writing Tools</title>
		<link>http://techii.wordpress.com/2009/10/13/distraction-free-writing-tools/</link>
		<comments>http://techii.wordpress.com/2009/10/13/distraction-free-writing-tools/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 08:59:49 +0000</pubDate>
		<dc:creator>amabdelsalam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://techii.wordpress.com/2009/10/13/distraction-free-writing-tools/</guid>
		<description><![CDATA[
Distraction Free Writing Tools are a dead simple text editors, which enable writer to concentrate on writing only.
Here are some of free tools:
WriteMonkey, a simple free .NET-based, portable tool http://writemonkey.com
Google Doc template at: http://docs.google.com/templates?view=public&#38;authorId=12642827589753955211
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techii.wordpress.com&blog=3180876&post=280&subd=techii&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://techii.files.wordpress.com/2009/10/image0014.png"><img src="http://techii.files.wordpress.com/2009/10/image0014.png?w=480&#038;h=171" alt="image0014" title="image0014" width="480" height="171" class="alignnone size-full wp-image-281" /></a></p>
<p>Distraction Free Writing Tools are a dead simple text editors, which enable writer to concentrate on writing only.</p>
<p>Here are some of free tools:</p>
<p>WriteMonkey, a simple free .NET-based, portable tool <a href="http://writemonkey.com">http://writemonkey.com</a></p>
<p>Google Doc template at: <a href="http://docs.google.com/templates?view=public&amp;authorId=12642827589753955211">http://docs.google.com/templates?view=public&amp;authorId=12642827589753955211</a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techii.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techii.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techii.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techii.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techii.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techii.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techii.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techii.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techii.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techii.wordpress.com/280/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techii.wordpress.com&blog=3180876&post=280&subd=techii&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://techii.wordpress.com/2009/10/13/distraction-free-writing-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6cc7fa7c4bc582a4886a8134f2f1f8fc?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">amabdelsalam</media:title>
		</media:content>

		<media:content url="http://techii.files.wordpress.com/2009/10/image0014.png" medium="image">
			<media:title type="html">image0014</media:title>
		</media:content>
	</item>
		<item>
		<title>Global Maritime Distress and Safety System GMDSS &#8211; Part 1</title>
		<link>http://techii.wordpress.com/2009/10/13/global-maritime-distress-and-safety-system-gmdss-part-1/</link>
		<comments>http://techii.wordpress.com/2009/10/13/global-maritime-distress-and-safety-system-gmdss-part-1/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 08:37:29 +0000</pubDate>
		<dc:creator>amabdelsalam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://techii.wordpress.com/2009/10/13/global-maritime-distress-and-safety-system-gmdss-part-1/</guid>
		<description><![CDATA[The Global Maritime Distress and Safety System (GMDSS)
Overview
GMDSS has been introduced in chapter IV of the SOLAS Convention. SOLAS is an acroynom of &#34;Safety Of Life at Sea&#34;, which is an international treaty responsible for ensuring the safety of merchent ships.
The basic concept of GMDSS is that search and rescue authorities ashore, as well as [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techii.wordpress.com&blog=3180876&post=277&subd=techii&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h1>The Global Maritime Distress and Safety System (GMDSS)</h1>
<h2>Overview</h2>
<p>GMDSS has been introduced in chapter IV of the SOLAS Convention. SOLAS is an acroynom of &quot;Safety Of Life at Sea&quot;, which is an international treaty responsible for ensuring the safety of merchent ships.</p>
<p>The basic concept of GMDSS is that search and rescue authorities ashore, as well as shipping in the intermediate vicinity of the ship in distress will be rapidly alerted to a distress incident so that thet can assist in a co-orginated SAR operation with the minimum delay.</p>
<p>The system also provides for agency and safety communication and the promulgation of Maritime Safety Information (MSI). i.e. every ship is able, irrespective of the area in which it operates, to perform those communication functions which are essential for the safety of the ship itself and of other ships operating in the same area.</p>
<p><a href="http://techii.files.wordpress.com/2009/10/image001.jpg"><img src="http://techii.files.wordpress.com/2009/10/image001.jpg?w=480&#038;h=417" alt="image001" title="image001" width="480" height="417" class="alignnone size-full wp-image-278" /></a></p>
<p>Under IMO legislation, all passenger vessels had to be fitted with the necessary equipment by 1995, and all vessels over 300grt to be GMDSS equipped by the 1st February deadline.</p>
<h2>Components of GMDSS</h2>
<p>1- DSC</p>
<p>2- NAVTEX</p>
<p>3- INMARSAT</p>
<h2>Benefits of GMDSS</h2>
<p>Under the GMDSS, all Distress and Safety communication will be automated and watchkeeping. At the press of a button, a ship can send its identity, position and nature of distress by either satellite or terrestrial communication. Under the SOLAS 1974 system, ships in the area were required to monitor for distress alerts and then respond directly.</p>
<h2>Digital Selective Call (DSC)</h2>
<h3>Overview</h3>
<p>DSC is acronym for Digital Selective Call. DSC is, basically, a paging system that is used to automate distress alerts sent over terrestrial (ie: non-satellite) VHF, MF and HF marine radio systems.</p>
<p><a href="http://techii.files.wordpress.com/2009/10/image002.png"><img src="http://techii.files.wordpress.com/2009/10/image002.png?w=244&#038;h=222" alt="image002" title="image002" width="244" height="222" class="alignnone size-full wp-image-279" /></a></p>
<h3>DSC Function</h3>
<p>DSC provides a means of automating all day-to-day marine terrestrial calling making marine radio as easy to use as a telephone. DSC effectively provides the operator with a digital dialling system capable of ringing an alarm at a distant radio station when a call is addressed to that station. All you need is a means of alerting the other party by calling their number, and then a means of talking to them.</p>
<p>The DSC system allows a great deal more information to be transmitted, including:</p>
<p>&middot; the priority of the call &#8211; DISTRESS, URGENCY, SAFETY or ROUTINE;</p>
<p>&middot; the address &#8211; ie: all ships or a single ship/station;</p>
<p>&middot; the identification of the ship in distress;</p>
<p>&middot; the position of the ship in distress; and</p>
<p>&middot; the nature of the distress.</p>
<h3>DSC Channels</h3>
<h5>MF/HF DSC</h5>
<h5>DISTRESS AND SAFETY CHANNELS</h5>
<h5>2187.5 4207.5 6312.0 8414.5 12577.0 16804.5 (kHz)</h5>
<h5>VHF DSC</h5>
<h5>DISTRESS AND SAFETY CHANNEL</h5>
<h5>VHF marine channel 70</h5>
<h3>DSC call categories</h3>
<p>DISTRESS</p>
<p>URGENCY</p>
<p>SAFETY</p>
<p>ROUTINE</p>
<h3>Maritime Mobile Service Identities (MMSI)</h3>
<p>All DSC equipment is programmed with a unique nine digit identification number, known as a Maritime Mobile Service Identity (MMSI). The MMSI is sent automatically with each and every DSC transmission made.</p>
<p>The first three digits of the MMSI are known as the Maritime Identification Digits (MID). The MID represents the country of registration of the vessel, or the country in which the DSC shore station is located.</p>
<p>… To be continued</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/techii.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/techii.wordpress.com/277/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/techii.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/techii.wordpress.com/277/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/techii.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/techii.wordpress.com/277/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/techii.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/techii.wordpress.com/277/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/techii.wordpress.com/277/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/techii.wordpress.com/277/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=techii.wordpress.com&blog=3180876&post=277&subd=techii&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://techii.wordpress.com/2009/10/13/global-maritime-distress-and-safety-system-gmdss-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6cc7fa7c4bc582a4886a8134f2f1f8fc?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">amabdelsalam</media:title>
		</media:content>

		<media:content url="http://techii.files.wordpress.com/2009/10/image001.jpg" medium="image">
			<media:title type="html">image001</media:title>
		</media:content>

		<media:content url="http://techii.files.wordpress.com/2009/10/image002.png" medium="image">
			<media:title type="html">image002</media:title>
		</media:content>
	</item>
	</channel>
</rss>