mastodon.online is one of the many independent Mastodon servers you can use to participate in the fediverse.
A newer server operated by the Mastodon gGmbH non-profit

Server stats:

11K
active users

Windows C++ devs:

My main project is a Python + Qt GUI application. Distributing that as-is on Linux is easy. On Windows, a little trickier.

What I do now is distribute it with Python embeddable and pure Python code. That's fine, but it makes the launching a little tricky.

I'm currently trying to create a trivial C++ exec that just launches the correct files via CreateProcess().

Does this sound like a good idea? Code linked below.

github.com/vkbo/novelWriter/tr

novelWriter is an open source plain text editor designed for writing novels. - vkbo/novelWriter
GitHubnovelWriter/launcher/windows at windows_launcher · vkbo/novelWriternovelWriter is an open source plain text editor designed for writing novels. - vkbo/novelWriter

@veronica Not sure if this is helpful, but Python has an executable zip format that can be appended to a minimal win32 wrapper. Here's an example: bytecoil.com/python/zipapp-win.

bytecoil.combytecoil.com
Veronica Olsen 🏳️‍🌈🇳🇴🌻

@matsuzine Yes, I probably already know of all those options. None of them are usable, and those that are, set off an orchestra of virus alerts. I've probably tried every tool at this point.

This is the main reason I distribute as pure Python right now.