I hereby claim:
- I am maxdavid on github.
- I am maxdavid (https://keybase.io/maxdavid) on keybase.
- I have a public key whose fingerprint is 47BE A3C1 10E1 E0A9 43B6 E514 197B 2596 4BDA 57F6
To claim this, I am signing this object:
#!/bin/bash | |
# Converts white backgrounds to transparent. | |
# Pass the image path and threshold percentage | |
# example: | |
# ./background-remove.sh catpic.jpg 20% | |
IMGPATH=$1 | |
THRESHOLD=$2 |
#!/usr/bin/env node | |
/* | |
tmuxfixer.js | |
USAGE: | |
$ node tmuxfixer.js old-conf-path [new-conf-path] | |
PURPOSE & CONTEXT: This script takes in a tmux configuration file and combines | |
all deprecated -fg, -bg, and -attr into a single -style option line. | |
VERSION BUILD=8920312 | |
TAB T=1 | |
SET !ERRORIGNORE YES | |
URL GOTO=https://www.facebook.com/<YOUR FACEBOOK USERNAME HERE>/allactivity?privacy_source=activity_log&log_filter=cluster_11 | |
' Eventually, depending on how many posts there are, you'll need to start manually skipping to years. | |
' Uncomment the line below and decrement the year as needed. | |
'TAG POS=1 TYPE=A ATTR=HREF:/< USERNAME >/timeline/2010 | |
WAIT SECONDS=5 | |
URL GOTO=javascript:window.scrollBy(0,100000) | |
TAG POS=1 TYPE=A ATTR=aria-label:"Allowed on Timeline" |
I hereby claim:
To claim this, I am signing this object:
# `TESC Plays Nethack' bot | |
# arg 1 = irc nick | |
# args 1< = additional phrases | |
require 'cinch' | |
ircnick = ARGV[0] | |
class NethackCommands | |
include Cinch::Plugin | |
# every 10 seconds, call 'timed' |
#!/usr/bin/env python | |
import urllib | |
import urllib.parse | |
import urllib.request | |
import string | |
import json | |
url = 'https://ctf.fluxfingers.net:1316/gimmetv' | |
key_length = 10 |
#!/bin/bash | |
while true; do | |
pidof tor | xargs kill -HUP # get a new tor identity | |
torify wget -qO- https://ctf.fluxfingers.net/ref/oSaBba5IScd8V2a --no-check-certificate | grep "successfully" | |
done |
The Evergreen Hacker Club is a collection of individuals interested in | |
learning, discussing, and implementing real-world applications of advanced | |
technological subjects. We focus on topics chosen by the membership, and | |
regularly host workshops for the group to share their skills with each other. | |
Hacker Club is also home to the GNU-e-Ducks, Evergreen's competitive | |
cyber-security team. |
#!/usr/bin/env python3 | |
# xkcd-hasher.py | |
# for the motherland!! http://almamater.xkcd.com/ | |
# forked from arthurdent's 1193.py. thx buddy | |
# | |
# usage: ./xkcd-hasher.py <num hashes> <randword length> <goal number> | |
from skein import skein1024 | |
from datetime import * |