I hereby claim:
- I am garrettreid on github.
- I am garrettreid (https://keybase.io/garrettreid) on keybase.
- I have a public key ASDrmoMKkBMhNjItGOn959i_tW3W3g_Waz1wgF3TfS0SbAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python2 | |
from random import choice | |
with open("/usr/share/dict/words", "r") as wordlist: | |
words = wordlist.read().splitlines() | |
print "Hit enter for each random word", | |
while True: | |
raw_input() | |
print choice(words), |
set fileName to (choose file with prompt "Select a file:") | |
set myCmd to "vim \"" & (POSIX path of fileName) & "\"" | |
tell application "Terminal" | |
activate | |
do script myCmd | |
end tell | |
return | |
on open of someFiles | |
repeat with fileName in (someFiles) |
#!/usr/bin/python | |
import os | |
import hashlib | |
import getpass | |
import base64 | |
password1 = None | |
password2 = None |
/* | |
* Copyright (C) 2009 flakes @ EFNet | |
* New match logic by Gm4n @ freenode | |
* Version 1.0 (2012-08-19) | |
* | |
* This program is free software; you can redistribute it and/or modify it | |
* under the terms of the GNU General Public License version 2 as published | |
* by the Free Software Foundation. | |
*/ |