Montreal Tech Watch

For sys-admins and ruby programmers, here’s raad, a new lightweight service wrapper, that allows you to daemonize your existing ruby code, and simplify operations.

Colin Surprenant (@colinsurprenant) didn’t find anything that offer this in a simple way, and that’s how raad was born. The ruby gem still in early release, but you can see here how simple it is to use:

require ‘raad’

class SimpleDaemon
def start
@stopped = false
while !@stopped
Raad::Logger.info(“simple_daemon running”)
sleep(1)
end
end

def stop
@stopped = true
Raad::Logger.info(“simple_daemon stopped”)
end
end

It’s certainly minimalistic, certainly on a different level from exisiting librairies requiring complex configuration, patching or even compiling.

raad is currently used by Needium startup in staging, and will be deployed soon in production, to help in infrastructure management. For anyone who is maintaining several servers and who need to launch (or restart) a variety of scripts at each install, it’s probably time to have a look at raad as well.

  • Intellitix provides rfid access to Coachella

    #coachella

  • twtspire.com| idea for the next startup = One Tweet Away? twtspire.com| idea for the next startup = One Tweet Away?

    twtspire.com| idea for the next startup = One Tweet Away?

    Startups solve problems. So if you find a problem there’s probably a startup idea lying somewhere nearby. A Montreal developer Kenji Williams developed an app called twtspire.com that scours twitter and automatically detects tweets from people that wonder why a solution doesn’t exist for a specific problem they’re having. Here are example of tweets from [...]

  • AccelerateMTL : more than just a conference

    AccelerateMTL is coming up on the afternoon on May 23rd, right after the FounderFuel demo day. It’s announced as a conference full of good keynotes, from successful entrepreneurs like BeyondTheRack founder, renowned Internet marketers, and other Internet execs. View more on the eventbrite page. As the name suggests, the presentations were curated to accelerate startups. [...]

You must be logged in to post a comment.

blog comments powered by Disqus