<?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>Ryan Campbell &#187; Uncategorized</title>
	<atom:link href="http://www.ryancampbell.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ryancampbell.com</link>
	<description>Flex/Flash Developer Blog</description>
	<lastBuildDate>Fri, 30 Jul 2010 03:46:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Introducing the Swiz [URLMapping] Metadata Processor</title>
		<link>http://www.ryancampbell.com/2010/03/26/introducing-the-swiz-urlmapping-metadata-processor/</link>
		<comments>http://www.ryancampbell.com/2010/03/26/introducing-the-swiz-urlmapping-metadata-processor/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 18:05:47 +0000</pubDate>
		<dc:creator>Ryan Campbell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ryancampbell.com/?p=53</guid>
		<description><![CDATA[Swiz 1.0 has introduced the ability to create your own custom metadata processors. Although the 1.0 release is fairly new, many custom processors have already been developed by members of the Flex community. I thought I'd take a stab at creating a metadata processor that simplifies adding deep linking support to your application. The metadata [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.swizframework.org">Swiz</a> 1.0 has introduced the ability to create your own custom metadata processors. Although the 1.0 release is fairly new, many custom processors have already been developed by members of the Flex community. I thought I'd take a stab at creating a metadata processor that simplifies adding deep linking support to your application.</p>
<p>The metadata processor I've created is called URLMapping which allows you to easily map URLs to methods. Here's a simple example:</p>
<p><code><strong>[URLMapping( url="/helloWorld" )]</strong><br />
public function sayHelloWorld():void<br />
{<br />
	model.msg = "Hello world!";<br />
}</code></p>
<p>The URL Mapping processor will automatically start listening for URL changes. For the above example, any time the URL changes to <strong>flexapp.html#/helloWorld</strong> the <strong>sayHelloWorld()</strong> method will automatically get called. Also, since url is the default metadata argument, the following example works exactly the same:</p>
<p><code><strong>[URLMapping( "/helloWorld" )]</strong><br />
public function sayHelloWorld():void<br />
{<br />
	model.msg = "Hello world!";<br />
}</code></p>
<p>You can also use parts of the URL as parameters:</p>
<p><code><strong>[URLMapping( "/hello/{0}" )]</strong><br />
public function sayHello( name:String ):void<br />
{<br />
	model.msg = "Hello " + name + "!";<br />
}</code></p>
<p>And optionally change the browser window title when the URL changes:</p>
<p><code><strong>[URLMapping( url="/hello/{0}", title="Hello {0}!" )]</strong><br />
public function sayHello( name:String ):void<br />
{<br />
	model.msg = "Hello " + name + "!";<br />
}</code></p>
<p>Lastly, [URLMapping] also works in reverse with the help of the Swiz [Mediate] metadata. In this example the URL will change to <strong>/hello/Ryan</strong> and the browser window title to<strong> "Hello Ryan!"</strong> when the <strong>HelloEvent.HELLO</strong> event is dispatched:</p>
<p><code><strong>[URLMapping( url="/hello/{0}", title="Hello {0}!" )]</strong><br />
<strong>[Mediate( event="HelloEvent.HELLO", properties="name" )]</strong><br />
public function sayHello( name:String ):void<br />
{<br />
	model.msg = "Hello " + name + "!";<br />
}</code></p>
<p>And then dispatch the event:</p>
<p><code>&lt;s:TextInput id="nameInput" text="Ryan" /&gt;<br />
&lt;s:Button label="Say Hello" click="<strong>dispatchEvent( new HelloEvent( HelloEvent.HELLO, nameInput.text ) )</strong>" /&gt;</code></p>
<p><strong>[URLMapping] Getting Started Resources</strong><br/><br />
I've created a simple <a href="/flex/CustomerApp/CustomerApp.html" target="_blank">Customer App</a> example, with <a href="/flex/CustomerApp/srcview/" target="_blank">view source</a> enabled,  to show how you could use [URLMapping] in a full application.</p>
<ul>
<li><a href="/flex/CustomerApp/srcview/CustomerApp.zip">Download the CustomerApp example</a></li>
<li><a href="http://swizframework.org/2010/03/swiz-1-0-0-beta-now-available/">Download Swiz 1.0 Beta</a></li>
<li><a href="/flex/CustomerApp/srcview/source/libs/swiz-urlmapping.swc">Download swiz-urlmapping.swc</a></li>
<li><a href="http://github.com/ryancampbell/swiz-urlmapping">Grab the source on Github</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.ryancampbell.com/2010/03/26/introducing-the-swiz-urlmapping-metadata-processor/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Here&#8217;s 5 3D Layouts for Flex 4</title>
		<link>http://www.ryancampbell.com/2009/06/16/heres-5-3d-layouts-for-flex-4/</link>
		<comments>http://www.ryancampbell.com/2009/06/16/heres-5-3d-layouts-for-flex-4/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 14:50:52 +0000</pubDate>
		<dc:creator>Ryan Campbell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.bobjim.com/2009/06/16/heres-5-3d-layouts-for-flex-4/</guid>
		<description><![CDATA[I spent some time converting the OpenFlux 3D layouts to Flex 4 last week and have attached the example with source code. This includes CoverFlow (horizontal and vertical), Carousel, Spiral and Time Machine. I also included one which was created when I screwed up the CoverFlow layout but I thought it looked cool so I [...]]]></description>
			<content:encoded><![CDATA[<p>I spent some time converting the OpenFlux 3D layouts to Flex 4 last week and have attached the <a href="/flex/Flex4Layouts/Flex4Layouts.html" target="_blank">example</a> with <a href="/flex/Flex4Layouts/srcview/index.html" target="_blank">source code</a>. This includes CoverFlow (horizontal and vertical), Carousel, Spiral and Time Machine. I also included one which was created when I screwed up the CoverFlow layout but I thought it looked cool so I hit Save As and named it AwesomeLayout.</p>
<p>Overall I was really happy with how quickly I could get these working with Flex 4. It wasn't quite as painful as I originally thought and I'll discuss the differences below.</p>
<p><a href="/flex/Flex4Layouts/Flex4Layouts.html" target="_blank">View the Example</a><br />
<a href="/flex/Flex4Layouts/srcview/index.html" target="_blank">View the Source Code</a></p>
<p><strong>ILayoutElement</strong></p>
<p>In Flex 4, UIComponent implements ILayoutElement which provides you a bunch of methods to manage the layout of each child. For 2D layouts you would use <em>element.setLayoutBoundsSize( width, height, postLayoutTransform )</em> to set the size and <em>element.setLayoutBoundsPosition( x, y, postLayoutTransform )</em> to set position.</p>
<p>OpenFlux instead allows you to set x, y, width, height, z, rotationX, rotationY, rotationZ directly to a token which is used to animate the child to its new position/size.</p>
<p><strong>Matrix3D</strong></p>
<p>With OpenFlux, you set the z, rotationX, rotationY, rotationZ properties directly. With Flex 4 you instead use <em>element.setLayoutMatrix3D( matrix, postLayoutTransform )</em>. Instead of passing in the above properties it instead expects an instance of Matrix3D. This was my first use of Matrix3D and Vector3D (FP10 classes) and had no idea what I was doing until I looked at the example <a href="http://opensource.adobe.com/svn/opensource/flex/sdk/trunk/development/eclipse/flex/flex4test/src/layouts/WheelLayout.as" target="_blank">Flex 4 WheelLayout</a></p>
<p>A common approach would be to first set the initial 3D coordinates of the child, next apply any rotation and third center the child in the container. Below is the Matrix3D code for AwesomeLayout:</p>
<p><em>var matrix:Matrix3D = new Matrix3D();<br />
matrix.appendTranslation( elementWidth * -( selectedIndex - i ), elementHeight / 2, 0 );<br />
matrix.appendRotation( Math.abs( selectedIndex - i ) * 2, Vector3D.Y_AXIS );<br />
matrix.appendTranslation( width / 2, height / 2, 0 ); // center element in container<br />
element.setLayoutMatrix3D( matrix, false );</em></p>
<p><strong>maintainProjectionCenter</strong></p>
<p>FP10 adds a perspectiveProjection property to the Transform class which works similar to a camera in Away3D. By default, the prespectiveProjection is set to the top left but for my layouts I need it to be the center of the container. This is easily done with the following code:</p>
<p><em>var pp:PerspectiveProjection = new PerspectiveProjection();<br />
pp.projectionCenter = new Point(container.width / 2, container.height / 2);<br />
container.transform.perspectiveProjection = pp;</em></p>
<p>Since wanting center projection is so common though, Flex 4 made this even easier by adding a maintainProjectionCenter flag to UIComponent. When the layout is attached to a container, I simply override the setter and set this property to true.</p>
<p><strong>layer</strong></p>
<p>Another pain in the butt with FP10 is that the z property has nothing to do with the z-index of the DisplayObject. What that means is even though the DisplayObject appears to be further away and smaller, it will still be in front of closer DisplayObjects unless you update it's position in the display list.</p>
<p>Flex 4 solves this by adding a layer property to UIComponent. For the List component for example, this allows you to specify a different display list index for the item renderer compared to where it is located in the data provider. You simply set the layer property for each element (based on its z property ideally) and if required call <em>container.invalidateLayering()</em></p>
<p>OpenFlux handles this automatically after the layout is done setting the position of each child.</p>
<p><strong>Animation?</strong></p>
<p>One question I'm hoping someone has a decent answer to is regarding animating the size/position of child elements. For example, if I switch layouts I want the children to be tweened to their new positions. This is easy to do with OpenFlux but I have no idea how to do it with Flex 4. I know Flex 3 introduced a dataChangeEffect but this seems to have disappeared with the Flex 4 List component.</p>
<p><strong>What next?</strong></p>
<p>So, I only implemented the very basics of the layout. Next steps would be to add support for measure, scrolling and virtualization. I've included a LayoutBase3D class which handles common 3D tasks. I'd love to see what layouts others come up with and think it would be cool to start a Flex 4 Layouts open source project.</p>
<p>Feel free to write any questions in the comments.</p>
<p><a href="/flex/Flex4Layouts/Flex4Layouts.html" target="_blank">View the Example</a><br />
<a href="/flex/Flex4Layouts/srcview/index.html" target="_blank">View the Source Code</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryancampbell.com/2009/06/16/heres-5-3d-layouts-for-flex-4/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>OpenFlux Independant From Flex</title>
		<link>http://www.ryancampbell.com/2009/03/11/openflux-independant-from-flex/</link>
		<comments>http://www.ryancampbell.com/2009/03/11/openflux-independant-from-flex/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 17:31:47 +0000</pubDate>
		<dc:creator>Ryan Campbell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.bobjim.com/2009/03/11/openflux-independant-from-flex/</guid>
		<description><![CDATA[Over the last month I've been working on getting OpenFlux independant from UIComponent and many of the other large Flex classes with a goal to create a much ligher framework. OpenFlux Application (77KB) Flex Application with OpenFlux Components (205KB) I have two applications above that look exactly the same. The difference is one is a [...]]]></description>
			<content:encoded><![CDATA[<p>Over the last month I've been working on getting OpenFlux independant from UIComponent and many of the other large Flex classes with a goal to create a much ligher framework.</p>
<p><strong>OpenFlux Application (77KB)</strong></p>
<p><iframe src="/flex/PhoenixTest/PureFlux.html" height="200" width="100%"></iframe></p>
<p><strong>Flex Application with OpenFlux Components (205KB)</strong></p>
<p><iframe src="/flex/PhoenixTest/SomeFlux.html" height="200" width="100%"></iframe></p>
<p>I have two applications above that look exactly the same. The difference is one is a OpenFlux application with OpenFlux components and the other is a Flex application with OpenFlux components. Although the code is almost identical, the OpenFlux app compiles to 77kb and the Flex app compiles to 205kb. Before you think "oh great another framework" I'd like to point out the following:</p>
<p><strong>1. OpenFlux components can be used with or without Flex<br />
</strong><br />
OpenFlux components all extend a class (currently called PhoenixComponent) that implements IUIComponent allowing them to work with or without Flex. Likewise, you can use Flex classes and projects like Degrafa and Mate with pure OpenFlux applications.</p>
<p><strong>2. This is not a completely separate framework, just lighter weight implementations of Flex's interfaces</strong></p>
<p>We'll continue to use the parts of Flex that work well but replace the parts can be done better. Luckily the Flex team uses interfaces well allowing us to use our own implementations for almost every piece of the framework.</p>
<p><strong>3. MXML, CSS, Resource Bundles and Data Binding all still work with pure OpenFlux apps</strong></p>
<p>These 4 features of Flex make our lives as developers way easier and I wouldn't have even bothered continuing getting OpenFlux independant from Flex if it ment I'd have to build all my applications in pure AS3. Utilizing these features do add size to your compiled application but I think the benefits they provide make it well worth it.</p>
<p><strong>4. Flex is monolitic, OpenFlux is modular. </strong></p>
<p>My opinion is if your application is loaded over the internet it should be highest priority to keep the application size small and don't include any code that you aren't utilizing. For example, the List component in this application doesn't need drag n' drop support so that code isn't included.</p>
<p>Even if create a basic Flex application with just a List component that application's optimized compile size is 250kb. Actually, an OpenFlux application is even smaller then a Flex application that uses Runtime Shared Libraries. I think 77kb even is too large though and it's an on going effort to continue reducing the size of OpenFlux applications.</p>
<p><strong>So what's next?</strong></p>
<p>Our goal is to have an OpenFlux SDK you can use with Flex Builder and an OpenFlux.org website available in time for <a href="http://www.360conferences.com/360flex/" target="_blank">360|Flex Indianapolous</a>. I have a session called "OpenFlux and Flex 4" where I will discuss the differences between the two frameworks, give examples on when to use one over the other and how you can use them both together.</p>
<p>Over the last month of coding/experimenting we weren't even sure if our goals were possible. Now that we've been able to accomplish mainly what we hoped for we'll be focusing on resolving issues, documentation and examples. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryancampbell.com/2009/03/11/openflux-independant-from-flex/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>OpenFlux: Tree and TreeDataGrid Components (view source enabled)</title>
		<link>http://www.ryancampbell.com/2009/02/02/openflux-tree-and-treedatagrid-components-view-source-enabled/</link>
		<comments>http://www.ryancampbell.com/2009/02/02/openflux-tree-and-treedatagrid-components-view-source-enabled/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 14:11:22 +0000</pubDate>
		<dc:creator>Ryan Campbell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.bobjim.com/2009/02/02/openflux-tree-and-treedatagrid-components-view-source-enabled/</guid>
		<description><![CDATA[Ok, so after getting a working OpenFlux DataGrid component I decided the next obvious step is to try and build a TreeDataGrid component. Although there is still more work to be done, I spent a few hours last night and was able to get a Tree and TreeDataGrid component working. There are definitely still bugs [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, so after getting a working <a href="/2009/01/22/openflux-datagrid-component-with-view-source/" target="_blank">OpenFlux DataGrid component</a> I decided the next obvious step is to try and build a TreeDataGrid component. Although there is still more work to be done, I spent a few hours last night and was able to get a Tree and TreeDataGrid component working. There are definitely still bugs (don't even try sorting the DataGrid hint hint) but it's a great start.</p>
<p>The best part is 100% of the code from the Tree and DataGrid components were re-used for the TreeDataGrid. In fact, the TreeDataGrid isn't even a separate component, it's just a new view for the regular OpenFlux DataGrid.</p>
<p>I think this really shows off where OpenFlux's architecture shines. Moving the logic in to separate controllers allows you to easily mix and match functionality to build any component you desire quickly. If the Flex SDK was written in a similar way the AdvancedDataGrid wouldn't have had to be written from scratch.</p>
<p>Over the next couple weeks I plan on fixing the remaining issues and at that point I'll switch to blogging on how to use all this new functionality to build some really cool 3D components (OpenFlux/Plexiglass).</p>
<p>Feel free to <a href="/flex/TreeExample/srcview/index.html" target="_blank">view the source</a> and post any feedback you have in the comments.</p>
<p><iframe src="/flex/TreeExample/TreeExample.html" height="300" width="100%"></iframe> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryancampbell.com/2009/02/02/openflux-tree-and-treedatagrid-components-view-source-enabled/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Ruby on Rails</title>
		<link>http://www.ryancampbell.com/2006/09/25/ruby-on-rails/</link>
		<comments>http://www.ryancampbell.com/2006/09/25/ruby-on-rails/#comments</comments>
		<pubDate>Mon, 25 Sep 2006 20:59:37 +0000</pubDate>
		<dc:creator>Ryan Campbell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wp.bobjim.com/wordpress/2006/09/25/ruby-on-rails/</guid>
		<description><![CDATA[Ok I've been playing around with Ruby on Rails lately and thought it was a fun toy but wanted to put it to the test of building a real application. So far I have to say I am very impressed. For such a new technology there is a huge community around it which is extremely [...]]]></description>
			<content:encoded><![CDATA[<p>Ok I've been playing around with <a href="http://www.rubyonrails.org">Ruby on Rails</a> lately and thought it was a fun toy but wanted to put it to the test of building a real application. So far I have to say I am very impressed. For such a new technology there is a huge community around it which is extremely helpful. By itself, Ruby on Rails is a great framework to get a simple web application up and running quickly. I must admit though that the documentation is a bit lacking. The API docs have repeatly required me to google for answers. Also the wiki adds more confusion than help because of all the contracticting comments on the pages.</p>
<p>One major plus is how well plugins/extensions play with RoR. My favorite so far is <a href="http://www.kanthak.net/opensource/file_column/">FileColumn</a>, which couldn't compliment RoR any better. With only a couple lines of code I can have photos being uploaded, resized and displayed within my application. The only complaint I had was quickly solved by using <a href="http://textsnippets.com/posts/show/666">ActAsPartitionedId with FileColumn</a>, which I do hope is bundled with FileColumn in the future.</p>
<p>This is also my first experience with Ruby. At first glance the syntax looks a little odd but coming from a perl background, it grew on me quickly. I think this language has a lot of potential and I hope its user base keeps growing. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryancampbell.com/2006/09/25/ruby-on-rails/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hibernate, Spring and Tapestry</title>
		<link>http://www.ryancampbell.com/2005/11/29/hibernate-spring-and-tapestry/</link>
		<comments>http://www.ryancampbell.com/2005/11/29/hibernate-spring-and-tapestry/#comments</comments>
		<pubDate>Wed, 30 Nov 2005 05:08:04 +0000</pubDate>
		<dc:creator>Ryan Campbell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wp.bobjim.com/wordpress/2005/11/29/hibernate-spring-and-tapestry/</guid>
		<description><![CDATA[Although I love perl, I decided lately I wanted to try a different language for web development. Since I hate php, I thought Java was a great choice. The number of frameworks available for server-side Java development is overwelming. On one hand this makes chosing which technologies to use frustrating, but at least it shows [...]]]></description>
			<content:encoded><![CDATA[<p>Although I love perl, I decided lately I wanted to try a different language for web development. Since I hate php, I thought Java was a great choice. The number of frameworks available for server-side Java development is overwelming. On one hand this makes chosing which technologies to use frustrating, but at least it shows there is a large community behind Java. After reading, reading and reading some more I settled on using <a href="http://www.hibernate.org">Hibernate</a> for database persistence, <a href="http://www.springframework.org">Spring</a> for the middle tier and <a href="http://jakarta.apache.org/tapestry/">Tapestry</a> for the web front end. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryancampbell.com/2005/11/29/hibernate-spring-and-tapestry/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Lets Build a Blog System</title>
		<link>http://www.ryancampbell.com/2005/10/06/lets-build-a-blog-system/</link>
		<comments>http://www.ryancampbell.com/2005/10/06/lets-build-a-blog-system/#comments</comments>
		<pubDate>Thu, 06 Oct 2005 20:52:02 +0000</pubDate>
		<dc:creator>Ryan Campbell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wp.bobjim.com/wordpress/2005/10/06/lets-build-a-blog-system/</guid>
		<description><![CDATA[Ok so I'm always thinking about new projects to work on and new ways to make money but I never stick with one. I'm sure I'm not alone on this, so many ideas I don't even know where to start. It's also hard to decide when you're unsure which idea will make the most money. [...]]]></description>
			<content:encoded><![CDATA[<p>Ok so I'm always thinking about new projects to work on and new ways to make money but I never stick with one. I'm sure I'm not alone on this, so many ideas I don't even know where to start. It's also hard to decide when you're unsure which idea will make the most money.</p>
<p>Repeatedly a lot of my ideas revolve around blogs and I've even been getting multiple requests to build blog hosting software. At the same time I also think about giving back to open source. Lately I have been contributing ports to the <a href="http://www.darwinports.org">DarwinPorts Project</a>.</p>
<p>Although I think MovableType is a great start to a blog manager, it definitely lacks in many areas. For example it could use an easier way to change themes/templates, adding plugins and how you content is displayed. So I am going to write a new blog system, might even name at CyberScript (<a href="http://www.cyberscript.net">my company</a> name)</p>
<p>Another reason I have decided on this is because I think releasing software for free would be a great way to really show my talent. I have also seem a lot of companies base their business on open source and find that very respectable. Also free software is a great way to get lots of exposure quickly.</p>
<p>Stay tuned for more details on this project as I get further in to planning. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryancampbell.com/2005/10/06/lets-build-a-blog-system/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Fedora Fad</title>
		<link>http://www.ryancampbell.com/2005/10/05/the-fedora-fad/</link>
		<comments>http://www.ryancampbell.com/2005/10/05/the-fedora-fad/#comments</comments>
		<pubDate>Thu, 06 Oct 2005 05:42:01 +0000</pubDate>
		<dc:creator>Ryan Campbell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wp.bobjim.com/wordpress/2005/10/05/the-fedora-fad/</guid>
		<description><![CDATA[I am starting to really hate Fedora, honestly I see it as nothing more then a toy that I would get bored of within a week. Forced to use it in a production envirorment actually makes my day worse. Who knows, maybe I am just so caught up in the FreeBSD Ports Collection that I [...]]]></description>
			<content:encoded><![CDATA[<p>I am starting to really hate Fedora, honestly I see it as nothing more then a toy that I would get bored of within a week. Forced to use it in a production envirorment actually makes my day worse. Who knows, maybe I am just so caught up in the FreeBSD Ports Collection that I am completely missing the positives to using any other OS. I do know though that FreeBSD has never let me down and is a breeze to maintain.</p>
<p>As a web developer I depend on the system I'm using to work correctly. I have my own code problems to solve and should not have to be creating work arounds or spend hours guessing why my code runs different on every machine I install it on. Some might say suck-it-up but if I'm wasting time on something that could be avoided, why not avoid it? It is unproductive and burns me out for the rest of the day.</p>
<p>Anyways.. enough complaining for today.. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryancampbell.com/2005/10/05/the-fedora-fad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My First Post</title>
		<link>http://www.ryancampbell.com/2005/10/04/my-first-post/</link>
		<comments>http://www.ryancampbell.com/2005/10/04/my-first-post/#comments</comments>
		<pubDate>Wed, 05 Oct 2005 05:33:43 +0000</pubDate>
		<dc:creator>Ryan Campbell</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://wp.bobjim.com/wordpress/2005/10/04/my-first-post/</guid>
		<description><![CDATA[Well this is my first post to my blog, mainly want to just test out how this system works. I've never stuck with writing in one of these in the past but I want to try this time. I think blogs are a cool idea and are already changing who people use for their news [...]]]></description>
			<content:encoded><![CDATA[<p>Well this is my first post to my blog, mainly want to just test out how this system works. I've never stuck with writing in one of these in the past but I want to try this time. I think blogs are a cool idea and are already changing who people use for their news sources. Gives everyone an equal opportunity to let their thoughts be heard.</p>
<p>Although this is a great system.. One suggestion I would have for the MovableType developers is to explain further on this "entry body/extended entry" stuff. How do I know how much I should write in the entry body? Does the entire entry body get displayed in my RSS feed? I think the extended entry textarea should be hidden by default. Also why not a browser-based wysiwyg editor? That technology has been around for quite a while now.</p>
<p>Anyways.. I think this is a enough for my first post <img src='http://www.ryancampbell.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryancampbell.com/2005/10/04/my-first-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
