4 ms·
It certainly has less feature than repl.it, for example, it does not have interactive repl. It runs in the cloud, in docker containers.
by yufw 6y ago
It certainly has less feature than repl.it, for example, it does not have interactive repl. It runs in the cloud, in docker containers.
- FrozenVoid 6y agorepl.it requires registration.
- aol1306 6y agoDo you have any abuse prevention mechanisms implemented? For instance, preventing users from running infinite loops, consuming too much resources and so on? I built a similar service as a personal project and I am interested how to properly handle situations like that.
- yufw 6y agoYes, currently the execution time is limited to 10s and 10s compilation time for compiled languages. Memory limit is 256M. It runs user code in docker container, I leverage docker for restricting resources, more info at https://docs.docker.com/config/containers/resource_constraints/ https://docs.docker.com/config/containers/resource_constrain...