Online compiler/server to run big programs [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 10 years ago.
I've written a program to generate a fractal, but my computer would take a week to compute it. Is there any online or otherwise, solution where I can run my code and have it compute quickly?

No, not to be rude and don't take this wrong. Nobody is going to let people use there full computer's resources over the web to let you run code, it will always be slower online. For free.
However VPS and Cloud-Computing options are available. They will be expensive for a really fast computer.

Related

how to add a library to xcode [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.
this has been asked plenty of times, but I always find them hard to follow. Its quite simple.
How do you add a library and/or framework to xcode and/ or your xcode project. I need all the steps between downloading the library, to typing the #include in the code. But I also need some context behind each step, other wise it won't stick in my mind and I'll back here in a week. Bear in mind I have an limited understanding of the xcode development environment. Thanks in advance.
Follow the screenshots and you are good to go

Embedding C and C++ into a microchip [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 sorry, I'm lost.
I program microchips, and I primarily work in assembly, but I have much more experience in C and C++. I know that there is a way to embed C++ into the microchip, I just need to know how. If I need to make a clone of C++, I am willing, if someone will tell me how.
Thanks in advance.
1) Write program in C or C++.
2) Compile program.
3) (Optional) Test program on an emulator.
4) Burn program into desired microchip.
If you give us specific chips, we can give you more details of how each of the steps works.

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.

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.

Advice on Creating a DBMS [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 am looking at ways of creating my own DBMS from scratch in C++ (just for fun and educational purposes). I am stuck with the place to start it. Can anybody tell me how I should begin (design) this. Will postgresql code and the architecture be of any help?
Thanks in advance.
Have a look at SQLite and its doccumentation. it might be a good point to start.
Start by reading "Transaction Processing: Concepts & Techniques" by Gray and Reuter. It goes through all the major components of a DBMS. Following the references is very interesting.
It is almost 20 years old now, but still very relevant.