about summary refs log tree commit diff stats
path: root/305keyboard.subx
Commit message (Collapse)AuthorAgeFilesLines
* 7310 - advent day 1 part 1Kartik Agaram2020-12-011-5/+1
| | | | | | | In the process I had to: * Fix a bug in reading lines from stdin into streams * Start trailing newlines when parsing ints from streams * Implement `find` in an array
* 6963 - tile: more idiomatic conventional replKartik Agaram2020-10-051-1/+1
|
* 6926Kartik Agaram2020-10-021-0/+4
|
* 6794 - cleaner interface for keyboardKartik Agaram2020-09-161-3/+10
| | | | | | | So far I've been assuming that read-key only works for ascii, and that I'd need to get more sophisticated both for multi-byte utf-8 and multi-byte terminal escape codes like arrow keys. Rather to my surprise, both work fine. We just need to adjust the types to reflect this fact.
* 6781 - new app: RPN (postfix) calculatorKartik Agaram2020-09-151-0/+16
| | | | This was surprisingly hard; bugs discovered all over the place.
* 6779Kartik Agaram2020-09-141-1/+1
| | | | Looks like Linux turns reads from stdout/stderr into stdin!
* 6778Kartik Agaram2020-09-141-2/+2
|
* 6627Kartik Agaram2020-07-101-1/+1
|
* 6612 - reorganize layersKartik Agaram2020-07-051-0/+196
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229