this post was submitted on 10 Mar 2025
810 points (99.2% liked)

memes

12777 readers
4318 users here now

Community rules

1. Be civilNo trolling, bigotry or other insulting / annoying behaviour

2. No politicsThis is non-politics community. For political memes please go to !politicalmemes@lemmy.world

3. No recent repostsCheck for reposts when posting a meme, you can only repost after 1 month

4. No botsNo bots without the express approval of the mods or the admins

5. No Spam/AdsNo advertisements or spam. This is an instance rule and the only way to live.

A collection of some classic Lemmy memes for your enjoyment

Sister communities

founded 2 years ago
MODERATORS
 
(page 2) 50 comments
sorted by: hot top controversial new old
[–] Shipairtime@lemmy.world 16 points 1 day ago

I just got blender after having last looked at it ten years ago. It looks so much better! I had an easy time finding stuff. If you tried it in the past and are afraid of how ugly it was it is worth another shot. Also look up the doughnut tutorial.

[–] tfowinder@lemmy.ml 19 points 1 day ago (7 children)

Oh it's free so it lacks features

[–] Matriks404@lemmy.world 6 points 23 hours ago (1 children)

If you don't count professional software, nowadays it's actually the opposite. Very often in proprietary software there are features removed with no alternative provided by developers, or there's one but actually it has nothing to do with what you actually want.

[–] AeonFelis@lemmy.world 2 points 17 hours ago

And sometimes the one feature you need requires the Enterprise version with a $4799 yearly subscription.

[–] melfie@lemmings.world 3 points 20 hours ago* (last edited 20 hours ago)

It’s a jack of all trades for sure, but it also has features paid software doesn’t, like it’s 2d animation system with Grease Pencil. There are also paid extensions on BlenderMarket and the like that make it more competitive with more specialized features in other software. Extensions are GPL licensed, so I’m happy to pay for them as opposed to the rest of the toxic CG ecosystem where everything is subscription-only.

Edit:

I wish all paid software were GPL. It’s nice buying something and being able to look at and change the code, write code that calls their code, or even snag a bit of it for to use in your own thing.

[–] Damage@feddit.it 3 points 21 hours ago

Sometimes they actually have too many

load more comments (4 replies)
[–] thevoidzero@lemmy.world 8 points 1 day ago (1 children)

I'd like to make it like that for my projects, but I don't use windows so I can't do well with packaging them. And sometimes when I try it runs in the computer, but then doesn't run in other computers because of missing dlls or some other things.

Anyone have good idea how to make it easy. Using windows VM is such a hassle to install and such just for tiny programs I make.

[–] hangonasecond@lemmy.world 7 points 22 hours ago (1 children)

Make them in a portable language. Something like Java for example. Or you can write in rust and compile for each target.

[–] thevoidzero@lemmy.world 6 points 22 hours ago* (last edited 22 hours ago) (2 children)

It's in rust. Problem is the gtk part, it has to be installed in the system, which makes it run there. But how do I distribute the program without having everyone install gtk on their computer. In Linux it's just a dependency so it's not a problem, for windows I can't seem to make it work.

Edit: also, I need gtk because people around me who uses windows aren't going to use CLI program at all.

[–] AeonFelis@lemmy.world 3 points 17 hours ago

Edit: also, I need gtk because people around me who uses windows aren’t going to use CLI program at all.

If that's the reason - maybe you can use TUI instead? In Windows, it'd open a CMD window which your users will be able to use. Not as pretty as actual GUI, but easier for Windows users to use than a CLI.

Another option is to use one of the numerous Rust-native GUI libraries (like iced or Druid, to name a few). None of them are as big as GTK/QT - but they are easier to get running on Windows.

[–] Lv_InSaNe_vL@lemmy.world 4 points 22 hours ago

Oof GTK is probably one of the worst dependencies you can try and port to Windows.

What I've done in the past is use something like Onno Setup which can call a script during install.

Or, and this is new to me, use the Official tools to build a package for windows on whatever Linux distro you are on. From what I'm reading, it should package GTK with it.

[–] SleepyPie@lemmy.world 7 points 1 day ago

Me running Godot on a new computer yesterday

[–] MangoPenguin@lemmy.blahaj.zone 1 points 1 day ago (1 children)

On a somewhat related note, why do so many open source projects give me a zip file with a single exe inside it instead of just the exe directly?

[–] tja@sh.itjust.works 16 points 1 day ago (3 children)

Because zipping it can reduce the size

[–] Fiivemacs@lemmy.ca 13 points 1 day ago (1 children)

Plus a lot of antivirus whatevers will straight up block the downloading of *.exe

load more comments (1 replies)
[–] MangoPenguin@lemmy.blahaj.zone 1 points 23 hours ago (2 children)

EXE files don't really compress well, plus the files should already be internally compressed when the exe is built.

[–] AeonFelis@lemmy.world 2 points 17 hours ago (2 children)

This is true for the code part, but executables can also contain data does compress well and maybe not be compressed inside the EXE (e.g. - to avoid the need to decompress it on every run)

load more comments (2 replies)
[–] joyjoy@lemm.ee 4 points 23 hours ago

A lot of exe files are secretly zip files. zip files can contain arbitrary data at the end of the file. exe files can have arbitrary data at the start of the file. It's a match made at Microsoft.

load more comments (1 replies)
load more comments
view more: ‹ prev next ›