Viewing profile — mdzn
mdzn
HN member- Joined
- Sun, Jan 31, 2016, 2:05 PM UTC
- HN karma
- 14
- Public activity
- 13 items
- HN profile
- View on Hacker News ↗
About mdzn
No profile information was provided.
Recent public activity
-
comment
Comment #42808682
A while ago I have implemented something similar to that in Python, although specifying versions requires using function calls instead of imports. Turns out in Python you can execu…
-
comment
Comment #32569571
The article says that Consul or etcd are designed to always be up, but it’s actually quite the opposite. They both leverage Raft for maintaining consensus and thus optimize for con…
-
comment
Comment #30135177
Wouldn't this cause lots of out-of-order packets?
-
comment
Comment #28442201
You can’t parse HTML with regexps. It’s not a regular language.
-
comment
Comment #26556912
Great work! I did something similar, albeit with less features, for one of my uni classes. If anyone is curious about Rust code: https://github.com/miedzinski/regex .
-
comment
Comment #14139247
Is it possible to turn it off? I don't want these, but looks like I have effectively given you password to my email account. Can you remove it from your database?
-
comment
Comment #14139110
Okay, something is weird. I have Outlook.com email with custom domain (previously Windows Live Domains). These kind of accounts had problems with Nylas since forever (see my old Gi…
-
comment
Comment #14138832
Stuck on "Still trying to reach Nylas..." ( https://a.pomf.cat/sxiair.png ). Good. edit: Looks like it tries to fetch some PNG file, but all it gets is HTTP 502, I guess. ( https:/…
-
comment
Comment #13833947
I'd recommend safety for Python. https://github.com/pyupio/safety
- story
- story
-
comment
Comment #13634953
Of course it's just a recommendation. Why would you think otherwise? To Rust, module name is just a bunch of characters, it doesn't recognize words anyhow.
-
comment
Comment #13585020
References (lifetimes and borrow checking) and mutability are there for safety, not speed.