UUID: NewV7() always generates a UUID with 7000 on browsers (Golang)github.com59 points·by mfrw·22 dagen geleden·7 comments
Exercises in benchmarking, evals, and experimental design, part 6patreon.com3 points·by mfrw·vorige maand·0 comments
NEET UG – a med school exam is cancelled (India)twitter.com4 points·by mfrw·2 maanden geleden·2 comments
Scaling, Stretching and Shifting Sinusoidseli.thegreenplace.net2 points·by mfrw·2 maanden geleden·0 comments
Thoughts on WebAssembly as a Stack Machineeli.thegreenplace.net4 points·by mfrw·2 maanden geleden·0 comments
How Secure Is Tap to Pay? [Veritasium] [video]youtube.com3 points·by mfrw·3 maanden geleden·0 comments
Smarter Live Streaming at Scale: Rolling Out VBR for All Netflix Live Eventsnetflixtechblog.com1 points·by mfrw·3 maanden geleden·0 comments
Notes on Linear Algebra for Polynomialseli.thegreenplace.net4 points·by mfrw·5 maanden geleden·1 comments
Thinking Outside The Box [dusted off draft from 2017]projectzero.google1 points·by mfrw·7 maanden geleden·0 comments
How to use Linux vsock for fast VM communicationpopovicu.com88 points·by mfrw·8 maanden geleden·21 comments
mfrw·2 maanden geleden·discussWhat hurts the most is almost more than 2 million students have to appear again. All the trauma and stress all over again :(
mfrw·7 maanden geleden·discussPrevious Years:- 2025: https://news.ycombinator.com/item?id=42490343- 2024: https://news.ycombinator.com/item?id=38777115- 2023: https://news.ycombinator.com/item?id=34125628- 2022: https://news.ycombinator.com/item?id=29746236- 2021: https://news.ycombinator.com/item?id=25594068- 2020: https://news.ycombinator.com/item?id=21802596- 2019: https://news.ycombinator.com/item?id=18753859- 2018: https://news.ycombinator.com/item?id=16007988- 2016: https://news.ycombinator.com/item?id=10809767- 2015: https://news.ycombinator.com/item?id=8822723- 2014: https://news.ycombinator.com/item?id=6994370- 2012: https://news.ycombinator.com/item?id=3395201- 2011: https://news.ycombinator.com/item?id=1970023- 2010: https://news.ycombinator.com/item?id=1025681- 2009: https://news.ycombinator.com/item?id=416530
mfrw·vorig jaar·discussI like to think of it as a magical checklist, it helps us to quickly check if something _might_ be there, without actually looking through everything.A few non-exhaustive real world use-cases that come to mind:- Databases: To quickly check if a record might exist before doing a costly disk lookup.- Spell Checkers: To check if a word might be in the dictionary.- Spam Filters: To check if an email sender is on a list of known spammers.- Browser Security: Chrome uses Bloom filters to check if a site might be malicious.- Password Checker: To check if a password is known to be leaked.- Web Caches: To check if a URL or resource is definitely not in the cache.- Distributed Systems: To avoid sending data that another system definitely doesn’t need.
mfrw·vorig jaar·discuss>> VSCode mounts a full-scale invasionI love to read articles that have a bit of humour(no offence to VScode people); somehow, it seems one can connect more with the writer.Thank you, kind stranger on the internet. You made me smile when I most needed it :)
mfrw·2 jaar geleden·discussI have `delta` as my default and for difft, I use the following:`env GIT_EXTERNAL_DIFF=difft git log -p --ext-diff`Hope it helps :)