Pretty cool side project. Are you using Judge0 for code execution?
Show HN: SharePad.io – A collaborative code editor and compiler
11–20 of 31 posts
Re: Show HN: SharePad.io – A collaborative code editor and compiler
#12I'd love if it also showed the output collaboratively
Re: Show HN: SharePad.io – A collaborative code editor and compiler
#13this is a very neat tools thanks
Re: Show HN: SharePad.io – A collaborative code editor and compiler
#14I'd love if it also showed the output collaboratively
Thanks, this is great feedback, will add this feature.
Re: Show HN: SharePad.io – A collaborative code editor and compiler
#15Pretty cool side project. Are you using Judge0 for code execution?
No, the code is executed in docker containers hosted on Azure VM.
Re: Show HN: SharePad.io – A collaborative code editor and compiler
#16this is a very neat tools thanks
I'm glad you like it.
Re: Show HN: SharePad.io – A collaborative code editor and compiler
#17Does something like this cost a lot? Do you know how much it costs for, say , 10000 executions in each language?
Re: Show HN: SharePad.io – A collaborative code editor and compiler
#18Some starter code for each language that prints hello world would be nice. ALso, you can look to coderpad.io for other features to add for fun.
Re: Show HN: SharePad.io – A collaborative code editor and compiler
#19Does 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
#20How 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.