Formerly /u/Zagorath on the alien site.

  • 36 Posts
  • 78 Comments
Joined 2 years ago
cake
Cake day: June 15th, 2023

help-circle

  • This video raises some interesting theories, but unfortunately it doesn’t have any data to back up the more controversial ones. I’m inclined to agree with it, but I’d rather see actual evidence to back that up, if it’s possible for that kind of evidence to be collected. Did the Greens’ strategy during the campaign and during the last term of Parliament lose them a significant amount of votes? It’s hard to say.

    The summary being that the Greens were always going to lose seats as soon as the LNP slipped backward into 3rd place and got eliminated, giving votes to Labor, and that nothing the Greens could have done or not done would have changed that, is the most important piece of it, though.



  • Omg thanks for linking that thread. The amount of removed and deleted content on Lemmy is so frustrating. I hate the fact that removed or deleted posts also completely nuke all the comments on it.

    Reddit’s approach is so much better in this respect. A removed post removed the OP’s text, but if it’s a link post the link remains, and all the comments remain.





















  • I agree with you about dropdown menus being something that could/should be natively available to HTML, but I’m less convinced about form submission. Sure, if we assume everything is happy path it’s a great idea, but a system needs to be robust enough to handle a variety of cases. Maybe you want to redirect a user to a log-on page if they get back a 401, or present an explanation if they get a 403. A 5XX should usually display some sort of error message to the user. A 201 probably needs to add an element into the page, while a 200 might do nothing, or might alter something on the page.

    With the huge range of possible paths and desired effects, it pretty quickly becomes apparent that designing an HTML & CSS–only spec that can meet the needs is infeasible. There’s definitely a case to be made that JavaScript has become too powerful and can do too many potentially dangerous or privacy-invading things. And maybe a new range of permissions could be considered to limit a lot of that at a more fundamental level. But what we’re talking about here with the form submission stuff is the real bare-bones basic stuff JavaScript was designed to make easier—alter the contents of web pages on the fly in response to user actions. And it’s really, really good at that.