Viewing profile — thusoy
thusoy
HN member- Joined
- Wed, May 21, 2014, 3:14 PM UTC
- HN karma
- 75
- Public activity
- 15 items
- HN profile
- View on Hacker News ↗
About thusoy
Recent public activity
- story
- story
- story
- story
-
comment
Comment #14088781
I recommend Weekend Reading by Assaf Arkin to everyone, covers several topics from design and front-end to security, tooling and peopleware. More than just a collection of links, i…
-
comment
Comment #11904855
Yes, self-signed certificates without a CA is MitM-prone, but that's the only thing Heroku enables. You're only given a username and password and have to do with whatever configura…
-
comment
Comment #11904303
Thanks, glad you liked it!
-
comment
Comment #11904177
OP here. That's entirely correct, Postgres deployed correctly is secure against a MitM, but since Heroku has not issued a trust root, they are not. Edited to add: As a user of Hero…
- story
-
comment
Comment #11755816
I think the word you're looking for is key stretching. https://en.wikipedia.org/wiki/Key_stretching
-
comment
Comment #11039756
This close enough? https://teespring.com/human-chaos-monkey
-
comment
Comment #11039753
For anyone that feel they might fall under the same category (I do!), represent: https://teespring.com/human-chaos-monkey
-
comment
Comment #9537842
Sadly, it doesn't. I was hoping for this as well, so I tested it, and it turns out that the user agent of the two browsers are identical . EME: Mozilla/5.0 (Windows NT 6.1; WOW64; …
-
comment
Comment #9064227
I would guess so, yes. You can never prove that something is random, merely that it behaves randomly "enough". There are lots of testsuites[1][2] you can run that will test that a …
-
comment
Comment #8731622
The easiest version is the most portable and easy to read in this case: os.urandom(20) Saves you from having to manage files at all, and works cross-platform.