• 0 Posts
  • 303 Comments
Joined 2 years ago
cake
Cake day: June 30th, 2023

help-circle








  • When I was in school, I wanted a Linux machine (since my school stuff was mostly linux and I wanted to be able to work locally instead of having to ssh in to school machines) but wasn’t comfortable doing it on my main PC, so I bought a cheap laptop and inatalled linux on that. Had the extra bonus of being smaller and lighter than my gaming laptop that was my main PC at the time, too.

    Your options will probably be a bit more expensive (and apologies for suggesting a solution that involves throwing money at it if you aren’t in a position to get even a relatively cheap one) since it’s running windows and needs the hardware for that, including TPM if your school stuff requires win 11 (though if you can get away with win 10 or 7, you could probably get a cheaper machine). Though on the other hand, your tasks might not require a GPU, which can save a lot right there.

    Then you can truly isolate your personal stuff from winsows, especially if you set your LAN up to never let the windows machine know that the linux machine even exists.

    I also use this with consoles to play games I’d like to try but they have DRM or anticheat that I don’t want on my PC. Also kinda doing it with work, though the laptop belongs to them.







  • Hmm I think now they meant the original “switch to linux” bit sarcastically and are stuck in a mindset thinking that it’s way more complicated than windows and thus anyone claiming to have already switched must be lying…?

    Though thinking about it more, it kinda feels like a bad faith response, posting about a vague windows solution that they want people to know exists but doesn’t want to share, while treating Linux as big and scary and requiring more effort than fighting against what your OS really wants you to do.


  • My approach was spending even more money for the pro version so I could access the OS settings paywalled by group policy and set it to never automatically download updates.

    It would tell me about updates, but wouldn’t do shit until I clicked a button on the update page to actually install them (though without the option to pick and choose which ones).

    It still nagged me about stupid shit I didn’t want, like edge, bing, one drive, and their office subscription.

    So when I built a newer computer, I gave them $0 and installed Fedora and laugh at my former reluctance because it’s actually been easier and I haven’t even had moments where I wished I had just stuck with windows.

    Not saying that it’s been perfect without any issues, I just recall that there were also issues on windows to deal with, a lot more dated responses showing up in searches that tell you do go to some setting window that no longer exists because the question was answered 6 months ago. Oh and I haven’t had to fight my fucking OS deciding to change my settings back to the shitty defaults they set (plus Linux just has better defaults, so doesn’t even need as much settings tweaking).

    And as an added bonus, switching made me finally pull the plug on xbox game pass, which was a nice idea but I still mostly just spent my time playing games on steam and forgetting to check game pass when buying games on sale, so it was kinda a waste of money. But each time I considered getting rid of it before, I’d instead convince myself it was good to have and end up playing some games on there for a few days before forgetting about it again.


  • I don’t get why it’s not common for people to cut out the middleman with these services that just connect a provider with a seeker. Then the seekers can stick with a reliable provider when they find one and the provider can take the full amount rather than giving away a cut (or, more accurately, accepting whatever the middleman thinks is the least they can give without driving the provider away). By the time they come in contact, the middleman has already added all of the value they can to that interaction.



  • It’s generally not as heavy because the layer is just reinterpreting API calls while the user code still runs natively. On a browser running JavaScript, it’s using an interpreter for every line of code. Depending on the specifics, it could be doing string processing for each operation, though it probably only does the string processing once and converts the code into something it can work with faster.

    Like if you want to add two variables, a compiled program would do it in about 4 cpu instructions, assuming it needed to be loaded from memory and saved back to memory. Or maybe 7 if everything had a layer of indirection (eg pointers).

    A scripting language needs to parse the statement (which alone will take on the order of dozens of cpu instructions, if not hundreds), then look up the variables in a map, which can be fast but not as fast as a memory load or two, then do the add, and store the result with another map lookup. Not to mention all of the type stuff being handled at run time, like figuring out what the variables are and what an add of those types even means, plus any necessary conversions. I understand that JavaScript can be compiled and that TypeScript is a thing, but the compiled code still needs to reproduce all of the same behaviour the scripting language does, so generic functions can still be more complex to handle calling and return conventions and making sure they work on all possible types that can be provided. And if they are using eval statements (or whatever it is to process dynamically generated code), then it’s back to string processing.

    Plus the UI itself is all html and css, and the JavaScript interacts with it as such, limiting optimizations that would convert it into another format for faster processing. The GPU doesn’t render HTML and CSS directly; it all needs to be processed for each update.

    For D3D to Vulkan, the GPU handles the repetitive work while any data that needs to be converted only needs to happen once per pass through the API (eg at load time).

    That browser render stuff can all be done pretty quickly on today’s hardware, so it’s generally usable, but native stuff is still orders of magnitude faster and the way proton works is much closer to native than a browser.