2021-12-24 04:56:07 Thanks swissChili I will get to that some time 2021-12-24 04:56:31 When I say contrived I mean it doesn't have to be your actual data if it's secret, but if it's not secret then go ahead and hit me with the real thing 2021-12-24 04:56:44 And it can be in the actual source format 2021-12-24 04:57:06 What query are you trying to do with it? 2021-12-24 05:52:43 swissChili: "for any station with [foo], print the county and total precipitation" -- whose total? county total, or just the yearly total for the particular station that exceeded the threshold? 2021-12-24 12:18:01 i found a forth implemented on scratch 2021-12-24 12:18:04 https://scratch.mit.edu/projects/137676871/editor/ 2021-12-24 15:15:00 i might have found a bug in gforth, or i might just not know forth well enough 2021-12-24 15:54:35 potatoalienof13: What's the possible bug? 2021-12-24 15:56:56 psf: `see` outputs code that fails to pass the control flow check 2021-12-24 16:46:18 Huh. Well I'm unlikely to be of much help on that one, I'm not a gforth person. I have noticed cases where pForth's disassembly isn't 100% accurate though. 2021-12-24 16:47:43 My limited understanding is that disassembly cannot always accurately untangle the effect of immediate words. 2021-12-24 17:12:48 i implemented inline brainfuck in forth https://0x0.st/orZD.fs 2021-12-24 17:15:47 now implement forth in brainfuck. 2021-12-24 18:57:50 psf: doesn't really matter, but I meant the total for the station for that year. i.e. the number in the rightmost column 2021-12-24 20:14:55 swissChili: Thanks! I'll post here when I've given it a shot. 2021-12-24 20:19:25 potatoalienof13: How does the bf{ word work? It looks like this is what hooks up all the bf syntax, but how does it do that? Is it a gforth feature? 2021-12-24 20:28:12 psf: oh shit, i uploaded the wrong file 2021-12-24 20:28:36 https://0x0.st/orZt.fs should be correct 2021-12-24 20:30:03 potatoalienof13: Ok, that makes a lot more sense haha. 2021-12-24 21:52:29 psf: i created a version with working bf{ and }bf 2021-12-24 21:52:30 https://0x0.st/orqo.fs 2021-12-24 22:33:34 potatoalienof13: Absolutely beautiful 2021-12-24 22:38:20 The ``immediate'' following a word definition marks it to be evaluated immediately even if used in a compiled word, am I understanding that correctly?