Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
budabudimir
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
BoltChess – play against GMs and other titled players
(boltchess.com)
2 points
by
budabudimir
2y ago
|
3 comments
2.
▲
by
budabudimir
2y ago
A site where you can play against titled chess players. Games are played on Lichess.
3.
▲
by
budabudimir
3y ago
Substantiate please. Give me some links or statistics at least. Your claim is essentially that net-worth inequality is much worse than the income inequality. To me that is non-obvious and very likely wrong given that high net worth individu
4.
▲
by
budabudimir
3y ago
Substantiate please. Give me some links or statistics at least. Your claim is essentially that net-worth inequality is much worse than the income inequality. To me that is non-obvious and very likely wrong given that high net worth individu
5.
▲
by
budabudimir
5y ago
Does anybody actually care about the moderation team anyway? CoC is also just set of guidelines that people abide by anyway in most situations, but doesn't prevent anybody from being an asshole. When somebody is an asshole, random set
6.
▲
by
budabudimir
5y ago
Anyone can optimize a database for trivial queries. Would be nice to at least see TPCH results or any other more complex benchmark.
7.
▲
by
budabudimir
5y ago
It does say something, one someone can become so overweight and being considered poor at the same time.
8.
▲
Show HN: Elo based rating for MMA fighters
(mmastats.org)
2 points
by
budabudimir
6y ago
|
1 comments
9.
▲
by
budabudimir
6y ago
Hello everyone, I've built a small project in my spare time, an elo based rating system for MMA fighters. I looked for a bit and haven't find anything of a sort. Data is sourced from Sherdog. Any feedback, feature requests or bug
10.
▲
by
budabudimir
6y ago
Indeed, I had the misfortune of using SCons on one project back in 2017-2019. It was ridiculous how slow it was. Even for the case when "Nothing to be done" was the result it took 20-40 seconds to output the message. Thankfully we
11.
▲
by
budabudimir
6y ago
I would have said that for any statically typed language. It simply leads to more robust software because compiler rejects large set of incorrect programs that would otherwise end up in production. Your test coverage has to be much larger j
12.
▲
by
budabudimir
6y ago
Definitely a much better choice
13.
▲
by
budabudimir
6y ago
A database implemented in JS; very encouraging. I guess performance and robustness were not a priority.
14.
▲
by
budabudimir
7y ago
It is skipping the buffer cache that is true, but, if I understand things correctly, it allows kernel to use user provided buffers directly, thus skipping the copying of the data from kernel to user land. That is why buffers used in O_DIREC
15.
▲
by
budabudimir
7y ago
I get the point, but mmap is a syscall as well. Perhaps a better title would be, "Why using mmap is faster than using read and write syscalls". Would using O_DIRECT flag result in similar timings for mmap and read/write?
16.
▲
by
budabudimir
7y ago
Exactly, never thought I'd say this, but true.
17.
▲
by
budabudimir
7y ago
This pool seems to be completely out of touch with reality. Venezuela in the top 10 happiest countries?
18.
▲
by
budabudimir
7y ago
What is the difference between each team owning a microservice and owning a part of the monolith? There is common release process, but with proper infra in place, that shouldn't be a problem.
19.
▲
by
budabudimir
7y ago
It's not slow? It takes it 30s, on a decent size codebase, just to tell you that there is "Nothing to do." There is order of magnitude difference between it and make. It's a complete travesty!
20.
▲
by
budabudimir
8y ago
You raise an interesting point, how are they going to prevent Amazon just taking their business with making SkyllaDB on demand? Confluent ( Kafka folks ) did it by adjusting the licence.
21.
▲
by
budabudimir
8y ago
That's true for array, that expected insert time is O(1), and it still holds for N inserts, because you double the size every time, which yields O(2N) time complexity. This is not the case for this data structure, time complexity of in
22.
▲
by
budabudimir
8y ago
Indeed, could you expand on that a bit? Even if what you meant is expected time complexity for the single insert operation is O(1), that surely cannot be the case. What would be expected time complexity of N inserts then?
23.
▲
by
budabudimir
8y ago
I don't think a ordered data structure with O(1) insert time is even possible, as that would mean that you can do sort in O(n).