basic script to extract any email addresses from a website that can be found
get all emails you can find from this page:
http://zombierecords.com/staff
basic script to extract any email addresses from a website that can be found
get all emails you can find from this page:
http://zombierecords.com/staff
import numpy as np | |
import pandas as pd | |
def make_random_dataframe(ncol, nrow): | |
"return a random dataframe suitable for simulating a linear regression" | |
from string import ascii_lowercase as letters | |
from sklearn.datasets import make_regression | |
columns = list(letters[:ncol]) | |
X, y = make_regression(n_features=ncol-1, n_samples=nrow, n_targets=1, n_informative=4) | |
y = y.reshape(X.shape[0], 1) |
Select me then press 'Highlight' button below. | |
<br> | |
<br> | |
<input type="button" value="Highlight" onclick="highlight('yellow');"> | |
<script> | |
function makeEditableAndHighlight(colour) { | |
sel = window.getSelection(); | |
if (sel.rangeCount && sel.getRangeAt) { |
[{ | |
{ | |
"keys": ["super+,", "super+,"], | |
"command": "run_macro_file", | |
"args": { | |
"file": "Packages/User/add-commas.sublime-macro" | |
} | |
}] |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
"""jupyter.py - Custom `nvbn/thefuck` rule for fixing typos in Jupyter commands | |
Rule should go here: ~/.config/thefuck/rules/jupyter.py | |
More on github: https://github.com/nvbn/thefuck | |
Example: | |
$ jupyter notebok |
#!/usr/bin/env bash | |
# -*- coding: utf-8 -*- | |
say "ay dont reelly know donde ay go a next.. Pero, ayem pritty exayted abowwt et.."\ | |
-v Carlos -o "baxter-es.m4a" --data-format=alac |
#!/usr/bin/env bash | |
# -*- coding: utf-8 -*- | |
# use t CLI to fetch follower count and other stats from twitter | |
# save results to a csv file | |
if [ -z "$1" ]; then | |
echo "no username specified" >&2 | |
exit 1 | |
else |
Principles of Adult Behavior
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
"""atbash.py | |
""" | |
from string import letters | |
def atbash(txt): | |
sub_table = zip(letters[:26], "".join(reversed(letters[:26]))) | |
sub_table += zip(letters[26:], "".join(reversed(letters[26:]))) | |
sub_table = dict(sub_table) |