Viewing profile — maattdd
maattdd
HN member- Joined
- Wed, Oct 21, 2015, 9:30 AM UTC
- HN karma
- 483
- Public activity
- 128 items
- HN profile
- View on Hacker News ↗
About maattdd
No profile information was provided.
Recent public activity
-
comment
Comment #49153064
Interesting. My anecdotal experience is that it is.
-
comment
Comment #49153004
DeepSeek without OpenRouter is wayyyy cheaper
-
comment
Comment #49120448
You are American aren't you ?
-
comment
Comment #48692199
It does ?
-
comment
Comment #48276979
> not because pizzerias in Berlin or Warsaw Well kinda actually. In countries with good culinary, even basic konbini food can be better than more "serious" restaurant in bad culina…
-
comment
Comment #48176883
Your conclusion is really a false dichotomy. The square of something very very small (close to zero) is negligeable : thus subortibal hop (Concorde was flying at 18km altitute for …
-
comment
Comment #47873132
I don't know much of PHP, but reaching "Rust/Go" performance is not simply because they have AOT compiler, but because the semantic of the language itself allows efficient compilat…
-
comment
Comment #47611502
Again, this is not by definition. This is by deduction.
-
comment
Comment #47574269
This is not what "by definition" means.
-
comment
Comment #47502449
What about https://github.com/tw93/mole ?
-
comment
Comment #47310026
https://www.cpu-monkey.com/en/compare_cpu-apple_a18-vs-apple...
-
comment
Comment #46729864
I'm (and millions other people) are using macOS with a classic scroll wheel mouse perfectly fine. Are you sure there is not something messing with the trackpad at the same time ? (…
-
comment
Comment #46616484
TLDR: DBtune identified and tuned key server parameters that seem to have had a large impact, including random_page_cost and max_wal_size
-
comment
Comment #46365551
Zed uses clangd, I don't think clangd support only 90% of C++ (and I don't think it avoid hard work).
-
comment
Comment #46229365
https://developer.mozilla.org/en-US/docs/Web/API/CSS_Object_...
-
comment
Comment #45453346
export template extern still exists.
-
comment
Comment #45209367
TIL that std::visit supports multiple variants. How new is that ?
-
comment
Comment #44156675
Obviously you can delete than iterate. He means delete while iterating.
-
comment
Comment #44156659
Examples of better design than abseil in a pure C++20 implementation
- comment
-
story
Show HN: A Discord/Slack bot to watch HN comments
Some years ago, I discovered a bot called Little Birdie to watch HN comments for keywords and post a link to Slack. Unfortunately, it has disappeared and I've found myself missing …
-
comment
Comment #43236085
Most of CSS is indeed statically typed (property have statically typed valid values). It's not true anymore when you introduce custom properties and IACVT though.
-
comment
Comment #43191661
It is working with both Slack and Discord already. I was not aware of f5bot, but I got inspired by another bot called Little Birdie which doesn't exist anymore and it's basically j…
-
comment
Comment #43160786
I've been updating my HN bot (watch comments for keywords and post to Slack/Discord) written in Crystal to use raw SQL instead of unmaintained ORM. Turns out the whole app needs on…
-
comment
Comment #43069140
You can avoid this with custom allocator in C++ for example, you don't have to actually do memory work at synchronous time (aka in destructor)