2022-02-04 05:30:14 i've been hacking away at sectorforth... 2022-02-04 05:31:15 is someone on github who can add an issue to sectorforth for me? i pasted the text on termbin, you just need to cut&paste it to this github page: 2022-02-04 05:31:17 https://termbin.com/brv1 -- https://github.com/cesarblum/sectorforth/issues 2022-02-04 06:57:15 lagash: Oh good, glad to hear you got out of the rabbit hole. Yeah I really think all these tools are somewhat lacking, wonder what I could do myself in forth 2022-02-04 06:57:43 dave0: Why can't you do it? Do you not have a github? 2022-02-04 07:09:19 veltas: yeah i don't have an account :-/ 2022-02-04 07:11:35 dave0: https://stackoverflow.com/a/9630828 2022-02-04 07:12:12 Oh actually don't know if that still works 2022-02-04 07:12:27 aha interesting 2022-02-04 07:13:10 dave0: issue opened 2022-02-04 07:14:18 crc: awesome! thanks :-) 2022-02-04 07:14:27 no problem 2022-02-04 07:21:17 i gotta be honest i don't understand github .. i just know there's zillions of projects there 2022-02-04 07:29:57 Which IMO is a good excuse to make an account :P 2022-02-04 07:31:11 :-) 2022-02-04 09:03:20 nite all 2022-02-04 12:39:32 any recommendations on forth material for defining data structures ? I understand the implementation of it. But, I am not able to decide on a good naming convention for the fields, etc. 2022-02-04 12:39:47 thinking forth recommends >field 2022-02-04 12:41:22 there is also this : size of offset to item from beginning of structure name+ 2022-02-04 12:41:43 I cannot figure out the difference between name> and name+ 2022-02-04 12:42:15 one of them is the offset and the other is the actual address. 2022-02-04 12:42:17 makes sense. 2022-02-04 13:03:43 http://www.complang.tuwien.ac.at/forth/objects/structs.html like this? 2022-02-04 13:18:25 https://old.reddit.com/r/Forth/comments/4xc039/forthstyle_structs/ the guy petrus4 is funny to read. 2022-02-04 14:07:30 that is a pretty funny rant 2022-02-04 14:07:47 I am in the process of learning x86-64 assembly 2022-02-04 17:55:21 joe9: I do struct + field + end-struct like your first link 2022-02-04 22:12:51 I just found freeforth, very interesting and I think quite an advancement. It is always in compile mode (even when interpreting) and it uses the x86 flags for control flow (it is always good to use the hardware provided). It is quite fast for a non-optimized native code compiler. It seems really good to me. You do have to learn to use IF/UNTIL/ etc in a new way because they use the x86 flags. Here is a great explanation of how it is fast: 2022-02-04 22:12:51 http://christophe.lavarenne.free.fr/ff/ffcodegen.html and here is a tutorial explaining the difference from normal forth: http://christophe.lavarenne.free.fr/ff/ffprimer.html 2022-02-04 22:14:50 Someone did some enhancements (including turnkey support) it is here: https://github.com/dan4thewin/FreeForth2/ 2022-02-04 23:21:03 I like felix forth. It is simple and easy too.