<?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 &#187; coding</title>
	<atom:link href="http://jpmcgarrity.com/blog/index.php/category/coding/feed/" rel="self" type="application/rss+xml" />
	<link>http://jpmcgarrity.com/blog</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 11 May 2010 13:21:06 +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>jQuery SlideDown SlideUp</title>
		<link>http://jpmcgarrity.com/blog/index.php/2010/05/jquery-slidedown-slideup/</link>
		<comments>http://jpmcgarrity.com/blog/index.php/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/index.php/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/index.php/2009/09/font-css-substitution-methods/</link>
		<comments>http://jpmcgarrity.com/blog/index.php/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-image.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/index.php/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/index.php/2009/08/work-with-php5-locally-on-your-mac/</link>
		<comments>http://jpmcgarrity.com/blog/index.php/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/phpimage.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/index.php/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/index.php/2009/07/html-5-wordpress-theme-naked/</link>
		<comments>http://jpmcgarrity.com/blog/index.php/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/naked.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/index.php/2009/07/html-5-wordpress-theme-naked/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>HTML 5 Bundle For Textmate</title>
		<link>http://jpmcgarrity.com/blog/index.php/2009/07/html-5-bundle-for-textmate/</link>
		<comments>http://jpmcgarrity.com/blog/index.php/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[coding]]></category>
		<category><![CDATA[css/html]]></category>
		<category><![CDATA[html5]]></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

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_icon1.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/blog/wp-content/uploads/2009/07/HTML5.tmbundle.zip">Download Here</a></p>
<p><strong>Update 7/19/2009<br />
</strong></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/index.php/2009/07/html-5-bundle-for-textmate/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Activating Root Access in OSX Terminal</title>
		<link>http://jpmcgarrity.com/blog/index.php/2009/06/activating-root-access-in-osx-terminal/</link>
		<comments>http://jpmcgarrity.com/blog/index.php/2009/06/activating-root-access-in-osx-terminal/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 15:04:08 +0000</pubDate>
		<dc:creator>J.P.</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[hackintosh]]></category>
		<category><![CDATA[iterm]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://jpmcgarrity.com/blog/?p=358</guid>
		<description><![CDATA[
After messing around with my Hackintosh today I needed to remove some of my kext files in /System/Library/Extentions (S/L/E). I wasn&#8217;t in the mood to find an early build of a hackers app I just wanted Terinal su/root access.
Here is an easy method to activate root access in Terminal for Mac OS X 10.5 or [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-360" title="terminal" src="http://jpmcgarrity.com/blog/wp-content/uploads/2009/06/terminal.jpg" alt="terminal" width="630" height="395" /></p>
<p>After messing around with my <a href="http://jpmcgarrity.com/blog/index.php/2009/04/hackintosh/">Hackintosh</a> today I needed to remove some of my kext files in /System/Library/Extentions (S/L/E). I wasn&#8217;t in the mood to find an early build of a hackers app I just wanted Terinal su/root access.</p>
<p>Here is an easy method to activate root access in Terminal for Mac OS X 10.5 or later.</p>
<p>1. From the Finder&#8217;s Go menu, choose Utilities.<br />
2. Open Directory Utility.<br />
3. Click the lock in the Directory Utility window.<br />
4. Enter an administrator account name and password, then click OK.<br />
5. Choose Enable Root User from the Edit menu.<br />
6. Enter the root password you wish to use in both the Password and Verify fields, then click OK.</p>
<p>Related Links:</p>
<p><a href="http://iterm.sourceforge.net/">A better terminal app</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jpmcgarrity.com/blog/index.php/2009/06/activating-root-access-in-osx-terminal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video Player with HTML 5</title>
		<link>http://jpmcgarrity.com/blog/index.php/2009/06/video-player-with-html-5/</link>
		<comments>http://jpmcgarrity.com/blog/index.php/2009/06/video-player-with-html-5/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 22:54:20 +0000</pubDate>
		<dc:creator>J.P.</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[css/html]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://jpmcgarrity.com/blog/?p=341</guid>
		<description><![CDATA[With some of the latest browsers supporting HTML 5 I thought I go ahead and take a stab at trying to create a very basic video player using some of the new tags. What&#8217;s interesting is many times when flash would be needed for video and audio HTML 5 will be able to support such [...]]]></description>
			<content:encoded><![CDATA[<p>With some of the latest browsers supporting HTML 5 I thought I go ahead and take a stab at trying to create a very basic video player using some of the new tags. What&#8217;s interesting is many times when flash would be needed for video and audio HTML 5 will be able to support such media types with just a little JS.</p>
<p>Here is a <a href="/html5Tests/html5_videoplayer.html">sample player</a> using HTML 5 (Note this is at a very early stage and only has play/pause functionality).</p>
<p><a href="/html5Tests/html5_videoplayer.html" class="none"><img class="aligncenter size-full wp-image-346" title="wildthingshtml5" src="http://jpmcgarrity.com/blog/wp-content/uploads/2009/06/wildthingshtml5.jpg" alt="wildthingshtml5" width="600" height="249" /></a></p>
<p><code>			&lt;div id="myVideoContainer"&gt;<br />
				&lt;video id="myVideo" src="../videos/WheretheWildThingsAre.mov" autoplay="autoplay"&gt;<br />
					&lt;p&gt;Sorry Your Browser Doesn't Support HTML 5. Safari 4 will support this video player, download it <a href="http://www.apple.com/safari/download/">here</a>&lt;/p&gt;<br />
				&lt;/video&gt;<br />
			&lt;/div&gt;</code></p>
<p>Related information:</p>
<ul>
<li><a href="http://www.youtube.com/html5">YouTube testing with html 5</a></li>
<li><a href="http://webkit.org/blog/140/html5-media-support/">Webkit html 5 media support</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://jpmcgarrity.com/blog/index.php/2009/06/video-player-with-html-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Improve Newsletter Design</title>
		<link>http://jpmcgarrity.com/blog/index.php/2009/04/how-to-design-a-proper-newsletter/</link>
		<comments>http://jpmcgarrity.com/blog/index.php/2009/04/how-to-design-a-proper-newsletter/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 16:13:40 +0000</pubDate>
		<dc:creator>J.P.</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://jpmcgarrity.com/blog/?p=220</guid>
		<description><![CDATA[
Last week I completed a email campaign that I was only brought into only to code. I felt that the process followed was generally flawed that the team took. I started with a finalized approved design which I was suppose to code into a mailer. From the beginning I started noticing flaws in the designs [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-236" title="zz-main_full" src="http://jpmcgarrity.com/blog/wp-content/uploads/2009/04/zz-main_full.jpg" alt="zz-main_full" width="429" height="599" /></p>
<p>Last week I completed a email campaign that I was only brought into only to code. I felt that the process followed was generally flawed that the team took. I started with a finalized approved design which I was suppose to code into a mailer. From the beginning I started noticing flaws in the designs and how the design would be translated into many of the the popular web clients of today like Gmail for example.</p>
<p>Often I think people and small teams rush the designs of the mailers and don&#8217;t fully understand what it takes to develop and what will be rendered by each client. Most web based email applications won&#8217;t properly read divs, background images, or even external style sheets. With these short comings and designers unaware of these limitations or bad and unexpected things can happen.</p>
<p>When creating a mailer its important to first and foremost take your audience into consideration. Are they main using web based clients like gmail, yahoo, etc.? Are the checking there mail on the mobile devices? Or they simple just using a desktop client like Mail (OSX), ThunderBird, or Outlook? All of these and a combination should it most cases be assumed.</p>
<h2>Rules of thumb to help achieve the audiences viewing of the mailer</h2>
<p>At the of the top of the design provide a link for the subscribers to see a web version. Most mailers these days are filter and end up in junk mail boxes or the software is smart enough to hide the images. Leaving your pain stacking work looking like a blob of random text bits. Having this link at the top will give the user and easy way to view the mailer as it was ment to be presented.</p>
<p>Keep it simple. Since most clients ignore CSS  including background images your going to have to get old school with some tables. By keeping the design simple you will be able to get you message across to the widest audience. I good example of this is UrbanDaddy.com&#8217;s mailer(seen below).</p>
<p>Allow the users to easily forward and print the mailer.</p>
<p><img class="alignnone size-full wp-image-223" title="urbandaddy" src="http://jpmcgarrity.com/blog/wp-content/uploads/2009/04/urbandaddy.jpg" alt="urbandaddy" width="500" height="501" /></p>
]]></content:encoded>
			<wfw:commentRss>http://jpmcgarrity.com/blog/index.php/2009/04/how-to-design-a-proper-newsletter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SVN Resources</title>
		<link>http://jpmcgarrity.com/blog/index.php/2009/04/svn-resources/</link>
		<comments>http://jpmcgarrity.com/blog/index.php/2009/04/svn-resources/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 02:00:04 +0000</pubDate>
		<dc:creator>J.P.</dc:creator>
				<category><![CDATA[coding]]></category>

		<guid isPermaLink="false">http://jpmcgarrity.com/blog/?p=204</guid>
		<description><![CDATA[Here are a few good links for getting down with SVN. Including one to a free online book that will get you up and running in no time at all.

martinott
simplestation.com
lachoseinteractive.net
svnbook.red-bean.com (free book)

]]></description>
			<content:encoded><![CDATA[<p>Here are a few good links for getting down with SVN. Including one to a free online book that will get you up and running in no time at all.</p>
<ul>
<li><a href="http://homepage.mac.com/martinott/">martinott</a></li>
<li><a href="http://www.simplestation.com/journal/how-to-use-svn-on-os-x/">simplestation.com</a></li>
<li><a href="http://www.lachoseinteractive.net/en/community/subversion/svnx/download/">lachoseinteractive.net</a></li>
<li><a href="http://svnbook.red-bean.com/">svnbook.red-bean.com</a> (free book)</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://jpmcgarrity.com/blog/index.php/2009/04/svn-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FLEX &amp; MXML The next logical step for XHTML coders?</title>
		<link>http://jpmcgarrity.com/blog/index.php/2009/04/mxml-the-next-logical-step-for-xhtml-coders/</link>
		<comments>http://jpmcgarrity.com/blog/index.php/2009/04/mxml-the-next-logical-step-for-xhtml-coders/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 17:05:23 +0000</pubDate>
		<dc:creator>J.P.</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[css/xhtml]]></category>
		<category><![CDATA[flex]]></category>

		<guid isPermaLink="false">http://jpmcgarrity.com/blog/?p=157</guid>
		<description><![CDATA[I'll be perfectly honest.. I didn't know much about Adobe Flex. I knew that it was more or less an all coding method for Flash developers and the early adopters using js/ajax really enjoyed working with it. Flex based sites had always impressed me but the idea on how to make them seemed to complex. Since Flash MX had been released I had little experiance writing any sort of AS other then animating banners or updating AS for all ready running sites.]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" src="http://robot6.comicbookresources.com/wp-content/uploads/2009/03/flex_mentallo1of4_-_00.jpg" alt="" width="350" height="554" /></p>
<p>I&#8217;ll be perfectly honest.. I didn&#8217;t know much about Adobe Flex. I knew that it was more or less an all coding method for Flash developers and the early adopters using JS/AJAX really enjoyed working with it. Flex based sites had always impressed me but the idea on how to make them seemed to complex. Since Flash MX had been released I had little experience writing any sort of AS other then animating banners or updating AS for already running sites.</p>
<p>Over the past couple of days I have been messing around with it and am truly having fun writing the code. My main focus for the last few years now has been XHTML/CSS as well as design and with basic understandings of Flash. Moving forward to improve my skill set Flex seems to be a fun tool to learn and a good next step for someone with a similar skill set.</p>
<p>If your interested in playing around with Flex here is a link that really helped me get started <a href="http://www.pixelate.de/blog/setting-up-a-as3-project-in-textmate">Setting up a AS3 Project in Textmate.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jpmcgarrity.com/blog/index.php/2009/04/mxml-the-next-logical-step-for-xhtml-coders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
