anyone knows a gut rot47 encoder/decoder for os2?
What language do you use? ROT47 is simple, you can get the python source from the script it self. It should be straight forward to "translate" to some other language. Below is the python code:
def rot47(s):
res = ''
i = 0
while i <= len(s) -1:
j = ord(s[i])
if (j>=33) and (j<=126):
res += chr(33 + ((j + 14) % 94))
else:
res += s[i]
i += 1
return res
And here is a site that has encoders/decoders for all programming languages:
https://rot47.net/
It will be nice, for other BBS software to "connect" to the interbbs last callers mod, cause right now, it's more of a inter-mystic-bbs last callers :)
.
:: XQTR :: Another Droid BBS :: andr01d.zapto.org:9999 ::
xqtr@gmx.com
--- Mystic BBS v1.12 A47 2020/11/23 (Raspberry Pi/32)
* Origin: Another Droid BBS # andr01d.zapto.org:9999 (21:1/111)