Viewing profile — luizfelberti
luizfelberti
HN member- Joined
- Wed, Jun 12, 2019, 6:34 PM UTC
- HN karma
- 743
- Public activity
- 140 items
- HN profile
- View on Hacker News ↗
About luizfelberti
Recent public activity
-
comment
Comment #48972127
I love MikroTik, but ffs just let me install something else on it. SONiC or any other Linux would be awesome. I love their hardware, but their software is absolutely awful. Is ther…
-
comment
Comment #47503335
It might be good to explain how this differs from zerobrew [0], which is trying to accomplish the same thing [0] https://github.com/lucasgelfond/zerobrew
-
comment
Comment #47262904
A bit dated in the sense that for Linux you'd probably use io_uring nowadays, but otherwise it's a timeless design Still, I'm conflicted on whether separating stages per thread (ac…
-
comment
Comment #47140087
You left out the most bizarre part of the email: > Action needed: Please go to my.1password.com/billing to register your approval. If you do not provide consent by your next renewa…
-
comment
Comment #46429476
I also find this to be an elegant way of doing this, and it is also how the Thompson VM style of regex engines work [0] It's a bit harder to adapt the technique to parsers because …
-
comment
Comment #45959799
> If sqlite had a generic "strictly ascending sequence of integers" type Is that not what WITHOUT ROWID does? My understanding is that it's precisely meant to physically cluster da…
-
comment
Comment #45923468
Actually for this kind of workload 15Gbps is still mediocre. What you actually want is the `n` variant of the instance types, which have higher NIC capacity. In the c6n and m6n and…
-
comment
Comment #45922418
Honestly this benchmark feels completely dominated by the instance's NIC capacity. They used a c5.4xlarge that has peak 10Gbps bandwidth, which at a constant 100% saturation would …
-
comment
Comment #45736361
It seems to talk about Rosetta 2 as a whole, which is what the containerization framework depends on to support running amd64 binaries inside Linux VMs (even though the kernel stil…
-
comment
Comment #45736267
They barely just released Containerization Framework[0] and the new container[1] tool, and they are already scheduling a kneecapping of this two years down the line. Realistically,…
-
comment
Comment #45668409
Do not reference these kinds of docs whenever you need practical, actionable advice. They serve their purpose, but are for a completely different kind of audience. For anyone perus…
-
comment
Comment #45568968
Documenso[0] is a pretty cool alternative that is increasingly compliant with more and more e-signature standards https://documenso.com/
-
comment
Comment #45560762
There used to be a similarly names one called CozoDB[0] which was pretty awesome but it looks like its development significantly slowed down. [0] https://github.com/cozodb/cozo
-
comment
Comment #45519821
Ah yes, pretending we can access infinite amounts of memory instantaneously or in a finite/bounded amount of time is the achilles heel of the Von Neumann abstract computer model, a…
-
comment
Comment #45198538
I was trying to do this in 2023! The hardest part about building a search engine is not the actual searching though, it is (like others here have pointed out), building your index …
-
comment
Comment #45198036
I also switched away from Tarsnap because I needed to restore my personal PDF collection of like 20GB once and my throughput was like 100Kb/s, maybe less. It has been a problem for…
-
comment
Comment #45054945
This looks amazing, I've been shopping for an implementation of this I could play around with for a while now They mention promising results on Apple Silicon GPUs and even cite the…
-
comment
Comment #44987767
For those looking to break free and are considering self-hosting, I can strongly recommend Stalwart. I'm surprised how almost no one seems to have heard of it, but it's amazing (an…
-
comment
Comment #44320317
Feels like the complete opposite s-expressions which are the easiest possible thing to parse, this sounds like a complete nightmare to write a parser for. It might even be easier t…
-
comment
Comment #42965503
Upvoted for using Redbean. I've been using it recently and it has been absolutely amazing, the built-in functionality that it has exposed through the Lua interface makes it an exte…
-
comment
Comment #42943294
Computation model behind this vaguely reminds me of the Epic Games programming model thing for Verse Calculus: https://simon.peytonjones.org/verse-calculus/
-
comment
Comment #42251673
Sure, but is EOL really a defense given the absolutely pathetic security posture that created this exploit in the first place? Is there a statute of limitations on mind boggling le…
-
comment
Comment #41641480
> Then a couple of weeks ago, added [direct] links to the Wayback Machine Hopefully they are also making substantial donations to the Internet Archive, since they will be directing…
-
comment
Comment #41058021
Since you're using Rust, the Cranelift JIT compiler implements something like this[0] to construct an e-graph for its expression rewriting subsystem called ISLE, however if I'm not…
-
comment
Comment #36792035
You are correct that this is a detectable and entirely preventable failure, however, this is the way in which this can manifest: - UTF-8 is a prefix-free self-synchronizing code; -…