15 Dec 20
27 Jun 20
Over 100 separate source files are concatenated into a single large files of C-code named sqlite3.c and called “the amalgamation”. Combining all the code for SQLite into one big file makes SQLite easier to deploy — there is just one file to keep track of. And because all code is in a single translation unit, compilers can do better inter-procedure optimization.
10 Oct 11
Great presentation. Lots of insights on teaching C and C++ differences and specialties.
31 Dec 10
libdivide has both a C and a C++ interface.
22 Sep 10
OpenCV (Open Source Computer Vision) is a library of programming functions for real time computer vision. Uses range from interactive art, to mine inspection, stitching maps on the web on through advanced robotics.
01 Jul 10
“There is a technique known as the ``Clockwise/Spiral Rule’’ which enables any C programmer to parse in their head any C declaration!”
25 Jun 10
That’s the crazy thing about malloc implementations. They all claim to be awesome in every way. So the burning question is: is this better than what I’m using today? I don’t know, but I’d sure like to!
Highly configurable, easily modifiable source code beautifier for C, C++, C#, ObjectiveC, D, Java, Pawn and VALA.
13 Nov 09
This book, is supposed to teach methods of numerical computing that are practical, efficient, and (insofar as possible) elegant.
28 Oct 09
Short answer: no. Longer answer: it depends on what do you mean by equivalent.