Skip to content

Instantly share code, notes, and snippets.

View cherryblossom000's full-sized avatar

Lauren Yim cherryblossom000

View GitHub Profile
@cherryblossom000
cherryblossom000 / Minimum number of levels and bookshelves required for Minecraft enchantments.md
Last active February 20, 2024 17:55
Minimum number of levels and bookshelves required for Minecraft enchantments

Minimum number of levels and bookshelves required for Minecraft enchantments

Last updated: August 2019

I made this for my answer to a question on Arqade/Gaming Stack Exchange.

Enchantment Levels Bookshelves
Aqua Affinity I 0 0
Bane of Arthropods I 5 3
@cherryblossom000
cherryblossom000 / _Discord emojis.md
Last active January 24, 2024 10:24
Discord Emojis

Discord emojis

Last updated: 30 Jan 2023

Shortcuts

Name Emoji Shortcuts
angry 😠 >:(
>:-(
>=(
>=-(
blush 😊 :")``:-")``=")``=-")
@cherryblossom000
cherryblossom000 / discord highlight.js theme.css
Last active August 20, 2023 10:16
Discord highlight.js theme
:root {
--saturation-factor: 1; /* this varies depending on the user’s settings */
--primary-dark-200: hsl(210, calc(var(--saturation-factor, 1) * 2.9%), 86.7%);
--primary-dark-500: hsl(217, calc(var(--saturation-factor, 1) * 7.6%), 33.5%);
--primary-dark-630: hsl(223, calc(var(--saturation-factor, 1) * 6.9%), 19.8%);
--primary-light-130: hsl(220, calc(var(--saturation-factor, 1) * 13%), 95.5%);
--primary-light-300: hsl(210, calc(var(--saturation-factor, 1) * 9.8%), 80%);
--primary-light-700: hsl(210, calc(var(--saturation-factor, 1) * 9.8%), 20%);
--primary-light-900: hsl(240, calc(var(--saturation-factor, 1) * 7.7%), 2.5%);
--white-500: hsl(0, calc(var(--saturation-factor, 1) * 0%), 100%);

Don’t like the

This document is intended for <student name> at <school> (user ID: <id>). Unauthorised circulation in any form is not permitted.

at the bottom of each page of an Edrolo PDF textbook?

Use this script!

@cherryblossom000
cherryblossom000 / grades.elv
Last active December 15, 2022 08:31
Get grades from Canvas — Elvish version
#!/usr/bin/env elvish
var result = (
xhs ^
--check-status --ignore-stdin --timeout 2.5 ^
example.instructure.com/api/graphql ^
Authorization:'Bearer '$E:CANVAS_TOKEN ^
query=@query.graphql |
from-json
)
@cherryblossom000
cherryblossom000 / Discord Loading Messages.json
Last active May 15, 2022 21:41
As of 16 Mar 2021. Taken from the Discord source code
{
"LOADING_LINE_1": "Discord was almost called Bonfire before we picked our name. It was meant to be nice and cozy.",
"LOADING_LINE_2": "Discord was almost called Wyvern before we picked our name. Not too proud of that one.",
"LOADING_LINE_3": "Our logo's name is Clyde.",
"LOADING_LINE_4": "There are a bunch of hidden \"Easter Eggs\" in the app that happen when you click certain things...",
"LOADING_LINE_5": "Discord started as a game company making a mobile game called Fates Forever.",
"LOADING_LINE_6": "Discord’s official birthday is May 13, 2015.",
"LOADING_LINE_7": "We came up with the idea of Discord Nitro over morning breakfast potatoes.",
"LOADING_LINE_8": "Our mascot, Wumpus, was originally created as a character with no friends :(",
"LOADING_LINE_9": "In Discord's early days, light theme was the only theme. Dark theme didn't arrive until August 2015.",
@cherryblossom000
cherryblossom000 / Discord Colours.json
Last active May 15, 2022 21:41
As of 11 May 2021. Taken from the Discord source code
{
"PRIMARY_DARK_100": "#f6f6f7",
"PRIMARY_DARK_130": "#eff0f0",
"PRIMARY_DARK_160": "#e6e6e8",
"PRIMARY_DARK_200": "#dcddde",
"PRIMARY_DARK_230": "#d1d3d5",
"PRIMARY_DARK_260": "#c6c8ca",
"PRIMARY_DARK_300": "#b9bbbe",
"PRIMARY_DARK_330": "#a3a6aa",
"PRIMARY_DARK_360": "#8e9297",
@cherryblossom000
cherryblossom000 / Discord Hypesquad Questions.json
Last active May 15, 2022 21:40
As of 11 Nov 2021. Taken from the Discord source code
{
"HYPESQUAD_QUESTION_0_PROMPT": "Which insult would hurt you the most?",
"HYPESQUAD_QUESTION_0_RESPONSE_A": "You overreact a lot.",
"HYPESQUAD_QUESTION_0_RESPONSE_B": "You don't listen enough.",
"HYPESQUAD_QUESTION_0_RESPONSE_C": "You only care about yourself.",
"HYPESQUAD_QUESTION_0_RESPONSE_D": "You're ordinary.",
"HYPESQUAD_QUESTION_1_PROMPT": "What sounds like a perfect day to you?",
"HYPESQUAD_QUESTION_1_RESPONSE_A": "Sleeping in, having a giant, homemade lunch, and heading out to meet up with close friends late at night.",
"HYPESQUAD_QUESTION_1_RESPONSE_B": "Waking up early, finishing something you've been putting off for a while, and working on a new hobby in the late afternoon.",
"HYPESQUAD_QUESTION_1_RESPONSE_C": "Waking up on time, walking to the garden store and buying a new plant, and sinking deep into a bath to end the day.",
@cherryblossom000
cherryblossom000 / grades.sh
Last active January 6, 2022 09:52
Get grades from Canvas
#!/usr/bin/env bash
set -euo pipefail
# The GraphQL query could also be inlined instead of referencing the file, but
# I kept it in a separate file for syntax highlighting and stuff
xhs \
--check-status --ignore-stdin --timeout 2.5 \
example.instructure.com/api/graphql Authorization:"Bearer $CANVAS_TOKEN" query=@query.graphql \
| fx .data Object.entries '.forEach(([subject, {grades: {currentScore}}]) => console.log(`${subject}: ${currentScore === null ? "--" : `${String(currentScore).padEnd(5, "0")}%`}`))' 2> /dev/null \
| column -t
@cherryblossom000
cherryblossom000 / install.zsh
Created December 12, 2021 06:39
Reinstalling Nix + nix-darwin + home-manager on macOS
# https://github.com/NixOS/nix/issues/3261
# sudo ln -sf /nix/var/nix/profiles/default/etc/ssl/certs/ca-bundle.crt /etc/ssl/certs/ca-certificates.crt
# https://discourse.nixos.org/t/nix-flake-and-fetcher-cache-v1-sqlite/8958
# (local u="$(whoami); sudo chown "$u:users" ~/.cache/nix)
# https://github.com/numtide/nix-unstable-installer
sh <(curl -L https://github.com/numtide/nix-unstable-installer/releases/download/nix-2.5pre20211026_5667822/install) --daemon
nix-channel --add https://nixos.org/channels/nixpkgs-unstable nixpkgs