Skip to content

Instantly share code, notes, and snippets.

View scy's full-sized avatar

Tim Weber scy

View GitHub Profile
@L3viathan
L3viathan / mailweird.py
Last active November 22, 2019 10:59
Email addresses as valid python
class Mail:
def __init__(self, **bindings):
self.bindings = bindings
def send(self, **bindings):
self.bindings.update(bindings)
return """Sending email with:
{}""".format(
"\n ".join(f"{key}: {val}" for key,
val in self.bindings.items())
)
@giuliandrimba
giuliandrimba / hack.sh
Last active March 15, 2022 08:04 — forked from erikh/hack.sh
SHELL: OSX For Hackers
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh
#