<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.1" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments on: Ah, hell.</title>
	<link>http://www.spinnwebe.com/wp/2006/09/05/ah-hell/</link>
	<description>The occasional brainshot</description>
	<pubDate>Tue, 06 Jan 2009 23:16:32 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1</generator>

	<item>
		<title>By: Anonymous Prime</title>
		<link>http://www.spinnwebe.com/wp/2006/09/05/ah-hell/#comment-855</link>
		<author>Anonymous Prime</author>
		<pubDate>Tue, 05 Sep 2006 21:56:25 +0000</pubDate>
		<guid>http://www.spinnwebe.com/wp/2006/09/05/ah-hell/#comment-855</guid>
					<description>I'm not sure I could admit to wanting to use anything called "Ruby on Rails". 

That's the dumbest name I've heard since "DJ Ditty" (Dell's failed iPod-wannabe).</description>
		<content:encoded><![CDATA[<p>I&#8217;m not sure I could admit to wanting to use anything called &#8220;Ruby on Rails&#8221;. </p>
<p>That&#8217;s the dumbest name I&#8217;ve heard since &#8220;DJ Ditty&#8221; (Dell&#8217;s failed iPod-wannabe).</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: ewhac</title>
		<link>http://www.spinnwebe.com/wp/2006/09/05/ah-hell/#comment-856</link>
		<author>ewhac</author>
		<pubDate>Tue, 05 Sep 2006 22:13:28 +0000</pubDate>
		<guid>http://www.spinnwebe.com/wp/2006/09/05/ah-hell/#comment-856</guid>
					<description>Hell, if you really want to bend your brain learning a new language to build your Web site, learn REBOL:

http://rebol.com/

It was designed by a friend of mine.  It's a general-purpose object-based language, but it's finding some application in Web services.

Schwab</description>
		<content:encoded><![CDATA[<p>Hell, if you really want to bend your brain learning a new language to build your Web site, learn REBOL:</p>
<p><a href="http://rebol.com/" rel="nofollow">http://rebol.com/</a></p>
<p>It was designed by a friend of mine.  It&#8217;s a general-purpose object-based language, but it&#8217;s finding some application in Web services.</p>
<p>Schwab</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: maus</title>
		<link>http://www.spinnwebe.com/wp/2006/09/05/ah-hell/#comment-857</link>
		<author>maus</author>
		<pubDate>Tue, 05 Sep 2006 23:29:45 +0000</pubDate>
		<guid>http://www.spinnwebe.com/wp/2006/09/05/ah-hell/#comment-857</guid>
					<description>I'm sort of in the same boat, and I'm leaning towards Ruby. I'm building from the ground-up, and it just feels more intuitive to me than PHP for that sort of thing. 

Really, after the whole "holy crap a programming language that you can sprinkle into html" novelty wore off for me, PHP became sort of a bitch to deal with.

If you want to take a half-step backwards, get a load of this: http://perl.apache.org/embperl/</description>
		<content:encoded><![CDATA[<p>I&#8217;m sort of in the same boat, and I&#8217;m leaning towards Ruby. I&#8217;m building from the ground-up, and it just feels more intuitive to me than PHP for that sort of thing. </p>
<p>Really, after the whole &#8220;holy crap a programming language that you can sprinkle into html&#8221; novelty wore off for me, PHP became sort of a bitch to deal with.</p>
<p>If you want to take a half-step backwards, get a load of this: <a href="http://perl.apache.org/embperl/" rel="nofollow">http://perl.apache.org/embperl/</a></p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Kyol</title>
		<link>http://www.spinnwebe.com/wp/2006/09/05/ah-hell/#comment-858</link>
		<author>Kyol</author>
		<pubDate>Tue, 05 Sep 2006 23:33:57 +0000</pubDate>
		<guid>http://www.spinnwebe.com/wp/2006/09/05/ah-hell/#comment-858</guid>
					<description>Ruby is fun and interesting, but it's not the friendliest language I've run into.  I think the biggest annoyance is something that perl will happily skip right on over, like:

@foo = split($a)

Perl will generally ignore (unless if you have explicitly undefined $a), versus ruby:

foo = b.split(//)
puts foo # Need to cause ruby to act on b..
-:1: undefined local variable or method `b' for main:Object (NameError)

  Which isn't a _bad_ thing, but it takes some time getting used to considering that your variables may not always be filled the way you expect them to, or that it may have turned into an array in an object and whoops!  Can't treat it quite like a string.  But it does teach diligence.</description>
		<content:encoded><![CDATA[<p>Ruby is fun and interesting, but it&#8217;s not the friendliest language I&#8217;ve run into.  I think the biggest annoyance is something that perl will happily skip right on over, like:</p>
<p>@foo = split($a)</p>
<p>Perl will generally ignore (unless if you have explicitly undefined $a), versus ruby:</p>
<p>foo = b.split(//)<br />
puts foo # Need to cause ruby to act on b..<br />
-:1: undefined local variable or method `b&#8217; for main:Object (NameError)</p>
<p>  Which isn&#8217;t a _bad_ thing, but it takes some time getting used to considering that your variables may not always be filled the way you expect them to, or that it may have turned into an array in an object and whoops!  Can&#8217;t treat it quite like a string.  But it does teach diligence.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Kyol</title>
		<link>http://www.spinnwebe.com/wp/2006/09/05/ah-hell/#comment-859</link>
		<author>Kyol</author>
		<pubDate>Tue, 05 Sep 2006 23:39:44 +0000</pubDate>
		<guid>http://www.spinnwebe.com/wp/2006/09/05/ah-hell/#comment-859</guid>
					<description>(Actually, that isn't the best of examples - but it's the sort of thing that Ruby will cause you to ram red hot needles into your eyes with if you treat it like you would throw something out in Perl..)

  This is actually something on my mind a bit, though - we're redoing our major software system at work in the next few quarters, and one of the discussions is whether to continue using Perl - we all know and love it, but it has limitations and is starting to feel creaky, or ruby, which is the fast new hotness that none of us know too well.</description>
		<content:encoded><![CDATA[<p>(Actually, that isn&#8217;t the best of examples - but it&#8217;s the sort of thing that Ruby will cause you to ram red hot needles into your eyes with if you treat it like you would throw something out in Perl..)</p>
<p>  This is actually something on my mind a bit, though - we&#8217;re redoing our major software system at work in the next few quarters, and one of the discussions is whether to continue using Perl - we all know and love it, but it has limitations and is starting to feel creaky, or ruby, which is the fast new hotness that none of us know too well.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Pandemic</title>
		<link>http://www.spinnwebe.com/wp/2006/09/05/ah-hell/#comment-860</link>
		<author>Pandemic</author>
		<pubDate>Wed, 06 Sep 2006 06:26:04 +0000</pubDate>
		<guid>http://www.spinnwebe.com/wp/2006/09/05/ah-hell/#comment-860</guid>
					<description>I guess programming Java deploying in JBoss/J2EE and JSP with embedded Tomcat is right out.  ;)

It would be overkill, but you'd learn a lot of marketable skills. :)</description>
		<content:encoded><![CDATA[<p>I guess programming Java deploying in JBoss/J2EE and JSP with embedded Tomcat is right out.  ;)</p>
<p>It would be overkill, but you&#8217;d learn a lot of marketable skills. :)</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Bob</title>
		<link>http://www.spinnwebe.com/wp/2006/09/05/ah-hell/#comment-863</link>
		<author>Bob</author>
		<pubDate>Wed, 06 Sep 2006 13:54:14 +0000</pubDate>
		<guid>http://www.spinnwebe.com/wp/2006/09/05/ah-hell/#comment-863</guid>
					<description>Dammit, people, whatever happened to HyperTalk?</description>
		<content:encoded><![CDATA[<p>Dammit, people, whatever happened to HyperTalk?</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Doug</title>
		<link>http://www.spinnwebe.com/wp/2006/09/05/ah-hell/#comment-891</link>
		<author>Doug</author>
		<pubDate>Thu, 07 Sep 2006 15:12:43 +0000</pubDate>
		<guid>http://www.spinnwebe.com/wp/2006/09/05/ah-hell/#comment-891</guid>
					<description>Using Ruby puts the fun back in programming.  You'd be amazed just how elegant it is.</description>
		<content:encoded><![CDATA[<p>Using Ruby puts the fun back in programming.  You&#8217;d be amazed just how elegant it is.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: JJ</title>
		<link>http://www.spinnwebe.com/wp/2006/09/05/ah-hell/#comment-892</link>
		<author>JJ</author>
		<pubDate>Thu, 07 Sep 2006 16:55:36 +0000</pubDate>
		<guid>http://www.spinnwebe.com/wp/2006/09/05/ah-hell/#comment-892</guid>
					<description>Well, if you want my opinion (and why you'd want it is beyond me)...

For the site, stick with what you're good at. If you decide to change languages later on that's fine, but if you make this your first attempt at RoR (or any language) you're going to put off any future upgrades because the code you've have to change is crap.

Once you've got everything cleaned up and relaunched start working on RoR stuff, either as smaller projects or as temporary things that you don't really care about. That way if you need to wipe something out it's no big loss and the site still runs like normal. When you're confident that you've got RoR figured out, that's a good time to re-do the site.

I know how fun it is to try to remake everything in the new language you just started learning, but in the long run it pretty much sucks. My website was my first PHP project 5.5 years ago and I'm still running my old, craptastic programming because I don't want to dick around with trying to make changes while having it continue to work. Eventually I'll just have to blow it all up and start over, but that ain't happening any time soon.</description>
		<content:encoded><![CDATA[<p>Well, if you want my opinion (and why you&#8217;d want it is beyond me)&#8230;</p>
<p>For the site, stick with what you&#8217;re good at. If you decide to change languages later on that&#8217;s fine, but if you make this your first attempt at RoR (or any language) you&#8217;re going to put off any future upgrades because the code you&#8217;ve have to change is crap.</p>
<p>Once you&#8217;ve got everything cleaned up and relaunched start working on RoR stuff, either as smaller projects or as temporary things that you don&#8217;t really care about. That way if you need to wipe something out it&#8217;s no big loss and the site still runs like normal. When you&#8217;re confident that you&#8217;ve got RoR figured out, that&#8217;s a good time to re-do the site.</p>
<p>I know how fun it is to try to remake everything in the new language you just started learning, but in the long run it pretty much sucks. My website was my first PHP project 5.5 years ago and I&#8217;m still running my old, craptastic programming because I don&#8217;t want to dick around with trying to make changes while having it continue to work. Eventually I&#8217;ll just have to blow it all up and start over, but that ain&#8217;t happening any time soon.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: Stan Xhiao</title>
		<link>http://www.spinnwebe.com/wp/2006/09/05/ah-hell/#comment-922</link>
		<author>Stan Xhiao</author>
		<pubDate>Mon, 11 Sep 2006 14:09:29 +0000</pubDate>
		<guid>http://www.spinnwebe.com/wp/2006/09/05/ah-hell/#comment-922</guid>
					<description>People in the know swear by Egg On Two Wheels.</description>
		<content:encoded><![CDATA[<p>People in the know swear by Egg On Two Wheels.</p>
]]></content:encoded>
				</item>
	<item>
		<title>By: subdude</title>
		<link>http://www.spinnwebe.com/wp/2006/09/05/ah-hell/#comment-927</link>
		<author>subdude</author>
		<pubDate>Mon, 11 Sep 2006 22:16:52 +0000</pubDate>
		<guid>http://www.spinnwebe.com/wp/2006/09/05/ah-hell/#comment-927</guid>
					<description>Sounds too much like a friggin' Country and Western song.

Stick with PHP and get the damn thing back up already; I neeeeeed my captions FIX!!!!</description>
		<content:encoded><![CDATA[<p>Sounds too much like a friggin&#8217; Country and Western song.</p>
<p>Stick with PHP and get the damn thing back up already; I neeeeeed my captions FIX!!!!</p>
]]></content:encoded>
				</item>
</channel>
</rss>
