Tuesday, June 28, 2011

Restructured text table reports

Download: rst2pdf-read-only.tar.gz I use rst2pdf to create PDF documents from reStructuredText (ReST). It is relatively easy to generate table reports from a database, like the ones shown below. In this example, the table does not fit into one page and spans two. Although it is easy to execute statistical queries such as sum a column...

Wednesday, June 15, 2011

Benchmarking function call overhead in C++

Download: benchmark.tar.gz The are two types of function calls I benchmark here: 1) Virtual functions 2) CRTP, used to simulate dynamic binding (with and without inlining) One particular use of the CRTP is to simulate dynamic binding. The technique achieves a similar effect to the use of virtual functions, without the costs of dynamic polymorphism....