about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* 7349Kartik Agaram2020-12-111-12/+12
|
* 7348 - mu.subx bug with string literalsKartik Agaram2020-12-112-0/+63
|
* 7347 - tile: separate sandbox and function menusKartik Agaram2020-12-061-0/+38
|
* 7346Kartik Agaram2020-12-061-2/+25
|
* 7345Kartik Agaram2020-12-061-14/+14
|
* 7344Kartik Agaram2020-12-061-3/+15
|
* 7343Kartik Agaram2020-12-061-5/+4
|
* 7342 - tile: hotkeys for ending function editKartik Agaram2020-12-061-0/+20
|
* 7341 - tile: function editing doneKartik Agaram2020-12-062-22/+6
| | | | | A tiny modicum of reuse amidst all this copypasta: I'm able to reuse the same function that renders lines without stacks in the sandbox.
* 7340 - tile: function editing almost doneKartik Agaram2020-12-062-4/+215
| | | | | Still a bug in cursor positioning. It's always shown at the start of the function body.
* 7339 - tile: position cursor in correct functionKartik Agaram2020-12-062-8/+77
| | | | Still can't edit functions, but we're getting there.
* 7338 - tile: architecture starting to crystallizeKartik Agaram2020-12-052-21/+54
| | | | | | | | | In particular, I'm starting to have opinions about how to scalably position the cursor at the end of each frame. One advantage of text mode without a pointer device (mouse/trackpad): only one cursor to track. UI can't be modified anywhere. That simplifies any reactive UI framework.
* 7337 - tile: jumping to a functionKartik Agaram2020-12-052-20/+149
| | | | We can't yet edit the function once we jump to it.
* 7336 - tile: back to function editingKartik Agaram2020-12-052-17/+5
|
* 7335Kartik Agaram2020-12-0416-2083/+3033
|
* 7334 - advent day 5 doneKartik Agaram2020-12-041-0/+81
|
* 7333 - advent day 5 part 1Kartik Agaram2020-12-041-0/+79
|
* 7332 - advent day 4 doneKartik Agaram2020-12-041-4/+124
| | | | | The code is shit and I can't be arsed to clean it up. But it was a useful exercise given the bugs and gaps it caught in Mu.
* 7331 - hacky way to convert slice to stringKartik Agaram2020-12-043-0/+39
|
* 7330 - snapshot: advent day 4 part 2 easy casesKartik Agaram2020-12-041-8/+100
| | | | Now I need to tune the SubX vocabulary.
* 7329 - snapshot: advent day 4 part 2Kartik Agaram2020-12-0416-2/+147
| | | | | | | | | | | | I've found two bugs in SubX libraries: 1. next-word had an out-of-bounds read 2. next-word was skipping comments, because that's what I need during bootstrapping. I've created a new variant called next-raw-word that doesn't skip comments. These really need better names. We're now at the point where 4b.mu has the right structure and returns identical result to 4a.mu.
* 7328 - advent day 4 part 1Kartik Agaram2020-12-041-0/+75
| | | | | Bug #1: forgot to process final passport Stupid mistake #2: was reporting invalid rather than valid passports
* 7327Kartik Agaram2020-12-031-6/+6
|
* 7326Kartik Agaram2020-12-031-5/+9
|
* 7325 - tile: start implementing function editingKartik Agaram2020-12-031-22/+28
|
* 7324Kartik Agaram2020-12-022-0/+370
|
* 7323 - advent day 3 doneKartik Agaram2020-12-021-1/+15
| | | | Stupid mistake; I missed one slope in the question.
* 7322 - snapshot: advent day 3 part 2Kartik Agaram2020-12-021-0/+123
| | | | Answer isn't right.
* 7321 - advent day 3 part 1Kartik Agaram2020-12-021-16/+13
|
* 7320 - snapshot: advent day 3 part 1Kartik Agaram2020-12-021-0/+110
|
* 7319Kartik Agaram2020-12-022-0/+339
|
* 7318 - advent day 2 doneKartik Agaram2020-12-022-1/+126
| | | | | Funny story: I got the right answer for part 1 even though I missed the ':' in the line format. But of course that didn't work for part 2.
* 7317 - advent day 2 part 1Kartik Agaram2020-12-021-0/+89
| | | | https://adventofcode.com/2020/day/2
* 7316Kartik Agaram2020-12-014-184/+236
|
* 7315Kartik Agaram2020-12-011-0/+2
|
* 7314Kartik Agaram2020-12-011-0/+163
|
* 7313 - advent: day 1 doneKartik Agaram2020-12-011-15/+25
|
* 7312 - advent: snapshot of 1bKartik Agaram2020-12-011-0/+90
|
* 7311Kartik Agaram2020-12-0111-2799/+2845
|
* 7310 - advent day 1 part 1Kartik Agaram2020-12-013-5/+97
| | | | | | | 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
* 7309 - tile: parsing strings into wordsKartik Agaram2020-11-302-156/+39
|
* 7308Kartik Agaram2020-11-291-0/+8
|
* 7307Kartik Agaram2020-11-292-451/+435
|
* 7306Kartik Agaram2020-11-2943-37925/+40204
|
* 7305 - make float-size more consistent as wellKartik Agaram2020-11-292-4/+19
|
* 7304 - more consistent printing of floatsKartik Agaram2020-11-291-3/+17
|
* 7303 - better threshold for scientific notationKartik Agaram2020-11-291-3/+13
|
* 7302 - tile: at long last, divisionKartik Agaram2020-11-292-1/+21
| | | | | | Also square roots. But there's a bug in rendering floats without precision.
* 7301 - tile: float computations now workingKartik Agaram2020-11-292-3/+6
|
* 7300 - bugfix in type-checking float returnsKartik Agaram2020-11-292-0/+69
|