about win32 standalone:tracking a browser? [closed] - c++

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.

Related

Online API to integrate C++ compiler to a website [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 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.

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.

ROWLEX . Net RDF website access? [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.
does anone know whether ROWLEX .Net RDF library is still on or not? I have tried sevral times this week to access the website but no luck. I have lost my download and wanted it again. Maybe a URL chenged or something?
Thanks a lot!
The website is down due to technical and bureaucratic issues. It will come back. I expect a few more weeks.

Simple MP3 player [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.
I'm looking to get hold of an example of a simple mp3 player that'll work without the need of flash, Just need to say play/stop and that's it.
Any help would be great : )
Because you mentioned flash I think you search a player for web pages, am I right?
If yes, then you could take a look at jsmad. It's a decoder (aka player) written in JavaScript (but therefore needs a decent browser).
Or you could use the audio-Tag of HTML5.

globalhost and localhost server simultaneously [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.
i m running a website from a global webserver and a wants to store a data from a form to my localhost (like wamp) too........ is it possible.....
Use cookie.
You will need to explain a lot more if you want anyone to be able to help you.
What is a "global webserver"? What kind of site or web application are you running on it? What does your form do? What data do you want to save? And what do you want to do with it?
To get you started, here's some advice on how to ask questions in technical forums. It's a bit long, and somewhat harsh, but still recommended reading.
http://catb.org/esr/faqs/smart-questions.html