Skip to content

Instantly share code, notes, and snippets.

View apc518's full-sized avatar
🐍

Andy Chamberlain apc518

🐍
View GitHub Profile
@apc518
apc518 / jord.py
Last active July 16, 2022 05:42
Jord
import hashlib
from math import ceil, log
BASE64_CHARS = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
def is_jord(n):
"""
A useless music theory concept, the 'jord' is a sequence of notes where if
@apc518
apc518 / index.html
Created December 27, 2021 13:18
This html/javascript produces a strange behavior on Chromium, but not on Firefox
<!DOCTYPE html>
<html>
<head>
<style>
#droparea {
min-height: 200px;
background-color: rgb(25, 180, 89);
}
</style>
</head>