Skip to content

Instantly share code, notes, and snippets.

View autumn-mck's full-sized avatar
💜
GitHub's UI doesn't allow you to set a purple heart as the status emoji

autumn autumn-mck

💜
GitHub's UI doesn't allow you to set a purple heart as the status emoji
View GitHub Profile
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{fyz}[2025/09/20 v1.2 pink kawaii theme]
\RequirePackage[utf8]{inputenc}
\RequirePackage{tikz}
\RequirePackage{enumitem}
\RequirePackage{titlesec}
\RequirePackage{amsmath, amssymb, amsthm}
\RequirePackage[most]{tcolorbox}
\RequirePackage{xcolor}
@t3dotgg
t3dotgg / model-prices.csv
Last active October 10, 2025 21:19
Rough list of popular AI models and the cost to use them (cost is per 1m tokens)
Name Input Output
Gemini 2.0 Flash-Lite $0.075 $0.30
Mistral 3.1 Small $0.10 $0.30
Gemini 2.0 Flash $0.10 $0.40
ChatGPT 4.1-nano $0.10 $0.40
DeepSeek v3 (old) $0.14 $0.28
ChatGPT 4o-mini $0.15 $0.60
Gemini 2.5 Flash $0.15 $0.60
DeepSeek v3 $0.27 $1.10
Grok 3-mini $0.30 $0.50
#!/usr/bin/env sh
# SPDX-License-Identifier: Beerware
# Script to automate downloading and installing the latest version of MusicBee
# If anything goes wrong/breaks, let me know so I can fix it!
set -eu
export WINEPREFIX="${XDG_DATA_HOME:-$HOME/.local/share}/wineprefixes/MusicBee"
installation_location="$WINEPREFIX/drive_c/Program Files (x86)/MusicBee/"
#!/usr/bin/env sh
# SPDX-License-Identifier: Beerware
set -e
bass_aac_download_url="https://www.un4seen.com/files/z/2/bass_aac24.zip"
settings_download_url="https://gist.githubusercontent.com/autumn-mck/509a41d5b72be782866e75bf118b4f98/raw/0c405bafc8ba53f309a078ecc7c8b659587e0b14/MusicBee3Settings.ini"
library_settings_download_url="https://gist.githubusercontent.com/autumn-mck/4212531f1534eab095fada942af049d9/raw/5d8a48d71279602ef97bcd400b396c8fe82ac251/MusicBeeLibrarySettings.ini"
discordbee_settings_url="https://gist.githubusercontent.com/autumn-mck/47aa3b50e55162e01e894063114a63a9/raw/d7698f91566e856f7e3075a633290810239c1323/DiscordBee.settings"
@EllyLoel
EllyLoel / reset.css
Last active September 30, 2025 18:40
CSS Reset
/*
Made by Elly Loel - https://ellyloel.com/
With inspiration from:
- Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
- Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
- Adam Argyle - https://unpkg.com/[email protected]/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE
Notes:
- `:where()` is used to lower specificity for easy overriding.
*/
@0xBEEB
0xBEEB / gitnamechange.sh
Created June 29, 2015 22:09
Goes through a git projects history and changes the name on commits. I needed this after changing my name, and coming out as transgender in order to have my name show up correctly to the public.
# Goes through a git projects history and changes the name on commits
# I needed this after changing my name, and coming out as transgender
# in order to have my name show up correctly to the public.
git filter-branch --commit-filter '
if [ "$GIT_AUTHOR_NAME" = "Existing Dead Name" ];
then
GIT_AUTHOR_NAME="Authentic Name";
GIT_AUTHOR_EMAIL="[email protected]";
git commit-tree "$@";