Sometimes it is useful to do some action on a Facebook user right after your application has been installed by the user. For example, you might want to push some default FBML to user’s profile in case he does not complete the action you expect him to do after installation. Facebook application configuration allows to [...]
Posted on 08/14/2007, 10:36 pm, by val, under
All,
Ops.
If you use nagios for monitoring of your rails instances, you might want to get notification not only via email or SMS-messages but to your AIM when you are online. The script (libexec/aim_notifier.rb) utilizes the Net::TOC gem for sending out notifications:
#!/usr/bin/env ruby
require ‘rubygems’
require ‘net/toc’
user = ‘your_bot_name’
password = ‘bot_password’
msg = ARGV[0].to_s.gsub(‘\n’, [...]