Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
dikei
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
dikei
9d ago
Not even close, Quantum Computer are still far from being able to do any cryptography cracking.
2.
▲
by
dikei
1mo ago
Yeah, sadly data and command intermingling are also one of the main things that make these "AI" appear so human. Humans are also susceptible to prompt injection all the time, we just call it differently: social engineering or scam
3.
▲
by
dikei
4mo ago
Plus, if you look at OpenWebUI horror of a commit history, they don't often take external contributions.
4.
▲
by
dikei
11mo ago
Some global services have control plane located only in `us-east-1`, without which they become read-only at best, or even fail outright. https://docs.aws.amazon.com/whitepapers/latest/aws-fault-iso...
5.
▲
by
dikei
1y ago
For paper documents, you'd make at least a few copies for storage at the source, and then every receiver will get his/her own notarized copies. Electronically, everyone just receives a link to read the document.
6.
▲
by
dikei
1y ago
Start training them from a very young age: competitive coders typical start in secondary/high school or even earlier. Russia has specialized schools to support this kind of education, so are China and many other countries. Thus, they r
7.
▲
by
dikei
1y ago
Big claims with not a single benchmark to back them up
8.
▲
by
dikei
1y ago
Well, only a lunatic would use ZIP with anything but DEFLATE/DEFLATE64
9.
▲
by
dikei
1y ago
I use ZSTD a ton in my programming work where efficiency matters. But for sharing files with other people, ZIP is still king. Even 7z or RAR is niche. Everyone can open a ZIP file, and they don't really care if the file is a few MBs bi
10.
▲
by
dikei
1y ago
I hate ticket-driven development, but clearing ticket is one way to stay sane when the final objective looks crazily out-of-touch.
11.
▲
by
dikei
1y ago
Yeah, and all the popular web frameworks include authn and authz as a core component.
12.
▲
by
dikei
1y ago
OpenWRT stopped doing this 10 years ago, as it was too much hassle to pick a drink that satisfy everyone.
13.
▲
by
dikei
1y ago
I still remember the day when I used jemalloc debug features to triage and resolve some nasty memory bloat issues in our code that use RockDB. Good times.
14.
▲
by
dikei
1y ago
The difference is the quality of the OSS implementation: most OSS ASN.1 tool choke on the enormous 3GPP specs and others used in the telco industry, thus cannot generate 100% valid code. For some use-cases, you can get by with manually adju
15.
▲
by
dikei
1y ago
DER is still easy, UPER (unaligned packed encoding rules) is so much harder, yet it's prevalent in Telecom industry. Last I checked, there was no freely available tool than can handle UPER l00%
16.
▲
by
dikei
2y ago
It's not about the VCS, it's about API compatibility being broken. If your code is out-of-tree, every time someone changes an API that break your build, it's your responsibility to update your for and fix it. If your code is
17.
▲
by
dikei
2y ago
The use-case is because it's so cheap, why bother with anything less. Currently, I can get 1Gbps Internet for $15, while the cheapest package is 200Mbps for $5. I expect they'll offer 10Gbps in my area in the next few years for th
18.
▲
by
dikei
2y ago
One reason for Spotify's move away from p2p was it was absolutely a no-go on mobile platform, which was rapidly becoming dominant at the time.
19.
▲
by
dikei
2y ago
I prefer Log4J2 built-in JSON Template Layout to Logback's various JSON output solution. The API of Log4J2 and SLF4J v2 are similar enough that it does not matter for basic usage, I don't see the benefit of SLF4J in a project that
20.
▲
by
dikei
2y ago
Not a good example, as the de-facto logging interface for Java was SLF4J. Though I myself prefer Log4J2, as I'm already using Log4J2 as the concrete logging implementation.
21.
▲
by
dikei
2y ago
We use the same setup, though we use PGBouncer so after switching primary we just force reconnect all clients from PGBouncer instead. The clients will have to retry on-going transactions, but that's a basic fault tolerant requirement a
22.
▲
by
dikei
2y ago
I'd be more similar to Debezium-server that runs everything in the same process, than regular KafkaConnect-based Debezium. However, this only does postgres-postgres, so it's a lot more limited compared to Debezium.
23.
▲
by
dikei
2y ago
Ok, so PGLite is used in the Firebase Data Connect's emulator: a test utility, not even the client library. It's a bit disingenuous to lump it in the same sentence and try to mislead user that Google's adopting Electric.
24.
▲
by
dikei
2y ago
Yeah, I'm gonna need a citation on Google's usage of ElectricSQL, considering that the link points to Firebase Data Connect.
25.
▲
by
dikei
2y ago
The problem with handcrafted build system is only the author can effectively maintain it. When he moves on, someone has to spend the time ripping it out and replace with something more standard. I've been on both end of this situation
26.
▲
by
dikei
2y ago
Yes, basically any build system that supports distributed caching use digest instead of timestamp when checking modification: Bazel, Pants, Buck, etc. They're all hugely complex though. For local build only, I think SCons and Waf both
27.
▲
by
dikei
2y ago
Yeah, I think the HFT guys use CPU pinning a lot: 1 process - 1 CPU, so you'd need multiple processes to take advantage of multicores server.
28.
▲
by
dikei
2y ago
Well, "pause too short to matter" just doesn't have the same ring to it.
29.
▲
by
dikei
2y ago
Maybe they run a small heap with a zero-pause JVM like Zing, as pause-less GC generally has lower throughput than normal GC.
30.
▲
by
dikei
2y ago
So basically, you want to build a write-ahead-log before writing data to Kafka, and I think you're underestimating the effort to implement a WAL. If you don't have a person that can manage Kafka, you almost definitely don't h
More ›