Relationship hash name | Like | Dislike | Respect | Hate |
---|---|---|---|---|
ARMY | ARMY | COP | ||
AGGRESSIVE_INVESTIGATE | HATES_PLAYER AGGRESSIVE_INVESTIGATE |
PLAYER | ||
AMBIENT_GANG_BALLAS | AMBIENT_GANG_BALLAS GUARD_DOG |
|||
AMBIENT_GANG_CULT | AMBIENT_GANG_CULT GUARD_DOG |
|||
AMBIENT_GANG_FAMILY | AMBIENT_GANG_FAMILY GUARD_DOG |
|||
AMBIENT_GANG_LOST | AMBIENT_GANG_LOST GUARD_DOG |
|||
AMBIENT_GANG_MARABUNTE | AMBIENT_GANG_MARABUNTE GUARD_DOG |
|||
AMBIENT_GANG_MEXICAN | AMBIENT_GANG_MEXICAN GUARD_DOG |
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
def m(m) | |
puts m | |
puts " Currently at: #{`ps -o rss= -p #$$`.to_i / 1024} MB" | |
puts " #{GC.stat.inspect}" | |
end | |
m 'Started'; | |
10_000_000.times { Class.new } | |
m 'Made 10,000,000 (unstored) objects' |
This simple script will take a picture of a whiteboard and use parts of the ImageMagick library with sane defaults to clean it up tremendously.
The script is here:
#!/bin/bash
convert "$1" -morphology Convolve DoG:15,100,0 -negate -normalize -blur 0x1 -channel RBG -level 60%,91%,0.1 "$2"