this post was submitted on 02 Jul 2023
260 points (96.4% liked)

Technology

59106 readers
3246 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


founded 1 year ago
MODERATORS
 

Interesting take on comparability vs performance. I gotta imaging capturing user data and sending to a cloud collector is also a big culprit.

you are viewing a single comment's thread
view the rest of the comments
[–] Goronmon@kbin.social 2 points 1 year ago (1 children)

I hope this problem will be solved with developers using new programming languages, like Rust or Go, instead of web-based ones, like Electron.

Electron isn't a programming language, it's an abstraction layer to allow desktop apps to render apps on top of a portable browser engine layer instead of a platform specific layer.

The existence of Rust/Go doesn't change the desire to have an app that can be written once and be run across many different platforms.

[–] edgard@mastodon.world 1 points 1 year ago (1 children)

@Goronmon @jestyr Yes, Electron is not a programming language, my mistake.
But there are few frameworks to make multiplatform software: Qt and Wxwidgets (C++), Swt and JavaFX (Java), PySide (Python), Electron (JavaScript), any other one?

[–] edgard@mastodon.world 1 points 1 year ago

@Goronmon @jestyr Only with the first two you can create optimised software (because C++), but only Qt is user (or developer) friendly.
With a good GUI library, Rust or Go (or another similar language) could be added as an alternative to make multiplataform software.