Recent content by thecloud

  • Board Nominations
    Nominations have now closed and the results are available here.
  • Hey Guest, MARCHintosh 2026 is upon us. Check out community projects, join GlobalTalk, and have fun!
  1. thecloud

    MARCHintosh 2026 Projects

    This is good to hear. Glad it worked for you! I didn't realize that the Apple Scribe essentially uses the same commands and can be treated as if it were an ImageWriter printer. The Apple Scribe reference manual seems to have a complete list of its supported commands so I'll go through them and...
  2. thecloud

    ThinkC digesting MIDI in with C on 68k macs - video

    Ooooh! I like that version! I was trying to remember where I've seen a similar keyboard, and I think it's the one from Deluxe Music Construction Set. One difference is that they don't bother with the full key region, only highlighting an inset rectangular portion. Your full key highlighting is...
  3. thecloud

    ThinkC digesting MIDI in with C on 68k macs - video

    That looks good. I still agree with @joevt that the insets need tweaking a bit. There is a white line where the white key touches the black keys. If you keep that, then maybe that white line should go all the way around the inside border of the key? Yes, that part's easy. The hard part is...
  4. thecloud

    [Discussion] Use of AI/LLM in the retro community

    Most of the people I hear saying "it's just a tool and it helps me be more productive" are already proficient software developers. What worries me is that the tool will be increasingly relied on by folks who are not yet proficient, and/or whose only motivation is to get to the end of the...
  5. thecloud

    ThinkC digesting MIDI in with C on 68k macs - video

    Maybe you can use a 50% or 75% gray pattern for the highlight, so it's easier to see whether black keys are held down? Inverting them to white looks odd when I'm looking for a chord pattern consisting of mixed white and black keys that visually reads the same. Just a thought. This project looks...
  6. thecloud

    MARCHintosh 2026 Projects

    My #MARCHintosh project this year is called Simple Spooler -- think of it as the Simple Text of print spoolers. It's an application that runs on old Macs (System 6.0 up to 9.2.2) and lets you share your serial ImageWriter printer over the network, without needing an AppleTalk Option Card...
  7. thecloud

    sit - Create StuffIt archives on Unix systems

    Interesting. They also forked the same sit.c file from 1988, back in 1990. Looks like the only addition is to stick the FInfo in a .finderinfo/<filename> path, where AUFS expected to find it.
  8. thecloud

    sit - Create StuffIt archives on Unix systems

    It became shorthand for the word "folder" itself. Practically, it meant you could save characters in a filename, since "Sample Projects ƒ" takes up less space than "Sample Projects folder". (Although yes, the word "folder" in a folder's name is sort of superfluous anyway. 🤷‍♂️ )
  9. thecloud

    sit - Create StuffIt archives on Unix systems

    I'm actually slowly changing my mind on the question of adding MacBinary support to sit. There are two reasons: 1. A MacBinary-wrapped archive allows the correct type and creator to be set for the archive file itself when reconstituted on a classic Mac. 2. The original author of sit, Tom...
  10. thecloud

    sit - Create StuffIt archives on Unix systems

    A couple of new bug fixes for the New Year have been pushed to the git repository. 1. Using sit to create archives of files from developer CDs and other old content, I noticed that filenames with "high ascii" (option-key) characters weren't being translated properly to MacRoman when expanded...
  11. thecloud

    sit - Create StuffIt archives on Unix systems

    That explains it. I was trying to run Netatalk 2.x on this system a while back and probably did a `make install` to get it there.
  12. thecloud

    sit - Create StuffIt archives on Unix systems

    Ah! It looks like I was mistaken... I had something called `macbinary` in /usr/local/bin which was a symbolic link to another program called `megatron`. Not sure how that got installed. But on a fresher system, the built-in macbinary command appears to work fine:
  13. thecloud

    sit - Create StuffIt archives on Unix systems

    I think that "cloned messages" is referring to your messages #31 and #32 in this thread, which looks like a minor edit that got saved as a whole new message. There were at least 3 copies of that message yesterday but one is gone today. :) And I tend to agree with your sentiment: rather than...
  14. thecloud

    sit - Create StuffIt archives on Unix systems

    One possible advantage of double-wrapping with MacBinary is that it allows the type and creator of the StuffIt file itself [SIT!/SIT!] to be set when decoded. It's a bit superfluous, as StuffIt Expander is smart enough to read the header of the file and identify it as a 1.5.1-format archive...
  15. thecloud

    sit - Create StuffIt archives on Unix systems

    There is nothing stored in the resource fork of a StuffIt 1.5.1 file. They would not have a resource fork if they were created by the StuffIt 1.5.1 program. I proved this to myself just now by creating a new archive in StuffIt 1.5.1, adding some files to it, saving, and quitting StuffIt. Then I...