2022-01-10 04:23:19 xcombelle: Hah, it's a little cringe. 2022-01-10 04:26:41 I haven't read it all yet, but I'm curious about the register usage. 2022-01-10 04:57:26 Says it is continuation passing style 2022-01-10 11:04:43 MrMobius: I forgot the other day when we talked about it, but subroutine threaded Z80 code might be slower because push/pop are far too convenient/fast at managing the data stack 2022-01-10 11:05:13 I think that's one of the main reasons I decided against subroutine threaded option, because I think I considered making it a build option or alternative 2022-01-10 11:05:36 But it's not cut and dry, could still be faster, depends what you're doing 2022-01-10 11:20:13 could be. sounds like it depends on the architecture even if stc is always faster on some architectures 2022-01-10 11:24:54 grrrr! hehe yes, truly 2022-01-10 11:56:55 stc? 2022-01-10 11:57:06 store character? 2022-01-10 12:29:48 no, not Standard Template Constructor/Computer from Warhammer 40k 2022-01-10 13:02:14 subroutine threaded forth 2022-01-10 13:02:23 *subroutine threaded code 2022-01-10 13:06:47 you forth people are pathetic 2022-01-10 13:06:56 *this* is what peak performance looks like https://www.bleepingcomputer.com/news/security/dev-corrupts-npm-libs-colors-and-faker-breaking-thousands-of-apps/ 2022-01-10 13:53:40 f-a: yeah, saw it few hours ago 2022-01-10 13:54:25 looks like that 'developer' threw a tantrum like a three year old 2022-01-10 13:55:44 expected from a js dev 2022-01-10 13:55:54 and not only that, I read that he is/was so gullible to fall for qannon crap 2022-01-10 13:56:02 well 2022-01-10 13:56:10 that is expected from a moody js dev 2022-01-10 13:56:39 I do my stuff in haskell and like — as every sane person — libraries etc but it is a massive liability 2022-01-10 13:56:51 if I did all in forth it would be less of a danger xD 2022-01-10 13:58:38 ACTION could go into how ocaps and such would mitigate against such behaviour but does not have the gumption-level for it now 2022-01-10 14:01:46 my modus operandi regarding doing open source is that I do it to keep my mental abilities exercised, am solving a problem I have, and often just for the esoteric fun of it 2022-01-10 14:02:44 I just wont be maintaining such unless paid for or I need the thing to work 2022-01-10 14:06:15 otherwise I just leave the thing as is and it might sucumb to bitrot 2022-01-10 14:08:15 f-a: how is this for dependency: a single .c file implementation of a dual stack machine that exposes the minimal posix syscall stuff to the code running on top of it 2022-01-10 14:09:31 and for graphix, any vnc client 2022-01-10 14:11:02 sounds fine! 2022-01-10 15:01:11 Zarutian_HTC: would said tantrum possibly be construed as 'hacking'? 2022-01-10 15:01:47 lagash: dunno, depends on the polity 2022-01-10 21:05:11 Is there any way to compile Forth code into a native executable? I tried searching it online, but I didn't found much. I just began coding in Forth. 2022-01-10 21:08:13 would providing a forth interpreter and autoinkoving the first word be good :P 2022-01-10 21:09:57 doesnt gforth do that? 2022-01-10 21:20:16 I couldn't find any instructions on how to do it in the gforth's manual. 2022-01-10 21:20:55 Maybe I'm missing something. 2022-01-10 21:26:18 https://gforth.org/manual/Running-Image-Files.html would this work for you? 2022-01-10 21:53:21 It is interesting, but not what I was looking for.