╭──────────────────────────────────────────────────╮
│ │
│ ∿∿∿ streams of thought ∿∿∿ │
│ flowing, branching, merging │
│ │
│ ┌─────┐ │
│ │ ? ? │ ← perpetual curiosity │
│ │ ? ? │ (it never stops) │
│ └──┬──┘ │
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
| { | |
| "Profiles": [ | |
| { | |
| "Working Directory": "/Users/zachary", | |
| "Prompt Before Closing 2": false, | |
| "Selected Text Color": { | |
| "Red Component": 0, | |
| "Color Space": "Calibrated", | |
| "Blue Component": 0, | |
| "Alpha Component": 1, |
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
| const convertValueToSymbol = (() => { | |
| const SYMBOLS = { | |
| 1000: 'M', | |
| 500: 'D', | |
| 100: 'C', | |
| 50: 'L', | |
| 10: 'X', | |
| 5: 'V', | |
| 1: 'I' | |
| }; |
OlderNewer