Online API to integrate C++ compiler to a website [closed] - web-services

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
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 i can embedd on my site for free

ideone (ideone.com) provides its API and service (ideone.com/api) for free. You should try it.

Related

Handling Apple events from console app on Mac [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Please give me some hints about how to work and, more practically, handle Apple events from raw console application written in C++ on Mac. I know that there is huge infrastructure for this purpose in Cocoa but as I think this is only a wrapper.
May be it's impossible?
There is C API for it:
http://developer.apple.com/legacy/mac/library/#documentation/Carbon/Reference/Open_Scripti_Architecture/Reference/reference.html
and
http://developer.apple.com/legacy/mac/library/#documentation/Carbon/Reference/Apple_Event_Manager/Reference/reference.html
Overview:
http://developer.apple.com/legacy/mac/library/#documentation/AppleScript/Conceptual/AppleEvents/intro_aepg/intro_aepg.html
But as you can see that Apple considers this as legacy nowadays, so for a new project, using the Objective-C APIs might be the better choice.

socket.io with c++? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Please tell me can I wrote some c++ console application and connect on some node.js server(on nodester example) which using socket.io? Some (C/C++) -> (node.js/socket.io) library? Thanks
boost::asio based c++ socket.io client
Yes, it is possible. FWIW, an open-source project does this in Objective-C, which should at least give you some ideas on how to do it in C/C++.

Why can't we use C++ for web development? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Why can't we use C++ for web development?. I have been asking this question for a long time but i can't figure out the reason.
You can! There just isn't as many web based frameworks. Facebook is one example of using C++ on a website.

about win32 standalone:tracking a browser? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I am trying to make a standalone using c++.In my standalone I want it to track user's clicks,I mean which link does he/she clicks.I am trying to count how much time he/she uses a perticular site,like pageaddict(a firefox extension).
So any support..?
If you want to make a Firefox extension, you should be using JavaScript. In C++, you might make a sniffer, which could tell you from what site the packets you receive are from. But that would require quite a lot of knowledge and of time.

list most popular web services stacks [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
I would like to collect here all the available web services frameworks. We have a WSDL file and we search for the most popular web service stack and the best "WSDL2OBJECT" emitter.
To name a few: wsdl.exe, gsoap, apache axis ...
My preferred by far is apache CXF, it's clean, pretty extensive and very easy to use and customize (if you ever need to).