Skip Navigation

Posts
2
Comments
669
Joined
2 yr. ago

  • Also kde is way better about this than gnome. Especially kde 6.

    Discord is blurry because it's an electron app, and electron isn't native Wayland. You can make it work with --enable-features=UseOzonePlatform --ozone-platform=wayland

  • Yeah, I missed the part where they wanted it to be built into the browser

  • To compile stuff for macs without having to buy a mac

  • rule

    Jump
  • It doesn't have to be fully unique either. How about revisiting the delta quadrant?

  • I see, I guess I get the point they're making. We can do iframe reloads based on clicks without javascript, why not div reloads. I think framing it as a way of doing this without javascript rather than without a framework would be clearer and a better argument

  • The police are the last ones that should have guns

  • I just want a new series like voyager. Taking place in the future (not prequels), doing something unique, having a cohesive progressive storyline but not necessarily extremely serialized like picard, and with new characters

  • I'm confused. This is exactly what https://htmx.org/attributes/hx-target/ is for since they're already using htmx. This doesn't make sense to add to the html spec unless ajax requests themselves are added such that browsers will do this automatically. Which I don't think anyone wants.

  • A lot of us just browse all, given how little content there is overall

  • Expecting to see content in a language you understand is totally reasonable. Down voting may not be the correct way to handle that, but insulting people who just want to view content they can read is totally uncalled for

  • That's not totally true. It's just that 2nd place would become vice president.

  • Making a change in 5 places sucks, making it in 2 could be reasonable. If 2 pieces of code are similar but different enough, I've seen way too often people try to force them into a common abstraction. That's more what the article is about.

  • Rust just has lousy compiler warnings.

    You're the only person I've ever heard this from. Rust's compiler warnings are amazing. Like 2nd to none

  • You mean 8.5/11?

  • Use an IDE if you aren't already. Jetbrains stuff is great. Having autocomplete is invaluable.

  • Rust syntax is way closer to Python than go. Go's syntax is awful imo. It's like objective C

  • You're missing the point. Tools are different. Trying to learn and use rust by writing unsafe bubble sort is pointless. Use it to actually accomplish something and you'll find out just how amazing it is.

    Using the ecosystem that exists to be productive and not have to think at all about whether what you're doing is correct is the point. It catches the subtle errors for you and lets you use the powerful libraries like clap for command line parsing, tokio, etc.

  • Once you get the hang of rust you don't ever need to ask it to do unsafe things. It's not really any faster to do things unsafe