Viewing profile — norkakn
norkakn
HN member- Joined
- Tue, Mar 02, 2010, 11:29 PM UTC
- HN karma
- 40
- Public activity
- 23 items
- HN profile
- View on Hacker News ↗
About norkakn
No profile information was provided.
Recent public activity
- comment
-
comment
Comment #14268192
Why not just write it yourself? The api has been stable for a while, so it should only take you a couple hours to get something basic for your internal needs.
-
comment
Comment #14221776
I imagine that you are working in a domain where it is true that R-Trees are slow and only have the one redeeming quality. Anything that I've done involving things on a screen have…
-
comment
Comment #12467087
Box EKM is an insecure piece of shit
-
comment
Comment #11443001
Hi Fergal! I didn't realize that the auto-allocation ever shipped, but I'm glad it finally did. Hopefully there was work done to empirically show that they solved a lot of the issu…
-
comment
Comment #11441331
Latex is a wonderful way to make a marketing paper look like a scientific one. It doesn't accurately describe the method, but that isn't really its purpose. It's a more technical d…
-
comment
Comment #11439739
The basic model that Optimizely uses is a Z-Test approximation of a binomial distribution. To run a proper experiment with that model, you should be calculating the sample size ahe…
-
comment
Comment #9104361
Yeah, you'll see it. Operations are basically atomic on a single row, so it often makes sense to have fat rows with tons of columns. You can use the version as an extra dimension, …
-
comment
Comment #8775215
Cassandra avoids some of the really visible issues by being AP instead of CP. Hbase hits them, but dodges a bit by only having row level consistency. They are solving very differen…
-
comment
Comment #8775199
Yeah, it's worse than it sounds though. If you write to 2/3 nodes, and the third gets elected, you can roll back majority confirmed writes. I think it did even worse things when ne…
-
comment
Comment #8770767
This plus zookeeper to manage shard transitions would be awesome.
-
comment
Comment #8770744
I think we had one of the larger mongo installs around, so you just might not have been at the scale to see these issues.
-
comment
Comment #8770657
The most infuriating way is that it will roll back its oplog on an election, and sometimes throw away confirmed writes. Mongos does weird magic as well when it gets confused, and w…
-
comment
Comment #8770638
2 is wrong. Mongos shits all over itself after only a few nodes and moderate traffic. It's balancing is incredibly broken and will kill a small cluster very quickly. Source: tried …
-
comment
Comment #8769978
Clustering is really, really hard. Cassandra is one of the better ones out there, but you have to deal with its data model and weird consistency promises (which however weird you t…
-
comment
Comment #8541495
It's Apache V2, which is a lot better than GPL for many of us. https://github.com/citusdata/cstore_fdw/blob/master/LICENSE They're really nice talented people, and a great example …
-
comment
Comment #6010973
I remember asking a question about scaling on SO and getting a response about how my data was small, because it could fit on an SSD (for that one small component) I miss not having…
-
comment
Comment #4818045
Where is 0: use optimizely and don't reinvent the wheel?
-
comment
Comment #4162852
What ones do you like? The Django ORM makes me want to vomit every day or so.
-
comment
Comment #4112978
I really wish that I could attend. We ask a lot of questions like: Find all Nodes with a property in a tree Find all leaves L of those nodes Find all annotations in a DAG of those …
-
comment
Comment #4112838
Each Neo4j node stores all of the data, and it doesn't scale write horizontally well. OrientDB tries to scale writes (I'll be testing this in a few months), but still stores all of…
-
comment
Comment #3794033
http://onyxneon.com/books/modern_perl/modern_perl_a4.pdf Perl isn't batteries included, but its packages are usually actually tested on multiple versions. This allows for the commu…
-
comment
Comment #3648821
I used to work on an old perl code base that was written by well meaning new programmers. I know work on an old python code base written by well meaning new programmers. Both proje…