I am developing a product which uses Celery. Due to that the product depends on RabbitMQ which depends on Erlang. Is there a way to isolate RabbitMQ and Erlang in such a way that they will be installed and used only by my application?
I don t want to be affected by the system itself and require Erlang/RabbitMQ to be already installed. I d like to have control over my dependencies.
I already know how to isolate the Python interpreter and dependencies using py2exe and I am wondering if py2exe can be used to also bundle RabbitMQ and Erlang.
This is more of a design question than a C++ question. I m working on a Texas Hold Em poker game in C++. So far, I have a HandChecker module written that is responsible for determining a player s ...