• 4 Posts
  • 613 Comments
Joined 1 year ago
cake
Cake day: June 18th, 2023

help-circle






  • This may be illegal in EU if they don’t use opt in. Even then it may be illegal for under 18 year olds to collect MAC addresses and disk serial numbers, as those can potentially be used for identification.

    The data is anonymized, and the IP is NOT stored. So I’m not sure this violates GDPR?

    From the code we can see the machine ID is anonymized, sending only a SHA256 checksum.

    def get_hashed_device_id():
        # Read the machine ID
        with open("/etc/machine-id", "r") as f:
            machine_id = f.read().strip()
    
        # Hash the machine ID using SHA-256 to anonymize it
        hashed_id = hashlib.sha256(machine_id.encode()).digest()
    
        # Convert the first 16 bytes of the hash to a UUID (version 5 UUID format)
        return str(uuid.UUID(bytes=hashed_id[:16], version=5))
    
    

    This makes it somewhat a nothingburger IMO.












  • To be fair the Dimensity 9400 is a marvel, the 3nm process and all the technologies in a modern SOC contain more know how and research than sending people to the moon.
    So in a way it’s sort of equivalent to having your own personal moon rocket.

    The cumulative level of expertise required to make a modern SOC is mind blowing. Just imagine aligning multiple masks with nanometer precision! Just a “simple” thing as the light source required is so sophisticated a single “lamp” cost about $300 million USD!! The quantum theory principles used to make the motion sensors, the massive design and logistics behind the development of the billions of logic gates.

    IMO this modern SOC is the “biggest” world wonder humanity has created yet. Who would have imagined it would be so small?


  • Absolutely, but considering the rave around AI, I wouldn’t be surprised if AI is improved more than the other parts.
    I have a Dimensity 9200+ based phone, and that’s freaking fast IMO, this new SOC is nearing twice the speed of that!

    Considering Moore’s law was declared dead many years ago, it’s impressive how much power and efficiency is squeezed out of new components.
    AMD revived the desktop 8 years ago, and they too are able to improve significantly each year.