Adam Sampson

Results 48 comments of Adam Sampson

Can I suggest a simpler solution that combines ideas from both of your approaches? The only uses of `exit` outside of `main` are in the option-parsing functions, which are only...

> For the current code that would be almost right. Though exit(1) is also used in the commandline parsing functions, and return can't be used there. That's fine, because the...

> No garantee in wich order they are deleted if they are in the same scope (often same order as creation). No, that's not correct. In C++, variables with automatic...

@ann0see The only thing I'm really uncomfortable about here is the manual cleanup code using `delete` - it really should be using smart pointers in modern C++. I'm fine with...

> have a more programmer-friendly way of controlling the client I've wondered occasionally if it'd be worth making Jamulus understand [OSC](https://en.wikipedia.org/wiki/Open_Sound_Control) - it's used by lots of other audio applications...

Previous discussion in #126. The Simtel archive is preserved on the Walnut Creek CP/M CD-ROM, but the structure is very different from what was on MC; it's not clear to...

Thanks, @larsbrinkhoff! Comparing those listings with [00-index.txt](https://stuff.offog.org/its/cpm/00-index.txt) from the [Walnut Creek CP/M CD](https://archive.org/details/cdrom-1994-11-walnutcreek-cpm), there seem to be a lot of files in \cpm that came from MC, dated September 1985....

From the [TOPS-20 Kermit source](http://www.columbia.edu/kermit/ftp/d/k20mit.mac): > SET ITS-BINARY (format) ON or OFF > > Specify whether ITS-Binary file headers are to be recognized or ignored. ITS binary format is a...

TS O is a binary produced by Alan Snyder's C compiler (like STINKR, SHELL etc.).

Yes, that's the version that's modified for Confusion. I used some of its function definitions when I was first getting Zork to run interpreted on Muddle 56. @eswenson1, the definitions...