<br />
<b>Warning</b>:  include() [<a href='function.include'>function.include</a>]: Unable to access /var/www/html/rogue-development/blog2/wp-content/advanced-cache.php in <b>/var/www/html/rogue-development/blog2/wp-settings.php</b> on line <b>62</b><br />
<br />
<b>Warning</b>:  include(/var/www/html/rogue-development/blog2/wp-content/advanced-cache.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory in <b>/var/www/html/rogue-development/blog2/wp-settings.php</b> on line <b>62</b><br />
<br />
<b>Warning</b>:  include() [<a href='function.include'>function.include</a>]: Failed opening '/var/www/html/rogue-development/blog2/wp-content/advanced-cache.php' for inclusion (include_path='.:/usr/share/pear:/usr/share/php') in <b>/var/www/html/rogue-development/blog2/wp-settings.php</b> on line <b>62</b><br />
<br />
<b>Notice</b>:  add_option was called with an argument that is <strong>deprecated</strong> since version 2.3 with no alternative available. in <b>/var/www/html/rogue-development/blog2/wp-includes/functions.php</b> on line <b>3468</b><br />
<br />
<b>Notice</b>:  register_sidebar_widget is <strong>deprecated</strong> since version 2.8! Use wp_register_sidebar_widget() instead. in <b>/var/www/html/rogue-development/blog2/wp-includes/functions.php</b> on line <b>3382</b><br />
<br />
<b>Notice</b>:  register_widget_control is <strong>deprecated</strong> since version 2.8! Use wp_register_widget_control() instead. in <b>/var/www/html/rogue-development/blog2/wp-includes/functions.php</b> on line <b>3382</b><br />
<?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>Marc's Musings &#187; RubyOnRails</title>
	<atom:link href="http://www.rogue-development.com/blog2/category/rubyonrails/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rogue-development.com/blog2</link>
	<description>Comments and thoughts on technology from Marc Hughes</description>
	<lastBuildDate>Tue, 29 Mar 2011 00:04:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Quick web-dev environment found.</title>
		<link>http://www.rogue-development.com/blog2/2009/03/quick-web-dev-environment-found/</link>
		<comments>http://www.rogue-development.com/blog2/2009/03/quick-web-dev-environment-found/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 14:13:47 +0000</pubDate>
		<dc:creator>Marc</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[RubyOnRails]]></category>

		<guid isPermaLink="false">http://www.rogue-development.com/blog2/?p=348</guid>
		<description><![CDATA[A while back, I was trying out cold fusion to see if it could become my new &#8220;quickly get a website up and running&#8221; environment.  I was pretty dissapointed with it.  The speed / power / ease tradeoffs just didn&#8217;t feel like they were in the right place.  Ever since then I&#8217;ve been using a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.rogue-development.com/blog2/2008/06/gonna-try-out-this-cfml-stuff-where-to-start/">A while back</a>, I was trying out cold fusion to see if it could become my new &#8220;quickly get a website up and running&#8221; environment.  I was pretty dissapointed with it.  The speed / power / ease tradeoffs just didn&#8217;t feel like they were in the right place.  Ever since then I&#8217;ve been using a pretty standard J2EE solution.  While I&#8217;m quite happy with how that works out, I really wish I had something faster to develop quick ideas with.</p>
<p>Yesterday, I spent about half the day learning / working with <a href="http://rubyonrails.org/">ruby on rails</a>.  In that half-day I wrote a simple web application for a content editor I&#8217;ve been working on that:</p>
<ol>
<li>Allows a user to create &#8220;lessons&#8221;</li>
<li>Allows the user to tag those lessons and search based on tags (with a nifty Ajax interface)</li>
<li>Writes the lessons out into our version control system (with an index in a db)</li>
<li>Allows the user to launch a Flex application (which I had already written) to actually preview or edit the lesson through a REST api</li>
</ol>
<p>Now, if I had been working in my J2ee environment, I bet I could have written it in about the same amount of time.  BUT, with RoR I also had to</p>
<ol>
<li>Set up a development environment</li>
<li>Learn enough ruby on rails to get this done</li>
<li>Figure out how to actually use TextMate well</li>
</ol>
<p>So overall, I think next time I could have written this thing in just an hour or two, which is pretty damned amazing, even for such a small application.</p>
<p>I&#8217;m not sure whether or not I&#8217;d go the J2EE or the RoR route if I was just starting a large complex site, but for small simple things, RoR is my choice for now on.</p>
<p>Oh, for books, I had grabbed the OReilly ruby book and Sitepoint&#8217;s &#8220;Simply Rails 2&#8243;.  The ruby book is great, really explains the language well.  The rails books is really just walking you through one example without a lot of &#8220;why&#8221; so I&#8217;m pretty dissapointed with it.  It wasn&#8217;t enough for me to build this simple example and I relied on google for a lot, but it was enough for me to understand what rails could do for me and to figure out what I should search for.</p>
<blockquote><p>Update:</p>
<p>Spent 3 more hours with it today and added:</p>
<ol>
<li>Account creation / signup</li>
<li>Authentication (Login / Logout)</li>
<li>A comment system to let people comment on lessons in progress</li>
<li>An audit log for all changes done to a lesson</li>
</ol>
<p>RoR rocks my socks.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.rogue-development.com/blog2/2009/03/quick-web-dev-environment-found/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

