Viewing profile — windor
windor
HN member- Joined
- Thu, May 15, 2014, 12:27 AM UTC
- HN karma
- 129
- Public activity
- 17 items
- HN profile
- View on Hacker News ↗
About windor
Recent public activity
-
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…
-
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`.
-
comment
Comment #22404127
It's a library in rust for actor-model programming like erlang does.
-
comment
Comment #22403987
BTW: They are working on Hot-Code Swap.
-
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. :)
-
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 …
- story
-
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 …
-
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…
-
comment
Comment #12137561
yeah, Elixir is a good option, indeed.
-
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…
-
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.
-
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…
-
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.
-
comment
Comment #10965522
Thanks for the link. Very helpful.
-
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.
-
comment
Comment #8685268
I have played with parser combinators in Scala for a while. The post makes it interesting to read. I like it!