# 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" ]
List of useful resources related to web development. This list is being updated and expanded upon regularly as part of my personal learning journey. All resources are freely accessible or have free tiers unless otherwise noted.
In-Depth Courses
These sites offer detailed and time-intensive courses that are worth dedicating extended periods of time to.
- Scrimba - *highly recommend! Free & paid tiers (worth it). Unique learning platform with interactive video tutorials, aka scrims. Recommended by MDN.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*====================================== | |
| = FONTS = | |
| =====================================*/ | |
| * { | |
| font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono', ' Courier New', monospace; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** 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 { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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} |
NewerOlder