• 0 Posts
  • 19 Comments
Joined 1 year ago
cake
Cake day: June 9th, 2023

help-circle



  • Big missing piece there: cloud.

    In the first half of the 2010s, there was a study from Gartner or another such company, that forecast that the cloud service market would amount to 1 trillion USD/year by 2030 or so, and since then the big players have been racing to try and carve as much as possible of the future juicy pie from Amazon’s hands.

    Google completely missed the boat at first then pivoted hard. MS leveraged its deep enterprise presence as hard as it could to get existing customers into its cloud offering; that’s why your MS consumer products (Office, OneDrive, etc) are tied at the hip with cloud these days. Not for consumers, for the business market.

    It’s business to business, however, so the generak public doesn’t hear about it a lot. It’s also largely non-sexy, and therefore not headline-worthy, with a few exceptions. The whole AI thing, for instance. But even there, consumers are not the target market. Cloud customers are.

    In that sense Google, MS and Amazon absolutely already are the new IBM and Oracle.

    Meanwhile, as far as I can tell, Meta is still trying to execute on its mission to connect people while still headed by people who have no idea how people connect. Apple is Apple, keeps just making oodles of money off the kind of people who buy Apple products.





  • If you’re using UEFI there is nothing to reinstall. The installed bootloaders are still there in the UEFI partition, Windows just changed which one is set as the default. There are tools you can use, such as EasyUEFI (if I remember correctly), to revert the default to Grub or refind or systemd-boot, whichever you’re using.




  • My friend, I don’t need to go read the video game history about Daggerfall: I wrote some of it. :)

    And I stand by my statement. That game was the height of storytelling that came out of Bethesda in a bunch of small but important ways, although Morrowind is not far behind, in a somewhat different fashion. And there is a definite shift in the series from the moment Ted Peterson left the team. Patently, not a shift I am personally very fond of, but to each her own.



  • Balinares@pawb.socialtoMemes@lemmy.mlAnother Starfield Post
    link
    fedilink
    English
    arrow-up
    16
    ·
    1 year ago

    Well, I’d argue that Daggerfall was their best game, story-wise, but Daggerfall is even older. And that’s the point, isn’t it? More time passed between Skyrim and Starfield than between Daggerfall and Oblivion. A lot can change in so many years, and I do believe that hoping for something new was not entirely unreasonable.

    Then again, the keyword there is entirely, isn’t it. I personally didn’t expect very much from Starfield, and, also personally, I can’t say I fully understand the amount of hype surrounding it.





  • A CPU performs operations like “read a small bit of thing from the memory into the CPU” and “do a small bit of computation on things inside the CPU” and “put a small bit of thing from the CPU into the memory”.

    Doing small bits of computation on things inside the CPU is very fast but moving bits of things from or to the memory is slow in comparison. In order to not be slowed down, CPUs read the code ahead of what is currently being executed, and try to guess what is going to happen and what will need to be moved from the memory into the CPU, so they can do it ahead of time, and have the small bit of thing from the memory already available right there in the CPU when it’s time to do a bit of computation on it. That way, there is no need to wait on slow memory, and the CPU runs much faster overall. That’s a good thing.

    In this case, a researcher found a way to make certain CPUs guess what is going to happen with the code wrong, in such a way that the small bits of things that were read from the memory ahead of time do not get properly cleaned up, and can still be found inside the CPU by another program. Those small bits of things might be your password or banking details, so that’s bad.