I hereby claim:
- I am cobyr on github.
- I am crandquist (https://keybase.io/crandquist) on keybase.
- I have a public key ASArJkkXkoBqc33LLG1UXy-4EyrJpkA8Fa99WljfyNfDfgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
import java.util.ArrayList; | |
import java.util.Scanner; | |
public class IdentifierCheck | |
{ | |
public static void main(String[] args) | |
{ | |
// input from user | |
Scanner in = new Scanner(System.in); |
#!/bin/sh | |
# | |
#set -x | |
#set -v | |
# | |
# This was rewritten in /bin/sh since bash is not readily available | |
# everywhere. /bin/sh is available on all *NIX systems. | |
# | |
##################################################################### | |
# PCI data gathering script for Coalfire Systems, Inc. |
A checklist for designing and developing internet scale services, inspired by James Hamilton's 2007 paper "On Desgining and Deploying Internet-Scale Services."
# set prompt | |
export PS1=`ruby ~/bin/master-prompt.rb` |
require 'rubygems' | |
require 'geek_painter' | |
master_piece = GeekPainter.paint do | |
label "# \\t ".in(:white) | |
#label "[".in(:brown) | |
#label "\\u".in :light_gray | |
#label "@".in :yellow | |
#label "\\h".in :light_gray | |
#label "]".in(:brown) |
supports partial dating, ie:
supports easy tagging
supports location
I hereby claim:
To claim this, I am signing this object:
require 'rubygems' | |
require 'geek_painter' | |
master_piece = GeekPainter.paint do | |
label "\\# \\t ".in(:white) | |
#label "[".in(:brown) | |
#label "\\u".in :light_gray | |
#label "@".in :yellow | |
#label "\\h".in :light_gray | |
#label "]".in(:brown) |
require 'date' | |
class Time | |
# Returns a new Time, +years+ later than this time. Feb 29 of a | |
# leap year will be rounded up to Mar 1 if the target date is not a leap | |
# year. | |
def plus_year(years) | |
Time.local(year + years, month, day, hour, min, sec, usec) | |
end | |
# Returns a new Time, +months+ later than this time. The day will be | |
# rounded down if it is not valid for that month. |