C++ In Browser Compiler

Oct 8, 2012 at 10:01pm
closed account (EAUX92yv)
I am looking for a free compiler for c++ that will run in the browser. I have tried codepad and compilr already. I don't want to have to download any files to my computer. Thanks in advance!
Oct 8, 2012 at 10:58pm
Do you intend to do anything other than the most simple plain text, non-interactive programs?
Oct 8, 2012 at 11:51pm
closed account (EAUX92yv)
I intend to try to work with some of my friends on it when we are all on separate computers. I wish to create executable, usable games.
Oct 9, 2012 at 2:08am
closed account (S6k9GNh0)
Online games run through the browser are generally either Flash/HTML5 or use some sort of intense plugin (similar to how Quake Live works).

You're going to have to download files to your computer in any manner, a file's data must downloaded in order for you to view it (lol). I'm not sure why you're so keen on setting it up in this manner.

Is it for convenience?
Is it to simplify programming?

Either way, trying to keep everything in a browser has proven to not be the best solution.
Oct 9, 2012 at 9:04pm
Wait, do you want to write an online game, or do you want to use a C++ compiler through your browser? They're different things, and writing a game using a compiler inside a browser is insane, when you could just do it using a proper compiler.

Oct 10, 2012 at 7:53pm
@cstarter2000: If I don't get you wrong, you may try http://ideone.com/
Oct 10, 2012 at 10:51pm
im trying to make one but i need for the website
Oct 13, 2012 at 7:41pm
Wouldn't You also need to find a online compiler with a graphics library?
You could just use a compiler on a computer and save the projects to a program like dropbox which can be accessed from anywhere with the application.
Oct 13, 2012 at 8:28pm
computerquip wrote:
You're going to have to download files to your computer in any manner, a file's data must downloaded in order for you to view it (lol).
There is an enormous difference between downloading a file from the internet and saving it as a file on your computer, and having information sent from the internet that is only kept in RAM on your computer. My point is, the thing you get from a server is usually not even an existing file, just a generated document, and it is your choice whether you save what you receive as a file on your hard drive or if you just keep it in memory.
Oct 18, 2012 at 10:46pm
closed account (S6k9GNh0)
It still has to be transferred from a server to your computer which is "downloading". In his case, I would think the files would be cached for offline referencing in best case scenario. But who knows...
Last edited on Oct 18, 2012 at 10:46pm
Oct 18, 2012 at 10:48pm
So, peer to peer communication is both peers uploading and downloading simultaneously?
Oct 18, 2012 at 11:15pm
closed account (S6k9GNh0)
Yeah.
Oct 19, 2012 at 1:02am
I draw the line differently, you have a very loose definition. I separate sending and receiving data from downloading and uploading, and the line is drawn on physically stored files.
Oct 19, 2012 at 2:30am
Well, your definition is wrong. To download is to receive data from a remote source. To upload is to send data to a remote target. It doesn't matter what piece of hardware the data comes from or goes to.
Topic archived. No new replies allowed.