• 0 Posts
  • 8 Comments
Joined 2 years ago
cake
Cake day: August 20th, 2023

help-circle
  • The problem is that GPS signals are weak, and generally need a line of sight to the sky. Phones don’t rely on GPS alone, but also get location data by triangulating base stations and/or querying databases of WiFi SSIDs over the internet. And AirTags don’t contain either a GPS receiver or an internet connection: they’re just simple, low-power Bluetooth beacons which send an encrypted ID to any nearby iPhones, which add their locations and forward it to Apple.

    Basically, all the smarts are in Apple’s infrastructure (including the numerous privately-owned devices running Apple’s location services). Replicating this without a network of roving receivers is a nonstarter.






  • “Hand-written assembly” is not more powerful than any other Turing-complete language (including Perl and Python), just more painfully slow and prone to human error to write. (Perhaps if you have a special case requiring speed (such as the processing being done in a tight loop in a financial trading app and the results needing to beat rival trading systems by milliseconds or something equally esoteric), it’d make sense, but in that case, a modern compiler (for, say, C/C++/Rust or similar) would yield comparable results, and if a lot is riding on those milliseconds, you’d eschew code and build a FPGA that pulls the data out of memory buffers in hardware or similar.)

    So these days, the only use case for hand-writing assembly language (other than low-level OS/firmware programming or compiler development) is performative Feats Of Strength, where the challenge is the point. And in that case, you’d be trying to do something heroically challenging, like writing an Atari 2600 demake of Baldur’s Gate or something.