<?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>Web Development - Programming - Coding Recipes</title>
	<atom:link href="http://codingrecipes.com/feed" rel="self" type="application/rss+xml" />
	<link>http://codingrecipes.com</link>
	<description></description>
	<lastBuildDate>Tue, 09 Mar 2010 19:41:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<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[GIT]]></category>
		<category><![CDATA[General]]></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 some [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/beginning-source-code-management-with-git-tutorial-part-1/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GIT: How To Setup Notepad As Text Editor For GIT On Windows</title>
		<link>http://codingrecipes.com/git-how-to-setup-notepad-as-text-editor-for-git-on-windows</link>
		<comments>http://codingrecipes.com/git-how-to-setup-notepad-as-text-editor-for-git-on-windows#comments</comments>
		<pubDate>Fri, 05 Mar 2010 20:11:51 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[GIT]]></category>

		<guid isPermaLink="false">http://codingrecipes.com/?p=820</guid>
		<description><![CDATA[It&#8217;s very simple, try:
git config &#8211;global core.editor &#8220;notepad.exe&#8221;
]]></description>
		<wfw:commentRss>http://codingrecipes.com/git-how-to-setup-notepad-as-text-editor-for-git-on-windows/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GIT: &#8220;Fatal: Dirty index: Cannot revert&#8221; error message</title>
		<link>http://codingrecipes.com/git-fatal-dirty-index-cannot-revert-error-message</link>
		<comments>http://codingrecipes.com/git-fatal-dirty-index-cannot-revert-error-message#comments</comments>
		<pubDate>Fri, 05 Mar 2010 05:45:01 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[GIT]]></category>

		<guid isPermaLink="false">http://codingrecipes.com/?p=818</guid>
		<description><![CDATA[If you get this error message while trying to revert, then try &#8220;git status&#8221; because you have uncommitted changes&#8230;
]]></description>
		<wfw:commentRss>http://codingrecipes.com/git-fatal-dirty-index-cannot-revert-error-message/feed</wfw:commentRss>
		<slash:comments>0</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[Programming]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[jQuery]]></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) button [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/jquery-ui-dialog-and-the-enter-return-key-problem/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>document.getElementById On All Browsers  &#8211; Cross browser getElementById</title>
		<link>http://codingrecipes.com/documentgetelementbyid-on-all-browsers-cross-browser-getelementbyid</link>
		<comments>http://codingrecipes.com/documentgetelementbyid-on-all-browsers-cross-browser-getelementbyid#comments</comments>
		<pubDate>Mon, 08 Feb 2010 19:33:03 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Browsers]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=801</guid>
		<description><![CDATA[Here is a little JavaScript function that gets an object according to it&#8217;s id and it&#8217;s cross browser.

/*********************************************************************
   * Get an object, this function is cross browser
   * Usage:
   * var object = get_object(element_id);
   * @Author Hamid Alipour http://blog.code-head.com/
  **/
  function get_object&#40;id&#41; &#123;
   [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/documentgetelementbyid-on-all-browsers-cross-browser-getelementbyid/feed</wfw:commentRss>
		<slash:comments>0</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 memory if [...]]]></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>0</slash:comments>
		</item>
		<item>
		<title>Some Fun Stuff</title>
		<link>http://codingrecipes.com/some-fun-stuff</link>
		<comments>http://codingrecipes.com/some-fun-stuff#comments</comments>
		<pubDate>Sat, 06 Feb 2010 21:38:05 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=794</guid>
		<description><![CDATA[1 &#8211; Did you know that there were only 300 years of peace on Earth in total?
2 &#8211; GPS satellites have atomic clocks that tick at around a few billion times per second, did you know that their clocks tick a little faster than the clocks on earth? This is what Albert Einstein predicted, clocks [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/some-fun-stuff/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>onMouseOut fix on nested elements &#8211; JavaScript</title>
		<link>http://codingrecipes.com/onmouseout-fix-on-nested-elements-javascript</link>
		<comments>http://codingrecipes.com/onmouseout-fix-on-nested-elements-javascript#comments</comments>
		<pubDate>Wed, 03 Feb 2010 23:07:14 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=792</guid>
		<description><![CDATA[When you have nested elements and you add an onMouseOut event handler to the parent element, browsers trigger onMouseOut event when mouse pointer hovers it&#8217;s child elements.
While this is a standard behaviour, for one project I needed to write a code to override this behaviour.
With this code, when you mouse over the child elements, onMouseOut [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/onmouseout-fix-on-nested-elements-javascript/feed</wfw:commentRss>
		<slash:comments>1</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 are the AJAX tutorials…
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>1</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 are the AJAX tutorials…
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. It starts [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/learning-php-best-php-books/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
