Skip to the relevant sections if needed.
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
import string | |
import sys | |
import requests | |
import whois | |
from nltk import tokenize | |
BOOKFILE = sys.argv[1] | |
OUTPUTFILE = BOOKFILE + '.possible-domains.txt' |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Will Wolf is inviting you to a scheduled Zoom meeting. | |
Topic: Will's 31st Birthday Party! | |
Time: May 31, 2020 11:00 AM Eastern Time (US and Canada) | |
Join Zoom Meeting | |
https://asapp.zoom.us/j/98245285251?pwd=aVN2ZWZXRjVPU1A0TkhZcmRRNWpjQT09 | |
Meeting ID: 982 4528 5251 | |
Password: 076822 |
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
#!/bin/python | |
import argparse | |
import re | |
import json | |
import string | |
parser = argparse.ArgumentParser( | |
description="Print a Markdown table of contents for a Jupyter notebook." | |
) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
.PHONY: clean debug run | |
CXX = g++ | |
CXXFLAGS = -std=c++11 -Wall -Wextra | |
LDFLAGS = | |
SOURCES = hash.cpp spellcheck.cpp | |
OBJECTS = $(SOURCES:.cpp=.o) | |
EXECUTABLE = spell.exe |
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
#!/bin/bash | |
# Dependencies: fortune, cowsay, lolcat and coreutils | |
# brew install fortune cowsay lolcat coreutils | |
# Directory where the ASCII art is | |
cowfiledir='/usr/local/Cellar/cowsay/3.04/share/cows/' | |
randfile=$(ls $cowfiledir/*.cow | gshuf -n 1) | |
basefile=$(basename $randfile) | |
cowarg=${basefile%.*} |
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
from tqdm import tqdm_notebook as tqdm | |
from joblib import Parallel, delayed | |
import time | |
import random | |
def func(x): | |
time.sleep(random.randint(1, 10)) | |
return x |
NewerOlder