this post was submitted on 12 Mar 2024
75 points (87.1% liked)

Programming

18116 readers
59 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 2 years ago
MODERATORS
 

Yes it plays Doom Github: https://github.com/HeyPuter/puter

top 21 comments
sorted by: hot top controversial new old
[–] gofsckyourself 22 points 11 months ago (1 children)

Why jQuery?

Puter interacts directly with the DOM and jQuery provides an elegant yet powerful API to manipulate the DOM, handle events, and much more. It's also fast, mature, and battle-tested.

'Elegant' my fucking ass. Convenient? Sure. But it's far from 'elegant'.

[–] Potatos_are_not_friends 10 points 11 months ago (1 children)

It's pretty elegant if you love Italian food so much even your code is spaghetti.

[–] gofsckyourself 6 points 11 months ago

Puter devs:

[–] Fades 8 points 11 months ago
[–] nutsack 8 points 11 months ago

I don't want to say what I think of pooter is

[–] [email protected] 7 points 11 months ago

This is really cool. It seems to be getting hugged to death though, I'm getting a lot of server errors when I attempt to open most apps.

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

A better question...

Can I make a beowulf cluster of them?

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

That joke takes me back. Had to double check if I was on slashdot.

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

(Score:4, Funny)

[–] Downcount 5 points 11 months ago
[–] [email protected] 4 points 11 months ago

This is crazy cool

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

Why? Have we forgotten what the purpose of an OS is?

A cloud OS is the stupidest thing I've heard this week.

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

People do things for no reason dude. It’s fun to just run with something and escape reality for a while.

[–] warmaster 3 points 11 months ago

Amazing achievement. Congratulations.

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

I wonder what’s the better API jQuery has compared to vanilla Js Tbf

[–] Potatos_are_not_friends 8 points 11 months ago

If someone reaches for jquery as an abstraction layer over JavaScript in 2024, I immediately question everything else. You're pulling in the jquery library for a set of features, followed by hundreds of features you won't use.

Absolutely no reason why you can't recreate the same features in JavaScript, with a much smaller footprint.

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

Jquery is just shorthand, really -- unless things have changed in the last decade (which doesn't seem likely in the world of technology! /s), jquery is basically a way to stop writing document. GetElementById() and element.classList.add() over and over.

Don't get me wrong, that shorthand was a valuable and unique addition to a tool set -- jQuery code was much easier to read and maintain than vanilla js, for sure. But I feel like now that websites usually have build steps, using jQuery involves a lot more effort than just not using it, that, with its kind of naive approach to DOM manipulation, is where the hate comes from, imo. It's probably still a great choice in a traditional LAMP stack build.