Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×

Comment Re:Curse of the Cursed Cursor (Score 4, Insightful) 855

> the power cable had fallen out of the adapter.

A good way to overcome this is to say "sometimes some junk gets in the plugs... unplug your adapter and then plug it in again." That way if the adapter is indeed unplugged, the person doesn't have to admit it - they can just plug it in and save face by saying "oh yes, it must have gotten loose or dirty or something". Seems like a good strategy.

Comment Re:Good lord, what is with the taggers? (Score 1) 80

> is Passenger easier to deploy?

It's easier because you can replace a mongrel cluster with mod_passenger which dynamically configures the cluster size. Kind of like you configure an Apache web server - you don't set it to have 10 instances running all the time, instead you set it to never exceed 100 process and let Apache manage how many processes it needs under that maximum threshold.

But you're right - the actual deployment is still done with Capistrano, albeit with some minor tweaks to the deployment tasks.

Comment Re:Good lord, what is with the taggers? (Score 3, Informative) 80

> the backend functionality works pretty well considering the time invested.

So true. I think Rails (especially when combined with Passenger) really lowers the bar for getting a dynamic web site with readable URLs (e.g., /captions/public/posts/4/entries/new) up and running. It opens a lot of doors; good times indeed!

Comment Platform-based Ruby (Score 4, Interesting) 75

I heard Rich Kilmer talk about the various Ruby implementations once; his take on them were that each would be used to leverage the underlying platform. In other words, if you want to use Java libraries, you'll use JRuby. If you want to use the Mac libraries (e.g., via Hot Cocoa), you'll use MacRuby. And if you want to use C extensions like RMagick and libxml2, you'll use MRI.

I thought that was an interesting way of looking at the various implementations... each one would be appropriate for a different scenario.

Slashdot Top Deals

A penny saved is a penny to squander. -- Ambrose Bierce

Working...