Live data from Hacker News

Viewing profile — windor

windor

HN member
Joined
Thu, May 15, 2014, 12:27 AM UTC
HN karma
129
Public activity
17 items

About windor

[ my public key: https://keybase.io/fengcj1984; my proof: https://keybase.io/fengcj1984/sigs/cBnGqlLuj_7zE-63kThz6qC_iyLrh3Krc9niE2aMZ4w ]

Recent public activity

  1. comment
    Comment #22582559

    Because it solves real problems (it's very easy to use, and I use a lot). It works similar with HD wallet in bitcoin or ethereum. In HD wallet, you can derive accounts for many cry…

  2. comment
    Comment #22404144

    Yes. the title was changed which I wasn't aware of. Origin title: `The missing part of actor-model programming in rust`.

  3. comment
    Comment #22404127

    It's a library in rust for actor-model programming like erlang does.

  4. comment
    Comment #22403987

    BTW: They are working on Hot-Code Swap.

  5. comment
    Comment #22403913

    Yes, the msg!() macro is a little painful to write. I think it can be refactored into the pattern like `impl Handler `. But beyond that, it supports async/await naturally. :)

  6. comment
    Comment #22403872

    Very appreciate the work on bastion, which really gets the spirit of erlang actor programming with the supervisor-ing strategy! The code is clean and well documented, and I cannot …

  7. story
  8. comment
    Comment #21842795

    Read through the code just now.Thanks for the small but powerful project,I have tried to make something similar, but failed. The lib is very close to what I want to do actor-based …

  9. comment
    Comment #12137830

    1. Ruby will support parallelization, it’s just a matter of time. 2.Passenger and Unicorn are multi-process, which due to developers can make use of nearly nothing in Ruby, and tha…

  10. comment
    Comment #12137561

    yeah, Elixir is a good option, indeed.

  11. comment
    Comment #12136812

    Yes, from the beginning, and there exists celluloid which try to implement actor model. The fact that concurrent-ruby cannot be truly parallelized just disappoints me. The same ide…

  12. comment
    Comment #12136264

    Rails is an excellent framework, but it isn't a feature of Ruby. When some other frameworks are rising, Ruby can lose quickly.

  13. comment
    Comment #12135944

    Ruby is the first language I really like. The core concept of the language is small, just not easy to get, but the change on how to programming is significant. Sadly, Ruby is not t…

  14. comment
    Comment #12094791

    It's definitely worth trying! I have used akka-stream once, and always expect something like that in erlang world. Finally, here it is. Thanks for the Elixir team.

  15. comment
    Comment #10965522

    Thanks for the link. Very helpful.

  16. comment
    Comment #10936355

    I think this should be post here: https://dockyard.com/blog/2015/11/18/phoenix-is-not-rails It's very interesting to see such different philosophies.

  17. comment
    Comment #8685268

    I have played with parser combinators in Scala for a while. The post makes it interesting to read. I like it!