Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
grep_it
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
Distributed Systems Classics (2017)
(nvartolomei.com)
349 points
by
grep_it
5d ago
|
75 comments
2.
▲
by
grep_it
19d ago
Did you read the article? “[…]because we can generate 1.2 METRIC BAJILLION valid URLs just for a single fork of linux.git.”
3.
▲
by
grep_it
21d ago
Sibling comment touched on it, and I guess rust does offer just that, but void casting and doing explicit offset checks for a field is one reason. You can kind of think of it like a tuple in that way and a db engine might use a similar tech
4.
▲
by
grep_it
21d ago
I think the size of linked binaries and simplicity were always the main features?
5.
▲
by
grep_it
22d ago
This reminds me how you can save a bunch of bytes just by making sure your structs are aligned. In go for example: type Wasteful struct { a int16 b int c byte } type Aligned struct { b int a int16 c byte }
6.
▲
by
grep_it
2mo ago
I always come back to this game whenever I'm at a hotel for a conference waiting for the elevator.
7.
▲
Paxos Made Simple (2001) [pdf]
(lamport.azurewebsites.net)
65 points
by
grep_it
2mo ago
|
7 comments
8.
▲
by
grep_it
3mo ago
Awesome resource, thanks for sharing!
9.
▲
Open Source Low Tech
(opensourcelowtech.org)
675 points
by
grep_it
3mo ago
|
140 comments
10.
▲
by
grep_it
5mo ago
Except that eventually you'll find you lose a write when things go down because the page cache is write behind. So you start issuing fsync calls. Then one day you'll find yourself with a WAL and buffer pool wondering why you didn&
11.
▲
The Architecture of Open Source Applications (Volume 1) Berkeley DB
(aosabook.org)
89 points
by
grep_it
8mo ago
|
12 comments
12.
▲
by
grep_it
8mo ago
Last I heard, DuckDuckGo backend was Perl.
13.
▲
Load Balancing (2023)
(samwho.dev)
5 points
by
grep_it
8mo ago
|
0 comments
14.
▲
Clock synchronization is a nightmare
(arpitbhayani.me)
232 points
by
grep_it
9mo ago
|
159 comments
15.
▲
by
grep_it
10mo ago
Relevant: https://db.cs.cmu.edu/papers/2022/cidr2022-p13-crotty.pdf
16.
▲
SO-YOU-DONT-HAVE-TO INCORPORATED'); DROP TABLE companies; --
(sydht.ai)
3 points
by
grep_it
10mo ago
|
0 comments
17.
▲
by
grep_it
10mo ago
I love the authors style!
18.
▲
PGM Format Specification
(netpbm.sourceforge.net)
2 points
by
grep_it
10mo ago
|
0 comments
19.
▲
by
grep_it
11mo ago
Computer Vision: Algorithms and Applications 2nd Edition is free to download for personal use at https://szeliski.org/Book/
20.
▲
by
grep_it
11mo ago
Really enjoyed this article, thanks for sharing! I had recently learned about using image pyramids[1] in conjunction with template matching algorithms like SAD to do simple and efficient object recognition, it was quite fun. 1: https:/
21.
▲
Modulo Bias
(irreal.org)
1 points
by
grep_it
11mo ago
|
0 comments
22.
▲
by
grep_it
11mo ago
I'm actually not all that opposed to some of these features, but the way it's implemented is so clunky. The UI make it feel like a half baked browser extension.
23.
▲
Smooth weighted round-robin balancing
(github.com)
29 points
by
grep_it
1y ago
|
3 comments
24.
▲
by
grep_it
1y ago
Is this rage-bait? A language alone doesn't dictate reliability. There are tons of large scale systems out there running on Python. As for the language being, "flawed irreversibly", I'd be curious to hear you expand on t
25.
▲
by
grep_it
1y ago
I still use pycharm, but these days I satisfy my debugging with pudb ( https://pypi.org/project/pudb/ ) which has been amazing and a good middle ground for the integrated debugger feel.
26.
▲
AI is different
(antirez.com)
499 points
by
grep_it
1y ago
|
887 comments
27.
▲
by
grep_it
1y ago
These are all great projects! When I find myself getting burnt out in my job I find that writing a little toy project usually helps be get back some spark. Some projects that weren't listed that I've enjoyed: - GUI based bot for a
28.
▲
Implementing a Toy Optimizer (2022)
(pypy.org)
3 points
by
grep_it
1y ago
|
0 comments
29.
▲
Learning about Serializability Theory
(siemens.blog)
3 points
by
grep_it
1y ago
|
0 comments
30.
▲
by
grep_it
1y ago
> Why Not Redis? I have a single VPS, so I can get by with a simple SQLite database. If I had many instances of my API on separate servers Just to push against this a bit. Redis can be very low memory cost and is very easy to run (I give
More ›