<?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>4th Dimension Development &#187; Development</title>
	<atom:link href="http://4thddev.com/category/development/feed/" rel="self" type="application/rss+xml" />
	<link>http://4thddev.com</link>
	<description>Web Design and Development</description>
	<lastBuildDate>Mon, 10 May 2010 23:40:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Kalispell MT Programmers Meeting</title>
		<link>http://4thddev.com/2010/01/14/kalispell-mt-programmers-meeting/</link>
		<comments>http://4thddev.com/2010/01/14/kalispell-mt-programmers-meeting/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 15:16:56 +0000</pubDate>
		<dc:creator>Wes Hunt</dc:creator>
				<category><![CDATA[MVC]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://4thddev.com/?p=142</guid>
		<description><![CDATA[There is a meeting of the Montana Programmers for Kalispell scheduled for January 28th.  I will be giving a presentation on the Model-View-Controller (MVC) design pattern pertaining to web development.  Our founder will also be giving an introduction to MT Programmers and who we are.  This will be the first meeting for the Flathead region.  [...]]]></description>
			<content:encoded><![CDATA[<p>There is a meeting of the Montana Programmers for Kalispell scheduled for January 28th.  I will be giving a presentation on the Model-View-Controller (MVC) design pattern pertaining to web development.  Our founder will also be giving an introduction to MT Programmers and who we are.  This will be the first meeting for the Flathead region.  More information about the meeting and the group can be found at <a title="Montana Programmers" href="http://montanaprogrammers.com">montanaprogrammers.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://4thddev.com/2010/01/14/kalispell-mt-programmers-meeting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex and missing browser scrollbar</title>
		<link>http://4thddev.com/2009/12/30/flex-and-missing-browser-scrollbar/</link>
		<comments>http://4thddev.com/2009/12/30/flex-and-missing-browser-scrollbar/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 16:07:16 +0000</pubDate>
		<dc:creator>Wes Hunt</dc:creator>
				<category><![CDATA[Flex]]></category>

		<guid isPermaLink="false">http://4thddev.com/?p=131</guid>
		<description><![CDATA[Working on a site recently that is going to be a CodeIgniter/PHP site with several Flex modules added in, I encountered a peculiar problem. Because my Flex applications are not controlling site structure (navigation, headers, footers, etc.) the user needs to have a typical browser experience. Allowing the user to scroll with the browser is [...]]]></description>
			<content:encoded><![CDATA[<p>Working on a site recently that is going to be a CodeIgniter/PHP site with several Flex modules added in, I encountered a peculiar problem.  Because my Flex applications are not controlling site structure (navigation, headers, footers, etc.) the user needs to have a typical browser experience.  Allowing the user to scroll with the browser is much simpler than training them to use scrollbars inside my application in this use case.</p>
<p>The Flex/Flashbuilder generated HTML template however, disables browser scrolling in a couple of places.  This is fine for full page Flex applications, but you may want to turn this off for hybrid applications.</p>
<p>First, Flashbuilder adds a style:</p>
<p><strong><span style="color: #003366;">body { margin: 0px; overflow:hidden }</span></strong></p>
<p>Change this to:</p>
<p><strong><span style="color: #003366;">body { margin: 0px; overflow:scroll; }</span></strong></p>
<p>Then look for your body tag:</p>
<p><strong><span style="color: #003366;">&lt;body scroll=&#8221;no&#8221;&gt;</span></strong></p>
<p>and change it to:</p>
<p><strong><span style="color: #003366;">&lt;body&gt;</span></strong></p>
<p>and that&#8217;s all!  This will be different if you&#8217;re using the SWFObject to embed your Flex.</p>
]]></content:encoded>
			<wfw:commentRss>http://4thddev.com/2009/12/30/flex-and-missing-browser-scrollbar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>October MTP Meeting</title>
		<link>http://4thddev.com/2009/09/30/october-mtp-meeting/</link>
		<comments>http://4thddev.com/2009/09/30/october-mtp-meeting/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 14:27:46 +0000</pubDate>
		<dc:creator>Wes Hunt</dc:creator>
				<category><![CDATA[MVC]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://4thddev.com/?p=110</guid>
		<description><![CDATA[There is a Montana Programmers meeting scheduled for October 6th at Ruby&#8217;s Inn in Missoula at 6pm. I will be covering using frameworks to speed your development of web sites and applications. This will be a two part series. This first part will be to introduce what frameworks are and why you should or should [...]]]></description>
			<content:encoded><![CDATA[<p>There is a Montana Programmers meeting scheduled for October 6th at Ruby&#8217;s Inn in Missoula at 6pm.</p>
<p>I will be covering using frameworks to speed your development of web sites and applications. This will be a two part series. This first part will be to introduce what frameworks are and why you should or should not use them.</p>
<p>We will focus on:</p>
<ul>
<li> Development frameworks (PHP, Java, .NET, maybe some other areas)</li>
<li> Types of frameworks (Component, MVC, Content)</li>
<li> Advantages and disadvantages of using a framework</li>
</ul>
<p>The presentation will be around 30 minutes. The second part of the meeting will be reserved for exchanging ideas or tutoring. Please bring your questions or tutoring requests!</p>
<p><a title="Montana Programmers October Meeting" href="http://www.meetup.com/Montana-Programmers/calendar/11439343/">Montana Programmers meeting on Meetup</a></p>
]]></content:encoded>
			<wfw:commentRss>http://4thddev.com/2009/09/30/october-mtp-meeting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What I Listen To</title>
		<link>http://4thddev.com/2009/08/21/what-i-listen-to/</link>
		<comments>http://4thddev.com/2009/08/21/what-i-listen-to/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 18:19:02 +0000</pubDate>
		<dc:creator>Wes Hunt</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://4thddev.com/?p=104</guid>
		<description><![CDATA[One of the easiest ways to enhance my knowledge of my trade craft is listening to podcasts.  Certain podcasts help keep me informed about what is happening in the industry.  These are some of my personal favorites.  There are many podcasts that cover similar topics, but these are of a high quality, and have stayed [...]]]></description>
			<content:encoded><![CDATA[<p>One of the easiest ways to enhance my knowledge of my trade craft is listening to podcasts.  Certain podcasts help keep me informed about what is happening in the industry.  These are some of my personal favorites.  There are many podcasts that cover similar topics, but these are of a high quality, and have stayed consistent over multiple years.  My iTunes is littered with podcasts from cancelled shows.  Below is what I listen to the most.  Most of these podcasts can be found on iTunes as well as their sites included below.</p>
<p><strong>General Web Development</strong></p>
<ul>
<li><a title="Boag World Podcasts" href="http://boagworld.com/podcast">Boagworld</a> &#8211; Hosted by Paul Boag and Marcus Lillington of Headscape Design.  By far this is the podcast I listen to the most.  I stumbled upon this one when it was the UK .net magazine&#8217;s podcast a few years ago.  This podcast covers the latest industry news, a wide range of web development and design topics, and can be quite humorous.  If you are a web dev or designer and don&#8217;t listen to this you&#8217;re missing out!</li>
<li><a title="Web Design TV" href="http://odeo.com/channels/77591-Web-Design-TV-from-the-makers-of-net-magazine">Web Design TV</a> &#8211; From the makers of .net magazine, one of the best web dev mags out there, is this video cast covering all aspects of our trade.</li>
</ul>
<p><strong>.NET Development</strong></p>
<ul>
<li><a title=".NET Rocks" href="http://www.dotnetrocks.com/">.NET Rocks!</a> -  This show is for anyone who develops in the .NET world.  This weekly podcast talks to the developers who are making things happen in the .NET world and building the tools you&#8217;re using.  There are other .NET specific podcasts but this one is the most consistent and of the best quality.</li>
<li><a title="Polymorphic" href="http://polymorphicpodcast.com/shows/">Polymorphic</a> &#8211; This is another high quality .NET podcast.  Recent topics include jQuery secrets and ASP.NET MVC.</li>
</ul>
<p><strong>Java Development</strong></p>
<ul>
<li><a title="Java Posse" href="http://javaposse.com/">The Java Posse</a> &#8211; Java specific show that does both a news segment and Java knowledge segment.  Covers all aspects of Java and industry news.</li>
</ul>
<p><strong>RIA</strong></p>
<ul>
<li><a title="The Flex show" href="http://www.theflexshow.com/blog/">The Flex Show</a> &#8211; By far the best video and audio cast about Flex and RIAs.  Adobe doesn&#8217;t have anything that compares to these guys.  The show is broken into two segments, the podcast which covers interviews with industry Flex developers, and a video cast &#8220;15 minutes of Flex&#8221;, which are brief tutorials in Flex.  If you&#8217;re interested in what&#8217;s possible with Flex, the interviews are priceless. Besides Boagworld this is the show I listen to the most.</li>
<li><a title="Adobe TV" href="http://tv.adobe.com">TV.Adobe.com</a> &#8211; Not a podcast technically, but a video site for everything Adobe.  The Designer and Developer channels are extremely useful for Adobe users.  The 360 Flex sessions and Ajax sessions are awesome.    After using some of the Adobe/Macromedia products for over 15 years now I still pick up tips I didn&#8217;t know about.</li>
</ul>
<p><strong>JavaScript / Ajax</strong></p>
<ul>
<li><a title="Audible Ajax" href="http://odeo.com/channels/24662">Audible Ajax</a> &#8211; Although this show seems to have ended it is still worth mentioning.  Definitely the best podcast about everything JavaScript.</li>
<li><a title="Ajaxian podcast list" href="http://ajaxian.com/by/category/podcasts">Ajaxian</a> &#8211; Don&#8217;t know if Ajaxian (great Ajax news site) has it&#8217;s own podcast, but they have a page dedicated to listing recent podcasts covering the subject.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://4thddev.com/2009/08/21/what-i-listen-to/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brief History of Java</title>
		<link>http://4thddev.com/2009/08/08/brief-history-of-java/</link>
		<comments>http://4thddev.com/2009/08/08/brief-history-of-java/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 15:03:24 +0000</pubDate>
		<dc:creator>Wes Hunt</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://4thddev.com/?p=66</guid>
		<description><![CDATA[There are many misconceptions about the Java programming language and its history.  Although this video can only cover a brief overview and misses some important aspects, it is still an entertaining view. Brief History of Java]]></description>
			<content:encoded><![CDATA[<p>There are many misconceptions about the Java programming language and its history.  Although this video can only cover a brief overview and misses some important aspects, it is still an entertaining view.</p>
<p><a title="History of Java" href="http://www.youtube.com/watch?v=WAy9mgEYb6o">Brief History of Java</a></p>
]]></content:encoded>
			<wfw:commentRss>http://4thddev.com/2009/08/08/brief-history-of-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
