<?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>Mohammad Kotb</title>
	<atom:link href="http://mkotbcorp.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mkotbcorp.wordpress.com</link>
	<description>&#34;Talk is cheap. Show me the Code&#34; -Linus Torvald</description>
	<lastBuildDate>Mon, 12 Sep 2011 21:38:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mkotbcorp.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/a9dc186f38949f78fb02099bca7f094d?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Mohammad Kotb</title>
		<link>http://mkotbcorp.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mkotbcorp.wordpress.com/osd.xml" title="Mohammad Kotb" />
	<atom:link rel='hub' href='http://mkotbcorp.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Ruby On Rails environment on Ubuntu 10.04</title>
		<link>http://mkotbcorp.wordpress.com/2010/06/21/ruby-on-rails-environment-on-ubuntu-10-04/</link>
		<comments>http://mkotbcorp.wordpress.com/2010/06/21/ruby-on-rails-environment-on-ubuntu-10-04/#comments</comments>
		<pubDate>Mon, 21 Jun 2010 18:48:29 +0000</pubDate>
		<dc:creator>mohammadkotb</dc:creator>
				<category><![CDATA[RubyOnRails]]></category>

		<guid isPermaLink="false">http://mkotbcorp.wordpress.com/?p=280</guid>
		<description><![CDATA[Hi, I think this is my first technical post in the blog, so today I faced some problems while building the Ruby on Rails environment on my machine. I just like sharing this knowledge with you. First, in this post we will make the following: Ruby 1.9.1 Rails 2.3.5 Thin server. MySQL server. 1. Ruby [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mkotbcorp.wordpress.com&amp;blog=4287055&amp;post=280&amp;subd=mkotbcorp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>I think this is my first technical post in the blog, so today I faced some problems while building the Ruby on Rails environment on my machine. I just like sharing this knowledge with you.</p>
<p>First, in this post we will make the following:</p>
<ol>
<li>Ruby 1.9.1</li>
<li>Rails 2.3.5</li>
<li>Thin server.</li>
<li>MySQL server.</li>
</ol>
<p><strong><span style="text-decoration:underline;"><em>1. Ruby 1.9.1</em></span></strong><br />
The following commands mainly download the Ruby source code and compile it and so on</p>
<p>Just you have to install the following libraries:<br />
<strong>sudo apt-get install build-essential libssl-dev libreadline5-dev zlib1g-dev</strong></p>
<p>move to /usr/local/src to download source code and compile it in this folder<br />
<strong>cd /usr/local/src</strong></p>
<p>Download the source code, and unpack it<br />
<strong>sudo wget </strong><a href="ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.1-p0.tar.gz" target="_blank"><strong>ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.1-p0.tar.gz<br />
</strong></a><strong>sudo tar xzf ruby-1.9.1-p0.tar.gz<br />
cd ruby-1.9.1-p0 </strong></p>
<p>Now, you have to check the version of gcc if it is 4.4 some errors will occur<br />
<strong>dpkg -l | grep gcc</strong></p>
<p>if gcc 4.4 found then you have to <strong>edit the cont.c</strong> file to go on. Open it up, and <strong>change the lines 90, 270 and 317 from #elif to #else</strong>.<br />
<strong>sudo gedit cont.c</strong></p>
<p>then write the following commands in terminal<br />
<strong>sudo ./configure &#8211;prefix=/usr/local/ruby-1.9.1<br />
sudo make<br />
sudo make install</strong></p>
<p>After these steps you have finally installed Ruby 1.9.1, to check its version<br />
<strong>cd /usr/local/ruby-1.9.1/bin<br />
ruby -v<br />
</strong>output like that: <strong>ruby 1.9.1p0 (2009-01-30 revision 21907) [i686-linux] </strong></p>
<p>Now, the ruby commands such as ruby, rake, irb, &#8230; etc are accessed only from /usr/local/ruby-1.9.1/bin, and all the commands are found in /usr/local/bin so just make link for the commands in ruby-1.9.1/bin and put them in /usr/local/bin<br />
<strong>sudo ln -s /usr/local/ruby-1.9.1/bin/ruby /usr/local/bin<br />
sudo ln -s /usr/local/ruby-1.9.1/bin/rake /usr/local/bin<br />
sudo ln -s /usr/local/ruby-1.9.1/bin/gem /usr/local/bin<br />
sudo ln -s /usr/local/ruby-1.9.1/bin/irb /usr/local/bin<br />
sudo ln -s /usr/local/ruby-1.9.1/bin/ri /usr/local/bin<br />
sudo ln -s /usr/local/ruby-1.9.1/bin/rdoc /usr/local/bin </strong></p>
<p><strong><span style="text-decoration:underline;"><em>2. Rails 2.3.5</em></span></strong><br />
Now, Ruby 1.9.1 is installed successfully on your machine, just add this command to terminal to install the Rails 2.3.5 gem<br />
<strong>sudo gem install rails -v=2.3.5</strong></p>
<p><strong><span style="text-decoration:underline;"><em>3. Thin server</em></span></strong><br />
Also to install Thin application server gem<br />
<strong>sudo gem install thin</strong></p>
<p>Then lets make links for the the recently installed commands<br />
<strong>sudo ln -s /usr/local/ruby-1.9.1/bin/rails /usr/local/bin<br />
sudo ln -s /usr/local/ruby-1.9.1/bin/rakeup /usr/local/bin<br />
sudo ln -s /usr/local/ruby-1.9.1/bin/thin /usr/local/bin<br />
sudo ln -s /usr/local/ruby-1.9.1/bin/testrb /usr/local/bin </strong></p>
<p><strong><span style="text-decoration:underline;"><em>4. MySQL server</em></span></strong><br />
Finally to install MySQL server for DB<br />
<strong>sudo apt-get install mysql-server<br />
</strong>and while installing it is required to set the <strong>root</strong> password</p>
<p>References: <a href="http://labnotesh.wordpress.com/2009/04/28/compiling-ruby-19-with-gcc-4/">http://labnotesh.wordpress.com/2009/04/28/compiling-ruby-19-with-gcc-4/</a></p>
<p>Hope that it is some how useful for you<br />
Enjoy <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mkotbcorp.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mkotbcorp.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mkotbcorp.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mkotbcorp.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mkotbcorp.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mkotbcorp.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mkotbcorp.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mkotbcorp.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mkotbcorp.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mkotbcorp.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mkotbcorp.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mkotbcorp.wordpress.com/280/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mkotbcorp.wordpress.com/280/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mkotbcorp.wordpress.com/280/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mkotbcorp.wordpress.com&amp;blog=4287055&amp;post=280&amp;subd=mkotbcorp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mkotbcorp.wordpress.com/2010/06/21/ruby-on-rails-environment-on-ubuntu-10-04/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/42658bb75915c39e4a6d55b12d766b5d?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">mohammadkotb</media:title>
		</media:content>
	</item>
		<item>
		<title>Top Coder Chatting with ACRush</title>
		<link>http://mkotbcorp.wordpress.com/2010/05/29/top-coder-chatting-with-acrush/</link>
		<comments>http://mkotbcorp.wordpress.com/2010/05/29/top-coder-chatting-with-acrush/#comments</comments>
		<pubDate>Fri, 28 May 2010 23:38:47 +0000</pubDate>
		<dc:creator>mohammadkotb</dc:creator>
				<category><![CDATA[Algorithms Contests]]></category>
		<category><![CDATA[TopCoder]]></category>

		<guid isPermaLink="false">http://mkotbcorp.wordpress.com/?p=266</guid>
		<description><![CDATA[Hi, This is a very interesting chat with ACRush on TopCoder, taken from this link, and thanks for my friend Mohamed Gaber for giving me this link Enjoy &#8230; ================================= FameofLight ACRush: Finally the god of programming arrives FameofLight ACRush: do you follow a random practice , or you practice question by topic , in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mkotbcorp.wordpress.com&amp;blog=4287055&amp;post=266&amp;subd=mkotbcorp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://acm.cs.binghamton.edu/images/topcoder.png" alt="TopCoder" /></p>
<p>Hi,</p>
<p>This is a very interesting chat with <a href="http://www.topcoder.com/tc?module=MemberProfile&amp;cr=19849563"><span style="color:#ff0000;"><strong>ACRush</strong></span></a> on TopCoder, taken from this <a href="http://hi.baidu.com/millky_wang/blog/item/22015903242035e409fa93ee.html">link</a>, and thanks for my friend <a href="http://www.topcoder.com/tc?module=MemberProfile&amp;cr=22849774"><span style="color:#008000;"><strong>Mohamed Gaber</strong></span></a> for giving me this link</p>
<p>Enjoy <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  &#8230;</p>
<p>=================================</p>
<p><span style="font-family:Calibri;font-size:14px;">FameofLight ACRush: Finally the god of programming arrives<br />
FameofLight ACRush: do you follow a random practice , or you practice question by topic , in your early days<br />
ACRush FameofLight: No, our team practiced 3 or 4 full contests a week.<br />
pt1989 ACRush: Can u tell us whom or what do u credit for ur success?<br />
ACRush pt1989: I think more practice is the way.<br />
ktuan ACRush: how can you arrange your study with 3-4 contests a week ?<br />
ACRush ktuan: UVA, SGU , ZJU and PKU is enough.<br />
pt1989 ACRush: what is ur method of practising? random or organised?<br />
ACRush pt1989: contest env. We always solve programs in contest env.<br />
Sunny_05 ACRush: wat is ur daily routine ?? i mean hw do u practice everyday ??<br />
ACRush Sunny_05: We only have weekly routine for practice.<br />
binarywithme ACRush: what u think about world final problems..level of difficulty<br />
ACRush binarywithme: A little harder than 1000p.<br />
</span><span style="font-family:Calibri;font-size:14px;">MB__ ACRush: Which of these do you do after you submit your solution on TC: test solution, re-read problem statement, check code line by line<br />
ACRush MB__: test for at least 10 cases.<br />
</span><span style="font-family:Calibri;font-size:14px;">martins256 ACRush: how many problems have you solved on OJ ?<br />
ACRush martins256: about 2000.<br />
kcm1700 ACRush: How many problems have you proposed on OJ or anything like this competition or something&#8230;?<br />
ACRush kcm1700: about 2000.<br />
vijay_comc ACRush: Who is your Arch Rival in Programming ? <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
ACRush vijay_comc: Petr, I think.<br />
SomethingWrong ACRush: What is your favourite Online Judge?<br />
ACRush SomethingWrong: SGU.<br />
vexorian ACRush: Why SGU?<br />
ACRush vexorian: More tricky testcases.<br />
Dee2306 ACRush: Being one of top programmers, do u believe its just practice which makes u perfect.. or some of u are born genius ??<br />
ACRush Dee2306: It&#8217;s at least 80% due to practice<br />
stormsky ACRush: how to practice ACM for a ACM beginner?<br />
ACRush stormsky: practice in contest env.<br />
piva ACRush: Do you train more of one category of problems? Or you just solve problems at random?<br />
ACRush piva: I do more practice in the ones I have troubles with.<br />
pt1989 ACRush: what are ur interests other than programming?<br />
ACRush pt1989: WarCraft.<br />
vijay_comc ACRush: Petr is already married. No plans to compete him in that area ?<br />
ACRush vijay_comc: &#8230;.not yet.<br />
Sarkin ACRush: Is analyzing algorithms an essential part of learning algorithms?<br />
ACRush Sarkin: Not all, I think coding is in practice room is the rest way.<br />
abdessamad ACRush: can believe it! when i see your challengers<br />
ACRush abdessamad: It&#8217;s one thing that Petr did much better than me.<br />
stjepan ACRush: where did/do you practice most and how?<br />
ACRush stjepan: And join contest.<br />
</span><span style="font-family:Calibri;font-size:14px;">binarywithme ACRush: why u choose c++ as a default programming language<br />
ACRush binarywithme: er.. Stl is the first reason. Another one may be efficient.<br />
</span><span style="font-family:Calibri;font-size:14px;">geekru2 ACRush: during contest, what kind of problems do u enjoy doing? as in type of problem?<br />
ACRush geekru2: dp and network-flow.<br />
reginachris ACRush: What&#8217;s the best OJ to start with for practice (UVa, SPOJ, TC, etc.)?<br />
ACRush reginachris: USACO<br />
ferry ACRush: What do you do when you can&#8217;t solve a problem or you don&#8217;t know what&#8217;s wrong?<br />
ACRush ferry: I will try to pass it in practice room. I always do that.<br />
geekru2 ACRush: Do you solve puzzles and mind bending questions to improve your problem solving techniques?<br />
ACRush geekru2: no. I don&#8217;t like such problems like suduko.<br />
</span><span style="font-family:Calibri;font-size:14px;">Sarkin ACRush: What algorithm types helped you in the IOI?<br />
ACRush Sarkin: dp.<br />
abdessamad ACRush: did you like chess?<br />
ACRush abdessamad: yes.<br />
geekru2 ACRush: when in a team event(IOI etc), do you dominate while programming?<br />
ACRush geekru2: yes. I guess.<br />
kcm1700 ACRush: how do you prepare data for the challenge phase?<br />
ACRush kcm1700: The trickiest one, of course.<br />
</span><span style="font-family:Calibri;font-size:14px;">binarywithme ACRush: sir what is the best way to learn DP.<br />
ACRush binarywithme: TC contest.<br />
[dasha] ACRush: When u were beginning to compete,did u have any problems? Like low speed of sloving, or maybe some particular method u couldn&#8217;t understend for a long time, sth else? If yes, how did u get over that?<br />
ACRush [dasha]: USACO is a really good place. Especially for the beginners.<br />
frank44 ACRush: how long did the usaco practice take you?<br />
ACRush frank44: half one year.<br />
binarywithme ACRush: what u think math should b strong to become a Gud programmer<br />
ACRush binarywithme: The mathematical foundation is helps.<br />
khanhptnk ACRush: excuse me, do you think what we should prepare before an important contest ?<br />
ACRush khanhptnk: relax, and rush some s i m p l e problems. And solve some problems in a contest env. is also helpful.<br />
</span><span style="font-family:Calibri;font-size:14px;">Sarkin ACRush: Do you recommned reading &#8220;Introduction to Algorithms&#8221;? if you know?<br />
ACRush Sarkin: Really good.<br />
</span><span style="font-family:Calibri;font-size:14px;">coder29 ACRush: which parts do u advice to read in &#8220;Introduction to Algorithms&#8221;?<br />
ACRush coder29: All parts are perfect. except complexity.<br />
MB__ ACRush: do you do any sports but topcoding?<br />
ACRush MB__: soccer.<br />
vijay_comc ACRush: Complexity in CLRS is flawed ??<br />
ACRush vijay_comc: 7-8<br />
Sarkin ACRush: What do you mean except comlexity?<br />
ACRush Sarkin: That&#8217;s only my opinion.<br />
pcaldeira ACRush: which skill do you consider most important on TCHS/ioi-style contests?<br />
ACRush pcaldeira: algorithm skills and coding ability.<br />
coder29 ACRush: I am newbie&#8230;which OJ is better fr me&#8230;USCO or UVA?<br />
ACRush coder29: USACO<br />
hakami ACRush: Are you useing library or typing from first for SRMs?<br />
ACRush hakami: some includes and basic untilities.<br />
vrajesh1989 ACRush: Will you try to prove your algorithms to yourselves during contest time or just believe your intuition and start coding?<br />
ACRush vrajesh1989: Yes, it&#8217;s very important for me.<br />
Sarkin ACRush: Do you use algorithm analyzis when solving a problem to see it&#8217;s effeciency?<br />
ACRush Sarkin: Yes. the effeciency sometimes is more important than correctness in TC contest.<br />
coder29 ACRush: basically i want 2 to do pratice on DP and greedy types&#8230;is TCs&#8217; room are sufficient..?<br />
ACRush coder29: A bulk of dp tasks in SRMs. TC&#8217;s room is good.<br />
rajeshsr ACRush: In short, what is the strategy for becoming a good coder, according to u?<br />
ACRush rajeshsr: Practice is the way.<br />
Lingmum ACRush: How can we improve our speed of solving the problems,more problems?<br />
ACRush Lingmum: More practice.<br />
stormsky ACRush: do you often practice TC?and how to practice?<br />
ACRush stormsky: Yes. But in fact, I prefer to doing past Regionals and finals.<br />
sahiltiwari ACRush: how many hours you practise per day ?<br />
ACRush sahiltiwari: 4-5<br />
MohammadReza ACRush: What do you do to make your code becomes bugfree although the big size?<br />
ACRush MohammadReza: test more tricky cases.(corner cases)<br />
rajeshsr ACRush: Sorry to be repetitious, But I want to know what is the strategy of practice you employed? U select some random problems from OJs and solve or try to master a particular domain like DP by solving problems based on that or any other thing?<br />
ACRush rajeshsr: set problems of past regionals and finals.<br />
puneetkp444 ACRush: Can you suggest some ways to improve problem solving abilities<br />
ACRush puneetkp444: practice all kinds of problems.<br />
alft7 ACRush: what do you usually do before a very important competition, practise or something else?<br />
ACRush alft7: practice until 3 days before it.<br />
ferry ACRush: What is the hardest problem you&#8217;ve done?<br />
ACRush ferry: I in WF2007</span></p>
<div>&#8211;<br />
Bye <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mkotbcorp.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mkotbcorp.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mkotbcorp.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mkotbcorp.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mkotbcorp.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mkotbcorp.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mkotbcorp.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mkotbcorp.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mkotbcorp.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mkotbcorp.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mkotbcorp.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mkotbcorp.wordpress.com/266/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mkotbcorp.wordpress.com/266/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mkotbcorp.wordpress.com/266/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mkotbcorp.wordpress.com&amp;blog=4287055&amp;post=266&amp;subd=mkotbcorp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mkotbcorp.wordpress.com/2010/05/29/top-coder-chatting-with-acrush/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/42658bb75915c39e4a6d55b12d766b5d?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">mohammadkotb</media:title>
		</media:content>

		<media:content url="http://acm.cs.binghamton.edu/images/topcoder.png" medium="image">
			<media:title type="html">TopCoder</media:title>
		</media:content>
	</item>
		<item>
		<title>تعبير عن اللي جوايا</title>
		<link>http://mkotbcorp.wordpress.com/2010/05/05/%d8%aa%d8%b9%d8%a8%d9%8a%d8%b1-%d8%b9%d9%86-%d8%a7%d9%84%d9%84%d9%8a-%d8%ac%d9%88%d8%a7%d9%8a%d8%a7/</link>
		<comments>http://mkotbcorp.wordpress.com/2010/05/05/%d8%aa%d8%b9%d8%a8%d9%8a%d8%b1-%d8%b9%d9%86-%d8%a7%d9%84%d9%84%d9%8a-%d8%ac%d9%88%d8%a7%d9%8a%d8%a7/#comments</comments>
		<pubDate>Tue, 04 May 2010 22:01:26 +0000</pubDate>
		<dc:creator>mohammadkotb</dc:creator>
				<category><![CDATA[7'an2a]]></category>
		<category><![CDATA[Free]]></category>

		<guid isPermaLink="false">http://mkotbcorp.wordpress.com/?p=255</guid>
		<description><![CDATA[أنا مش متعود خالص إني أقرأ شعر أو زجل أو حتى روايات، و مش بفهم فيهم حاجة خالص، بس ساعات كده في حاجات بتشد الواحد وبيحب يكملها للاخر، زي القصيدة ديه لأحمد فؤاد نجم نفسى فى صنف حشيش &#62; ينمل الدماغ وينضف النخاشيش &#62; علشان انسى طابور العيش &#62; واخش فى الغيبوبه وانسى مشكلة الانبوبه [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mkotbcorp.wordpress.com&amp;blog=4287055&amp;post=255&amp;subd=mkotbcorp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:right;font-size:16px;">أنا مش متعود خالص إني أقرأ شعر أو زجل أو حتى روايات، و مش بفهم فيهم حاجة خالص، بس ساعات كده في حاجات بتشد الواحد وبيحب يكملها للاخر، زي القصيدة ديه لأحمد فؤاد نجم</p>
<p style="text-align:right;font-size:20px;">نفسى فى صنف حشيش<br />
&gt; ينمل الدماغ وينضف النخاشيش<br />
&gt; علشان انسى طابور العيش<br />
&gt; واخش فى الغيبوبه وانسى مشكلة الانبوبه<br />
&gt; وانسى بلدنا المنهوبه<br />
&gt; وانسى اللى بيجهزوه علشان يبقى رئيس للمخروبه<br />
&gt; وابقى مسطول<br />
&gt; وانسى اى مسئول<br />
&gt; من اللى سابوا الناس فى السيول<br />
&gt; وانسى ان نظيف اتجوز وبقى بيعول<br />
&gt; وانسى مجلس الشعب وفتحى سرور<br />
&gt; وانسى البرادعى وايمن نور<br />
&gt; وانسى شوبير ومرتضى منصور<br />
&gt; وانسى تعديل الدستور<br />
&gt; وانسى اللى ساكنين فى القبور<br />
&gt; وانسى انفلونزا الطيور<br />
&gt; وانسى مشاريعنا الفاشله<br />
&gt; فى توشكى وابو طرطور<br />
&gt; واخش فى الاستهبال<br />
&gt; وانسى علاء وجمال<br />
&gt; وانسى التوريث<br />
&gt; و النيل اللى نازلين فيه تلويث<br />
&gt; وانسى ان منتخبنا كويس زى ماقال الريس<br />
&gt; وانسى تصدير الغاز<br />
&gt; واحناعندنا ازمة بوتاجاز<br />
&gt; وانسى الاضهاد واللى بيحصل للاقباط<br />
&gt; وانسى قطر العياط<br />
&gt; وانسى قطر الصعيد<br />
&gt; وانسى احمد عز واحتكار الحديد<br />
&gt; وانسى زحمة المواصلات<br />
&gt; وانسى الانتخابات<br />
&gt; وانسى فتاوى الفضائيات<br />
&gt; وانسى العشوائيات<br />
&gt; وانسى فشل التعليم<br />
&gt; وانسى هشام طلعت وسوزان تميم<br />
&gt; وانسى الاهرام وانسى الاخبار<br />
&gt; وانسى ثروة الريس ال40 مليار<br />
&gt; اللى مش بالجنيه المعفن لا بالدولار<br />
&gt; وانسى انه خلى بلدنا افقر من زنزبار<br />
&gt; وانسى المعارضه وانسى الاحزاب<br />
&gt; وانسى تامر حسنى وعمر دياب<br />
&gt; وانسى مشكلة النقاب<br />
&gt; وانسى ارضاع الكبير وشرب بول البعير<br />
&gt; وانسى انفلونزا الخنازير<br />
&gt; وانسى اوربا وامريكا وانسى الصين<br />
&gt; المتقدمين عننا بسنين<br />
&gt; وانسى البيت بيتك و تامر امين<br />
&gt; وانسى ان كيلو اللحمه بقى بتمانين<br />
&gt; وانسى اننا فى الزباله غرقانين<br />
&gt; وانسى الماده سته وسبعين<br />
&gt; والماده سبعه وسبعين<br />
&gt; وانسى فريق الساجدين<br />
&gt; وانسى الزمالك والاهلى<br />
&gt; وانسى اليسا وهيفاء وهبى<br />
&gt; وانسى الفول والطعميه<br />
&gt; وازهى عصور الديموقراطيه<br />
&gt; وجامعة الدول العربيه<br />
&gt; والجماهيريه الليبيه<br />
&gt; والكفيل فى السعوديه<br />
&gt; وانسى بطرس غالى و الضريبه العقاريه<br />
&gt; وانسى الطلعه الاولى الجويه<br />
&gt; والمصالحه الفلسطينيه<br />
&gt; وانسى فتح وانسى حماس<br />
&gt; وانسى هنيه ومحمود عباس<br />
&gt; وانسى العراق وافغانستان<br />
&gt; وانسى ايران و انسى باكستان<br />
&gt; وانسى ماما سوزان<br />
&gt; وانسى الاخوان<br />
&gt; وانسى محمد ابراهيم سليمان<br />
&gt; وانسى ان حد بالمليون يطلع كسبان<br />
&gt; وانسى انى مديون<br />
&gt; بيطلعوه مجنون<br />
&gt; وانسى كل ممثله حيزبون<br />
&gt; بتاخد فى المسلسل كام مليون<br />
&gt; وانسى ايامنا السوده<br />
&gt; وانسى القذافى والبشير<br />
&gt; وانسى كل ملك وكل امير<br />
&gt; اللى حاكمين من سنين<br />
&gt; من غير تغيير<br />
&gt; وعلشان اعرف ان الصنف كويس<br />
&gt; لازم ارشح نفسى وابقى الريس</p>
<p style="text-align:right;font-size:16px;">بغض النظر عن التجاوزات و التشبيهات اللى موجودة، لكنها معبرة جدا جدا والصراحة بتوصف اللى جوايا جدا جدا جدا</p>
<p style="text-align:right;font-size:16px;">مش عارف ديه هتكون اخر مرة هكتب فيها حاجة زي كده ولا لأ، بس أنا كتبتها دلوقتي عشان مخنوق جدا من حاجات كتير حوليا</p>
<p style="text-align:right;font-size:16px;">&#8211;<br />
سلام</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mkotbcorp.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mkotbcorp.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mkotbcorp.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mkotbcorp.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mkotbcorp.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mkotbcorp.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mkotbcorp.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mkotbcorp.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mkotbcorp.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mkotbcorp.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mkotbcorp.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mkotbcorp.wordpress.com/255/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mkotbcorp.wordpress.com/255/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mkotbcorp.wordpress.com/255/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mkotbcorp.wordpress.com&amp;blog=4287055&amp;post=255&amp;subd=mkotbcorp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mkotbcorp.wordpress.com/2010/05/05/%d8%aa%d8%b9%d8%a8%d9%8a%d8%b1-%d8%b9%d9%86-%d8%a7%d9%84%d9%84%d9%8a-%d8%ac%d9%88%d8%a7%d9%8a%d8%a7/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/42658bb75915c39e4a6d55b12d766b5d?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">mohammadkotb</media:title>
		</media:content>
	</item>
		<item>
		<title>8th ACM Egyptian National Contest 2009</title>
		<link>http://mkotbcorp.wordpress.com/2009/10/19/8th-acm-egyptian-national-contest-2009/</link>
		<comments>http://mkotbcorp.wordpress.com/2009/10/19/8th-acm-egyptian-national-contest-2009/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 23:33:01 +0000</pubDate>
		<dc:creator>mohammadkotb</dc:creator>
				<category><![CDATA[ACM]]></category>
		<category><![CDATA[ACM ICPC]]></category>
		<category><![CDATA[Algorithms Contests]]></category>

		<guid isPermaLink="false">http://mkotbcorp.wordpress.com/?p=243</guid>
		<description><![CDATA[Dear friends, How are you all, today is the next day after coming back from the 8th ACM Egyptian National Contest in Cairo (Faculty of Computer and Information Cairo University). Really yesterday was a very hard day, I have slept for only 1 or 1:30 hours before waking up to go to the contest, then [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mkotbcorp.wordpress.com&amp;blog=4287055&amp;post=243&amp;subd=mkotbcorp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignnone" style="width: 586px"><img title="Alexandra University - Faculty of Engineering teams" src="http://lh6.ggpht.com/_Y7aar0xpUjs/Sttf2mao_MI/AAAAAAAAAUI/zPIWQ6mEzFY/s720/100_3063.JPG" alt="Alexandria University Faculty of Engineering Teams" width="576" height="384" /><p class="wp-caption-text">Alexandra University - Faculty of Engineering teams</p></div>
<p>Dear friends,</p>
<p>How are you all, today is the next day after coming back from the <strong>8th ACM Egyptian National Contest in Cairo</strong> (Faculty of Computer and Information Cairo University).</p>
<div class="wp-caption alignnone" style="width: 586px"><img class=" " title="In the train with eng. Bassiouny asking him in some problems :)" src="http://lh5.ggpht.com/_Y7aar0xpUjs/Sttcu_UutOI/AAAAAAAAAR4/jHQ5wqzZMNk/s720/100_3026.JPG" alt="In the train with eng. Bassiouny asking him in some problems :)" width="576" height="384" /><p class="wp-caption-text">In the train with eng. Bassiouny asking him in some problems <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p></div>
<p>Really yesterday was a very hard day, I have slept for only 1 or 1:30 hours before waking up to go to the contest, then I went to the Railway station to start our traveling  journey. But unfortunately the train was very bad, it come to the station after 20 mins from its original time :S and when we enter to our car some of our friends saw a mouse in running under the chairs <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  (Wow mouse in the train), the train was very slow, and we reached Cairo with a delay not less than 1 or 1:30 hour.</p>
<div class="wp-caption alignnone" style="width: 586px"><img class=" " title="Alex Uni Engineering teams in the Opening session" src="http://lh4.ggpht.com/_Y7aar0xpUjs/Stte58MVBbI/AAAAAAAAATg/9aEBOUD06Fw/s720/100_3053.JPG" alt="Alex Uni Engineering teams in the Opening session" width="576" height="384" /><p class="wp-caption-text">Alex Uni Engineering teams in the Opening session</p></div>
<p>Then we reached to the FCI after the registration was closed <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> , but we went before the Opening Session, really it was very hot and we are very tired, then we started our practice session to try everything as in the contest environment, then we went to pray and then have a break till the contest start..</p>
<div class="wp-caption alignnone" style="width: 586px"><img class=" " title="AlexCSE 1 during the practice session" src="http://lh5.ggpht.com/_Y7aar0xpUjs/SttdahdLuuI/AAAAAAAAASc/t6rB6eTbjKE/s720/100_3035.JPG" alt="AlexCSE 1 during the practice session" width="576" height="384" /><p class="wp-caption-text">AlexCSE 1 during the practice session</p></div>
<p>In the contest we my colleague <strong>Abdel-Rahman</strong> have found the easy problem, so I got it to code this problem and I have submitted it in <strong>4 mins</strong> only, that it want to get the number of even number and odd numbers in a group of given numbers, I thought that I was the first one to solve this problem in the contest but I found that <strong>FCI-CU 1</strong> team have solved it in <strong>2 mins</strong> only (ma sha2 Allah)  :D, after solving this problem we went pending for 1:30 to 2:30 hours without solving any other problem, we tried to solve more than one problem but we got <strong>time limit</strong> or <strong>WA</strong> :S, then el hamd L Allah we started submitting problem and got other <strong>3 YES</strong> mesages <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> , and went to the <strong>10th place</strong> but we solved the 4th problem in the blind hour and don&#8217;t get its balloon <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<div class="wp-caption alignnone" style="width: 586px"><img class=" " title="AlexCSE 1 after the contest before announcing results" src="http://lh6.ggpht.com/_Y7aar0xpUjs/SttgIflpxyI/AAAAAAAAAUc/Alc7ltjuc7Q/s720/100_3067.JPG" alt="AlexCSE 1 after the contest before announcing results" width="576" height="384" /><p class="wp-caption-text">AlexCSE 1 after the contest before announcing results</p></div>
<p>Finally, it was very good day el hamd L Allah, and our teams got the <strong>10th, 15th, 18th, 29th, and 31th</strong> ranks in the contest. Really the <strong>FCI-CU</strong> guys were very tired to organize such event, but of course there are some problems but really Good Work. Really all our teams want to thank <strong>eng. Mahmoud Bassiouny</strong> for his hard work with us, really he is a very good person that rarely you can meet.</p>
<div class="wp-caption alignnone" style="width: 586px"><img class=" " title="On the metro station" src="http://lh5.ggpht.com/_Y7aar0xpUjs/SttgNdUYizI/AAAAAAAAAUg/nLCsRQUU5_s/s720/100_3068.JPG" alt="On the metro station after the contest (on our way back to Alex)" width="576" height="384" /><p class="wp-caption-text">On the metro station after the contest (on our way back to Alex)</p></div>
<p>And one of the comic situations that we have during the contest we have, in the submission system in the contest you can request a Clarification to the judge and he can reply to you only, or reply to all this clarification and publish it all the contestants. The judge has to reply to the important clarifications only and if it is a silly one he have to reply with standard reply which is &#8220;<strong>No Response, read the problem statement</strong>&#8220;, but the judge who is responsible for the clarifications in this contest wasn&#8217;t a good one as I think, first of all he was publishing all the clarifications even the ones who are replying to them with the standard reply, and also he is answering the silly questions such as &#8220;<strong>In cpp how can I use method sort, #include &lt;algorithm&gt; or not??</strong>&#8220;.. so I really bothered from these messages that popup during the contest so I sent to him a clarification asking him &#8220;<strong>Please don&#8217;t publish any clarification except the important ones</strong>&#8220;, so after a few minutes he replied to my clarification and published it too <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  and said &#8220;<strong><span style="color:#ff0000;">No Response, read the problem statement</span></strong>&#8221; <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  looool, I can&#8217;t say anything except looooool <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>And in our way back we went to abdel men&#8217;em riyad and took a bus at 11:00 pm and I have reached my home at the end at 3:00 am, I can&#8217;t wake up at the morning to go to the faculty and I waked up at 3:00 pm then after an hour I went to bed again to start my day at 8:30 pm <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Thanks to all my friends in this journey, and a great than to eng. Mahmoud Bassiouny. And <a href="http://cm.baylor.edu/public/worldMap/publicStandings.icpc?contestId=512&amp;cid=135257">here</a> are the Results for who want to check it <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Salam,</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mkotbcorp.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mkotbcorp.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mkotbcorp.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mkotbcorp.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mkotbcorp.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mkotbcorp.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mkotbcorp.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mkotbcorp.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mkotbcorp.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mkotbcorp.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mkotbcorp.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mkotbcorp.wordpress.com/243/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mkotbcorp.wordpress.com/243/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mkotbcorp.wordpress.com/243/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mkotbcorp.wordpress.com&amp;blog=4287055&amp;post=243&amp;subd=mkotbcorp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mkotbcorp.wordpress.com/2009/10/19/8th-acm-egyptian-national-contest-2009/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/42658bb75915c39e4a6d55b12d766b5d?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">mohammadkotb</media:title>
		</media:content>

		<media:content url="http://lh6.ggpht.com/_Y7aar0xpUjs/Sttf2mao_MI/AAAAAAAAAUI/zPIWQ6mEzFY/s720/100_3063.JPG" medium="image">
			<media:title type="html">Alexandra University - Faculty of Engineering teams</media:title>
		</media:content>

		<media:content url="http://lh5.ggpht.com/_Y7aar0xpUjs/Sttcu_UutOI/AAAAAAAAAR4/jHQ5wqzZMNk/s720/100_3026.JPG" medium="image">
			<media:title type="html">In the train with eng. Bassiouny asking him in some problems :)</media:title>
		</media:content>

		<media:content url="http://lh4.ggpht.com/_Y7aar0xpUjs/Stte58MVBbI/AAAAAAAAATg/9aEBOUD06Fw/s720/100_3053.JPG" medium="image">
			<media:title type="html">Alex Uni Engineering teams in the Opening session</media:title>
		</media:content>

		<media:content url="http://lh5.ggpht.com/_Y7aar0xpUjs/SttdahdLuuI/AAAAAAAAASc/t6rB6eTbjKE/s720/100_3035.JPG" medium="image">
			<media:title type="html">AlexCSE 1 during the practice session</media:title>
		</media:content>

		<media:content url="http://lh6.ggpht.com/_Y7aar0xpUjs/SttgIflpxyI/AAAAAAAAAUc/Alc7ltjuc7Q/s720/100_3067.JPG" medium="image">
			<media:title type="html">AlexCSE 1 after the contest before announcing results</media:title>
		</media:content>

		<media:content url="http://lh5.ggpht.com/_Y7aar0xpUjs/SttgNdUYizI/AAAAAAAAAUg/nLCsRQUU5_s/s720/100_3068.JPG" medium="image">
			<media:title type="html">On the metro station</media:title>
		</media:content>
	</item>
		<item>
		<title>A week ago</title>
		<link>http://mkotbcorp.wordpress.com/2009/10/13/a-week-ago/</link>
		<comments>http://mkotbcorp.wordpress.com/2009/10/13/a-week-ago/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 15:46:08 +0000</pubDate>
		<dc:creator>mohammadkotb</dc:creator>
				<category><![CDATA[ACM]]></category>
		<category><![CDATA[ACM ICPC]]></category>
		<category><![CDATA[Algorithms Contests]]></category>

		<guid isPermaLink="false">http://mkotbcorp.wordpress.com/?p=235</guid>
		<description><![CDATA[Elsalam 3alikom wow, It long ago since I wrote my last post it was in the summer when I was in eSpace , today I will take about an important event done in our faculty in the last week (Thursday 8th October 2009), we held an ACM contest practicing with other faculties as FCI-CU, AAST, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mkotbcorp.wordpress.com&amp;blog=4287055&amp;post=235&amp;subd=mkotbcorp&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div id="attachment_238" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-238" title="Eng. Bassiouny with organizers and AlexCSE teams" src="http://mkotbcorp.files.wordpress.com/2009/10/eng-bassiouny1.jpg?w=300&#038;h=225" alt="Eng. Bassiouny with organizers and AlexCSE teams" width="300" height="225" /><p class="wp-caption-text">Eng. Bassiouny with organizers and AlexCSE teams</p></div>
<p>Elsalam 3alikom</p>
<p>wow, It long ago since I wrote my last post it was in the summer when I was in <strong><span style="color:#0000ff;">eSpace</span></strong> <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> , today I will take about an important event done in our faculty in the last week (Thursday 8th October 2009), we held an ACM contest practicing with other faculties as<strong> FCI-CU, AAST, GUC, </strong>and<strong> AlexCSE</strong> <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Really, it was a very great day el Hamd L Allah (of course it contains some problems but it is a good day for the first time), we stayed in the college for 2 days before the contest preparing for it, really all of us we very tired before and after the contest all of us were working to finish all the tasks as soon as possible especially <strong>eng. Mahmoud Bassiouny</strong>, really this man exerted great effort in preparing this contest.</p>
<div id="attachment_239" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-239" title="AlexCSE 1 during the Contest" src="http://mkotbcorp.files.wordpress.com/2009/10/during.jpg?w=300&#038;h=225" alt="AlexCSE 1 during the Contest" width="300" height="225" /><p class="wp-caption-text">AlexCSE 1 during the Contest</p></div>
<p>Before the contest I was one of the main organizers in the contest, but during the contest I was a contest in &#8220;<span style="color:#800000;"><strong>AlexCSE 1</strong></span>&#8221; team <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  with my friends <strong>Abdel-Rahman El-sergani</strong> and <strong>Hussien Nomier</strong>, we are very tired in the contest and I want to sleep after two hours and can&#8217;t concentrate <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  but we tried to concentrate but we can&#8217;t solve more than 5 problems <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  and there are 3 problems we are working but we can&#8217;t finish them before the deadline of the contest <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  so el hamd L Allah.</p>
<p>Problems are with different levels, one of them is very easy Adhoc problem solved at the beginning of the contest in 7 minutes, then a Prime Generating problem we solved it quickly in less than 25 mins but there is a small bug in the code <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  I discovered it after 50 mins from the contest. Also there is an easy counting techniques problem solved by Hussien and other  2 problems (I think dynamic programming) solved by Abdel-Rahman. And then we can&#8217;t accpet any other problem <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  but we were working in  2 tree problems one solved by DFS and the other solved by Backtracking, and the third problem is making a Java Compiler but very simple contains only if, for, while and assignment statements, really I liked this problem and wrote the regex of the assignment statement and boolean expression but it doesn&#8217;t work during the contest, and worked after the contest when I went home <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<div id="attachment_240" class="wp-caption alignnone" style="width: 310px"><img class="size-medium wp-image-240" title="Teams after the contest" src="http://mkotbcorp.files.wordpress.com/2009/10/after.jpg?w=300&#038;h=225" alt="Teams after the contest" width="300" height="225" /><p class="wp-caption-text">Teams after the contest</p></div>
<p>After the contest I was very sad as there is an easy problem we didn&#8217;t finish but el hamd L Allah, after announcing the results we were in the<strong> 7th place</strong>. The standings &#8220;<strong>FCI-CU 1, FCI-CU 2, FCI-CU 3, AlexCSE 2, Gold Ace (GUC), IOI, AlexCSE 1</strong>&#8220;</p>
<p>Really I liked this contest too much especially that it is the first contest to be held in our college, and organized by <strong>Alexandria University ACM Student Chapter</strong>. I hope that my team get higher rank in the next contest, as there is <strong>ACM Egyptian National Contest</strong> next Saturday (17th October 2009) will be held in FCI-CU. Pray to us <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>regard,<br />
Mohammad Kotb</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mkotbcorp.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mkotbcorp.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mkotbcorp.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mkotbcorp.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mkotbcorp.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mkotbcorp.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mkotbcorp.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mkotbcorp.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mkotbcorp.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mkotbcorp.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mkotbcorp.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mkotbcorp.wordpress.com/235/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mkotbcorp.wordpress.com/235/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mkotbcorp.wordpress.com/235/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mkotbcorp.wordpress.com&amp;blog=4287055&amp;post=235&amp;subd=mkotbcorp&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mkotbcorp.wordpress.com/2009/10/13/a-week-ago/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/42658bb75915c39e4a6d55b12d766b5d?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">mohammadkotb</media:title>
		</media:content>

		<media:content url="http://mkotbcorp.files.wordpress.com/2009/10/eng-bassiouny1.jpg?w=300" medium="image">
			<media:title type="html">Eng. Bassiouny with organizers and AlexCSE teams</media:title>
		</media:content>

		<media:content url="http://mkotbcorp.files.wordpress.com/2009/10/during.jpg?w=300" medium="image">
			<media:title type="html">AlexCSE 1 during the Contest</media:title>
		</media:content>

		<media:content url="http://mkotbcorp.files.wordpress.com/2009/10/after.jpg?w=300" medium="image">
			<media:title type="html">Teams after the contest</media:title>
		</media:content>
	</item>
	</channel>
</rss>
