Disclosure: On this site you won’t find specific advice on “how to call function xyz()”. Interpreting C++ ARM and #pragma dwim is also out of scope.

We’re treating our readers as intelligent beings who can use Google and/or StackOverflow, where all such specific questions were answered more than once.

What you will find is opinions, more opinions, and even more opinions on all the aspects of software development - and with a large chunk of them based on real-world experience too.

Your mileage may vary. Batteries not included.

Debug Complexity: How Assertions Affect Debugging Time

November 1, 2014 by “No Bugs” Bunny

Debug complexity

Abstract:

An approximate model on how ASSERTs reduce amount of work required to debug a program.

Quote:

ASSERTs can reduce debugging time dramatically

Filed under: On.ProgrammingDebugging

Read more

Musings on Python – by a C++ Developer

September 1, 2014 by “No Bugs” Bunny

BB_part25_v2-e1418819946899.png

Abstract:

Python from the point of view of C++ developer.

Quote:

For those who want to write Python off due to performance issues, I have a word of advice: don’t rush.

Filed under: On.ProgrammingProgramming Languages

Tagged With: C/C++Overload
Read more

Size Matters - Is 64-bit App Always Better?

May 1, 2014 by “No Bugs” Bunny

Is Bigger One Always Better?

Abstract:

Sometimes it makes perfect sense to use 32-bit application on 64-bit platform.

Quote:

It is obvious that for N between 13,000,000 and 21,000,000, 64-bit application works about 1000x slower.

Filed under: On.System ArchitectureRequirement analysisDesign decisionsOn.ProgrammingOptimizations

Read more

Optimizing Big Number Arithmetic Without SSE

March 1, 2014 by “No Bugs” Bunny

Juggling ASM operators

Abstract:

How to optimize big number maths without SSE

Quote:

OpenSSL prefers to use assembler for big number calculations

Filed under: On.ProgrammingTips and TricksOptimizations

Read more