Since a LOT of people like the way it looks, and wanted to know how to make it, here is the code :3
Preview
// This is a description of Genders, Sexual interests and orientations through the means of code. | |
// Femboys | |
class Guy : Girl | |
// Lesbians | |
class Girl { | |
fun wooHoo(otherGirl: girl) { | |
otherGirl.scissor(this); | |
} |
# Check which version of sed is used when you run the `sed` command | |
# The version that ships with Mac OS X is | |
# /usr/bin/sed | |
which sed | |
# Install gnu-sed using Homebrew | |
# The `--with-default-names` option configures `sed` to use gnu-sed | |
# Without that option, you'll need to type `gsed` to use gnu-sed | |
brew install --default-names gnu-sed |
import requests | |
class HoverException(Exception): | |
pass | |
class HoverAPI(object): | |
def __init__(self, username, password): | |
params = {"username": username, "password": password} | |
r = requests.post("https://www.hover.com/api/login", params=params) |