Skip to content

Instantly share code, notes, and snippets.

View martian17's full-sized avatar
🛰️
Working from home

Yutaro Yoshii martian17

🛰️
Working from home
View GitHub Profile
@Nemika-Haj
Nemika-Haj / README.md
Last active February 8, 2024 22:56
How to make the BytesToBits welcome GIF

Since a LOT of people like the way it looks, and wanted to know how to make it, here is the code :3

Preview

Preview

@OpenSrcerer
OpenSrcerer / lgbtqpp.kt
Last active September 21, 2023 16:30
LGBTQ++
// 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);
}
@andre3k1
andre3k1 / install-gnu-sed-on-mac-osx.sh
Created July 26, 2018 18:39
How to install gnu sed on Mac OS X and set it as the default
# 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
@dankrause
dankrause / _hover_example.py
Last active March 8, 2024 18:31
Example code to use the (unofficial, unsupported, undocumented) hover.com DNS API.
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)