c++ Programming Glossary: joel
C++: do you (really) write exception safe code? [closed] http://stackoverflow.com/questions/1853243/c-do-you-really-write-exception-safe-code to the code and it creates many many possible exit points. Joel on software wrote an article about it . The comparison to goto..
Fastest cross-platform A* implementation? http://stackoverflow.com/questions/2107601/fastest-cross-platform-a-implementation however the question is not Should I roll my own A Joel on Software Not Invented Here Syndrome Coding Horror Don't Reinvent..
How difficult is it to turn a “Java School” programmer into a C or C++ programmer? http://stackoverflow.com/questions/251007/how-difficult-is-it-to-turn-a-java-school-programmer-into-a-c-or-c-programme complexity manual memory management really everything Joel Spolsky says here . Often as far as I can tell a student will..
What is the fastest way to compute sin and cos together? http://stackoverflow.com/questions/2683588/what-is-the-fastest-way-to-compute-sin-and-cos-together with almost the same accuracy for 32 bit floating points. Joel Goodwin linked to an interesting approach of an extremly fast..
How to read/store unicode with STL strings and streams http://stackoverflow.com/questions/390977/how-to-read-store-unicode-with-stl-strings-and-streams I don't really know much about Unicode though I've read Joel Spolsky's article and the Wikipedia page . Right now I'm using..
C++ String Length? http://stackoverflow.com/questions/905355/c-string-length to like using Pascal style strings or f ed strings as Joel Spolsky likes to call them when they have a trailing NULL just..
Ever done a total rewrite of a large C++ application in C#? [closed] http://stackoverflow.com/questions/977105/ever-done-a-total-rewrite-of-a-large-c-application-in-c rewrite of a large C application in C# closed I know Joel says to never do it and I agree with this in most cases. I do..
|