2026-03-05 12:42:29 Only just found out there's an escape sequence to repeat the last character in terminals 2026-03-05 12:42:42 Can think of countless uses for this 2026-03-05 13:00:51 Maybe you'd find this useful tpbsd 2026-03-05 13:01:52 I can't think of an immediate use for that in my environment 2026-03-05 13:02:46 I basically develop by uploading the project to ram, testing, hard reset of the mcu and do it all again 2026-03-05 13:03:36 I'm a Forth user, not a Forth implimentor 2026-03-05 13:14:40 Well I mean if you ever do a progress bar or something like that over serial it would allow you to print repeated characters by only receiving a small number of bytes 2026-03-05 13:16:34 ahh! 2026-03-05 13:16:36 or for formatting tables faster 2026-03-05 13:17:30 as I use SWD for the terminal, I can instantly send up to 255 chars with no overhead 2026-03-05 13:17:51 overhead stopped being a problem with SWDCOM 2026-03-05 13:18:37 Fair enough 2026-03-05 15:39:28 forth: VARIABLE zaza 2026-03-05 15:39:32 forth: 123456789123456789 zaza ! 2026-03-05 15:39:36 forth: SEE zaza 2026-03-05 15:39:48 forthBot: VARIABLE zaza 2026-03-05 15:40:03 forthBot: 123456789123456789 zaza ! 2026-03-05 15:40:14 forthBot: SEE zaza 2026-03-05 15:40:15 : zaza zaza ( variable = 123456789123456789 ) ; 2026-03-05 15:40:25 minot fixes ... 2026-03-05 15:40:51 minor 2026-03-05 15:59:36 forthBot: CREDIT 2026-03-05 15:59:37 Error: Unknown word: CREDIT 2026-03-05 16:00:02 forth: LOAD ini.fth 2026-03-05 16:00:13 forthBot: LOAD ini.fth 2026-03-05 16:00:13 File ini.fth with MOON loaded 2026-03-05 16:00:18 forthBot: CREDIT 2026-03-05 16:00:18 Brought to you by Cleobuline updated with hashtable with the help of Grok https://github.com/cleobuline/forth-bot-gmp-irc-threaded-multi-users/tree/main Site https://labynet.fr 2026-03-05 18:00:18 Environment for cleobuline inactive, freeing... 2026-03-05 20:37:34 Wait - SEE does something different depending on whether you've stored something to the variable or not? That seems awfully complex. 2026-03-05 20:38:13 How does it know? Does it just check for zero?