Skip to content

Instantly share code, notes, and snippets.

View abe4tawa8's full-sized avatar

Yoichi Isozaki abe4tawa8

  • Galactic Empire
  • Imperial Star Destroyer
View GitHub Profile
#!/usr/bin/env ruby
# Based on what N. Ishitobi and Y. Isozaki wrote at minatorubykaigi01.
# Modified by Y. Isozaki.
class Amidakuji
def initialize(people, height=10)
@people, @height = people, height
end
@abe4tawa8
abe4tawa8 / github-setup.rb
Created April 22, 2012 00:30
git-dojo setup script
#!/usr/bin/env ruby
require 'octokit'
require 'csv'
user_login = 'username'
user_password = 'password'
organization = 'git-dojo'
csv_file = ARGV.first || abort("Usage: #{$0} <csv-file>")