/* styles.css */
.material-symbols-rounded {
font-variation-settings:
/* DEFAULT */ /* POSSIBLE VALUES */
'FILL' 0, /* 0=unfilled, 1=filled */
'wght' 400, /* 100=thin to 700=bold */
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
| 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 |
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.
- 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" ]
# 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 -dOlderNewer