laggyluke | 5 years ago | on: Rebuilding our tech stack for the new facebook.com
laggyluke's comments
laggyluke | 6 years ago | on: First look at Apple/Google contact tracing framework
Devil's advocate: so why not just keep the app running forever in the background?
If there's no virus to report - that's fine.
But the moment a new outbreak starts, the data is already there, you just have to report that you're sick.
laggyluke | 6 years ago | on: Let's Encrypt certificate issuance was down
laggyluke | 7 years ago | on: AMP pages displaying your own domain
laggyluke | 7 years ago | on: The creation of the io.latency block I/O controller
laggyluke | 7 years ago | on: The Illustrated TLS 1.3 Connection: Every Byte Explained
https://www.ietf.org/mail-archive/web/tls/current/msg26385.h...
laggyluke | 7 years ago | on: Tell HN: Using Gmail? You will be force logged into Chrome
It's actually hurting me: I'd like to be able to sign into YouTube on an untrusted device without signing into Gmail at the same time.
laggyluke | 7 years ago | on: Microsoft has sunk a data centre in the sea to investigate energy efficiency
laggyluke | 7 years ago | on: Insider Attack Resistance
laggyluke | 8 years ago | on: GrayKey iPhone unlocker poses serious security concerns
laggyluke | 8 years ago | on: Termux: terminal emulator and Debian-style userland as an Android app
On the other hand, there's virtually no sandboxing on your laptop. As software developers, we pull random code from the internet all the time and it's generally trivial to steal every secret that your user has access to (https://xkcd.com/1200/)
Personally I'm not worried about baseband processor (or Intel ME) owning my device. I'm more worried about some random malware installing a keylogger and/or stealing my whole LastPass database. This would be virtually impossible on mobile, but is relatively trivial on laptop.
laggyluke | 8 years ago | on: Node v8.1.2
laggyluke | 9 years ago | on: Cyanogen services shutting down
laggyluke | 9 years ago | on: Webcams used to attack Reddit and Twitter recalled
laggyluke | 9 years ago | on: Chinese CA WoSign faces revocation after possibly issuing fake certificates
laggyluke | 9 years ago | on: Curl and http/2 on Mac
brew install curl --with-nghttp2 --with-openssl
brew link curl --force
You can also use --with-libressl instead of --with-openssl if you prefer LibreSSL.laggyluke | 9 years ago | on: The future is fewer people writing code?
laggyluke | 10 years ago | on: I stayed in a hotel with Android lightswitches and it was as bad as you'd think
laggyluke | 10 years ago | on: UBlock Origin
laggyluke | 10 years ago | on: Show HN: Kvpbase – a new way for developers to store data
callback(err, data)
while you suggest doing it like this: callback(data, err)
Apart from being an eyesore, it breaks compatibility with a ton of third-party libs like `caolan/async`.
Be careful what you wish for. You just described native mobile apps.