Andy Walker
Andy Walker
I'm 90% of the way through this. https://github.com/flowchartsman/dotbro/commit/ba71fe9011f2b75c0cc1420196d48472212895a9 Need to add some kind of support for Windows, whatever that might be, and clean up a little and then I plan...
That seems to have been the problem, yeah. It was a page created before I modified the archetype. Would be nice to be able to set it in config.toml, though....
I wrote exactly this [software](https://github.com/flowchartsman/clacksby) recently in Go (still WIP and primitive), and was playing with the ding feature. You can sort of calculate columns by counting runs of printable...
As far as I understand it, the most important factor to readability is contrast, and that everything else is secondary. Real evidence for dark mode vs. light mode was scant...
As far as font weight is concerned, it's definitely important, since it's taken into account by the WCAG standards, however VSCode, which is currently the primary theme target, [doesn't seem...
Good candidates for this color: ``` "editor.stackFrameHighlightBackground": "#ff99004c", "editor.wordHighlightBackground": "#0064ff26", "editor.wordHighlightStrongBackground": "#0064ff4c", "editor.findMatchBackground": "#ffca0099", "editor.findMatchHighlightBackground": "#ffca004c", "editor.focusedStackFrameHighlightBackground": "#f909", "", ``` TODO: Experiment with derived complimentary
Screenshots implemented
Recent code changes programmatically generate colors against the darkest background color, however I have plans on allowing many if not all colors to have variants tailored to each background variant...
``` $ wget -q https://github.com/cheat/cheat/releases/download/4.4.2/cheat-linux-amd64.gz $ gunzip -c cheat-linux-amd64.gz > cheat $ chmod 755 ./cheat $ ./cheat ./cheat: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by ./cheat) ./cheat: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32'...
Ah, yes, good ol' monotonic time. One of my least favorite stdlib hacks. As you've probably already discovered from your research, time equality is potentially tricker than it might at...