Live data from Hacker News

Viewing profile — mdzn

mdzn

HN member
Joined
Sun, Jan 31, 2016, 2:05 PM UTC
HN karma
14
Public activity
13 items

About mdzn

No profile information was provided.

Recent public activity

  1. 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…

  2. 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…

  3. comment
    Comment #30135177

    Wouldn't this cause lots of out-of-order packets?

  4. comment
    Comment #28442201

    You can’t parse HTML with regexps. It’s not a regular language.

  5. 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 .

  6. 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?

  7. 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…

  8. 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:/…

  9. comment
    Comment #13833947

    I'd recommend safety for Python. https://github.com/pyupio/safety

  10. story
  11. story
  12. 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.

  13. comment
    Comment #13585020

    References (lifetimes and borrow checking) and mutability are there for safety, not speed.