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
# if not using devenv: | |
_ERIC_SPECIAL_DIR_ENV_HOOK_STATE="cmd_print_path_to_completion_file_to_source" |
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/bash | |
# fix this | |
tty=/dev/cu.wchusbserial14200 | |
set -euo pipefail | |
exec 4<$tty 5>$tty | |
stty -f $tty 115200 |
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
<html> | |
<body> | |
<style> | |
canvas { | |
border: 1px solid black; | |
margin: 2em; | |
transform: scale(2, 2); | |
transform-origin: top left; | |
image-rendering: pixelated; | |
} |
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
<html> | |
<head> | |
<title>Grid to unicode braille characters</title> | |
</head> | |
<body> | |
<style> | |
body { font-family: 'Courier New', Courier, monospace; } | |
td { border: 1px solid #666; width: 15px; height: 19px; } | |
td.char-sep { border-width: 0; width: 0; } | |
.no-char-spacing td.char-sep, .no-char-spacing tr.char-sep { display: none; } |