this post was submitted on 20 Feb 2024
1129 points (97.2% liked)

Microblog Memes

4743 readers
5153 users here now

A place to share screenshots of Microblog posts, whether from Mastodon, tumblr, ~~Twitter~~ X, KBin, Threads or elsewhere.

Created as an evolution of White People Twitter and other tweet-capture subreddits.

Rules:

  1. Please put at least one word relevant to the post in the post title.
  2. Be nice.
  3. No advertising, brand promotion or guerilla marketing.

Related communities:

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 13 points 4 months ago (1 children)

Because making proper executables working on all machines is just extra maintenance work. They probably just wanted to code something and share it to the world without that extra headache.

[–] [email protected] -5 points 4 months ago (1 children)

Unless you're running it very low level code no it's not.

If it's anything that is in c++ or java You're basically making me copy paste your code into a compiler and then pressing compile the end result will be identical to the one you would have given me.

[–] [email protected] 11 points 4 months ago (1 children)

It’s not if you want to compile for Windows, Linux and Mac at the same time, with x86, x64 and ARM support. Cross compiling can often be a big annoyance to set up.

And this is a Python project. Making stand alone executables for Python projects is rare.

[–] [email protected] 0 points 4 months ago* (last edited 4 months ago)

GitHub public repositories get free build runners for all of those except ARM and aren't that hard to set up (for compiled languages of course).