Re: Actor model implementation, seeking feedback

2021-06-27 Thread Ariela Wenner
Hi, Théo! What I did is really the bare minimum to send and receive messages via req-rep sockets, feel free to grab that if it is of any use to you. I've been thinking about working on full-fledged bindings for nng, unfortunately I don't feel like I have enough experience with the library to do

Re: Compiling Chicken app for Windows from linux with Docker

2021-06-27 Thread Théo Cavignac
Hello Vasilij, thank you for your answer ! First, here is the right docker hub link: https://hub.docker.com/r/lattay/chicken-mingw I did not realize that I send the link to my private dashboard for the image. > That does sound interesting, though I'm not sure whether this won't be an issue

Re: Compiling Chicken app for Windows from linux with Docker

2021-06-27 Thread Vasilij Schneidermann
Hello Théo, > Using the cross development article on the wiki, digging through the build > system a bit and fiddling a lot I created a MinGW-w64 based environment that > let you build standalone apps from your chicken code and your favorite eggs > that can be distributed as a single binary

Compiling Chicken app for Windows from linux with Docker

2021-06-27 Thread Théo Cavignac
Hi all, After my previous mail concerning the static compilation in a Docker container I figured it would be nice to use the same idea to create a cross compilation environment for linux-to-windows dev. Using the cross development article on the wiki, digging through the build system a bit

Re: Actor model implementation, seeking feedback

2021-06-27 Thread Théo Cavignac
Hi ! That's cool, actor model is very useful ! Also nng is soo cool, that would be fantastic if you could extract a standalone binding egg from your work ! How does your implementation perform in purely local single process environment where serialization and encryption are not required ?