<?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 El Gamil</title>
	<atom:link href="http://www.blog.manhag.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blog.manhag.org</link>
	<description>The "Manhag" of Islam governs us all</description>
	<lastBuildDate>Tue, 09 Mar 2010 12:41:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image>
<link>http://www.blog.manhag.org</link>
<url>http://www.blog.manhag.org/wp-content/mbp-favicon/favicon.ico</url>
<title>Ahmed El Gamil</title>
</image>
	<atom:link rel='hub' href='http://www.blog.manhag.org/?pushpress=hub'/>
		<item>
		<title>Routing calls from Zap Trunks to SIP trunks in Asterisk</title>
		<link>http://www.blog.manhag.org/2010/03/routing-calls-from-zap-trunks-to-sip-trunks-in-asterisk/</link>
		<comments>http://www.blog.manhag.org/2010/03/routing-calls-from-zap-trunks-to-sip-trunks-in-asterisk/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 12:35:40 +0000</pubDate>
		<dc:creator>Ahmed El Gamil</dc:creator>
				<category><![CDATA[Asterisk/VoIP]]></category>
		<category><![CDATA[Open Source Technologies]]></category>
		<category><![CDATA[UNIX/Linux]]></category>
		<category><![CDATA[Asterisk]]></category>
		<category><![CDATA[FreePBX]]></category>
		<category><![CDATA[SIP]]></category>
		<category><![CDATA[Zap]]></category>

		<guid isPermaLink="false">http://www.blog.manhag.org/?p=429</guid>
		<description><![CDATA[So i had this situation where i have 2 Asterisk boxes, the 1st one of them had a PRI card and the 2nd one is just attached to the network through an ethernet card
Goal: redirect all of the incoming calls on the PRI to the 2nd Asterisk box through a SIP Trunk (The 2nd box [...]]]></description>
			<content:encoded><![CDATA[<p>So i had this situation where i have 2 Asterisk boxes, the 1st one of them had a PRI card and the 2nd one is just attached to the network through an ethernet card</p>
<p><strong><span style="text-decoration: underline;">Goal:</span></strong> redirect all of the incoming calls on the PRI to the 2nd Asterisk box through a SIP Trunk (The 2nd box holds the IVR and all of those stuff, all of the IP phones are connecting to this one), There was no decent documentation about this out there so i am documenting this and may be someone will find it useful.</p>
<p>Here is what you should do (I am assuming you are using an Asterisk installation that uses FreePBX):</p>
<ul>
<li>Create the Zap Trunk as you normally do from the FreePBX interface: Trunks -&gt; Add Zap Trunk</li>
<li>Create a SIP trunk that points to the 2nd Asterisk box, we will use this Trunk later in the configuration: Trunks -&gt; Add SIP Trunk, scroll down to outgoing settings and add the following
<ul>
<li>Trunk name: to-2ndAsterisk</li>
<li>Peer details:</li>
</ul>
</li>
</ul>
<blockquote><p>type=peer</p>
<p>host=&lt;IP Address of 2nd Asterisk Box&gt;</p></blockquote>
<ul>
<li>Connect to the 1st Asterisk box using SSH and edit the file /etc/asterisk/dahdi-channels.conf, you will find some configuration like</li>
</ul>
<blockquote>
<div id="_mcePaste">group=0,11</div>
<div id="_mcePaste"><strong>context=from-pstn</strong></div>
<div id="_mcePaste">switchtype = euroisdn</div>
<div id="_mcePaste">signalling = pri_cpe</div>
<div id="_mcePaste">channel =&gt; 1-15,17-31</div>
<div id="_mcePaste">context = default</div>
<div id="_mcePaste">group = 63</div>
</blockquote>
<ul>
<li>So as you can see all of the incoming calls are directed to the from-pstn context, we will now edit this line to direct the calls to the from-pstn-custom context and do the rest of the magic in this context so the file should be as follows</li>
</ul>
<blockquote>
<div id="_mcePaste">group=0,11</div>
<div id="_mcePaste"><strong>context=from-pstn-custom</strong></div>
<div id="_mcePaste">switchtype = euroisdn</div>
<div id="_mcePaste">signalling = pri_cpe</div>
<div id="_mcePaste">channel =&gt; 1-15,17-31</div>
<div id="_mcePaste">context = default</div>
<div id="_mcePaste">group = 63</div>
</blockquote>
<ul>
<li>Now edit the file /etc/asterisk/extensions_custom.conf and add the following at the end of the file</li>
</ul>
<blockquote><p>[from-pstn-custom]<br />
exten =&gt; _.,1,Dial(SIP/to-2ndAsterisk/${EXTEN:2},20,rt)</p></blockquote>
<p>So what this does is that it matches all of the calls (_.) then redirect them through the SIP trunk to the 2nd Asterisk box</p>
<ul>
<li>And the last step is to allow calls coming from the 1st Box to the 2nd Box, you should do IP-based authentication on the 2nd box by editing /etc/asterisk/sip_custom.conf and add the following</li>
</ul>
<blockquote><p>[1stAsterisk]<br />
type=peer<br />
canreinvite=no<br />
host=&lt;IP Address of 1st Asterisk Box&gt;<br />
context=from-pstn<br />
nat=no<br />
dtmfmode=rfc2833<br />
disallow=all<br />
allow=ulaw<br />
insecure=port<br />
qualify=yes</p></blockquote>
<p>Of course you can now create any inbound routes on the 2nd Asterisk Box to match your needs.</p>
<p>I hope this works for you, and if you need any assistance please don&#8217;t hesitate to ask me in the comments</p>
<p>Thanks for listening <img src='http://www.blog.manhag.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.manhag.org/2010/03/routing-calls-from-zap-trunks-to-sip-trunks-in-asterisk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Adobe Air under Fedora 12</title>
		<link>http://www.blog.manhag.org/2010/03/installing-adobe-air-under-fedora-12/</link>
		<comments>http://www.blog.manhag.org/2010/03/installing-adobe-air-under-fedora-12/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 18:57:10 +0000</pubDate>
		<dc:creator>Ahmed El Gamil</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[UNIX/Linux]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[AIR]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[YUM]]></category>

		<guid isPermaLink="false">http://www.blog.manhag.org/?p=422</guid>
		<description><![CDATA[After having some problems trying to install Adobe Air under my Fedora 12 installation, here is the what you should do to get it up and running:

Install the following packages usign YUM

yum install gtk2-devel rpm-devel xterm

Solve the certificates issue using the command

for c in /etc/opt/Adobe/certificates/crypt/*.0; do aucm -n $(basename $c) -t true; done

Now you can [...]]]></description>
			<content:encoded><![CDATA[<p>After having some problems trying to install Adobe Air under my Fedora 12 installation, here is the what you should do to get it up and running:</p>
<ul>
<li>Install the following packages usign YUM</li>
</ul>
<blockquote><p>yum install gtk2-devel rpm-devel xterm</p></blockquote>
<ul>
<li>Solve the certificates issue using the command</li>
</ul>
<blockquote><p>for c in /etc/opt/Adobe/certificates/crypt/*.0; do aucm -n $(basename $c) -t true; done</p></blockquote>
<ul>
<li>Now you can navigate to where you download the binary and then do the following</li>
</ul>
<blockquote><p>chmod +x AdobeAIRInstaller.bin</p>
<p>./AdobeAIRInstaller.bin</p></blockquote>
<p>BTW, this was under a 32-bit installation.</p>
<p>Hope this solves the problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.manhag.org/2010/03/installing-adobe-air-under-fedora-12/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Stars were glowing at JDC 2010</title>
		<link>http://www.blog.manhag.org/2010/02/stars-were-glowing-at-jdc-2010/</link>
		<comments>http://www.blog.manhag.org/2010/02/stars-were-glowing-at-jdc-2010/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 21:46:08 +0000</pubDate>
		<dc:creator>Ahmed El Gamil</dc:creator>
				<category><![CDATA[Computer.Assistant.Team]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Open Source Technologies]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[EGJUG]]></category>
		<category><![CDATA[Egypt]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[JDC]]></category>

		<guid isPermaLink="false">http://www.blog.manhag.org/?p=414</guid>
		<description><![CDATA[Since this blog was starting to be full of ghosts, i said that i must break the silence by some quick post.
Last Saturday I attended the JDC 2010 (Java Developer Conference) which is organized by EGJUG , I attended the last JDC which was at 2008 and it was pretty good and after looking at [...]]]></description>
			<content:encoded><![CDATA[<p>Since this blog was starting to be full of ghosts, i said that i must break the silence by some quick post.</p>
<p>Last Saturday I attended the <a href="http://jdc2010.egjug.org" target="_blank">JDC 2010</a> (Java Developer Conference) which is organized by <a href="http://egjug.org" target="_blank">EGJUG</a> , I attended the last JDC which was at 2008 and it was pretty good and after looking at the agenda of 2010, i just couldn&#8217;t resist <img src='http://www.blog.manhag.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Most of the sessions were quite interesting, i got to know some of the new technologies and made some good contacts with great people in the industry here in Egypt.</p>
<p>I also bought an excellent book <a href="http://ridingthecrest.com/" target="_blank">&#8220;Secrets of the Rock Star Programmers&#8221;</a> by <a href="http://twitter.com/edburns" target="_blank">Ed Burns</a> who was a speaker at the conference (and he was also a speaker at 2008), and he signed it for me <img src='http://www.blog.manhag.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> , Thanks Ed.</p>
<p><a href="http://www.blog.manhag.org/wp-content/uploads/2010/02/27022010285.jpg"><img class="aligncenter size-thumbnail wp-image-415" title="27022010285" src="http://www.blog.manhag.org/wp-content/uploads/2010/02/27022010285-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p>After the conference we had a quick visit to Google <img src='http://www.blog.manhag.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://www.blog.manhag.org/wp-content/uploads/2010/02/27022010286.jpg"><img class="aligncenter size-thumbnail wp-image-417" title="27022010286" src="http://www.blog.manhag.org/wp-content/uploads/2010/02/27022010286-150x150.jpg" alt="" width="150" height="150" /></a>Actually that was at the Google Booth <img src='http://www.blog.manhag.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> , Some of the Google guys were there like <a href="http://twitter.com/mardinix" target="_blank">AbdelKarim Mardini</a> showing the new Nexus one and some other cool stuff.</p>
<p>A lot of interesting people was there like Sang Shin, Fred Sauer, also from Egypt <a href="http://twitter.com/melrefaey" target="_blank">Mohammed El-Refaey</a> whom i really enjoyed talking to.</p>
<p>So in the end, it was a pretty good day and meeting a lot of my friends added a tasty flavour to the mixture, JAK Shabab.</p>
<p>Time to move on and finish that piles of work to do !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.manhag.org/2010/02/stars-were-glowing-at-jdc-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A picture is worth a thousand words.. Uptime</title>
		<link>http://www.blog.manhag.org/2009/10/a-picture-is-worth-a-thousand-words-uptime/</link>
		<comments>http://www.blog.manhag.org/2009/10/a-picture-is-worth-a-thousand-words-uptime/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 12:39:27 +0000</pubDate>
		<dc:creator>Ahmed El Gamil</dc:creator>
				<category><![CDATA[/dev/random]]></category>
		<category><![CDATA[UNIX/Linux]]></category>
		<category><![CDATA[manhag.org]]></category>
		<category><![CDATA[servers]]></category>
		<category><![CDATA[Sysadmin]]></category>
		<category><![CDATA[uptime]]></category>

		<guid isPermaLink="false">http://www.blog.manhag.org/?p=402</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-403" title="Screenshot" src="http://www.blog.manhag.org/wp-content/uploads/2009/10/Screenshot.png" alt="Screenshot" width="507" height="64" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.manhag.org/2009/10/a-picture-is-worth-a-thousand-words-uptime/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>رمضان</title>
		<link>http://www.blog.manhag.org/2009/08/%d8%b1%d9%85%d8%b6%d8%a7%d9%86/</link>
		<comments>http://www.blog.manhag.org/2009/08/%d8%b1%d9%85%d8%b6%d8%a7%d9%86/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 07:40:21 +0000</pubDate>
		<dc:creator>Ahmed El Gamil</dc:creator>
				<category><![CDATA[Islamic]]></category>
		<category><![CDATA[Ramadan]]></category>

		<guid isPermaLink="false">http://www.blog.manhag.org/?p=368</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter size-full wp-image-369" title="ramadan-1" src="http://www.blog.manhag.org/wp-content/uploads/2009/08/ramadan-1.jpg" alt="ramadan-1" width="691" height="415" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.manhag.org/2009/08/%d8%b1%d9%85%d8%b6%d8%a7%d9%86/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>H4ck3rZ Duo</title>
		<link>http://www.blog.manhag.org/2009/07/h4ck3rz-duo/</link>
		<comments>http://www.blog.manhag.org/2009/07/h4ck3rz-duo/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 09:32:55 +0000</pubDate>
		<dc:creator>Ahmed El Gamil</dc:creator>
				<category><![CDATA[Computer.Assistant.Team]]></category>
		<category><![CDATA[CAT-H4ckerZ]]></category>

		<guid isPermaLink="false">http://www.blog.manhag.org/?p=355</guid>
		<description><![CDATA[

السلام عليكم و رحمة الله و بركاته
نتشرف بدعوتكم لحضور اهم مؤتمرات الهاكرز التقنية و الذي سيستمر لمدة يومين متتاليين “هاكرز ديو” و سيبدأ المؤتمر يوم السبت القادم 4/07/2009 بإذن الله تعالى
الساعة التاسعة صباحاً في مدرج 21 في كليه الهندسة جامعة المنصورة و الذي يتم تحت رعاية منظمة مشروع فيدورا  و سيتم

هذا الحدث بدعم من [...]]]></description>
			<content:encoded><![CDATA[<div class="entry">
<div style="text-align: right; font-family: Tahoma;" dir="ltr">
<p dir="rtl"><a href="http://events.n.cat-hackers.net/" target="_blank"><img class="aligncenter size-full wp-image-25" src="http://events.n.cat-hackers.net/files/2009/07/sp_image-472447071-12463907822.png" alt="H4ck3rZ Duo" width="650" /></a></p>
<p dir="rtl">السلام عليكم و رحمة الله و بركاته</p>
<p>نتشرف بدعوتكم لحضور اهم مؤتمرات <a href="http://n.cat-hackers.net/" target="_blank">الهاكرز</a> التقنية و الذي سيستمر لمدة <strong>يومين متتاليين</strong> <strong>“هاكرز ديو”</strong> و سيبدأ المؤتمر يوم <strong>السبت القادم 4/07/2009</strong> بإذن الله تعالى<br />
الساعة التاسعة صباحاً في <strong>مدرج 21 في كليه الهندسة جامعة المنصورة</strong> و الذي يتم تحت رعاية منظمة <a onclick="javascript:pageTracker._trackPageview('/outbound/article/fedoraproject.org');" href="http://fedoraproject.org/wiki/FedoraEvents#FY10_Q2_.28June_2009_-_August_2009.29_3">مشروع فيدورا </a> و سيتم</p>
<p style="text-align: center;" dir="rtl">
<p style="text-align: right;">هذا الحدث بدعم من <a onclick="javascript:pageTracker._trackPageview('/outbound/article/www.fedoraproject.org');" href="http://www.fedoraproject.org/" target="_blank">مشروع فيدورا</a> و <a onclick="javascript:pageTracker._trackPageview('/outbound/article/www.opensolaris.org');" href="http://www.opensolaris.org/os/project/egosug/" target="_blank">مجموعة مستخدمي اوبن سولاريس مصر</a></p>
<div style="text-align: center; font-family: Tahoma;" dir="ltr">—</div>
<p style="text-align: center;" dir="rtl">
<p style="text-align: center;" dir="rtl">
<p style="text-align: left;" dir="ltr">Assalamu A’alaykum,</p>
<p style="text-align: left;">We are thrilled to invite you to one of the most important events of the H4ck3rZ Foundation during the year, the one which will take 2 days and is called <strong>“H4ck3rZ Duo”</strong>.</p>
<p style="text-align: left;">The sessions will start <strong>next Saturday 4/7/2009</strong> and will end on Sunday 5/7/2009.</p>
<p style="text-align: left;">The event will be held in <strong>21 Lectures hall in faculty of engineering, Mansoura university</strong> and the event is sponsored by the <a onclick="javascript:pageTracker._trackPageview('/outbound/article/fedoraproject.org');" href="http://fedoraproject.org/wiki/FedoraEvents#FY10_Q2_.28June_2009_-_August_2009.29_3">Fedora Project</a><br />
Organization.</p>
<p style="text-align: left;" dir="ltr">This event is sponsored by <a href="http://events.n.cat-hackers.net/2009/07/01/h4ck3rz-duo/fedoraproject.org/" target="_blank">Fedora Project</a> and the <a href="http://www.opensolaris.org/os/project/egosug/" target="_blank">Egyptian OpenSolaris Users Group </a></p>
<p style="text-align: left;" dir="ltr"><strong>Day 1 Schedule:</strong></p>
<p style="text-align: left;"><strong></strong></p>
<table style="text-align: center; width: 479px; height: 285px;" border="0" rules="all">
<tbody>
<tr>
<td dir="ltr">From</td>
<td>To</td>
<td>Session Name</td>
<td>Speaker</td>
</tr>
<tr>
<td><strong>9:00 AM</strong></td>
<td><strong>10 AM</strong></td>
<td>KeyNote</td>
<td>Ahmed Soliman &amp; Al-Sayed Gamal</td>
</tr>
<tr>
<td><strong>10:00 AM</strong></td>
<td><strong>11:00 AM</strong></td>
<td>Fedora 11 Installation and Features</td>
<td>Mohammed El-Maraghy</td>
</tr>
<tr>
<td><strong>11:00 AM</strong></td>
<td><strong>11:30 PM</strong></td>
<td>H4ck3rZ new website</td>
<td>Hanady</td>
</tr>
<tr>
<td><strong>11:30 AM</strong></td>
<td><strong>12:00 PM</strong></td>
<td>Mini-talk Google Documents</td>
<td>Sinar</td>
</tr>
<tr>
<td><strong>12:00 PM</strong></td>
<td><strong>1:00  PM</strong></td>
<td>All bow to OpenSolaris crossbow</td>
<td>Ahmed Abdallah</td>
</tr>
<tr>
<td>Break</td>
<td>Break</td>
<td>Break</td>
<td>Break</td>
</tr>
<tr>
<td><strong>1:30 PM</strong></td>
<td><strong>3:00 PM</strong></td>
<td><strong></strong> Introduction to Erlang</td>
<td>Abd El-Fattah Mahran</td>
</tr>
<tr>
<td><strong>3:00 AM</strong></td>
<td><strong>4:30 AM</strong></td>
<td><strong></strong> Life in the Cloud</td>
<td>Ahmed Soliman</td>
</tr>
<tr>
<td><strong>4:30 AM</strong></td>
<td><strong>5:00 AM</strong></td>
<td><strong></strong> Kotobna</td>
<td>Ahmed Soliman</td>
</tr>
</tbody>
</table>
<p><strong></strong></p>
<p style="text-align: left;"><strong>Day 2 Schedule:</strong></p>
<p style="text-align: left;"><strong></strong></p>
<table style="text-align: center; width: 477px; height: 221px;" dir="ltr" border="0" rules="all">
<tbody>
<tr>
<td>From</td>
<td>To</td>
<td>Session Name</td>
<td>Speaker</td>
</tr>
<tr>
<td><strong>10:00 AM</strong></td>
<td><strong>11:00 AM</strong></td>
<td>SCMP Present and Future</td>
<td>Ahmed Soliman</td>
</tr>
<tr>
<td><strong>11:00 AM</strong></td>
<td><strong>12:00 PM</strong></td>
<td>Web Services are Changing everything</td>
<td>Mohammed Safwat</td>
</tr>
<tr>
<td><strong>12:00 PM</strong></td>
<td><strong>1:00  PM</strong></td>
<td>Infosec</td>
<td>Ahmed Abed</td>
</tr>
<tr>
<td>Break</td>
<td>Break</td>
<td>Break</td>
<td>Break</td>
</tr>
<tr>
<td><strong>1:30 PM</strong></td>
<td><strong>3:00 PM</strong></td>
<td>Python for PHP Programmers</td>
<td>Al-Sayed Gamal</td>
</tr>
<tr>
<td><strong>3:00 AM</strong></td>
<td><strong>4:00 AM</strong></td>
<td>Pluggable Authentication Modules</td>
<td>Ahmed Madkour</td>
</tr>
<tr>
<td><strong>4:00 AM</strong></td>
<td><strong>5:00 AM</strong></td>
<td>Advanced File System Management</td>
<td style="text-align: center;">Maher Saif</td>
</tr>
</tbody>
</table>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.manhag.org/2009/07/h4ck3rz-duo/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2009-05-17</title>
		<link>http://www.blog.manhag.org/2009/05/twitter-weekly-updates-for-2009-05-17/</link>
		<comments>http://www.blog.manhag.org/2009/05/twitter-weekly-updates-for-2009-05-17/#comments</comments>
		<pubDate>Sun, 17 May 2009 12:54:00 +0000</pubDate>
		<dc:creator>Ahmed El Gamil</dc:creator>
				<category><![CDATA[/dev/random]]></category>
		<category><![CDATA[tweeted]]></category>

		<guid isPermaLink="false">http://www.blog.manhag.org/twitter-weekly-updates-for-2009-05-17/</guid>
		<description><![CDATA[Using SWI-Prolog on Linux as a SICStus windows alternative for tomorrow&#8217;s prolog exam .. #
Just got access to my new VPS, HyperVM rocks .. #
Reading: Scaling Apache 2.x beyond 20,000 concurrent downloads http://is.gd/yTQ3 #
Forbes.com Video network: CIO Netowork: Understanding Open Source http://is.gd/z8bq #
Whoever put the basis of &#8220;control theory&#8221;, He cannot be human ! #
Lighttpd [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Using SWI-Prolog on Linux as a SICStus windows alternative for tomorrow&#8217;s prolog exam .. <a href="http://twitter.com/AhmedElGamil/statuses/1757166704">#</a></li>
<li>Just got access to my new VPS, HyperVM rocks .. <a href="http://twitter.com/AhmedElGamil/statuses/1763468145">#</a></li>
<li>Reading: Scaling Apache 2.x beyond 20,000 concurrent downloads <a href="http://is.gd/yTQ3" rel="nofollow">http://is.gd/yTQ3</a> <a href="http://twitter.com/AhmedElGamil/statuses/1764947237">#</a></li>
<li>Forbes.com Video network: CIO Netowork: Understanding Open Source <a href="http://is.gd/z8bq" rel="nofollow">http://is.gd/z8bq</a> <a href="http://twitter.com/AhmedElGamil/statuses/1772436408">#</a></li>
<li>Whoever put the basis of &#8220;control theory&#8221;, He cannot be human ! <a href="http://twitter.com/AhmedElGamil/statuses/1795601029">#</a></li>
<li>Lighttpd digest authentication .. <a href="http://twitter.com/AhmedElGamil/statuses/1807651304">#</a></li>
<li>RT @nmap: Nmap 4.85BETA9 released with dozens of improvements: <a href="http://tinyurl.com/485beta9" rel="nofollow">http://tinyurl.com/485beta9</a> <a href="http://twitter.com/AhmedElGamil/statuses/1807686510">#</a></li>
<li>stripped down metasploit 3.3 snapshot that should be iPhone/iTouch friendly: <a href="http://bit.ly/E9tol" rel="nofollow">http://bit.ly/E9tol</a> <a href="http://twitter.com/AhmedElGamil/statuses/1807690060">#</a></li>
<li>Guide to Cooling Down Your Notebook Computer <a href="http://is.gd/Ag1m" rel="nofollow">http://is.gd/Ag1m</a> <a href="http://twitter.com/AhmedElGamil/statuses/1811676660">#</a></li>
<li>يحلم احلاماً لا تتحقق إلا فى الاخرة .. <a href="http://twitter.com/AhmedElGamil/statuses/1819743727">#</a></li>
<li>Do all the security experts code their websites in plain HTML ?! <a href="http://twitter.com/AhmedElGamil/statuses/1819902781">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.manhag.org/2009/05/twitter-weekly-updates-for-2009-05-17/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter Weekly Updates for 2009-05-10</title>
		<link>http://www.blog.manhag.org/2009/05/twitter-weekly-updates-for-2009-05-10/</link>
		<comments>http://www.blog.manhag.org/2009/05/twitter-weekly-updates-for-2009-05-10/#comments</comments>
		<pubDate>Sun, 10 May 2009 12:54:00 +0000</pubDate>
		<dc:creator>Ahmed El Gamil</dc:creator>
				<category><![CDATA[/dev/random]]></category>
		<category><![CDATA[tweeted]]></category>

		<guid isPermaLink="false">http://www.blog.manhag.org/twitter-weekly-updates-for-2009-05-10/</guid>
		<description><![CDATA[Will probably Test HTTP Tunnels tomorrow to bypass the Uni. Proxy server .. #
{ أَفَمَن كَانَ على بَيِّنَةٍ مِّن رَّبِّهِ كَمَن زُيِّنَ لَهُ سُوءُ عَمَلِهِ وَاتَّبَعُوا أَهْوَاءهُمْ } #
Success is to accomplish what ALLAH created you for .. #
Didn&#8217;t know that Nessus 4.0 was out ! #
Turns out that the web server log file was [...]]]></description>
			<content:encoded><![CDATA[<ul class="aktt_tweet_digest">
<li>Will probably Test HTTP Tunnels tomorrow to bypass the Uni. Proxy server .. <a href="http://twitter.com/AhmedElGamil/statuses/1697895627">#</a></li>
<li>{ أَفَمَن كَانَ على بَيِّنَةٍ مِّن رَّبِّهِ كَمَن زُيِّنَ لَهُ سُوءُ عَمَلِهِ وَاتَّبَعُوا أَهْوَاءهُمْ } <a href="http://twitter.com/AhmedElGamil/statuses/1709915912">#</a></li>
<li>Success is to accomplish what ALLAH created you for .. <a href="http://twitter.com/AhmedElGamil/statuses/1710135874">#</a></li>
<li>Didn&#8217;t know that Nessus 4.0 was out ! <a href="http://twitter.com/AhmedElGamil/statuses/1716662416">#</a></li>
<li>Turns out that the web server log file was eating the disk space on my VPS, lets play logrotate .. <a href="http://twitter.com/AhmedElGamil/statuses/1716903789">#</a></li>
<li>Currently using it on my laptop with the 512M Nanya chip, It is excellent, got mine from Laptop shop with 2 years warranty i think .. <a href="http://twitter.com/AhmedElGamil/statuses/1729990231">#</a></li>
<li>Squirrel <a href="http://twitter.com/AhmedElGamil/statuses/1732274177">#</a></li>
<li>Secure Development .. <a href="http://twitter.com/AhmedElGamil/statuses/1738057134">#</a></li>
<li>أين أيام التبتل و الخشوع ؟ <a href="http://twitter.com/AhmedElGamil/statuses/1748261090">#</a></li>
<li>GP <a href="http://twitter.com/AhmedElGamil/statuses/1750615754">#</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.manhag.org/2009/05/twitter-weekly-updates-for-2009-05-10/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Virtualization &#8230;</title>
		<link>http://www.blog.manhag.org/2009/04/virtualization/</link>
		<comments>http://www.blog.manhag.org/2009/04/virtualization/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 17:23:16 +0000</pubDate>
		<dc:creator>Ahmed El Gamil</dc:creator>
				<category><![CDATA[UNIX/Linux]]></category>
		<category><![CDATA[LinkedIn]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[virtualization]]></category>

		<guid isPermaLink="false">http://www.blog.manhag.org/?p=344</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://blog.manhag.org/wp-content/uploads/2009/04/virtualization1.png"><img class="aligncenter size-large wp-image-343" title="virtualization1" src="http://www.blog.manhag.org/wp-content/uploads/2009/04/virtualization1-1024x640.png" alt="virtualization1" width="1024" height="640" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.manhag.org/2009/04/virtualization/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>CAT SCOPE 10</title>
		<link>http://www.blog.manhag.org/2009/03/cat-scope-10/</link>
		<comments>http://www.blog.manhag.org/2009/03/cat-scope-10/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 12:24:02 +0000</pubDate>
		<dc:creator>Ahmed El Gamil</dc:creator>
				<category><![CDATA[Computer.Assistant.Team]]></category>
		<category><![CDATA[CAT-H4ckerZ]]></category>

		<guid isPermaLink="false">http://www.blog.manhag.org/?p=332</guid>
		<description><![CDATA[It’s the event that we wait for each semester, the event that gathers all of us (CAT Foundations) and sponsors to enjoy professional technical sessions that are held in the latest leading-edge technologies in IT.
IT’S THE CAT SCOPE, and it’s the 10th one,

It’s a great feeling to witness the series of successes we had since [...]]]></description>
			<content:encoded><![CDATA[<p><strong>It’s the event that we wait for each semester, the event that gathers all of us (<a title="CAT" href="http://catreloaded.net/">CAT</a> Foundations) and sponsors to enjoy professional technical sessions that are held in the latest leading-edge technologies in IT.</strong></p>
<p style="text-align: left;"><strong><span style="font-size: medium;"><span style="color: #800000;">IT’S THE CAT <a href="http://scope.catreloaded.net/" target="_blank">SCOPE</a>, and it’s the 10<sup>th</sup> one,<br />
</span></span></strong></p>
<p><strong>It’s a great feeling to witness the series of successes we had since reloading CAT, starting from CAT-Scope 3, and on next Saturday 21 March 2009 , CAT-Scope 10 will begin and — as usual — each CAT Scope has its own flavour/theme, this scope is really different , as  it’s the first scope to be held in 4 days not 3 as we used to have for the past 7 scopes, which means more work and more fun <img class="wp-smiley" src="http://www.cat-hackers.net/blog/wp-includes/images/smilies/icon_smile.gif" alt=":)" /></strong></p>
<p><strong>So, it’s the largest and the most important event for the CAT, and of course for each foundation… SO CAT-H4ck3rZ will be rocking — as usual — <img class="wp-smiley" src="http://www.cat-hackers.net/blog/wp-includes/images/smilies/icon_biggrin.gif" alt=":D" /></strong></p>
<p><strong>We have only 2 sessions in the scope, which are:</strong></p>
<ol>
<li><strong><strong><span style="color: #008000;">“What’s cool about Python”   — <span style="color: #808080;">Eng. Ahmed Soliman (Foundation Founder)<br />
Saturday, 21 March 2009  1:00PM</span><br />
</span></strong></strong></li>
<li><strong><strong><span style="color: #008000;">“An introduction to SCMP”    –<span style="color: #808080;"> Karim Allah Ahmed and Mariam Asfour (Programming Team)<br />
Monday, 23 March 2009 10:30AM</span></span></strong></strong></li>
</ol>
<p><strong><strong><span style="color: #008000;"><span style="color: #808080;"><br />
</span></span></strong></strong></p>
<p><strong><span id="more-332"></span>Yes, these are only 2 sessions for H4c3rZ, yet they are highly interesting ones. The first session by Ahmed Soliman will be held on Saturday @ 1 p.m. He’ll be talking about Python, how cool this programming language is, and exactly what’s so cool about it. It’ll be hands-on session with lots of coding and of course lot’s of FUN!. It’s a must-be-seen session as usual Ahmed is going to amuse us with the latest technologies in his area.<br />
<span style="text-decoration: underline;"><span style="color: #ff0000;">Ooh, Surprisingly, there’ll be very nice give-aways in our sessions, believe me, you don’t wanna miss it <img class="wp-smiley" src="http://www.cat-hackers.net/blog/wp-includes/images/smilies/icon_wink.gif" alt=";)" /> </span></span></strong></p>
<p><strong>The second session will be on Monday @ 10:30 a.m. It is an introduction to our main programming project SCMP, what is it, what’s the idea behind, everything related to the project, not only that, you’ll also get the chance to hear about our revolutionary relaunch, what were our mistakes, how did we overcome it, and what’s up for our future, nice….huh?</strong></p>
<p><strong>No matter what, <em><strong>YOU MUST JOIN</strong></em>, don’t hesitate, it’s very valuable sessions, and a not-to-miss<span id=":xi"> event.</span></strong></p>
<p><strong>here’s the schedule…<br />
<a href="http://scope.catreloaded.net/sch-poster.png"><img class="size-medium wp-image-81 alignnone" title="sch-poster3" src="http://www.cat-hackers.net/blog/wp-content/uploads/2009/03/sch-poster3-300x227.png" alt="sch-poster3" width="300" height="227" /></a></strong></p>
<p style="text-align: center;">
<p style="text-align: center;"><strong><strong>WE ARE WAITNG FOR YOU</strong></strong></p>
<p style="text-align: center;"><strong><strong><a href="http://www.cat-hackers.net/blog/2009/03/cat-scope-10/" target="_blank">Posted at the H4ck3rZ Blog</a><br />
</strong></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.blog.manhag.org/2009/03/cat-scope-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
