this post was submitted on 08 Jan 2025
1085 points (98.1% liked)

Programmer Humor

24317 readers
436 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
1085
Good guy clippy (lemmy.zip)
submitted 5 months ago* (last edited 5 months ago) by [email protected] to c/[email protected]
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 147 points 5 months ago* (last edited 5 months ago) (12 children)

For anyone considering Electron: take a look at Tauri. It’s another way to build cross-platform apps with web tech. It will use the OS‘s web rendering engine instead of shipping Chromium which results in much smaller binaries and faster startup times and less RAM usage. You can also write native code in Rust. It’s like Electron but good.

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

What about Flutter? It was pretty nice to work with

[–] [email protected] 9 points 5 months ago (2 children)

The reason people use Electron in the first place is that they wanna share a codebase between web, desktop and possibly mobile.

While Flutter can technically do that, the web apps it outputs are atrocious with poor usability and accessibility. It’s drawing the whole UI on a canvas element which causes all kinds of issues.

[–] [email protected] 3 points 5 months ago

they wanna share a codebase between web, desktop and possibly mobile.

That way you get an app that’s crap on every platform.

[–] [email protected] 1 points 5 months ago

Make sense, tnx

load more comments (10 replies)