389
Ahh...yes...new "code-free" framework
(lemmy.world)
Post funny things about programming here! (Or just rant about your favourite programming language.)
...I'm confused unless this is just a fake joke image. Is there really a Microsoft page dedicated to .exe like this? A quick Google only returned non-MS results for me and I can't be bothered to look beyond that.
Also, what is there to even download for this? Just a link to Visual Studio to compile your own executables...?
Some dude was ranting somewhere recently about GitHub and "I just want the damn exe, not a bunch of stupid code". It became a bit of a meme.
@bassomitron@lemmy.world
I can't blame him. I recently tried to compile a rust app from github. I did not realize that cargo was pulling a GIGABYTE of data on my bandwidth-restricted connection until it was done. Then it wouldn't compile due to version mismatch. So I tried to update the rust version and that started throwing errors. The last thing I am doing is wasting my time troubleshooting such a crappy toolchain. If I have to play inspector gadget just to install the compiler and libraries to compile a small program, you can forget it. Cargo is a monstrosity and it is NOT a good toolchain if you value time and simplicity. I would much rather the maintainer offer binaries for download rather than requiring me to git clone, apt install, realize the deps aren't in the apt repo, hunt down and compile the deps, run make, then troubleshoot forever and a day before I can even do make install. Just give me a binary with everything built in. Kthxbye.
I disagree, Cargo is very simple and easy to use for developers. I agree, binaries are easier for end users. I'm surprised
cargo run --release
didn't work for you. What was the project and OS?+1 for this, never had an issue with cargo pulling the wrong versions unless the dev fucks up their TOML file or you're using the nightly toolchain
@devilish666@lemmy.world @bassomitron@lemmy.world @fishos@lemmy.world @MantisWaffle@lemmy.world
"Works on my box. You must be doing something wrong. Ticket closed."
If I had a nickel for every ...
I offered help and disagreed with what you said that was wrong. Your response is unrelated and misinterprets my reply.
It was meant to be humor, not a direct critique. And I don't want help, but thanks for offering. Cargo might try to download another gigabyte of data if I touch it!