Search Results

1
vote

Conferences/Symposiums/Courses in Britain

I've never been to one, but ACCU conferences have a very good reputation. They're not specifically about web development, but looking …
0
votes

Linux configuration file libraries

If you just want a simple config file, with a list of commands and/or variable settings, then it's very easy to write your own parser, so easy that it's probably not worth using a library. If you n …
2
votes

What is a basic example of “low-level” multi-threading in C++ ?

I don't think there's much difference between what you've been doing and using pthreads, to be honest. If you've done a significant amount of work with threads you'll have had all the issues with l …
3
votes

What is a basic example of “low-level” multi-threading in C++ ?

Here's a quick example of using pthreads, based on some test code of ours. It spawns two threads, and waits for them to complete. int main( void ) { pthread_t reader, writer; vo …
0
votes

How would you go about implementing the game reversi? (othello)

I wrote a reversi game many years ago, when I was still at school. Its strategy was very simple, it just went for the maximum number of pieces, but weighted so it preferred the edges and particular …
0
votes

MFC: What on earth is a CSplitterWnd Caret?

It's the text cursor. In early versions of windows, the text cursor was like a proofreader's caret mark (like ^ only on the baseline). This makes some sense, as that mark is what proofreade …