andrewmatte | 2 years ago | on: Goodbye integers, hello UUIDv7
andrewmatte's comments
andrewmatte | 2 years ago | on: Zap – Fast backends in Zig
andrewmatte | 2 years ago | on: Zap – Fast backends in Zig
In your benchmarks, consider adding actix which is also in Rust but considerably faster than rust axum according to: https://www.techempower.com/benchmarks/#section=data-r21&tes...
andrewmatte | 3 years ago | on: Big meat can’t quit antibiotics
andrewmatte | 3 years ago | on: Wikipedia is not short on cash
andrewmatte | 3 years ago | on: Embodiment is indispensable for AGI
andrewmatte | 4 years ago | on: Transformers, originally designed to handle language, are taking on vision
Here is an article on KDNuggets that explains transformers but doesn't answer my questions: https://www.kdnuggets.com/2021/06/essential-guide-transforme...
andrewmatte | 5 years ago | on: Building a full-text search engine in 150 lines of Python code
andrewmatte | 5 years ago | on: 20% of requests for Wikimedia Commons are for one image of a flower
andrewmatte | 5 years ago | on: Show HN: Hvr, a Social Browser
andrewmatte | 5 years ago | on: Show HN: Hvr, a Social Browser
andrewmatte | 5 years ago | on: Show HN: Hvr, a Social Browser
Mobile app built in Flutter, backend with python+postgres+redis
Your public posts get showcased on a board like this: https://prod.hvr.world/profile?referrerId=58&u=Andreud&inten...
andrewmatte | 5 years ago | on: Write Libraries, Not Frameworks
andrewmatte | 5 years ago | on: Ask HN: I've saved up $80k USD. What should I do with it?
andrewmatte | 5 years ago | on: Ask HN: I've saved up $80k USD. What should I do with it?
Great fundamental wisdom is that you can't (consistently) time the market but you should try to Buy Low, Sell High. That said, we experience a massive COVID crash. It's a great time to buy, but we don't know how long it will last or whether it will be long recession afterwards.
Index investing through ETFs is a great way to get diversity in a single financial instrument such as the S&P (large companies), NASDAQ (tech), or the Russell (small companies.) The NASDAQ has largely recovered but the Russell still has a long way to go back to February prices.
I have an old friend whose parents sold their home recently and gave him a sum. He's putting in 10% per month for the next 10 months, all in the S&P.
andrewmatte | 5 years ago | on: Show HN: Full Text Search on Podcasts
I've noticed that I feel better about giving feedback to uncompensated developers using "this is great and" instead of "this is great but."
It could make or break someone's day.
andrewmatte | 6 years ago | on: How to learn how to write great tests in Python?
A unit test should test the functionality of a single chunk of code. What kind of stuff are you writing?
I write webservers most of the time. So what I do is, at the top level of the request, immediately pull data off of the request so that I can access to the data in native python types that are easy to mock for testing. Each layer of my webserver does only one thing which could be gluing the auth+services together, but is still easy to mock.
andrewmatte | 6 years ago | on: Smart Algorithms beat Hardware Acceleration for Large-Scale Deep Learning
andrewmatte | 6 years ago | on: Million WebSockets and Go (2017)
Dave Doyle and Dylan O'Mahony did something pretty amazing related too with websockets for Bose.
andrewmatte | 6 years ago | on: Million WebSockets and Go (2017)
Susheel Aroskar, a Netflix engineer, did a talk about push notifications https://www.infoq.com/presentations/neflix-push-messaging-sc... (2018)