Would love to have a productive discussion on this.
Please leave your thought in the comment sections.
Would love to have a productive discussion on this.
Please leave your thought in the comment sections.
For further actions, you may consider blocking this person and/or reporting abuse
The only reason people scroll to the bottom...
is because they want to read more.
He Codes IT -
Medea -
Video SDK -
Yifan Ai -
Once suspended, devash will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, devash will be able to comment and publish posts again.
Once unpublished, all posts by devash will become hidden and only accessible to themselves.
If devash is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to aayush.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community 👩💻👨💻 safe. Here is what you can do to flag devash:
Unflagging devash will restore default visibility to their posts.
Top comments (1)
I would say that the
actor
andmessage
abstractions are unnecessary in most(?) occasions.If you have a complicated system with lots of state change it might be a good way to set it up as a whole. But if you just need a few state changes and async actions here and there, building an actor-abstraction might be overkill.
I like the actor model too (I assume you do). It's simple to reason about and makes sense. But so does object oriented programming, and that can be a horrible choice for some type of systems. To understand the actor model better, I would be interested in hearing in what scenarios the actor model fails.