// this is in the global scope of my program. normally accepted as bad code, 
// but it seems to make sense in the context of an embedded platform.
// "global" cache
...

C++ String parsing in AVR-GCC

by Greg Buehler, April 18, 2011 07:58, 6 refactorings, tagged with speed, C++

I'm working on interfacing ...

C3b0b8da886396ca8d5a28ad397c404d Talk
// For faster converting of dates to strings
char* sLeadingZeroIntegerValues[] = {
"00","01","02","03","04","05","06","07","08","09",
...

C++ Stream ADODB recordset into...

by ctrager.blogspot.com, November 11, 2008 12:30, 2 refactorings, tagged with speed, C++, COM, ADODB, STL

Can we make the code betwee...

23da7be57867a7eb54b583983c89b375 Talk