unalivejoy

  • 1 Post
  • 327 Comments
Joined 2 years ago
cake
Cake day: August 9th, 2023

help-circle








  • This means they forgot platforms other than Windows exists. It’s likely they’re checking for currently supported systems and anything older is insecure, so blocked for your security.

    Likely something like this pseudocode

    function isPlatformVersionSupported(useragent) {
        // Windows XP is NT 5.1
        // Windows Vista is NT 6.0
        // Windows 7 is NT 6.1
        // Windows 8 is NT 6.2
        // Windows 8.1 is NT 6.3
        // Windows 10 and 11 is NT 10.0
        if (useragent.name == "Windows" && useragent.version.match(/Windows NT (6\.3|10)/)) {
            return true
        }
    
        // TODO: insert supported macos versions here
    
        return false
    }
    










  • unalivejoy@lemm.eetolinuxmemes@lemmy.worldMicrosoft: "My PC"
    link
    fedilink
    English
    arrow-up
    16
    arrow-down
    1
    ·
    2 months ago

    Windows does not wake up from “hibernation” to do “updates”. What it really does is sleep walk during S0 sleep (aka Modern Standby) to check for updates, slowly draining your battery. Classic hibernation is not available while S0 sleep is supported by the BIOS.

    Mac is also guilty of this.