flowchart TB
Begin(Begin)
Pass
Fail
Begin --> B{Refinance?}
B-->|yes| Pass
B-->|no| C{< 2 years?}
C-->|yes| Fail
C-->|no| D
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
Show hidden characters
| [ | |
| { | |
| "caption": "Quick Scratch: Toggle Scratch File", | |
| "command": "quick_scratch" | |
| } | |
| ] |
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
| #!/bin/zsh | |
| # Variable to store the last exit status | |
| last_exit_status=0 | |
| # Function to print a horizontal line separator with timestamp and last command status | |
| print_separator() { | |
| local cols=${COLUMNS:-$(tput cols)} | |
| local timestamp=$(date '+%H:%M:%S') | |
| local separator_char="─" |
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 python3 | |
| import csv | |
| import sys | |
| from zipfile import ZipFile | |
| from ics import Calendar | |
| def usage(): |
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 python | |
| # TODO: add progress bar | |
| # TODO: maybe add interactivity? | |
| from pathlib import Path | |
| from mutagen.flac import FLAC, Picture | |
| from mutagen.id3 import APIC, ID3, PictureType, ID3NoHeaderError | |
| from wand.image import Image |