2024-07-07 15:49:14 let's calc next millenium bug with my Forth implementation :) https://ibb.co/TtWDkx1 -- do you like it? 2024-07-07 22:06:35 rendar: is your Forth public? looks pretty neat :) 2024-07-07 22:06:48 wolfdog, thanks! it will be soon 2024-07-07 22:07:00 when i'll get togheter all the pieces of code 2024-07-07 22:25:55 coolio 2024-07-07 22:29:30 rendar: what are ns>ds and ss< ? 2024-07-07 22:31:58 ns>ds transforms a given integer which represents nanosecs into a delta time string, e.g. '1232 days, 03 hrs, ..` ss< takes the first space-separated token from that string splitting it, in this case '1232..', nip removes the remaining truncated string that is useless, >i64 transforms the days number into an integer, then it computes the number of years between a i64 that counts nanoseconds becomes unusable 2024-07-07 22:42:12 thanks, this makes sense 2024-07-07 22:43:14 :) 2024-07-07 22:43:36 i have a lot of more cool examples, i will publish everything on the website in a few months 2024-07-07 22:43:48 all is written in Rust, btw 2024-07-07 22:46:31 I'm looking forward to seeing it 2024-07-07 23:05:59 thanks :)