Search Results

1
vote

Implementation of “Remember me” in a Rails application.

This is a pretty good write-up of one guys experience of creating 30-day persistent sessions. WARNING: blog post is from 2006 …
1
vote

What is the best way to learn Ruby?

The easiest way to learn ruby is to find a small project that you know how to solve in another language and use ruby to solve it. I found the Pickaxe book to be unnecessary. Bookmark …
4
votes

Open Source Ruby Projects

Instead of joining an open source project, find an itch you want to scratch. I find my first year with a language is almost always throw away code (or at least, it should be). …
0
votes

What IDE to use for developing in Ruby on Rails on windows?

I use Emacs on Windows. Installing and configuring it to work with rails is a pain though. …
0
votes

Why Doesn’t My Cron Job Work Properly?

Is cron sending emails with logs? If not, pipe the output of cron to a log file. Make sure to redirect STDERR to the log. …