Questions tagged [online-compilation]

Convert source code to binary online.

Instead compiling code in local, through web browser or API, compile code and return binary executable. Also execute the code in remote machine and return the output of program.

50 questions
24
votes
2 answers

How to Create a Web App to Compile and Run Java/C/PHP Code Online?

Though this is a question with broader scope, I want to write a Online Test Code for my company where people can be given questions to write code in java/php/c etc and the code run and compiles online. I have seen this happening in site like…
sushil bharwani
  • 29,685
  • 30
  • 94
  • 128
16
votes
4 answers

Codepad/ideone style collaborative web IDE?

I'm looking for a simple collaborative web-based text-editor which can compile—and show output from—a few popular languages such as: C++, PHP and Python. Research Editors Ace EditArea (people prefer Ace, e.g.: web2py and ideone moved to Ace) IDE…
A T
  • 13,008
  • 21
  • 97
  • 158
15
votes
12 answers

Any Online compiler you know for C or other languages?

Any online C compiler that you know which can do the following: Compile and execute the C programs online File handling System functions like exec(), system(), fork() Or any compiler which does not need installation procedure (I mean that you can…
Manoj Doubts
  • 13,579
  • 15
  • 42
  • 45
13
votes
7 answers

Is there any option to compile and run a ts code faster using tsc or ts-node or anything else?

Currently we have client server application (for competitive coding purposes) where client hit compile and run and sends ts code to server where ts code is stored in a file and run locally with testcases on server and output is returned to client…
Manoj Singh
  • 131
  • 1
  • 1
  • 4
5
votes
3 answers

Is there any way to compile code ( C/ C++ ) with in browser?

This question may sound crazy.Is there anything browser based compiler out there ?
3
votes
4 answers

How to build an Online Objective-C Compiler

I'm simply looking for an online objective-c compiler. At the moment I have only found ideone.com but it shows errors for any Foundation (e.g NSObject) or UIKit (e.g UIView) classes. Is there an online compiler for objective-c that can handle…
Joshua
  • 15,200
  • 21
  • 100
  • 172
3
votes
4 answers

Is there any online compiler API such that if I input the source code, it would return the results (or any errors) upon compilation?

I am building an online code storage platform for competitive programmers and need the code be executable on site. So I would require some online compilers which if provided with source code may return the results. N.B: The compiler IDE itself need…
Saf
  • 125
  • 2
  • 10
3
votes
1 answer

How to safely run user code on a website?

There are dozen of website where users can directly type code in different languages, for example https://ideone.com/. Is it enough to chroot the process for compiling and executing the software or specifics security measure should be taken? Is…
IgnazioC
  • 4,554
  • 4
  • 33
  • 46
3
votes
2 answers

Sending input data to child process in node.js

I am writing code to create an online c++ compiler in node.js environment.Using spawn function i created a child process which will compile the code and execute it and send the output back to the user. But i need to send input to the running c++…
Sri Harsha
  • 641
  • 2
  • 8
  • 18
2
votes
0 answers

Optimisation to find combinations at less time in python list

I have the following piece of code which finds whether any 4 combination in the list sums up to a value(say 7) is possible.If possible it prints 1 else 0. it takes the:- number of list element(n) , list(test) and the number which needs to be…
user10418143
  • 220
  • 3
  • 11
2
votes
0 answers

execute scanf in an online compiler in php

I have to create an online C compiler in php for my final year project. At first, I have to write a code in a php page and compile it. I've compiled with success a simple code including only printf commands (I've done it in two ways: with the…
georgia
  • 45
  • 1
  • 7
1
vote
1 answer

Vscode shows nothing, online compiler shows segmentation fault, trying to sort an array

I was trying to sort an array on my own without copying any pre-tought method in my terminal the code gets compiled but I guess it keeps on running in the online compiler it shows segmentation fault. #include int main(){ int…
1
vote
1 answer

Kubernetes client Javascript output

I am working on making a online compiler. I have a pod that receives post request with code. This pod will proceed to create a job and pass over the code so it can be compiled and process the output. As of now, I have managed to reach up to creating…
1
vote
2 answers

Is there an R online compiler that enables to run code line by line?

I'm looking for an R online compiler, such as myCompiler, that enables to run code line by line. Like what one gets in RStudio when pressing the Run button or Ctrl+Enter
Julien
  • 1,613
  • 1
  • 10
  • 26
1
vote
0 answers

Kivy compiler website that will send compiled apk

Is there any website where I will upload my kivy project file and the site will give me the compiled app in format .apk
1
2 3 4