Subj : rot47 os/2 To : xqtr From : Roon Date : Fri Apr 14 2023 09:36 pm Hello xqtr, 14 Apr 23 19:14, you wrote to me: Ro>> anyone knows a gut rot47 encoder/decoder for os2? x> What language do you use? ROT47 is simple, you can get the python x> source from the script it self. It should be straight forward to x> "translate" to some other language. Below is the python code: yep i found the website, but thanks. i am using Maximus' internal MEX/MECCA language, in the middle of re-learning them. :) i'll try to implement this x> def rot47(s): x> res = '' x> i = 0 x> while i <= len(s) -1: x> j = ord(s[i]) if (j>> =33) and (j<=126): x> res += chr(33 + ((j + 14) % 94)) x> else: x> res += s[i] x> i += 1 x> return res x> And here is a site that has encoders/decoders for all programming x> languages: https://rot47.net/ x> It will be nice, for other BBS software to "connect" to the interbbs x> last callers mod, cause right now, it's more of a inter-mystic-bbs x> last callers :) if i will have the time for it i will finish both scripts :) Regards, -- dp -=>> telnet://bbs.roonsbbs.hu:1212 <<=- .... Uptime: 7d 13h 36m 46s --- GoldED/2 1.1.4.7+EMX * Origin: Roon's BBS - Budapest, HUNGARY (21:4/148) .