<?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>Ahmed's Blog</title>
	<atom:link href="http://ahmedsaleh.net/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://ahmedsaleh.net/blog</link>
	<description>Here you will find all about me !</description>
	<lastBuildDate>Wed, 14 Mar 2012 16:50:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Count CPU threads in SSH (CentOS)</title>
		<link>http://ahmedsaleh.net/blog/count-cpu-threads-in-ssh-centos/</link>
		<comments>http://ahmedsaleh.net/blog/count-cpu-threads-in-ssh-centos/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 16:50:32 +0000</pubDate>
		<dc:creator>Ahmed Saleh</dc:creator>
				<category><![CDATA[SSH]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[count]]></category>
		<category><![CDATA[cpu]]></category>
		<category><![CDATA[threads]]></category>

		<guid isPermaLink="false">http://ahmedsaleh.net/blog/?p=211</guid>
		<description><![CDATA[To get the total number of CPU Threads in CentOS use One of the following Commands : &#160; # grep -i processor /proc/cpuinfo &#124; wc -l OR cat /proc/cpuinfo &#124; grep -i &#8216;processor&#8217; &#124; wc -l]]></description>
			<content:encoded><![CDATA[<p>To get the total number of CPU Threads in CentOS use One of the following Commands :</p>
<p>&nbsp;</p>
<blockquote><p># grep -i processor /proc/cpuinfo | wc -l</p></blockquote>
<p>OR</p>
<blockquote><p>cat /proc/cpuinfo | grep -i &#8216;processor&#8217; | wc -l</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ahmedsaleh.net/blog/count-cpu-threads-in-ssh-centos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add a Calendar Date Picker to a Form with jQuery</title>
		<link>http://ahmedsaleh.net/blog/add-a-calendar-date-picker-to-a-form-with-jquery/</link>
		<comments>http://ahmedsaleh.net/blog/add-a-calendar-date-picker-to-a-form-with-jquery/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 17:00:55 +0000</pubDate>
		<dc:creator>Ahmed Saleh</dc:creator>
				<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://ahmedsaleh.net/blog/?p=206</guid>
		<description><![CDATA[&#160; &#60;!DOCTYPE html&#62; &#60;html&#62; &#60;head&#62; &#60;link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/&#62; &#60;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"&#62;&#60;/script&#62; &#60;script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"&#62;&#60;/script&#62; &#60;script&#62; $(document).ready(function() { $("#datepicker").datepicker(); }); &#60;/script&#62; &#60;/head&#62; &#60;body&#62; &#60;form&#62; &#60;input id="datepicker" /&#62; &#60;/form&#62; &#60;/body&#62; &#60;/html&#62;]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p><img class="alignnone" title="DATE" src="http://webdesignandsuch.com/wp-content/uploads/jquery-date-picker.jpg" alt="" width="575" height="340" /></p>
<p><span id="more-206"></span></p>
<pre>&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
  &lt;link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/&gt;
  &lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"&gt;&lt;/script&gt;
  &lt;script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"&gt;&lt;/script&gt;
  &lt;script&gt;
  $(document).ready(function() {
    $("#datepicker").datepicker();
  });
  &lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;form&gt;
    &lt;input id="datepicker" /&gt;
&lt;/form&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://ahmedsaleh.net/blog/add-a-calendar-date-picker-to-a-form-with-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Target form/input elements by CSS</title>
		<link>http://ahmedsaleh.net/blog/target-forminput-elements-by-css/</link>
		<comments>http://ahmedsaleh.net/blog/target-forminput-elements-by-css/#comments</comments>
		<pubDate>Thu, 06 Oct 2011 16:43:37 +0000</pubDate>
		<dc:creator>Ahmed Saleh</dc:creator>
				<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://ahmedsaleh.net/blog/?p=204</guid>
		<description><![CDATA[Need to target the submit button of your form without adding a class or an id to it? This might come up if you don’t have access to the actual form code for some reason. Luckily CSS can be used to take care of this situation. It may not work in all version of Internet [...]]]></description>
			<content:encoded><![CDATA[<p>Need to target the submit button of your form without adding a class or an id to it? This might come up if you don’t have access to the actual form code for some reason. Luckily CSS can be used to take care of this situation. It may not work in all version of Internet Explorer, but who cares, nobody should be using that browser anyway.</p>
<p><strong>Here’s the magic CSS:</strong></p>
<blockquote><p><code>input[type=</code><code>"submit"</code><code>] {</code><code>color</code><code>:</code><code>#eee</code><code>}</code></p></blockquote>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://ahmedsaleh.net/blog/target-forminput-elements-by-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ميزه جديده للفورم فى HTML5 &#8211; &#8220;form&#8221;</title>
		<link>http://ahmedsaleh.net/blog/%d9%85%d9%8a%d8%b2%d9%87-%d8%ac%d8%af%d9%8a%d8%af%d9%87-%d9%84%d9%84%d9%81%d9%88%d8%b1%d9%85-%d9%81%d9%89-html-form/</link>
		<comments>http://ahmedsaleh.net/blog/%d9%85%d9%8a%d8%b2%d9%87-%d8%ac%d8%af%d9%8a%d8%af%d9%87-%d9%84%d9%84%d9%81%d9%88%d8%b1%d9%85-%d9%81%d9%89-html-form/#comments</comments>
		<pubDate>Mon, 29 Aug 2011 01:24:24 +0000</pubDate>
		<dc:creator>Ahmed Saleh</dc:creator>
				<category><![CDATA[Collections]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://ahmedsaleh.net/blog/?p=193</guid>
		<description><![CDATA[السلام عليكم , هناك ميزه جديده فى HTML5 تسمح لك بوضع عناصر الفورم خارج تاج &#60;form&#62; مع امكانيه الإشاره إلى ان هذا العنصر ينتمى إلى فورم معين تابع الكود التالى : &#60;form id=&#8221;contact_form&#8221; method=&#8221;get&#8221;&#62; &#60;label&#62;Name:&#60;/label&#62; &#60;input type=&#8221;text&#8221; id=&#8221;name&#8221; name=&#8221;name&#8221;&#62; &#60;label&#62;Email:&#60;/label&#62; &#60;input type=&#8221;email&#8221; id=&#8221;email&#8221; name=&#8221;email&#8221;&#62; &#60;input type=&#8221;submit&#8221; id=&#8221;submit&#8221; value=&#8221;SEND&#8221;&#62; &#60;/form&#62; &#60;textarea id=&#8221;comments&#8221; form=&#8221;contact_form&#8221;&#62;&#60;/textarea&#62; لاحظ ان العنصر [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">السلام عليكم ,</p>
<p style="text-align: left;">هناك ميزه جديده فى HTML5</p>
<p style="text-align: left;">تسمح لك بوضع عناصر الفورم خارج تاج</p>
<p style="text-align: left;">&lt;form&gt;</p>
<p style="text-align: left;">مع امكانيه الإشاره إلى ان هذا العنصر ينتمى إلى فورم معين</p>
<p style="text-align: left;">تابع الكود التالى :</p>
<blockquote><p>&lt;form<span style="color: #0000ff;"> id=&#8221;contact_form&#8221;</span> method=&#8221;get&#8221;&gt;</p>
<p>&lt;label&gt;Name:&lt;/label&gt;<br />
&lt;input type=&#8221;text&#8221; id=&#8221;name&#8221; name=&#8221;name&#8221;&gt;</p>
<p>&lt;label&gt;Email:&lt;/label&gt;<br />
&lt;input type=&#8221;email&#8221; id=&#8221;email&#8221; name=&#8221;email&#8221;&gt;</p>
<p>&lt;input type=&#8221;submit&#8221; id=&#8221;submit&#8221; value=&#8221;SEND&#8221;&gt;</p>
<p>&lt;/form&gt;</p>
<p>&lt;textarea id=&#8221;comments&#8221; <span style="color: #339966;">form=&#8221;contact_form&#8221;</span>&gt;&lt;/textarea&gt;</p></blockquote>
<p style="text-align: left;">لاحظ ان العنصر &lt;textarea&gt;</p>
<p style="text-align: left;">يقع خارج الفورم و لكن تم الاشاره إلى انه يتبع الفورم عن طريق إضافه الميزه</p>
<p style="text-align: left;">form=&#8221;form_id&#8221;</p>
<p style="text-align: left;">مع مراعات إعطاء أى دى للفورم الرئيسى لتتمكن من الاشاره إليه</p>
<p style="text-align: left;">المتصفحات الداعمه :</p>
<blockquote>
<ul>
<li>Opera 9.5+</li>
<li>Safari 5.1+</li>
<li>Firefox 4+</li>
<li>Chrome 10+</li>
</ul>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ahmedsaleh.net/blog/%d9%85%d9%8a%d8%b2%d9%87-%d8%ac%d8%af%d9%8a%d8%af%d9%87-%d9%84%d9%84%d9%81%d9%88%d8%b1%d9%85-%d9%81%d9%89-html-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recovering a cPanel Server From a Crashed Hard Disk using rSync</title>
		<link>http://ahmedsaleh.net/blog/recovering-a-cpanel-server-from-a-crashed-hard-disk-using-rsync/</link>
		<comments>http://ahmedsaleh.net/blog/recovering-a-cpanel-server-from-a-crashed-hard-disk-using-rsync/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 21:07:39 +0000</pubDate>
		<dc:creator>Ahmed Saleh</dc:creator>
				<category><![CDATA[cPanel]]></category>
		<category><![CDATA[Dedicated server]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[hdd]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[restore]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://ahmedsaleh.net/blog/?p=191</guid>
		<description><![CDATA[Rsync is another very powerful command that is used to synchronize 2 directories between servers and only transfer the new files to the server. This is a great method for backing up data as it is low on bandwidth and it is also commonly used to keep clustered servers working together. The ending slashes are [...]]]></description>
			<content:encoded><![CDATA[<p>Rsync is another very powerful command that is used to synchronize 2 directories between servers and only transfer the new files to the server. This is a great method for backing up data as it is low on bandwidth and it is also commonly used to keep clustered servers working together. The ending slashes are very important when using rsync. If you are not familiar with how it works, always make sure to have an ending slash on both the source and the destination and it should be fine.</p>
<p>In case we fail or accidentally destroy our HDD then we can get a new HDD and operating system from the datacentre and restore the data on a new drive. This concept can be used to migrate cPanel Servers from one server to another without loosing any data or creating any sort of downtime for websites hosted on the server.</p>
<p>&nbsp;</p>
<p><strong>This is how it will work:</strong></p>
<p>1) Get the partitions from both the drives with:</p>
<blockquote><p># fdisk -l</p></blockquote>
<p>2) Check to see if there are any drives mounted with:</p>
<blockquote><p># df -h</p></blockquote>
<p><img title="More..." src="http://ahmedsaleh.net/blog/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" /></p>
<p>3) Let us assume that /dev/hdb3 is our CRASHED old drive and it is mounted as /mnt/old (yours can be different), but keep in mind that you need to know the mount point of the backup drive before we proceed further with the steps below.</p>
<p>Let us mount the CRASHED HDD if not already mounted with:</p>
<blockquote><p># mount /dev/hdb3 /oldHD</p></blockquote>
<p>4) Now that the drive is mounted you can browse any files with:</p>
<blockquote><p># ls /oldHD/home</p></blockquote>
<p>5) We are all set to move our data over to the new drive:</p>
<p><strong>Run these rSync commands to move everything over:</strong></p>
<blockquote><p>rsync -vrplogDtH /oldHD/usr/local/apache/conf /usr/local/apache<br />
rsync -vrplogDtH /oldHD/var/named /var<br />
rsync -vrplogDtH /oldHD/home/* /home<br />
rsync -vrplogDtH /oldHD/usr/local/cpanel /usr/local<br />
rsync -vrplogDtH /oldHD/var/lib/mysql /var/lib<br />
rsync -vrplogDtH /oldHD/var/cpanel /var<br />
rsync -vrplogDtH /oldHD/usr/share/ssl /usr/share<br />
rsync -vrplogDtH /oldHD/var/ssl /var<br />
rsync -vrplogDtH /oldHD/usr/local/cpanel/3rdparty/mailman /usr/local/cpanel/3rdparty<br />
rsync -vrplogDtH /oldHD/var/log/bandwidth /var/log<br />
rsync -vrplogDtH /oldHD/usr/local/frontpage /usr/local<br />
rsync -vrplogDtH /oldHD/var/spool/cron /var/spool<br />
rsync -vrplogDtH /oldHD/root/.my.cnf /root<br />
rsync -vrplogDtH /oldHD/etc/httpd/conf/httpd.conf /etc/httpd/conf</p></blockquote>
<p>cd to the old etc directory:</p>
<blockquote><p>#cd /oldHD/etc</p></blockquote>
<p>And copy some files from here:</p>
<blockquote><p>#rsync -vrplogDtH secondarymx domainalias valiases vfilters exim* proftpd* pure-ftpd* passwd* group* *domain* *named* wwwacct.conf cpupdate.conf quota.conf shadow* *rndc* ips* ipaddrpool* ssl hosts /etc</p></blockquote>
<p>6) We are done with the copying of all the files and cPanel should start recognizing all the old users and their files, but after we do all this it is highly suggested that you run all updates, and run the cPanel fix scripts i.e:</p>
<p><strong>Updating software and restarting services:</strong></p>
<blockquote><p>#/scripts/upcp<br />
#/usr/local/cpanel/cpkeyclt<br />
#/scripts/sysup<br />
#/scripts/exim4<br />
#/scripts/easyapache (or apply this from WHM &#8211; search for easy apache)<br />
#/scripts/securetmp<br />
# /scripts/fixeverything</p></blockquote>
<p>7) This is needed to update cpanel information. Please note, <strong>sshd might fail and not start after running fix everything</strong>. You have to login to whm, and go to the rpm installer and “FORCE” install opensshd-server, opensshd, opensshd-client and then restart sshd from whm.</p>
<p><strong>Restarting services as:</strong></p>
<blockquote><p>#/scripts/restartsrv httpd<br />
#/etc/init.d/mysql restart<br />
#/scripts/restartsrv named<br />
#/scripts/restartsrv exim</p></blockquote>
<p><strong></strong>That is all we need to recover data from a CRASHED HDD.</p>
<p>&nbsp;</p>
<p>Source : http://blog.eukhost.com/webhosting/restoring-cpanel-server-from-crashed-harddisk-or-migrating-cpanel-servers/</p>
]]></content:encoded>
			<wfw:commentRss>http://ahmedsaleh.net/blog/recovering-a-cpanel-server-from-a-crashed-hard-disk-using-rsync/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Force the Backup System on cPanel server now</title>
		<link>http://ahmedsaleh.net/blog/force-the-backup-system-on-cpanel-server/</link>
		<comments>http://ahmedsaleh.net/blog/force-the-backup-system-on-cpanel-server/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 22:16:15 +0000</pubDate>
		<dc:creator>Ahmed Saleh</dc:creator>
				<category><![CDATA[cPanel]]></category>
		<category><![CDATA[Dedicated server]]></category>
		<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://ahmedsaleh.net/blog/?p=185</guid>
		<description><![CDATA[use this command to force the backup system on the server right now . &#160; #/scripts/cpbackup -force or : &#8211;force]]></description>
			<content:encoded><![CDATA[<p>use this command to force the backup system on the server right now .</p>
<p>&nbsp;</p>
<blockquote><p>#<strong>/scripts/cpbackup -force</strong></p></blockquote>
<p>or : &#8211;force</p>
]]></content:encoded>
			<wfw:commentRss>http://ahmedsaleh.net/blog/force-the-backup-system-on-cpanel-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how to generate backup for all cPanel users in one step</title>
		<link>http://ahmedsaleh.net/blog/how-to-generate-back-for-all-cpanel-users-in-one-time/</link>
		<comments>http://ahmedsaleh.net/blog/how-to-generate-back-for-all-cpanel-users-in-one-time/#comments</comments>
		<pubDate>Mon, 15 Aug 2011 21:35:33 +0000</pubDate>
		<dc:creator>Ahmed Saleh</dc:creator>
				<category><![CDATA[cPanel]]></category>
		<category><![CDATA[Dedicated server]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[backups]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[generate]]></category>

		<guid isPermaLink="false">http://ahmedsaleh.net/blog/?p=172</guid>
		<description><![CDATA[Using SSH : #for i in `ls /var/cpanel/users`;do /scripts/pkgacct $i ; done]]></description>
			<content:encoded><![CDATA[<p>Using SSH :</p>
<blockquote><p>#<strong>for i in `ls /var/cpanel/users`;do /scripts/pkgacct $i ; done</strong></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ahmedsaleh.net/blog/how-to-generate-back-for-all-cpanel-users-in-one-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Update cPanel License file</title>
		<link>http://ahmedsaleh.net/blog/how-to-update-cpanel-license-file/</link>
		<comments>http://ahmedsaleh.net/blog/how-to-update-cpanel-license-file/#comments</comments>
		<pubDate>Mon, 15 Aug 2011 17:22:51 +0000</pubDate>
		<dc:creator>Ahmed Saleh</dc:creator>
				<category><![CDATA[Collections]]></category>
		<category><![CDATA[cPanel]]></category>
		<category><![CDATA[Dedicated server]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[license]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://ahmedsaleh.net/blog/?p=167</guid>
		<description><![CDATA[Using SSH : #/usr/local/cpanel/cpkeyclt]]></description>
			<content:encoded><![CDATA[<p>Using SSH :</p>
<blockquote><p>#<strong>/usr/local/cpanel/cpkeyclt </strong></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://ahmedsaleh.net/blog/how-to-update-cpanel-license-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>افضل خطوط جربتها اثناء كتابه البرامج</title>
		<link>http://ahmedsaleh.net/blog/%d8%a7%d9%81%d8%b6%d9%84-%d8%ae%d8%b7%d9%88%d8%b7-%d8%ac%d8%b1%d8%a8%d8%aa%d9%87%d8%a7-%d8%a7%d8%ab%d9%86%d8%a7%d8%a1-%d9%83%d8%aa%d8%a7%d8%a8%d9%87-%d8%a7%d9%84%d8%a8%d8%b1%d8%a7%d9%85%d8%ac/</link>
		<comments>http://ahmedsaleh.net/blog/%d8%a7%d9%81%d8%b6%d9%84-%d8%ae%d8%b7%d9%88%d8%b7-%d8%ac%d8%b1%d8%a8%d8%aa%d9%87%d8%a7-%d8%a7%d8%ab%d9%86%d8%a7%d8%a1-%d9%83%d8%aa%d8%a7%d8%a8%d9%87-%d8%a7%d9%84%d8%a8%d8%b1%d8%a7%d9%85%d8%ac/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 03:28:19 +0000</pubDate>
		<dc:creator>Ahmed Saleh</dc:creator>
				<category><![CDATA[functions]]></category>
		<category><![CDATA[برمجه]]></category>
		<category><![CDATA[خطوط]]></category>
		<category><![CDATA[فونتات]]></category>

		<guid isPermaLink="false">http://ahmedsaleh.net/blog/?p=165</guid>
		<description><![CDATA[Courier New Consolas و هذه بعض الخطوط الاخرى التى يمكن ان يفضلها البعض اثناء كتابه البرامج و الاكواد 1. Arial One of core Windows fonts, Arial is often overlooked, but it is a clear and readable typeface. It can be a little difficult to distinguish between uppercase i / lowercase L and nested single/double quotes [...]]]></description>
			<content:encoded><![CDATA[<p>Courier New</p>
<p>Consolas</p>
<p>و هذه بعض الخطوط الاخرى التى يمكن ان يفضلها البعض اثناء كتابه البرامج و الاكواد</p>
<p><span id="more-165"></span></p>
<p><strong>1. Arial</strong><br />
One of core Windows fonts, Arial is often overlooked, but it is a clear and readable typeface. It can be a little difficult to distinguish between uppercase i / lowercase L and nested single/double quotes but that can be said of many proportional fonts. Most systems have it installed, but <a href="https://sourceforge.net/project/showfiles.php?group_id=34153">Arial is also available from SourceForge</a>.</p>
<p><img title="Arial" src="http://www.sitepoint.com/blogs/wp-content/uploads/2009/04/052-arial.png" alt="Arial" width="307" height="432" /></p>
<p><strong>2. Bitstream Vera Sans</strong><br />
Bitstream Vera is a free font developed for the GNOME project but is available on other platforms (<a href="http://ftp.gnome.org/pub/GNOME/sources/ttf-bitstream-vera/1.10/">download Bitstream Vera</a>).</p>
<p><img title="Bitstream Vera Sans" src="http://www.sitepoint.com/blogs/wp-content/uploads/2009/04/052-bitstream.png" alt="Bitstream Vera Sans" width="358" height="409" /></p>
<p>It is a great-looking typeface and, personally, I prefer it to…</p>
<p><strong>3. Bitstream Vera Sans Mono</strong><br />
This is a monospaced version of Bitstream Vera Sans which many programmers will prefer. I find it a little wide, but characters are certainly easier to identify. It is available in the Bitstream Vera Sans download above.</p>
<p><img title="Bitstream Vera Sans Mono" src="http://www.sitepoint.com/blogs/wp-content/uploads/2009/04/052-bitstreammono.png" alt="Bitstream Vera Sans Mono" width="455" height="407" /></p>
<p>As an alternative, you might prefer DejaVu Sans Mono; it is based on Bitstream Vera but offers a wider range of characters (<a href="http://dejavu-fonts.org/wiki/index.php?title=Download">download DejaVu</a>).</p>
<p><strong>4. Consolas</strong><br />
Consolas is a relatively new Microsoft font that is installed in Vista or <a href="http://www.microsoft.com/DOWNLOADS/details.aspx?familyid=22E69AE4-7E40-4807-8A86-B3D36FAB68D3&amp;displaylang=en">available as a separate download</a>. It is a very clear and compact monospace font and is being used by more developers.</p>
<p><img title="Consolas" src="http://www.sitepoint.com/blogs/wp-content/uploads/2009/04/052-consolas.png" alt="Consolas" width="400" height="405" /></p>
<p><strong>5. Dina</strong><br />
Dina is my favorite monospace font and, for clarity, it is hard to beat (<a href="http://www.donationcoder.com/Software/Jibz/Dina/">download Dina</a>). It is available in 8, 9 and 10-point text sizes and looks great on any system.</p>
<p><img title="Dina" src="http://www.sitepoint.com/blogs/wp-content/uploads/2009/04/052-dina.png" alt="Dina" width="453" height="405" /></p>
<p><strong>6. Lucida Console</strong><br />
Microsoft likes Lucida Console: it is the font of choice for Notepad and the Blue Screen of Death! It reminds me of a sans-serif version of Courier New, but certainly looks better.</p>
<p><img title="Lucida Console" src="http://www.sitepoint.com/blogs/wp-content/uploads/2009/04/052-lucidaconsole.png" alt="Lucida Console" width="462" height="407" /></p>
<p><strong>7. Lucida Sans</strong><br />
If Lucida Console is a little too chunky for your tastes, try Lucida Sans. The font has been provided with Microsoft Windows and Office for many years and is a compact, practical font that looks very attractive.</p>
<p><img title="Lucida Sans" src="http://www.sitepoint.com/blogs/wp-content/uploads/2009/04/052-lucidasans.png" alt="Lucida Sans" width="307" height="407" /></p>
<p><strong>8. Monaco</strong><br />
Monaco started life on the Mac and is one of the more popular fonts on that platform (<a href="http://www.gringod.com/wp-upload/MONACO.TTF">download Monaco</a>). I find it a little too fancy on Windows but many developers will disagree.</p>
<p><img title="Monaco" src="http://www.sitepoint.com/blogs/wp-content/uploads/2009/04/052-monaco.png" alt="Monaco" width="465" height="507" /></p>
<p><strong>9. MS Sans Serif</strong><br />
Perhaps this is slightly controversial, but it is my default font of choice. MS Sans Serif was introduced in Windows 1.0 and used to be known as “Helv”. It was the default Microsoft system font until they replaced it with Tahoma in Windows 2000. The font was also used in the early MS Office VBA environment and that was where I became overly familiar with it!</p>
<p>The font is similar to Arial and suffers from the same issues, but I find it a little clearer. Although I have tried to move away from MS Sans Serif on several occasions, I always eventually return.</p>
<p><img title="MS Sans Serif" src="http://www.sitepoint.com/blogs/wp-content/uploads/2009/04/052-mssansserif.png" alt="MS Sans Serif" width="306" height="433" /></p>
<p><strong>10. Proggy fonts</strong><br />
The Proggy collection contains small monospace bitmap fonts that maximize the amount of code you can view on-screen (<a href="http://www.proggyfonts.com/index.php?menu=download">download Proggy</a>). It has been designed for programmers so it does not exhibit the character problems of other fonts. For Notepad fans, there is also a version that provides bold punctuation and brackets within the font itself.</p>
<p><img title="Proggy Clean" src="http://www.sitepoint.com/blogs/wp-content/uploads/2009/04/052-proggyclean.png" alt="Proggy Clean" width="408" height="406" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ahmedsaleh.net/blog/%d8%a7%d9%81%d8%b6%d9%84-%d8%ae%d8%b7%d9%88%d8%b7-%d8%ac%d8%b1%d8%a8%d8%aa%d9%87%d8%a7-%d8%a7%d8%ab%d9%86%d8%a7%d8%a1-%d9%83%d8%aa%d8%a7%d8%a8%d9%87-%d8%a7%d9%84%d8%a8%d8%b1%d8%a7%d9%85%d8%ac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>طريقه اغلاق الكمبيوتر بعد وقت معين windows xp , vista , 7</title>
		<link>http://ahmedsaleh.net/blog/%d8%b7%d8%b1%d9%8a%d9%82%d9%87-%d8%a7%d8%ba%d9%84%d8%a7%d9%82-%d8%a7%d9%84%d9%83%d9%85%d8%a8%d9%8a%d9%88%d8%aa%d8%b1-%d8%a8%d8%b9%d8%af-%d9%88%d9%82%d8%aa-%d9%85%d8%b9%d9%8a%d9%86-windows-xp-vista/</link>
		<comments>http://ahmedsaleh.net/blog/%d8%b7%d8%b1%d9%8a%d9%82%d9%87-%d8%a7%d8%ba%d9%84%d8%a7%d9%82-%d8%a7%d9%84%d9%83%d9%85%d8%a8%d9%8a%d9%88%d8%aa%d8%b1-%d8%a8%d8%b9%d8%af-%d9%88%d9%82%d8%aa-%d9%85%d8%b9%d9%8a%d9%86-windows-xp-vista/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 16:28:00 +0000</pubDate>
		<dc:creator>Ahmed Saleh</dc:creator>
				<category><![CDATA[Collections]]></category>

		<guid isPermaLink="false">http://ahmedsaleh.net/blog/?p=161</guid>
		<description><![CDATA[Start -&#62; RUN Type : shutdown -s -t 3600 3600 = time in seconds ! &#8212;&#8212;&#8212; للتراجع عن الامر , فى نفس النافذه اكتب : shutdown -a]]></description>
			<content:encoded><![CDATA[<p>Start -&gt; RUN</p>
<p>Type : shutdown -s -t 3600</p>
<p>3600 = time in seconds !</p>
<p>&#8212;&#8212;&#8212;</p>
<p>للتراجع عن الامر , فى نفس النافذه اكتب :</p>
<p>shutdown -a</p>
]]></content:encoded>
			<wfw:commentRss>http://ahmedsaleh.net/blog/%d8%b7%d8%b1%d9%8a%d9%82%d9%87-%d8%a7%d8%ba%d9%84%d8%a7%d9%82-%d8%a7%d9%84%d9%83%d9%85%d8%a8%d9%8a%d9%88%d8%aa%d8%b1-%d8%a8%d8%b9%d8%af-%d9%88%d9%82%d8%aa-%d9%85%d8%b9%d9%8a%d9%86-windows-xp-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

