<?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>J.P. McGarrity.com &#187; coding</title>
	<atom:link href="http://jpmcgarrity.com/blog/category/coding/feed/" rel="self" type="application/rss+xml" />
	<link>http://jpmcgarrity.com/blog</link>
	<description>Focusing on the Front End</description>
	<lastBuildDate>Sat, 30 Apr 2011 16:40:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>JavaScript Event Listener with CSS3 Webkit Animations</title>
		<link>http://jpmcgarrity.com/blog/2011/03/javascript-event-listener-with-css3-webkit-animations/</link>
		<comments>http://jpmcgarrity.com/blog/2011/03/javascript-event-listener-with-css3-webkit-animations/#comments</comments>
		<pubDate>Sun, 13 Mar 2011 07:10:46 +0000</pubDate>
		<dc:creator>J.P.</dc:creator>
				<category><![CDATA[CSS 3]]></category>
		<category><![CDATA[IOS]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[css/html]]></category>

		<guid isPermaLink="false">http://jpmcgarrity.com/blog/?p=743</guid>
		<description><![CDATA[CSS3 has a property called &#8220;webkitAnimationEnd&#8221; which can be used as an event lister in JavaScript.
function cssAnimationEnd() {
	//looks for the ID box from the css and fires the event listen when the animation is complete.
    box.addEventListener( 'webkitAnimationEnd', function( event ){
		alert( "Finished animation!" );
	}, false );
}
Working with event listers like this it is [...]]]></description>
			<content:encoded><![CDATA[<p>CSS3 has a property called &#8220;webkitAnimationEnd&#8221; which can be used as an event lister in JavaScript.</p>
<p><code>function cssAnimationEnd() {<br />
	//looks for the ID box from the css and fires the event listen when the animation is complete.<br />
    box.addEventListener( 'webkitAnimationEnd', function( event ){<br />
		alert( "Finished animation!" );<br />
	}, false );<br />
}</code></p>
<p>Working with event listers like this it is possible to chain CSS animations. This is a great method to use on IOS devices to improve animation frames compared to only working wth JavaScript.</p>
]]></content:encoded>
			<wfw:commentRss>http://jpmcgarrity.com/blog/2011/03/javascript-event-listener-with-css3-webkit-animations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic Javascript Closure</title>
		<link>http://jpmcgarrity.com/blog/2011/03/basic-javascript-closure/</link>
		<comments>http://jpmcgarrity.com/blog/2011/03/basic-javascript-closure/#comments</comments>
		<pubDate>Wed, 09 Mar 2011 12:54:54 +0000</pubDate>
		<dc:creator>J.P.</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://jpmcgarrity.com/blog/?p=725</guid>
		<description><![CDATA[Here is an example of a basic use of Javascript closure. A benefit of using a closure is it will not get cleaned up by garbage collection and cab be reused.
		function whoAmI(param){ // create the outer function and pass in the name
			var name = param; // name is equal to the param you passed in
			function [...]]]></description>
			<content:encoded><![CDATA[<p>Here is an example of a basic use of Javascript closure. A benefit of using a closure is it will not get cleaned up by garbage collection and cab be reused.<br />
<code>		function whoAmI(param){ // create the outer function and pass in the name<br />
			var name = param; // name is equal to the param you passed in<br />
			function myNameIs(){ // define the inner function so garbage collection won't remove it.<br />
				alert('hello: '+name);<br />
			}<br />
			return myNameIs; //return the function<br />
		}<br />
		$(document).ready(function() {<br />
			var nameToPass = 'Johnny Quest'; // create the name for the function<br />
			var myWhoAmI = whoAmI(nameToPass); //create var for the class and pass the name in.<br />
			myWhoAmI(); // run instance of the class. Note:Passing name here will be undifined based on scope.<br />
		});</code></p>
<p><a href="http://jpmcgarrity.com/examples/javascript/closureExample1/">View Example Page Here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jpmcgarrity.com/blog/2011/03/basic-javascript-closure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable GZip in an .htaccess file</title>
		<link>http://jpmcgarrity.com/blog/2011/03/enable-gzip-in-an-htaccess-file/</link>
		<comments>http://jpmcgarrity.com/blog/2011/03/enable-gzip-in-an-htaccess-file/#comments</comments>
		<pubDate>Thu, 03 Mar 2011 23:04:45 +0000</pubDate>
		<dc:creator>J.P.</dc:creator>
				<category><![CDATA[coding]]></category>

		<guid isPermaLink="false">http://jpmcgarrity.com/blog/?p=704</guid>
		<description><![CDATA[Here is the code to enable gzip in an .htaccess file.
 # compress text, html, javascript, css, xml:
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/xml
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/x-javascript
Here is a good read on why to use GZIP.
Once enabled you can see the site load improvement here: http://www.whatsmyip.org/http_compression/
View [...]]]></description>
			<content:encoded><![CDATA[<p>Here is the code to enable gzip in an .htaccess file.<br />
<code> # compress text, html, javascript, css, xml:<br />
AddOutputFilterByType DEFLATE text/plain<br />
AddOutputFilterByType DEFLATE text/html<br />
AddOutputFilterByType DEFLATE text/xml<br />
AddOutputFilterByType DEFLATE text/css<br />
AddOutputFilterByType DEFLATE application/xml<br />
AddOutputFilterByType DEFLATE application/xhtml+xml<br />
AddOutputFilterByType DEFLATE application/rss+xml<br />
AddOutputFilterByType DEFLATE application/javascript<br />
AddOutputFilterByType DEFLATE application/x-javascript</code><br />
<a href="http://betterexplained.com/articles/how-to-optimize-your-site-with-gzip-compression/">Here</a> is a good read on why to use GZIP.</p>
<p>Once enabled you can see the site load improvement here: <a href="http://www.whatsmyip.org/http_compression/">http://www.whatsmyip.org/http_compression/</a></p>
<p>View the compression results for this site <a href="http://www.whatsmyip.org/http_compression/?url=aHR0cDovL2pwbWNnYXJyaXR5LmNvbQ==">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://jpmcgarrity.com/blog/2011/03/enable-gzip-in-an-htaccess-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pseudo Elements :before and :after with CSS 2.1</title>
		<link>http://jpmcgarrity.com/blog/2011/03/pseudo-elements-before-and-after-with-css-2-1/</link>
		<comments>http://jpmcgarrity.com/blog/2011/03/pseudo-elements-before-and-after-with-css-2-1/#comments</comments>
		<pubDate>Thu, 03 Mar 2011 13:10:43 +0000</pubDate>
		<dc:creator>J.P.</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[css 2.1]]></category>
		<category><![CDATA[css/html]]></category>
		<category><![CDATA[css/xhtml]]></category>

		<guid isPermaLink="false">http://jpmcgarrity.com/blog/?p=698</guid>
		<description><![CDATA[Here is a quick example of how to use Pseudo elements &#8220;:before&#8221; and &#8220;:after&#8221; with css.
			li{
				display:block;
			}
			li:before{
				content:"This is red from :before";
				color:red;
			}
			li:after{
				content:"This is blue from after";
				color:blue;
			}
Click here for the demo page
]]></description>
			<content:encoded><![CDATA[<p>Here is a quick example of how to use Pseudo elements &#8220;:before&#8221; and &#8220;:after&#8221; with css.<br />
<code>			li{<br />
				display:block;<br />
			}<br />
			li:before{<br />
				content:"This is red from :before";<br />
				color:red;<br />
			}<br />
			li:after{<br />
				content:"This is blue from after";<br />
				color:blue;<br />
			}</code></p>
<p><a href="http://jpmcgarrity.com/examples/css/pseudo/pseudoBeforeAfter.html">Click here for the demo page</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jpmcgarrity.com/blog/2011/03/pseudo-elements-before-and-after-with-css-2-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JS Closure Video</title>
		<link>http://jpmcgarrity.com/blog/2011/02/js-closure-video/</link>
		<comments>http://jpmcgarrity.com/blog/2011/02/js-closure-video/#comments</comments>
		<pubDate>Tue, 01 Mar 2011 01:21:18 +0000</pubDate>
		<dc:creator>J.P.</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[coding]]></category>

		<guid isPermaLink="false">http://jpmcgarrity.com/blog/?p=694</guid>
		<description><![CDATA[
Stuart Langridge: Secrets of JavaScript Closures, part 1 from Ilja van den Berg on Vimeo.
]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://player.vimeo.com/video/1967261" width="400" height="320" frameborder="0"></iframe>
<p><a href="http://vimeo.com/1967261">Stuart Langridge: Secrets of JavaScript Closures, part 1</a> from <a href="http://vimeo.com/youngproict">Ilja van den Berg</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://jpmcgarrity.com/blog/2011/02/js-closure-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery SlideDown SlideUp</title>
		<link>http://jpmcgarrity.com/blog/2010/05/jquery-slidedown-slideup/</link>
		<comments>http://jpmcgarrity.com/blog/2010/05/jquery-slidedown-slideup/#comments</comments>
		<pubDate>Tue, 11 May 2010 02:29:12 +0000</pubDate>
		<dc:creator>J.P.</dc:creator>
				<category><![CDATA[coding]]></category>

		<guid isPermaLink="false">http://jpmcgarrity.com/blog/?p=615</guid>
		<description><![CDATA[Here is an basic example on how to create a jQeury toggle using the slideDown and SlideUp functions.
I prefer to use this instead of the toggle function for a smoother animation.

View the example
jQuery code used:
$(document).ready(function() {
	$('#toggle_control').bind('click', function() {
		if ( $('#copy_toggle').is(':hidden') ) {
			$("#copy_toggle").slideDown('medium', function() {
			  });
		}
		else{
			$("#copy_toggle").slideUp('medium', function() {
			    // Animation complete.
			  [...]]]></description>
			<content:encoded><![CDATA[<p>Here is an basic example on how to create a jQeury toggle using the slideDown and SlideUp functions.<br />
I prefer to use this instead of the toggle function for a smoother animation.
</p>
<p><a href="/examples/jquery/jquery_slide_toggle.html">View the example</a></p>
<p><b>jQuery code used:</b><br />
<code>$(document).ready(function() {<br />
	$('#toggle_control').bind('click', function() {<br />
		if ( $('#copy_toggle').is(':hidden') ) {<br />
			$("#copy_toggle").slideDown('medium', function() {<br />
			  });<br />
		}<br />
		else{<br />
			$("#copy_toggle").slideUp('medium', function() {<br />
			    // Animation complete.<br />
			  });<br />
		}<br />
	    return false;<br />
	});<br />
});</code></p>
]]></content:encoded>
			<wfw:commentRss>http://jpmcgarrity.com/blog/2010/05/jquery-slidedown-slideup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Font CSS Substitution Methods</title>
		<link>http://jpmcgarrity.com/blog/2009/09/font-css-substitution-methods/</link>
		<comments>http://jpmcgarrity.com/blog/2009/09/font-css-substitution-methods/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 18:30:36 +0000</pubDate>
		<dc:creator>J.P.</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[css/xhtml]]></category>

		<guid isPermaLink="false">http://jpmcgarrity.com/blog/?p=553</guid>
		<description><![CDATA[
Many new methods of font substitution are coming of the wood work and old methods are now getting a second look.
@font-face method
The @font-face method was added to the CSS2 spec but then not recommended in CSS2.1. However with CSS3 it&#8217;s back and supported by most popular modern browsers. Read about @font-face at W3.org.
This method requires [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-565" title="font-image" src="http://jpmcgarrity.com/blog/wp-content/uploads/2009/09/font-image1.gif" alt="font-image" width="675" height="167" /></p>
<p>Many new methods of font substitution are coming of the wood work and old methods are now getting a second look.</p>
<h4>@font-face method</h4>
<p>The @font-face method was added to the CSS2 spec but then not recommended in CSS2.1. However with CSS3 it&#8217;s back and supported by most popular modern browsers. Read about @font-face at <a href="http://www.w3.org/TR/css3-fonts/#the-font-face-rule">W3.org</a>.</p>
<p>This method requires the font being loaded on the server and will cause a slight flickering of the font rendering while it is stored in the cache. The plus side of this method is it&#8217;s easy to implement and requires no JavaScript.</p>
<p>Here is an example of @font-face being used. <a href="http://jpmcgarrity.com/examples/css/fonts/">Click Here </a></p>
<h6>Sample CSS code used (Note: font is stored on the server)</h6>
<p><code>@font-face {<br />
font-family: 'BrushScript';<br />
src: url('BrushScript.ttf') format("truetypefont");<br />
}<br />
/* for IE */<br />
@font-face {<br />
font-family: 'BrushScript';<br />
src: url(BrushScript.ttf);<br />
}<br />
body {<br />
font-family: 'BrushScript', helvetica; /*degrades to a standard web font if unavailable */<br />
font-size:1em;<br />
}</code></p>
<h4>Cufon JavaScript Method</h4>
<p>This currently my personal favorite method. No font is stored on the server and there is no flicker of the font while loading. The wizard also provides many options and settings so you can customize the needs for your site.</p>
<h6>Easy to add</h6>
<p>Cufon provides a simple method for converting fonts on your local machine into a js file that you include in the header along with the Cufon script. A simple replace call is used to substitute the font. <a href="http://cufon.shoqolate.com/generate/">Read more about Cufon here</a></p>
<p><a href="http://jpmcgarrity.com/examples/css/fonts2/">Example of the Cufon Method »</a></p>
<h6>Example Header Code</h6>
<p><code>&lt;script src="cufon-yui.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="AGaramondPro_400-AGaramondPro_700-AGaramondPro_italic_400.font.js" type="text/javascript"&gt;&lt;/script&gt;<br />
&lt;script type="text/javascript"&gt;Cufon.replace('h1');Cufon.replace('p');&lt;/script&gt;</code></p>
<h4>Background Image method</h4>
<p>This method is good for replacing a few headers and best method to use with the logo of your site. Detailed px to px cross browser look with the design is needed while the code remains semantic. This method has been implemented in this version of my site since for major section H1 headers and the logo of the site.</p>
<h6>XHTML Example Code</h6>
<p><code>&lt;h3 id="Portfolio"&gt;Portfolio&lt;/h3&gt;</code></p>
<h6>CSS Example Code</h6>
<p><code>h3#Portfolio<br />
{<br />
background:url('/portfolio/2009/gfx/title_portfolio-trans.png') no-repeat;<br />
text-indent: -9999px;<br />
width:229px;<br />
height:61px;<br />
}</code></p>
<p>This will work with all browsers. A list will be added shortly of the other methods and their support.</p>
]]></content:encoded>
			<wfw:commentRss>http://jpmcgarrity.com/blog/2009/09/font-css-substitution-methods/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Work with PHP5 locally on your Mac</title>
		<link>http://jpmcgarrity.com/blog/2009/08/work-with-php5-locally-on-your-mac/</link>
		<comments>http://jpmcgarrity.com/blog/2009/08/work-with-php5-locally-on-your-mac/#comments</comments>
		<pubDate>Wed, 12 Aug 2009 16:32:59 +0000</pubDate>
		<dc:creator>J.P.</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[php5]]></category>

		<guid isPermaLink="false">http://jpmcgarrity.com/blog/?p=465</guid>
		<description><![CDATA[
Here are few quick steps to turn on PHP5 on your mac. This an easy modification allowing you to work with in your WebServer folder.
Note: To use this method 10.5+ is required.

With your favorite text editor (I recommend Textmate) open Macintosh HD/private/etc/apache2/httpd.conf. You must allow hidden files to be seem to view and open.
Once the [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-469" title="phpimage" src="http://jpmcgarrity.com/blog/wp-content/uploads/2009/08/phpimage2.jpg" alt="phpimage" width="630" height="502" /></p>
<p>Here are few quick steps to turn on PHP5 on your mac. This an easy modification allowing you to work with in your WebServer folder.</p>
<p><strong>Note:</strong> To use this method 10.5+ is required.</p>
<ul>
<li>With your favorite text editor (I recommend Textmate) open Macintosh HD/private/etc/apache2/httpd.conf. You must allow hidden files to be seem to view and open.</li>
<li>Once the httpd.conf file has been opened go to line #114 and edit the following <code>#LoadModule php5_module      libexec/apache2/libphp5.so</code> remove the &#8220;#&#8221; sign and save the file. You will be prompted to enter root password.</li>
<li>With Terminal open, type the following series of commands, each followed by Return:<br />
<code>cd /private/etc<br />
sudo cp php.ini.default php.ini</code></li>
<li>Now open the file with your text editor.</li>
<li>Go to line #305 and change &#8220;error_reporting = E_ALL &amp; ~E_NOTICE&#8221; to error_reporting = &#8220;E_ALL&#8221; and save the file and enter your root password.</li>
<li>Open your System Preferences click on Sharing and then turn on Web sharing.</li>
</ul>
<p>After the above steps have been completed PHP5 will be working with in your WebServer folder located in  &#8220;Macintosh HD/Library/WebServer/Documents&#8221;.</p>
<p>To confirm everything has been configured correct create a php file with the following:</p>
<ul>
<li>
&lt;?php phpinfo(); ?&gt;
</li>
<li>
Save the file with the documents folder as info.php.
</li>
<li>
In a browser window go to: http://localhost/info.php and you will see your php settings.
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://jpmcgarrity.com/blog/2009/08/work-with-php5-locally-on-your-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML 5 Wordpress Theme (Naked)</title>
		<link>http://jpmcgarrity.com/blog/2009/07/html-5-wordpress-theme-naked/</link>
		<comments>http://jpmcgarrity.com/blog/2009/07/html-5-wordpress-theme-naked/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 20:07:53 +0000</pubDate>
		<dc:creator>J.P.</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[css/html]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://jpmcgarrity.com/blog/?p=399</guid>
		<description><![CDATA[
Here is an updated version of the Naked Wordpress theme to support HTML5.
Wordpress Naked has been put together by us as a simple Wordpress theme to assist developers that need to quickly implement a blog using Wordpress but don&#8217;t really have the time to spend looking under the hood in any detail or reading documentation [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-402" title="naked" src="http://jpmcgarrity.com/blog/wp-content/uploads/2009/07/naked1.jpg" alt="naked" width="630" height="254" /></p>
<p>Here is an updated version of the Naked Wordpress theme to support HTML5.</p>
<blockquote><p><strong>Wordpress Naked</strong> has been put together by us as a simple <strong>Wordpress theme</strong> to assist developers that need to quickly implement a blog using <a href="http://wordpres.org/">Wordpress</a> but don&#8217;t really have the time to spend looking under the hood in any detail or reading documentation when it comes to applying a custom theme (e.g. their clients&#8217; design).</p></blockquote>
<p>Find out more about the <a href="http://www.siftware.co.uk/services/wordpress/blank-wordpress-theme/">original theme</a>.</p>
<p><a href="http://jpmcgarrity.com/blog/wp-content/uploads/2009/07/naked_html5.zip">Download HTML5 Theme</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jpmcgarrity.com/blog/2009/07/html-5-wordpress-theme-naked/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>HTML 5 Bundle For Textmate</title>
		<link>http://jpmcgarrity.com/blog/2009/07/html-5-bundle-for-textmate/</link>
		<comments>http://jpmcgarrity.com/blog/2009/07/html-5-bundle-for-textmate/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 20:50:01 +0000</pubDate>
		<dc:creator>J.P.</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[css/html]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[textmate bundle]]></category>

		<guid isPermaLink="false">http://jpmcgarrity.com/blog/?p=395</guid>
		<description><![CDATA[
Here is a download to the HTML 5 Bundle I have started for Textmate. This is my first attempt at creating a bundle from scratch please provide feedback and requests and I will add them.
Download Here
Update 7/19/2009

Updated 3/21/2010
Added localStorage Snippets
The bundle has also been uploaded to Github.
View Repository 

]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-396" title="html5_bundle_icon1" src="http://jpmcgarrity.com/blog/wp-content/uploads/2009/07/html5_bundle_icon11.gif" alt="html5_bundle_icon1" width="264" height="144" /></p>
<p>Here is a download to the HTML 5 Bundle I have started for Textmate. This is my first attempt at creating a bundle from scratch please provide feedback and requests and I will add them.</p>
<p><a title="html 5 bundle" href="http://jpmcgarrity.com/downloads/HTML5.tmbundle.zip">Download Here</a></p>
<p><strong>Update 7/19/2009<br />
</strong></p>
<p><strong>Updated 3/21/2010</strong><br />
Added localStorage Snippets</p>
<p>The bundle has also been uploaded to <a href="http://github.com">Github</a>.</p>
<p><a href="http://github.com/bingeboy/TextMate-HTML5-Bundle/tree/master">View Repository</a> <strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://jpmcgarrity.com/blog/2009/07/html-5-bundle-for-textmate/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

