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
0
votes
1 answer

DOMJudge Installation in VMware

Can DOMJudge be installed on VMWare? If so can the DOMServer, Judgehost and Teams, all be created in a single VM instance? What is the complete procedure? This is just to verify before going for AWS. I referred to the documentation but couldn't…
Gouter
  • 15
  • 1
  • 4
0
votes
0 answers

Is there any way to create an executable file using c++ and an online IDE

So here's the situation. I have been using ms access vba for automation at my job. I have access to ms access and notepad++ only with the nppexec plugin. However, g++ is not installed as far as I can tell. I am looking to use ui automation event…
0
votes
1 answer

Getting Runtime Error(SIGSEGV) on Hackerearth, can't find out what's wrong in code

I know its a invalid memory reference error, but I can't seem to find the cause of the error in my code. I just tried my problem on Hackerearth, it was the 'Find Product'…
0
votes
0 answers

How to use Cython to speed up code for Codejam

I am trying my hand on Codejam challenges, my main programming language is Python and therefore I am also solving all problems I face using Python. I have however started hitting TLE with code that seems OK and corresponds to the solution described…
HolyMonk
  • 432
  • 6
  • 17
0
votes
2 answers

online java compile shows the error like this

static void isPrime (int n) { int f; for(int i=2;i<=Math.sqrt(n);i++) { if(n % i == 0) { f = 1; } } if(n == 1 || f == 1) { …
JohnD
  • 5
  • 2
0
votes
3 answers

Read excel file with an online Python compiler with xlrd

Me and my group are currently working on a school project where we need to use an online python compiler, since we are not allowed to install or download any software on their computers. The project requires me to read data from a .xlsx file. Is…
0
votes
3 answers

Can I create a header file in Ideone?

Ideone's FAQ page doesn't cover that, I think. I am able to write my code in main.c or main.cpp respectively, but would I be able to create a header file, and include it to my main()? For example, Overleaf for latex allows me to have multiple files.
gsamaras
  • 71,951
  • 46
  • 188
  • 305
0
votes
1 answer

why it has different behavior in different ide online or not

Assuming this code: #include using namespace std; int letters_counted_in_text( std::string const&text ) { int count = 0; string abc = "abcdefghijklmnñopqrstuvwxyzáéíóúABCDEFGHIJKLMNÑOPQRSTUVWXYZÁÉÍÓÚ"; for( unsigned i=0;…
Angel Angel
  • 19,670
  • 29
  • 79
  • 105
0
votes
1 answer

Online CPP Compiler that allows writing/reading

I am trying to write out data and read it back in on ideone.com. I could not figure it out: ofstream os ("data.dat", ios::binary); did not work, when I try to read back in with ifstream is("data.dat", ios::binary); the size of the data read is…
user1767754
  • 23,311
  • 18
  • 141
  • 164
0
votes
1 answer

Dynamically creating a file in java while using online compiler

I have just created a file in java using an online compiler at http://wwww.compileonline.com but I can't see the file created. Anyone who has used this compiler before please help..
Paul Odero
  • 39
  • 8
0
votes
1 answer

Online API to integrate C++ compiler to a website

I would like make a online code editor with a C++ compiler integrated into my website. Are there any API to do the same. Any service which allows to compile and execute codes from user. More specifically ,is there any service like ideone.com which…
0
votes
2 answers

looking for a tool that allows in-browser python

I am developing an application in python that involves a lot of plots and user interactions. I do not want my clients to have to download anything to use the app. So I was looking for an online tool that would allow users to run the script to use it…
-1
votes
2 answers

How to share my python program online as a web app by keeping the source code in Github?

I am a beginner-level Python learner. Recently, I have made a program (Github link). Out of curiosity, I want to implement it as a web app so that anyone can easily run the program without downloading or installing anything. I tried with Google…
-1
votes
1 answer

Unable to load main class using servlet

This code I had found on stackoverflow but the replies could not solve the problem. I'm creating a web based compiler where I take the java file name using the "name" string and the code using the "text" string. I'm compiling and executing the code…
-1
votes
1 answer

Invidual Test cases checking like InterviewStreet.com

I built my own Online judge for hosting the Intra-College Programming Contest.The Judge is similar and as good as SPOJ,Codechef,UVA,etc. At present, my online judge use the same logic as above three websites for checking whether, the answer is…
Ritesh Kumar Gupta
  • 5,055
  • 7
  • 45
  • 71