Search Results

0
votes

How to take screenshot in Mac OS X using Cocoa or C++

The following might be helpful if you are attempting to accomplish this with either C++ or python. Also, this would be even more helpful in the case that you want your programmatic method to be cr …
1
vote

Using GCC from within VS 2005(8) IDE

What I am about to suggest would still require a makefile, so I am partially repeating the advice above. Or, as was also mentioned earlier, maybe you already have a makefile, in which case you wil …
0
votes

How to timeout a mysql++ query in c++

I don't know if this is a good idea in terms of resource usage and "best practices" and "cleanliness" and all the rest... but you have now repeatedly described the handcuffs that bind you in terms …
2
votes

Template Constraints C++

I found the following to be a very interesting read on the topic: static interface …
2
votes

Fastest small datastore on Windows

If you do begin to experiment with SQLite, you should know that "out of the box" it might not seem as fast as you would like, but it can quickly be made to be much faster by applying some establish …
0
votes

How do I rename an entire project in VC++ 2005

I assume that in addition to the directory in which you now have the totally renamed set of files, I assume that you also still maintain a complete "parallel" set of the original files in some othe …
1
vote

Faster bulk inserts in sqlite3?

The following is a nice compendium of tips: SQLite optimization …
1
vote

Unit-testing C++ templates

Note to the asker (to iocio): I apologize if you are already aware of the techniques that I mention below. I did not mean to obnoxiously "preach to the choir. …