Search Results

0
votes

Most beautiful open source software written in c++

Loki is a pretty nice library especially if you're interested in how design patterns and various idioms are expressed in C++. Reading the source might also be a good way to understand C++'s metapr …
1
vote

How to override Py_GetPrefix(), Py_GetPath()?

You could set Py_NoSiteFlag = 1, call PyInitialize and import site.py yourself as needed. …
1
vote

Developing Math libraries

It's a little hard to say anything definitive one way or the other. I'd suggest sticking with C# if that's what you've started or what the rest of your project is based around. Keep some canonica …
3
votes

How to send POST request to some website using winapi?

The MSDN docs have sample code using WinHTTP: IWinHttpRequest::Send Method …
0
votes

Good Readings on Unix/Linux Socket Programming?

Beyond the Stevens books already mentioned, I found the following two to be really good and relatively short reads for TCP/IP programming issues (especially gotchas and common errors): …
2
votes

Are there any good libraries for solving cubic splines in C++?

Try the Cubic B-Spline library: http://www.eol.ucar.edu/~granger/bspline/doc/ and ALGLIB: …
3
votes

is it possible to store output of system call in windows?

Yes, look at capturing stdout from CreateProcess: Creating a Child Process with Redirected Input and …
1
vote

How do you set icons of .exe files?

Here's a code sample that might help: Change Icon of EXE file through code extracting it from other EXE f …