jitans
|
9 months ago
|
on: Simplest C++ Callback, from SumatraPDF
jitans
|
4 years ago
|
on: How Discord Stores Billions of Messages (2017)
I would have used CockroachDB, it has all the requirements listed and you don't need to know in advance the queries you will perform when deciding the database schema.
jitans
|
5 years ago
|
on: Best practices for writing SQL queries
not even all the "traditional" databases, each Engine has his own peculiarities.
jitans
|
5 years ago
|
on: Facebook Downgrades WikiLeaks Article Page
And why don't you make a FB account?
jitans
|
5 years ago
|
on: Delta Chat – decentralized chat via email
So basically what we needed was a different email client?
jitans
|
5 years ago
|
on: Delta Chat – decentralized chat via email
Do you realize WhatsApp privacy hasn't changed?
jitans
|
5 years ago
|
on: Delta Chat – decentralized chat via email
And leaking a mail (with real names) is much better?
jitans
|
5 years ago
|
on: Delta Chat – decentralized chat via email
Just because this is the new trend (for no reason) ?
jitans
|
6 years ago
|
on: PostgREST
This should have been: PostgGRPC
jitans
|
6 years ago
|
on: New In Postgres 12: Generated Columns
Why your application doesn't use a view? Or even better a table function?
jitans
|
6 years ago
|
on: New In Postgres 12: Generated Columns
This is one of those features to not use ever, unless you have another problem that is an application touching directly a table instead of a view.
jitans
|
7 years ago
|
on: Ask HN: What is your best advice for a junior software developer?
If you use a compiler do not ignor ever ever the warning messages. Aim, from day 1 to have a compilation warning free. Write code to be read by humans, and do not ignore writing testing code, more or less you should have twice code in testing than real code under test.
jitans
|
7 years ago
|
on: Postgres 11 – A First Look
There is who cares about his data and who uses MySQL
jitans
|
8 years ago
|
on: CockroachDB 2.0 released
They haven't any custom driver, CRDB is binary compatible with postgresql drivers, are marked as beta because "maybe" there is feature they haven't implemented. So far using pqxx (C++ driver) I haven't seen any issue.
jitans
|
8 years ago
|
on: CockroachDB 2.0 released
In postgres you can choose if the replication is synchronous or asynchronous. For cascade replication (a slave uses as a master for another slave) the replica is always async.
jitans
|
8 years ago
|
on: Rust 1.25 released
Instead to improve the "use" they had to remove it and enable only namespace renaming
jitans
|
8 years ago
|
on: Probabilistic Filters By Example
well the demo then is broken indeed it shows still an "a" inside the multiset. Having say that I would never use a cuckoo in a multiset, indeed it becomes a bounded multiset. Also about the K-hashing for a bloom filter is not exact. You just need need a K-bit hashing function. If the goal is to support deletion then I would go for a Counting
Bloom filter
jitans
|
8 years ago
|
on: Probabilistic Filters By Example
Add five "a", now remove four "a" Cuckoo claims there are no "a" in the multiset...
jitans
|
8 years ago
|
on: Show HN: Makesite – A static site generator in 125 lines of Python
That's not the point. Trying to squeeze the code in less lines as much possible is not the way to go if you loose clarity.
Python coders keep repeting the mantra "less line of code" but in the mean time they keep typing: self. self. self.
jitans
|
8 years ago
|
on: Show HN: Makesite – A static site generator in 125 lines of Python
As you can see we are the only one thinking this is absurd :D