<?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>Hamid Alipour on Web Development &#38; Programming - Coding Recipes &#187; Programming</title>
	<atom:link href="http://codingrecipes.com/category/programming/feed" rel="self" type="application/rss+xml" />
	<link>http://codingrecipes.com</link>
	<description></description>
	<lastBuildDate>Thu, 12 Jan 2012 20:08:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<item>
		<title>Understanding Pointers In C &#8211; C Pointers Tutorial</title>
		<link>http://codingrecipes.com/understanding-pointers-in-c-c-pointers-tutorial</link>
		<comments>http://codingrecipes.com/understanding-pointers-in-c-c-pointers-tutorial#comments</comments>
		<pubDate>Thu, 17 Jun 2010 08:45:08 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[C Programming]]></category>
		<category><![CDATA[Data Structures]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://codingrecipes.com/?p=997</guid>
		<description><![CDATA[We need to cover some ground so be patient and you will learn all about pointers. A computer stores variables in it&#8217;s memory and the memory is basically a series of zeros and ones. So if you could see the raw contents of your RAM you would see something similar to this: 010010010111111101010010101001010100101111001010100111001 Although your [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/understanding-pointers-in-c-c-pointers-tutorial/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Create WordPress Widgets</title>
		<link>http://codingrecipes.com/how-to-create-wordpress-widgets</link>
		<comments>http://codingrecipes.com/how-to-create-wordpress-widgets#comments</comments>
		<pubDate>Fri, 14 May 2010 23:43:58 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://codingrecipes.com/?p=926</guid>
		<description><![CDATA[No need for a huge fancy post, here is a very simple WordPress widget: You must paste this code into your theme&#8217;s functions.php file located at: /wp-content/themes/YOUR_THEME class My_Simple_Widget { &#160; function control(){ $data = get_option('My_Simple_Widget_data'); ?&#62; &#60;p&#62;&#60;label&#62;Title:&#60;/label&#62; &#60;input name=&#34;My_Simple_Widget_title&#34; type=&#34;text&#34; value=&#34;&#60;?php echo $data&#91;'title'&#93;; ?&#62;&#34; /&#62;&#60;/p&#62; You can have whatever you want here, even a [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/how-to-create-wordpress-widgets/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Python SQLite3 In Multiple Threads</title>
		<link>http://codingrecipes.com/python-sqlite3-in-multiple-threads</link>
		<comments>http://codingrecipes.com/python-sqlite3-in-multiple-threads#comments</comments>
		<pubDate>Thu, 22 Apr 2010 18:38:59 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[SQLite]]></category>

		<guid isPermaLink="false">http://codingrecipes.com/?p=902</guid>
		<description><![CDATA[If you create your database in a thread &#8211; usually the main thread &#8211; and try to use it in another thread your will get: ProgrammingError: SQLite objects created in a thread can only be used in that same thread.The object was created in thread id SOME_ID and this is thread id SOME_ID This is [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/python-sqlite3-in-multiple-threads/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Best Python Code Editor: Komodo Edit</title>
		<link>http://codingrecipes.com/the-best-python-code-editor-komodo-edit</link>
		<comments>http://codingrecipes.com/the-best-python-code-editor-komodo-edit#comments</comments>
		<pubDate>Tue, 20 Apr 2010 02:46:59 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[Annoying Stuff]]></category>
		<category><![CDATA[IDEs]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://codingrecipes.com/?p=894</guid>
		<description><![CDATA[I looked for a Python editor a lot, I found Pydev which is a plugin for Eclipse and since Eclipse sucks, it&#8217;s ugly and the code looks ugly too, it just kills my creativity, it&#8217;s also slow on top of that. Then I found IronPython plugin for Microsoft Visual Studio, this one requires Visual Studio [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/the-best-python-code-editor-komodo-edit/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Beginning Source Code Management With GIT Tutorial Part 1</title>
		<link>http://codingrecipes.com/beginning-source-code-management-with-git-tutorial-part-1</link>
		<comments>http://codingrecipes.com/beginning-source-code-management-with-git-tutorial-part-1#comments</comments>
		<pubDate>Fri, 05 Mar 2010 21:33:00 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[GIT]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://codingrecipes.com/?p=822</guid>
		<description><![CDATA[If you are not using anything like GIT and you just use simple folders for development then I&#8217;m sure you have had situations where you needed to make some changes but broke the whole thing. Or consider the situation where you had a huge idea and it required rewrite of a lot of things OR [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/beginning-source-code-management-with-git-tutorial-part-1/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>jQuery UI Dialog And The Enter &#8211; Return Key Problem</title>
		<link>http://codingrecipes.com/jquery-ui-dialog-and-the-enter-return-key-problem</link>
		<comments>http://codingrecipes.com/jquery-ui-dialog-and-the-enter-return-key-problem#comments</comments>
		<pubDate>Thu, 18 Feb 2010 06:53:38 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[Annoying Stuff]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=810</guid>
		<description><![CDATA[This is another post for my &#8216;Annoying Stuff&#8217; collection and this one is very, so very annoying&#8230; The problem is that jQuery UI, supports forms in dialogs but the problem is that a user can&#8217;t hit &#8216;Enter&#8217; to submit the form, it will break everything, a user has to actually hit the &#8216;Submit&#8217; (or whatever) [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/jquery-ui-dialog-and-the-enter-return-key-problem/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Script For Counting Number Of Lines Of Code In Your Website; Composite Design Pattern</title>
		<link>http://codingrecipes.com/script-for-counting-number-of-lines-of-code-in-your-website-composite-design-pattern</link>
		<comments>http://codingrecipes.com/script-for-counting-number-of-lines-of-code-in-your-website-composite-design-pattern#comments</comments>
		<pubDate>Mon, 08 Feb 2010 19:27:06 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[Design Patterns]]></category>
		<category><![CDATA[Fun]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=798</guid>
		<description><![CDATA[This is another thread from our forums which we are closing down soon. This script will count the number of lines in all of your source files recursively. Just place it in any folder and point your browser to it and it will count all the lines including sub directories. It might run out of [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/script-for-counting-number-of-lines-of-code-in-your-website-composite-design-pattern/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>PHP MySQL Web Development Security Tips &#8211; 14 tips you should know when developing with PHP and MySQL</title>
		<link>http://codingrecipes.com/php-mysql-web-development-security-tips-14-tips-you-should-know-when-developing-with-php-and-mysql</link>
		<comments>http://codingrecipes.com/php-mysql-web-development-security-tips-14-tips-you-should-know-when-developing-with-php-and-mysql#comments</comments>
		<pubDate>Wed, 03 Feb 2010 00:12:06 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=787</guid>
		<description><![CDATA[We are closing down our forums, it’s time to move on, but we are keeping some important threads, here is one… PHP MySQL Web Development Security Tips &#8211; 14 tips you should know when developing with PHP and MySQL I read about many of these points in books and tutorials but I was rather lazy [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/php-mysql-web-development-security-tips-14-tips-you-should-know-when-developing-with-php-and-mysql/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Learning PHP &#8211; best PHP books</title>
		<link>http://codingrecipes.com/learning-php-best-php-books</link>
		<comments>http://codingrecipes.com/learning-php-best-php-books#comments</comments>
		<pubDate>Wed, 03 Feb 2010 00:08:15 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=785</guid>
		<description><![CDATA[We are closing down our forums, it’s time to move on, but we are keeping some important threads, here is one… Learning PHP &#8211; best PHP books PHP and MySQL Web Development (4th Edition) (Developer&#8217;s Library) (Hardcover) by, Luke Welling and Laura Thomson This book is one of the best books on PHP and MySQL. [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/learning-php-best-php-books/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP; Advancing Array Pointer In a Foreach Loop</title>
		<link>http://codingrecipes.com/php-advancing-array-pointer-in-a-foreach-loop</link>
		<comments>http://codingrecipes.com/php-advancing-array-pointer-in-a-foreach-loop#comments</comments>
		<pubDate>Thu, 14 Jan 2010 01:38:18 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=729</guid>
		<description><![CDATA[This is not possible because &#8216;foreach&#8217; operates on a copy of the array so there is no way to do it, don&#8217;t waste your time BUT You can work around this by replacing the &#8216;foreach&#8217; with a &#8216;while&#8217; loop, but before you do so, you must know that the following loops are functionally identical: foreach [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/php-advancing-array-pointer-in-a-foreach-loop/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

