Viewing profile — enaeseth
enaeseth
HN member- Joined
- Wed, Jan 19, 2011, 11:41 PM UTC
- HN karma
- 58
- Public activity
- 18 items
- HN profile
- View on Hacker News ↗
About enaeseth
Recent public activity
-
comment
Comment #6517972
Will having the private key allow the decryption of ciphertext that was previously intercepted (while the service was active) and stored? Lavabit was already shut down, so this rev…
-
comment
Comment #6370923
Reddit posts often get one off-topic top level comment that spawns a huge subtree, but it's easy to deal with there because the uninterested reader can click the [-] button to coll…
-
comment
Comment #6094853
If the package repository acted as a certificate authority, and generated distributors' certificates by verifying the distributor's appropriate virtual identity (GitHub, BitBucket,…
-
comment
Comment #6094008
Interfaces communicate with their users (at least, if you ask me), and I sometimes find it helpful to explicitly put into words what I think an interface is saying. I interpret The…
-
comment
Comment #5446820
Online login services are generally many-to-one. For example, many sites accept Facebook login, but for a user to log in that way, there is only one identity provider they can use:…
-
comment
Comment #5267791
I don't think it's fair to blame the user for that. This is a standard-looking login form that users will have seen hundreds or thousands of times before. You don't reinterpret the…
-
comment
Comment #5023941
I would think that the fun and interesting events of his year are the ones that don't need this kind of reporting to remember or get insight into. Everyone has mundane parts of the…
-
comment
Comment #4975849
You can try to report it as a bug, but the docs indicate that this is by design.
- story
-
comment
Comment #3830351
Here's the source of Flask's `route` decorator: https://github.com/mitsuhiko/flask/blob/master/flask/app.py#... When you call `route` with a URL pattern, it returns an inner functi…
-
comment
Comment #3830268
Thanks! It is indeed the first in a series of Python posts that will be on the Thumbtack engineering blog.
-
comment
Comment #3830241
Oh, Guido. Thanks, I've updated the post.
- story
-
comment
Comment #2866624
All of the array_* functions, as their names suggest, only apply to arrays. Underscore methods work on arrays or any Traversable (Iterator or IteratorAggregate) object. It's nice t…
-
comment
Comment #2512470
We came up with our model of tracking independently, but I found out later that Mixpanel has an eerily similar tracking API (see http://mixpanel.com/api/docs/tour ). I think it's a…
-
comment
Comment #2512261
We're storing complex, loosely-structured data, which perfectly fits MongoDB's schemaless document model. The fact that it will easily scale up with us is just icing on the cake.
-
comment
Comment #2511749
The most important concern we had about Mixpanel was cost: at the volume of data we collect, their tracking would be quite expensive. It also doesn't support as flexible of segment…
- story