Convert Ruby scripts to HTML and Markdown
#ruby #markdown #docco
How do i automate creating these posts images
#ruby #cairo
post to your linkedin account using ruby
#ruby #linkedin
Get All your Facebook Checkins and print out location lang/long
#ruby #checkins #facebook
Track your computer open/shutdown times
#!/usr/bin/env ruby
# Author : Emad Elsaid (https://github.com/blazeeboy)
FILENAME = 'db.txt'
OPEN, CLOSE = 1 , 0
file = File.open(FILENAME, 'a')
file.write "#{OPEN} : #{Time.new}\n"
file.flush
begin
loop { sleep 60 } # sleep for an hour in an endless loop
rescue SystemExit, Interrupt # on exit
file.write "#{CLOSE} : #{Time.new}\n"
file.close
end
Execute code online and return output
#ruby #evalin #code
Submit Protip to http://Coderwall.com using Selenium
#coderwall #ruby #selenium
Commandline Key Value Storage application
#ruby #storage #commander
Ruby Maze Generator
#ruby, #maze, #game, #algorithm
Draw a Moving line with mouse using Ruby and Gosu gem
#ruby #gosu #drawing
Help us out! More and more tutorials are submitted to Good-Tutorials each day. We could use your help with finding good tutorials.
Mind lending a hand?