this post was submitted on 12 Aug 2023
766 points (96.5% liked)

Programmer Humor

31224 readers
65 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 4 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 132 points 10 months ago* (last edited 10 months ago) (6 children)

Don't worry, texteditor.com is also available as an app on Windows, macOS and Linux thanks to Electron.

It only needs 300 megabytes and you can style it with CSS.

[–] [email protected] 60 points 10 months ago (1 children)

It also only takes a single gigabyte of RAM per file being edited, Isn't that fantastic?

[–] [email protected] 30 points 10 months ago (3 children)
[–] [email protected] 8 points 10 months ago

Man it's not lightweight, but damn, if CSS and JS isn't a really easy way to build cross platform UIs than other options like Qt. There's a reason why electron is so popular.

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

Shhhh, don’t tell anyone

[–] [email protected] 3 points 10 months ago (1 children)

Oh no, I love electron. That's not a dig on it, it's just very much a resource hog.

[–] [email protected] 3 points 10 months ago* (last edited 10 months ago)

It doesn't have to be.

One of my experiments, an overlay for a game using camera position API to draw a 3d scene over the game, rendering things as if they were in the game (with some limitations) uses electron and three.js

It's pretty fast, uses about 100-150mb ram, and works pretty well. A similar overlay using same approach but written in C and opengl take ~200+ mb and a c# one 150-250 mb. The c# one has more features overall so it's not a complete comparison, but then my overlay can do things the other can't too.

[–] [email protected] 21 points 10 months ago* (last edited 10 months ago) (4 children)

So was all this bloat inevitable as hardware got better, or is there a way to go back? It feels like a ripoff that our computers are 1000x better but they're maybe 10x faster once all the shitty software is taken into consideration.

[–] [email protected] 21 points 10 months ago (1 children)

Perhaps it's kind of inevitable to have some bloat. For example apps these days handle most of the languages just fine including emoji, LTR/RTL and stuff. Some have pretty decent accessibility support. They can render pretty complicated interface at 8k screen reasonably fast. (often accelerated in some way) There is a ton of functionality baked in - your editor can render your html or markdown side by side with source code as you edit it. You have version control, terminal emulator, language servers, etc..

But then there's Electron, which just takes engine capable of rendering anything and uses it to render UI, so as a result there's not much optimization you can do. Button is actually a bunch of DOM elements wrapped in CSS.. Etc.. It's just good enough for the "hardware is cheap" approach.

I think Emacs is a good example to look at. It has a ton of built in functionality and with many plugins (either custom configuration or something like Doom Emacs) you can have very capable editor very comparable to the likes of VS Code. Decades back Emacs had this reputation of being bloated, because it used Megabytes of RAM. These days it's even more "bloated" due to all the stuff that was added since. But in absolute numbers it does not need as much resources as its Electron based peers. The difference can easily be order of magnitude or more depending on configuration.

[–] [email protected] 2 points 10 months ago

I am working on an application using DevExpress XAF. It allows you to build a big enterprise application relatively quick by doing a lot of the dirty work you would otherwise do yourself for CRUD stuff. A lot of the application can be modified through mere clicks without touching a single line of code.

It is cool but kinda bloaty. When you simply launch an XAF application, it uses 300 megabytes of RAM. And that's before you even loaded a single byte of business data. You have just reached the login screen.

At least i felt it was "kinda bloaty" until i first booted Void Linux on my gaming PC at home and took a look at htop. IT'S ONLY 400 MEGABYTES AND IT'S READY TO USE! MAYBE ADD 200 MEGABYTES FOR KDE!

ALL THIS BLOATING CANNOT CONTINUE! WE HAVE TO TAKE ACTION IMMEDIATELY OR WE WILL BE FOREVER DOOMED TO UPGRADE OUR RAM LEST WE DON'T WANT EVEN A FUNCTIONING TEXT EDITOR!

[–] [email protected] 9 points 10 months ago (1 children)

I have a few suggestions:

  1. Better education. Don't scare people who're learning programming away from the lower-level stuff, especially as people are even getting scared to use type declarations, not just the pointers (of which I was fearmongered with in college, as they told me Java is the future).
  2. Better portable APIs. Thanks to WebAssembly, one could easily have both something portable in a web browser and as a native desktop app, except instead we get browsers running said applications. I had some thinking about such a project, but then I remembered my iota project (a D-native replacement of SDL/SFML/GLFW, but without bloat by including standard library features), and then stopped thinking about it immediately, since a much smaller project already causes me too much headache. (Someone has a handy guide on win32 API? I have issues on getting certain messages produced, like input language change, and I don't know if I glimpsed over some functions that enable them and just weren't included in the documentation of the input language change event codes.)
[–] [email protected] 4 points 10 months ago* (last edited 10 months ago)

You know, I haven't worked on a super big project, but I feel like every time I've gotten a type error in a static language it's pointed to something wrong with my underlying reasoning.

[–] [email protected] 6 points 10 months ago (2 children)

nope. The bloat is there mainly because it makes the job easier for the devs.

[–] [email protected] 7 points 10 months ago (1 children)

In the short run, yes. In the long run, this just makes a bunch of coders that are now afraid of type declarations, because they were scared away from it with the "what if you have to choose?" tagline, thus making turning back to the proper way of doing things harder.

[–] [email protected] 2 points 10 months ago (1 children)

Can you talk more about this? I've never heard that tagline and can't figure out what it's supposed to mean.

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

Just from context, I'm guessing it means that you might type things one way and then need to use them another way later, and dynamically typed languages are sold as not having that problem.

[–] [email protected] 4 points 10 months ago

I was thinking about this a bit. Does that mean you can develop a piece of software much more cheaply now? I have a fear that companies writing software get a 10% discount from writing bloat, while clients wind up using 10,000% the resources and are just so used to it they don't complain.

[–] [email protected] 4 points 10 months ago

It's not really inevitable, it's just a consequence that develops can get away with being lazy because the hardware can cope with it.

[–] [email protected] 10 points 10 months ago

Of course! And it definitely does not try to pry all info about the user that it can and definitely the company behind would not use that in any way.

[–] [email protected] 8 points 10 months ago

And then youll only need a near 16gb of ram to text a text file.

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

I like that you can just install it straight from the Windows Store, no need to even bother opening Edge to download it.

[–] [email protected] 8 points 10 months ago (2 children)

...from the Windows Store

who dare speak of the runes?

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

SPEZ!!! I love spez! He’s so nice he did r/place again! Also, windows store?? I only know apt

[–] [email protected] 2 points 10 months ago

Why is your profile picture the hyprland logo lmao

[–] [email protected] 4 points 10 months ago

And the app is just a chromium browser without the ability of typing in your own URL.

[–] [email protected] 2 points 10 months ago

That’s a very lightweight one. Stakeholders say it needs to be at least 600mb.