<?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>/log &#187; I code</title>
	<atom:link href="http://log.egamal.com/category/software/i-code/feed/" rel="self" type="application/rss+xml" />
	<link>http://log.egamal.com</link>
	<description>life.log()</description>
	<lastBuildDate>Fri, 06 Jan 2012 17:46:09 +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>Chm server</title>
		<link>http://log.egamal.com/2011/12/chm-server/</link>
		<comments>http://log.egamal.com/2011/12/chm-server/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 16:06:58 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[I code]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[chm]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[documentation]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://log.egamal.com/?p=383</guid>
		<description><![CDATA[It&#8217;s not so fancy but I love it. For Mac OSX Install chmlib: sudo ports install chmlib Now you&#8217;ll find the chm_http available and you are ready to serve the documentation. chm_http &#8211;port=8080 &#8211;bind=127.0.0.1 file.chm aaand now browse  http://127.0.0.1:8080 and you should find the file de-compiled and served for you Enjoy.]]></description>
		<wfw:commentRss>http://log.egamal.com/2011/12/chm-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using yield while generating the sum of first 1000 prime numbers</title>
		<link>http://log.egamal.com/2011/09/using-yield-while-generating-the-sum-of-first-1000-prime-numbers/</link>
		<comments>http://log.egamal.com/2011/09/using-yield-while-generating-the-sum-of-first-1000-prime-numbers/#comments</comments>
		<pubDate>Sat, 10 Sep 2011 20:20:05 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[I code]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://log.egamal.com/?p=358</guid>
		<description><![CDATA[I like using yield here and I was happy when I knew that scala has yield def oddNumbers(xlist): for item in xlist: item += 2 xlist.append(item) yield item oddNumbers = oddNumbers([7]) primeNumbers = [2, 3, 5, 7] count = 3 summation = 17 for item in oddNumbers: isPrime = True for otherItem in primeNumbers: if [...]]]></description>
		<wfw:commentRss>http://log.egamal.com/2011/09/using-yield-while-generating-the-sum-of-first-1000-prime-numbers/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>biggest prime palindrome under 1000.</title>
		<link>http://log.egamal.com/2011/08/prime-palindrome/</link>
		<comments>http://log.egamal.com/2011/08/prime-palindrome/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 11:14:14 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[I code]]></category>
		<category><![CDATA[me.status()]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[CodeEval]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://log.egamal.com/?p=337</guid>
		<description><![CDATA[I had that problem in CodeEval: Write a program to determine the biggest prime palindrome under 1000. And my solution passed i don&#8217;t know if they have other levels than pass but it passed anyway.. Here you are: oddNumbers = [2] + range(3, 1000, 2) primeNumbers = [] ppNumbers =[] for item in oddNumbers: isPrime [...]]]></description>
		<wfw:commentRss>http://log.egamal.com/2011/08/prime-palindrome/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Singleton mySQL database connection using PHP</title>
		<link>http://log.egamal.com/2010/06/singleton-php/</link>
		<comments>http://log.egamal.com/2010/06/singleton-php/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 09:57:48 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[I code]]></category>
		<category><![CDATA[I recommend]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[design patterns]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://log.egamal.com/?p=262</guid>
		<description><![CDATA[السلام عليكم و رحمة الله و بركاته فيما يلي مثال على الـ Singleton Design Pattern و هو ما يعطيك الإمكانية في الحصول علي فقط نسخة واحدة من أي مورد تريد إستخدامه .. في هذة الحالة مثلا الإتصال بقاعدة البيانات و ذلك بأن تستخدم الدالة getConnection بدلا من عمل نسخة جديدة من connection كل مرة هتحاول [...]]]></description>
		<wfw:commentRss>http://log.egamal.com/2010/06/singleton-php/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>yield statement .. by example</title>
		<link>http://log.egamal.com/2010/06/yield-statement-and-generators/</link>
		<comments>http://log.egamal.com/2010/06/yield-statement-and-generators/#comments</comments>
		<pubDate>Sun, 27 Jun 2010 19:45:02 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[I code]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[design patterns]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://log.egamal.com/?p=256</guid>
		<description><![CDATA[السلام عليكم و رحمة الله وبركاته ده تمرين بسيط علىyield statement def simpleGenerator( anyList ): for item in anyList: yield item myList = ['Ahmed', 'AlSayed', 'AbdulHameed', 'Osama', 'Gamal'] nameGenerator = simpleGenerator( myList ) for name in myItemsList: print name print myItemsList.next() print myItemsList.next() print myItemsList.next() وده بس عشان البلوج كان عشش فيه العنكبوت ..]]></description>
		<wfw:commentRss>http://log.egamal.com/2010/06/yield-statement-and-generators/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Primes Problem in Python</title>
		<link>http://log.egamal.com/2010/02/primes-exceed-time-limit/</link>
		<comments>http://log.egamal.com/2010/02/primes-exceed-time-limit/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 09:39:25 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[I code]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[SPOJ]]></category>
		<category><![CDATA[writing scripts]]></category>

		<guid isPermaLink="false">http://log.egamal.com/?p=241</guid>
		<description><![CDATA[السلام عليكم و رحمة الله و بركاته Lately I decided to give SPOJ website a try .. And my first problem after the TEST problem was the &#8220;PRIME1&#8221; problem.. Which is basically finding the prime numbers between 2 given numbers .. Yesterday, regardless the fact of being truly ill and I hardly could open my [...]]]></description>
		<wfw:commentRss>http://log.egamal.com/2010/02/primes-exceed-time-limit/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>tadabor.com, one more 7-12 website</title>
		<link>http://log.egamal.com/2010/01/tadabor-com-one-more-7-12-website/</link>
		<comments>http://log.egamal.com/2010/01/tadabor-com-one-more-7-12-website/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 06:47:18 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[I code]]></category>
		<category><![CDATA[I recommend]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[أخبار]]></category>
		<category><![CDATA[7-12]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://log.egamal.com/?p=188</guid>
		<description><![CDATA[السلام عليكم و رحمة الله وبركاته الحمد لله والصلاة والسلام على رسول الله أنه لمن دواعي سروري ان أعلن إني فعلا فخور بموقع الهيئة العالمية لتدبر القرآن الكريم و شكرا لـ: My dear framework 7-12 م.محمد العشري مدير شركة تدبر وشكر خاص جدا ..  لماهر سيف &#8220;الماهر بأمر الله &#8221; اللي بهدل ٧-١٢    فريق التصميم [...]]]></description>
		<wfw:commentRss>http://log.egamal.com/2010/01/tadabor-com-one-more-7-12-website/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>XML, The eXtensible Markup Language</title>
		<link>http://log.egamal.com/2010/01/xml-ill/</link>
		<comments>http://log.egamal.com/2010/01/xml-ill/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 08:37:27 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[I code]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Talking2Myself]]></category>
		<category><![CDATA[7-12]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[framework]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[scaffolding]]></category>
		<category><![CDATA[web2.0]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://log.egamal.com/?p=184</guid>
		<description><![CDATA[السلام عليكم و رحمة الله و بركاته Lately, I&#8217;m interested in making more semantic web applications or at least applications that has XML meaningful output instead of XHTML or HTML.. Also I&#8217;m interested in MVC design pattern and the CRUD scaffolding technique had a great impact on my productivity, My Framework 7-12 used to create [...]]]></description>
		<wfw:commentRss>http://log.egamal.com/2010/01/xml-ill/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I deactivated my FB &#8211; Random Updates</title>
		<link>http://log.egamal.com/2009/01/i-deactivated-my-fb-random-updates/</link>
		<comments>http://log.egamal.com/2009/01/i-deactivated-my-fb-random-updates/#comments</comments>
		<pubDate>Sat, 24 Jan 2009 08:38:53 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[CAT]]></category>
		<category><![CDATA[I code]]></category>
		<category><![CDATA[me.status()]]></category>
		<category><![CDATA[persona]]></category>
		<category><![CDATA[raw log]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://log.egamal.com/?p=103</guid>
		<description><![CDATA[Al Salam 3lykom I deactivated my facebook account. Yes,  We &#8211; Arab an Egyptians- are social ENOUGH .. we don&#8217;t need any social web apps, including Facebook SCS System is done, Special thanks goes to Ahmed Sameh Patience My Exams are done Al 7amd lellah I caught cold that I wasn&#8217;t able to go out [...]]]></description>
		<wfw:commentRss>http://log.egamal.com/2009/01/i-deactivated-my-fb-random-updates/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>veryActiveRecord &#8212; seven12</title>
		<link>http://log.egamal.com/2008/11/veryactiverecord-seven12/</link>
		<comments>http://log.egamal.com/2008/11/veryactiverecord-seven12/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 06:49:55 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[AGENDATO..]]></category>
		<category><![CDATA[I code]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[active records]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[Frameworks]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[ROR]]></category>
		<category><![CDATA[RUBY on Rails]]></category>
		<category><![CDATA[scaffolding]]></category>

		<guid isPermaLink="false">http://log.egamal.com/?p=92</guid>
		<description><![CDATA[السلام عليكم ورحمة الله وبركاته 7-12 framework now has better scaffolding and is clean urls [URL rewriting] I&#8217;ve been working on it the last days but the very strange thing is .. I&#8217;m working shallow issues .. Mainly, I forgot that seven12 have a MODEL problem .. Major problem .. it&#8217;s not yet an active [...]]]></description>
		<wfw:commentRss>http://log.egamal.com/2008/11/veryactiverecord-seven12/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

