The Pre-alphas are being updated for all platforms since I was unable to have a full A37 today (some things are partially implemented and I don't want to release an official alpha like that).
Windows, Linux, Pi, and OSX all bit versions will be up in about 20-30 minutes when I wrap up with the Pi and OSX.
www.mysticbbs.com/downloads/prealpha
Well dang! I had one more request to sneak in. I was hoping to get mci2str() implemented in MPY. I'm looking for way to get BBS
information, and mci2str seems to be the easiest way to do it.
Well dang! I had one more request to sneak in. I was hoping to get mci2str() implemented in MPY. I'm looking for way to get BBS
information, and mci2str seems to be the easiest way to do it.
On 12/13/17, g00r00 said the following...
The Pre-alphas are being updated for all platforms since I was unable have a full A37 today (some things are partially implemented and I do want to release an official alpha like that).
Windows, Linux, Pi, and OSX all bit versions will be up in about 20-3 minutes when I wrap up with the Pi and OSX.
www.mysticbbs.com/downloads/prealpha
Well dang! I had one more request to sneak in. I was hoping to get mci2str() implemented in MPY. I'm looking for way to get BBS
information, and mci2str seems to be the easiest way to do it.
On 12/13/17, Gryphon said the following...
Well dang! I had one more request to sneak in. I was hoping to get mci2str() implemented in MPY. I'm looking for way to get BBS information, and mci2str seems to be the easiest way to do it.
Then you may want to upgrade and take a look at the whatsnew.txt. You
may be pleasantly surprised!
Well dang! I had one more request to sneak in. I was hoping to get mci2str() implemented in MPY. I'm looking for way to get BBS information, and mci2str seems to be the easiest way to do it.
And maybe add stripmci() as well?
Well dang! I had one more request to sneak in. I was hoping to mci2str() implemented in MPY. I'm looking for way to get BBS information, and mci2str seems to be the easiest way to do it.
And maybe add stripmci() as well?
I'm still undecided about adding string-related stuff that can be done in native Python with a few lines of code. I may add the MCI codes but I
am not sure how far I'll go with it. You can use these in the meantime (probably better/faster ways to do this with regex or something):
def stripmci (str):
pos = str.find("|")
while pos != -1:
str = str[:pos] + str[pos+3:]
pos = str.find("|")
return str
def mcilen (str):
return len(stripmci(str))
The Pre-alphas are being updated for all platforms since I was unable to have a full A37 today (some things are partially implemented and I don't want to release an official alpha like that).
Fair enough. String related functions can usually be handled in python. But because the MCI codes are pretty specific to Mystic, I had thought that a simple library function to strip them would be warranted. But as you said, its easy enough to do in python.
I take pleasure from trying to spot the changes (not all documented as
yet as I understand things are work in progress :))
System Config Themes
Sysop: | sneaky |
---|---|
Location: | Ashburton,NZ |
Users: | 2 |
Nodes: | 8 (0 / 8) |
Uptime: | 136:41:37 |
Calls: | 2,128 |
Calls today: | 1 |
Files: | 11,149 |
D/L today: |
28 files (9,996K bytes) |
Messages: | 951,049 |