Live data from Hacker News

Show HN: SharePad.io – A collaborative code editor and compiler

sharepad.io

11–20 of 31 posts

Re: Show HN: SharePad.io – A collaborative code editor and compiler

#19

Does something like this cost a lot? Do you know how much it costs for, say , 10000 executions in each language?

The cost really depends on the scale. I started out to build and use it as an interview tool and language playground for myself, and I only have a single pretty standard cloud VM.

Re: Show HN: SharePad.io – A collaborative code editor and compiler

#20
How are you handling timeouts and forks? The following to snippets have different results:

#include int main() { while(1){ fork(); } return 1; }

#include int main() { while(1){ } return 1; }

The second snippet times out properly, but the first does not.

Post reply on HN