Skip to content

Instantly share code, notes, and snippets.

View kielmarj's full-sized avatar

Jess kielmarj

View GitHub Profile
@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
  • 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 / web-dev-links.md
Last active February 23, 2025 16:19
List of useful resources related to web development
@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 / 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 / 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 / googleFonts.md
Last active January 5, 2025 02:54
Some of my favorite Google fonts, saved here for easy reference.

Google Fonts

Some of my favorite Google fonts, saved here for easy reference.

Sixtyfour
Poppins

Sixtyfour

/** cobalt theme styling for embedded gists
* https://github.com/lonekorean/gist-syntax-themes/blob/master/stylesheets%2Fcobalt.css
*/
body .gist .highlight {
background: #002240;
}
body .gist .blob-num,
body .gist .blob-code-inner,
body .gist .pl-en {
Fare you well, my honey
Fare you well, my only true one
All the birds that were singing
Are flown, except you alone
Gonna leave this brokedown palace
On my hands and my knees, I will roll, roll, roll
Make myself a bed by the waterside
In my time, in my time, I will roll, roll, roll
@kielmarj
kielmarj / github-stars.sh
Last active December 22, 2024 01:39
list starred GitHub repos
#!/usr/bin/env bash
# Bash script to fetch starred GitHub repositories
# Prints total number of stars followed by the date/time the
# repo was starred and the name/description of each starred
# repository for the given GitHub username, beginning with the
# most recent.
# Replace GITHUBUSERNAME with your username
USER=${1:-GITHUBUSERNAME}