0
votes
Why does Jeff Atwood suck so much cock?
Compilers: Principles, Techniques, and Tools is a famous computer science textbook by Alfred …
6
votes
5
votes
How Important is Boost to Learn for C++ Developers
Discussed previously: what are the advantages of using the c++ boost libraries. …
4
votes
Good Data Structures text book
The ancient Algorithms + Data Structures = Programs by Niklaus Wirth is recommended by some (see customer reviews on …
1
vote
What are all the common undefined behaviour that c++ programmer should know about?
Maybe what C++ pitfalls should i avoid will help.
…
1
vote
Iteration over vector in C++
Your polygon.size() returns an unsigned. The compiler complains when you comapre it with int i.
…
4
votes
C/C++ check if one bit is set in, i.e. int variable
According to this description of bit-fields, there is a method for defining and accessing fields directly. The example in this en …
2
votes
What Next: C++, Python or Ruby
IronPython can make the move to Python easier for you - you can use your previous experience.
IronPython is a new implementat …
5
votes
Deploying application with Python or another embedded scripting language
The embedding process is fully documented : Embedding Python in Another Application.
The documents suggests a few levels …
1
vote
Compile error using cl.exe (Visual Studio 2008) for this cpp code
Alternately, change your includes to:
#include <stdio.h>
#include <string.h>
and the fprintf() calls to
fprintf(stdout,"ab …
1
vote
As a programmer with no CS degree, do I have to learn C++ extensively?
Listen or read SO podcast 44, where Joel plays his favorite song …
2
votes
Which editor to use? for coding c/c++.
Cream:: a modern configuration of the Vim text editor
Cream shapes Vim into an interface you probab …
1
vote
2
votes
Yaml Emitter in C++
How about libyaml ?
LibYAML is a YAML 1.1 parser and emitter written in C.
And, more directl …
2
votes
What is the difference between cygwin and mingw?
Cygwin is is a Unix-like environment and command-line interface for Microsoft Windows.
…
