• 0 Posts
  • 477 Comments
Joined 1 year ago
cake
Cake day: April 3rd, 2024

help-circle

  • By that measure, most movie theaters also shouldn’t be showing movies – very few of them have the precise setup a given movie was mastered for. If the movie was made with IMAX laser projection in mind, it should only be down in theaters with such projectors even if this excludes 95% of theaters. Likewise for rumble seats. Or theaters with Atmos sound systems if the movie was made with DTS-X in mind.

    Of course this leads to the conclusion that it’s financially unwise to release movies at all because any movie will only ever be able to be shown in very few theaters and will not recoup its production costs.

    Or, you know, you release it for multiple projection and sound setups and accept that there is a close enough level of fidelity for a given use case. Which leads us back to actually properly mixing it for the home release because the people who have IMAX laser 3D projectors and 12,000 W sound systems are not going to be using Blu-Ray in the first place.


  • Jesus_666@lemmy.worldtoMemes@sopuli.xyzOff topic
    link
    fedilink
    arrow-up
    22
    ·
    7 days ago

    In other words, movies are not intended to be played back at devices that aren’t connected to theater-grade audio hardware.

    Of course this requires the question of why movies are even released on Blu-Ray, DVD, or streaming services at all instead of just using the existing distribution system for movie theaters. Everyone who doesn’t run an IMAX setup at home is too poor to watch movies.









  • Jesus_666@lemmy.worldtoLinux@lemmy.mlLinux Users- Why?
    link
    fedilink
    English
    arrow-up
    4
    ·
    15 days ago

    I run Garuda because it’s a more convenient Arch with most relevant things preinstalled. I wanted a rolling release distro because in my experience traditional distros are stable until you have to do a version upgrade, at which point everything breaks and you’re better off just nuking the root partition and reinstalling from scratch. Rolling release distros have minor breakage all the time but don’t have those situations where you have to fix everything at the same time with a barely working emergency shell.

    The AUR is kinda nice as well. It certainly beats having to manually configure/make obscure software myself.

    For the desktop I use KDE. I like the traditional desktop approach and I like being able to customize my environment. Also, I disagree with just about every decision the Gnome team has made since GTK3 so sticking to Qt programs where possible suits me fine. I prefer Wayland over X11; it works perfectly fine for me and has shiny new features X11 will never have.

    I also have to admit I’m happy with systemd as an init system. I do have hangups over the massive scope creep of the project but the init component is pleasant to work with.

    Given that after a long spell of using almost exclusively Windows I came back to desktop Linux only after windows 11 was announced, I’m quite happy with how well everything works. Sure, it’s not without issues but neither is Windows (or macOS for that matter).

    I also have Linux running on my home server but that’s just a fire-and-forget CoreNAS installation that I tell to self-update every couple months. It does what it has to with no hassle.


  • And that’s the thing: If you only go to the gym to pick up women because your horrible personality won’t cut it, you’ll go home disappointed.

    That’s a pattern I generally see with these self-loathing greentexts: The posters have “ambitions” (read: feel entitled to success, money, and/or women) but don’t want to put in consistent effort or figure out why things are going wrong for them. Instead they project all the blame onto the rest of the world and spiral into depression.

    When they do decide to put in the effort you usually get something along these lines:

    > be me
    > ugly and everyone hates me
    > go to the gym to get a bod I can pick up females with bc they’re all shallow
    > actually get into working out
    > become friends with the gym bros
    > now I feel great, have a sixpack and real friends
    > itsthateasy.tif


  • I played Arknights for a bit because there’s actually a pretty solid tower defense game in there. There’s not a big selection of good games for Android and I wanted something I could play when I have no laptop with me.

    Unfortunately the good gameplay is buried under tons of attention hogging gacha bullshit.

    I stopped playing once I realized that I was spending more time doing chores than actually playing through interesting content. Also, while the BGM is nothing short of lavish, the presentation of the story is like a very cheap VN, which basically killed any hope of getting engaged in the story or the characters.

    I didn’t spend much more than maybe twenty bucks on it so it’s not too bad given the partially solid gameplay. But yeah, I’m done with live service bullshit games.








  • Honestly, I’m still very much in the “classes define what a tag represents, CSS defines how it looks” camp. While the old semantic web was never truly feasible, assigning semantic meaning to a page’s structure very much is. A well-designed layout won’t create too much trouble and allows for fairly easy consistency without constant repetition.

    Inline styles are essentially tag soup. They work like a print designer thinks: This element has a margin on the right. Why does it have that margin? Who cares, I just want a margin here. That’s acceptable if all you build are one-off pages but requires manual bookkeeping for sitewide consistency. It also bloats pages and while I’m aware that modern web design assumes unmetered connections with infinite bandwidth and mobile devices with infinitely big batteries, I’m oldschool enough to consider it rude to waste the user’s resources like that. I also consider it hard to maintain so I’d only use it for throwaway pages that never need to be maintained.

    CSS frameworks are like inline styles but with the styles moved to classes and with some default styling provided. They’re not comically bad like inline styles but still not great. A class like gap-2 still carries no structural meaning, still doesn’t create a reusable component, and barely saves any bandwidth over inline CSS since it’s usually accompanied by several other classes. At least some frameworks can strip out unused framework code to help with the latter.

    I don’t use SCSS much (most of its best functionality being covered by vanilla CSS these days) but it might actually be useful to bridge the gap between semantically useful CSS classes and prefabricated framework styles: Just fill your semantic classes entirely with @include statements. And even SCSS won’t be needed once native mixins are finished and reach mainstream adoption.

    Note: All of this assumes static pages. JS-driven animations will usually need inline styles, of course.