Skip to content

Instantly share code, notes, and snippets.

View kielmarj's full-sized avatar

Jess kielmarj

View GitHub Profile
@kielmarj
kielmarj / css-scraps.css
Last active January 25, 2025 00:34
css-scraps.css
/*======================================
= FONTS =
=====================================*/
* {
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono', ' Courier New', monospace;
}
@kielmarj
kielmarj / material_symbols_and_icons.md
Last active January 28, 2025 02:55
frequently used Material Icons from Google Fonts

Google Fonts: Material Symbols

CSS: Variable Font Axes

/* styles.css */

.material-symbols-rounded {
  font-variation-settings:
  /* DEFAULT */ /* POSSIBLE VALUES                     */
  'FILL' 0,     /* 0=unfilled, 1=filled                */
  'wght' 400,   /* 100=thin to 700=bold                */
@kielmarj
kielmarj / yugioh-rarity-types.csv
Last active February 13, 2025 08:43
Yu-Gi-Oh rarity types; sorted by relative value from lowest highest
Rarity Foil Name Foil Artwork Special Features
Common No No Basic card, no foiling
Rare Silver No Silver name, no holo artwork
Super Rare No Yes Holo artwork, normal printing
Ultra Rare Gold Yes Gold name, holo artwork
Secret Rare Rainbow Yes (Diagonal) Rainbow foil name, diagonal holo
Ultimate Rare Gold (Embossed) Yes (Embossed) Embossed texture on artwork and text box
Gold Rare Gold Yes (Gold Border) Gold foil name, gold border, sometimes gold holo
Ghost Rare Silver Yes (Ghostly) Faint ghostly holo artwork effect
Starlight Rare Rainbow (Textured) Yes (Textured) Textured rainbow foiling, very rare
@kielmarj
kielmarj / web-dev-links.md
Last active February 23, 2025 16:19
List of useful resources related to web development
  • Arrays are 0 indexed
    • Separate array items with a comma, but do not include a comma after the last item. Example:
    let myArray = [
        "Some text",
        "Second line",
        "alsdfkjasdlj",
        "etc"
    ]
@kielmarj
kielmarj / fish-function-descriptions.md
Last active March 3, 2025 16:59
Load fish shell function descriptions on shell start for tab completions. Add to config.fish
# Load fish shell function descriptions on shell start. Add to `config.fish`.
function describe_functions --description "Load function descriptions for tab completions"
    set -f output ""
    for file in $fish_function_path/*.fish
        set -f cmd (basename $file .fish)
        set -f desc (functions -Dv $cmd)[5]
        set -a output "`$cmd`: $desc"
    end
 printf '%s\n' $output | sort -d