This file contains 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
#!/bin/bash | |
## If you've locked down all your ports for a project but need to access your instances via ssh (google cloud shell maybe?) | |
## this script might be of use to you. | |
EXPIRE=$(date +%s --date='now + 8 hours') | |
case "$1" in | |
add) | |
test -e ~/.tmp-ssh && echo "Rule exists, remove it first" && exit 1 |
This file contains 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
# Note: This will probably require some tweaking. Dr. Gruss sent this to me but said he hasn't used it in a very long time. | |
# Video link: https://www.youtube.com/watch?v=EfEW3_RLnGA | |
import os | |
import random | |
import string | |
from nltk import word_tokenize | |
from collections import defaultdict | |
from nltk import FreqDist | |
from nltk.corpus import stopwords |