xlw 4.0

Sep 30
2009

xlw 4.0 is out. I’ll have to work with it anyway, so, perhaps, I’ll share some of my  experience.

Quant Press

Sep 23
2009

A nice collection of quant. finance articles

Dynamic Creator under Visual Studio

Sep 18
2009

In my master thesis I described the application of classical Monte Carlo methods for the Heston Model. For the implementation one usually requires a very good Random Numbers Generator. Read the rest of this entry »

archived photos – Hurgada 2005

Sep 16
2009

Hurgada 2005

Read the rest of this entry »

archived photos – Germany 2001-2005

Sep 16
2009

Germany 2001-2005

Read the rest of this entry »

archived photos – Heidelberg

Sep 16
2009

Heidelberg 2001

Read the rest of this entry »

Protected: studio photos 2009

Sep 16
2009

This post is password protected. To view it please enter your password below:


How to enable memory leaks reporting in VC++

Sep 15
2009
#include <windows.h>

HANDLE hLogFile;

/**
 * enable memory leaks reporting
 *
 * @param file - file name
 */
void enableMemoryLeaksReporting(std::string file) {
   hLogFile = CreateFile(file.c_str(), GENERIC_WRITE, FILE_SHARE_WRITE,
                NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);

   _CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF | _CRTDBG_CHECK_CRT_DF |
                      _CRTDBG_LEAK_CHECK_DF);
   _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
   _CrtSetReportFile(_CRT_WARN, hLogFile);
};

Links

Sep 15
2009

Excel Tools

Sci Graphica

OmniORB Tech Report

Actual CV

Sep 15
2009

My actual CV is available for download (if somebody interested) in english or german.

Pages List

General info about this blog...