- Table of Contents
- System Overview
- Service Overview
- Contributing Applications, Daemons, and Windows Services
- Hours of Operation
- Execution Design
- Infrastructure and Network Design
- Resilience, Fault Tolerance and High-Availability
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# | |
# Usages | |
# num2txt path/to/your/file.numbers | |
require 'csv' | |
if !ARGV[0] | |
puts "Please specify a number file." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Ugly little script I used when I needed to generate an LDAP DB with 100k sample users | |
# | |
require 'rubygems' | |
require 'faker' | |
require 'active_ldap' | |
ActiveLdap::Base.establish_connection( | |
:host => '10.0.0.8', |