Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
maattdd
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
maattdd
24d ago
There are a lot of Aldi in France (also Lidl, also Action (Netherlands)...) Not sure of your point.
2.
▲
by
maattdd
2mo ago
Interesting. My anecdotal experience is that it is.
3.
▲
by
maattdd
2mo ago
DeepSeek without OpenRouter is wayyyy cheaper
4.
▲
by
maattdd
2mo ago
You are American aren't you ?
5.
▲
by
maattdd
3mo ago
It does ?
6.
▲
by
maattdd
4mo ago
> 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 culinary countries.
7.
▲
by
maattdd
4mo ago
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 example).
8.
▲
by
maattdd
5mo ago
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 compilation. Many attempts has been made for an
9.
▲
by
maattdd
6mo ago
Again, this is not by definition. This is by deduction.
10.
▲
by
maattdd
6mo ago
This is not what "by definition" means.
11.
▲
by
maattdd
6mo ago
What about https://github.com/tw93/mole ?
12.
▲
by
maattdd
6mo ago
https://www.cpu-monkey.com/en/compare_cpu-apple_a18-vs-apple...
13.
▲
by
maattdd
8mo ago
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 ? (this looking erratically random?)
14.
▲
by
maattdd
8mo ago
TLDR: DBtune identified and tuned key server parameters that seem to have had a large impact, including random_page_cost and max_wal_size
15.
▲
by
maattdd
9mo ago
Zed uses clangd, I don't think clangd support only 90% of C++ (and I don't think it avoid hard work).
16.
▲
by
maattdd
9mo ago
https://developer.mozilla.org/en-US/docs/Web/API/CSS_Object_...
17.
▲
by
maattdd
1y ago
export template extern still exists.
18.
▲
by
maattdd
1y ago
TIL that std::visit supports multiple variants. How new is that ?
19.
▲
by
maattdd
1y ago
Obviously you can delete than iterate. He means delete while iterating.
20.
▲
by
maattdd
1y ago
Examples of better design than abseil in a pure C++20 implementation
21.
▲
Show HN: A Discord/Slack bot to watch HN comments
(newsbutler.xyz)
5 points
by
maattdd
1y ago
|
0 comments
22.
▲
by
maattdd
2y ago
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.
23.
▲
by
maattdd
2y ago
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 just a re-implementation of it.
24.
▲
by
maattdd
2y ago
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 only ~ 10 SQL requests, and it's way funier to
25.
▲
by
maattdd
2y ago
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)
26.
▲
by
maattdd
2y ago
I switched from iStats to stats like 1 year ago. I found it more responsive (and free). I'm using Vetero for the weather functionality.
27.
▲
by
maattdd
2y ago
It would be interesting to compile the C++ with PGO (it should catch up with JIT)
28.
▲
by
maattdd
2y ago
Any reader who comment here hopefully has enough knowledge to understand the implied C++. struct Add {} std::variant<Add, int> Expr; OR class Expr {} class Add : Expr {}
29.
▲
by
maattdd
2y ago
My sum type example is exactly this (but I didn't use C++ std::variant<> syntax to not confuse the reader). The most common example of a sum type is the "Expression problem" - please read some literature before commenti
30.
▲
by
maattdd
2y ago
Inheritance (the subtyping part of it) is considered the OOP way to write sum type. sum Expr { Int; Add(Int,Int) } VS class Expr { } class Add extends Expr { Expr left; Expr right; }
More ›