Skip to content

Instantly share code, notes, and snippets.

View aqua-lzma's full-sized avatar
💯
Wish I wasn't here right now.

L'eau Artésienne aqua-lzma

💯
Wish I wasn't here right now.
View GitHub Profile

line 1 line 2

line 3

@aqua-lzma
aqua-lzma / 4chan-x MD5 base64 list.txt
Last active March 24, 2021 17:53
# 4chan webm shitpost and forced meme filter list
/3DsMQryegcZMwflzqQlamw==/
/SIP3Y6YCfr7ndnPb5msp0w==/
/4OHCU/JgnbMKT7xTE9W+nA==/
/YPcLJ2KBtPxnV+HQjLfs9Q==/
/vSiTRgt65YzQYSSLGwqe2g==/
/KcFioTvXgT1GfHXOVyPA/Q==/
/ZQ3iNj5k6LvE9ppqDKjOAw==/
/iq7Cxxte8wC84dGz/rQ1Cg==/
/QDWMzXgU7hL6F5s/YfcESw==/
/QS/pSR6OssmD1c/x5AUfag==/
function calcDailyRolls (level) {
return level + 10
}
function calcStreakBonus (days) {
return ((
(days % 7 === 0 ? 2 : 1) *
(days % 14 === 0 ? 2.5 : 1) *
(days % 28 === 0 ? 5 : 1)
) + (
@aqua-lzma
aqua-lzma / owoify.js
Last active January 2, 2023 18:36
OwO'ify discowd hehe makes it vewy funny :3 (Check comments for usage)
(function () {
// OwO whats this vewsion 6.9.?c ~ :3
// I h-hope you l-like it...
let stutterChance = 0.1
let prefixChance = 0.05
let suffixChance = 0.15
let words = {
love: 'wuv',
mr: 'mistuh',
@aqua-lzma
aqua-lzma / last-fm-collage.py
Last active August 23, 2021 15:09
Generate a collage of every album cover ever listened to on last.fm
import json, sys, math
from io import BytesIO
import requests
from PIL import Image
username = ""
apikey = ""
url = (
"http://ws.audioscrobbler.com/2.0/"
@aqua-lzma
aqua-lzma / xterm-ascii.html
Created February 8, 2019 17:31
Ascii art with xterm colours, but it takes forever
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
canvas {
max-height: 50px;
/* image-rendering: optimizespeed; */
padding: 5px;