Show him the original patent for the toilet roll holder, it shows the how the roll is supposed to go on.
BorgDrone
I mean, you have to explicitly give permission before apps can access the camera.
How can an app turn on the camera without your consent?
Bacon. It’s super delicious.
Showing it’s unsustainable is kind of the point of the original game Monopoly is based on: The landlord’s game.
Anything multiplayer.
Front left keys, front right phone. No wallet, I pretty much exclusively use Apple Pay on my watch.
I can imagine wanting to learn a newer, more modern language than python.
I blame Apple (and then Samsung for copying Apple) for stealing this form factor from us.
Neither prevents other companies from making a phone with this form factor. It probably disappeared due to lack of market demand.
And yet, I’ve never run into RAM problems on iPhones, both as a user and as a developer. On iOS an app can use almost all the RAM if needed, as long as your app is running in the foreground. Android by contrast is much stingier with RAM, especially with Java/Kotlin apps. There are some hard limits on how much RAM you can actually use and it’s a small fractIon of the total amount. The actual limit is set by the manufacturer and differs per device, Android itself only guarantees a minimum of 16MB per app.
The reason is probably because Android is much more lenient with letting stuff run in the background so it needs to limit the per-app memory usage.
Those apps also use more RAM than an equivalent iOS app, simply because they run on a garbage-collected runtime. With a GC there is a trade-off between performance and memory usage. A GC always wastes memory, as memory isn’t freed immediately once no longer in use. It’s only freed when the GC runs. If you run it very often you waste little RAM at the cost of performance (all the CPU cycles used by the GC) if you run it at large intervals you waste a lot of RAM (because you let a lot of ‘garbage’ accumulate before cleaning it up). In general, to achieve similar performance to non-GC’d code you need to tune it so it uses about 4 times as much RAM. The actual overhead depends on how Google tuned the GC in ART combined with the behavior of specific apps.
Note that this only applies to apps running in ART, many system components like the web browser are written in C++ and don’t suffer from this inefficiency. But it does mean Android both uses more RAM than iOS while at the same time giving apps less RAM to actually use.
It basically comes down to different architectural choices made by Google and Apple.
Cycling through fresh snow is fine, it’s the snow that has been driven over and compacted that’s really slippery.
When you ride over the slippery icy stuff, don’t brake hard, don’t make any sudden turns. Better to just stop pedaling and let your bike roll. Watch out for hard frozen ridges of snow.
Usually the cycle paths are salted early, it’s the part from the busy cycle paths to your front door and the last bit to your destination where you have to watch out.
Snow dampens sound so be careful around cars, you might not hear them coming. If you wear a coat with a hood it might be more difficult and annoying turn your head, resist urge to not look when crossing roads.