VS 2010

Jul 29
2010

Finally, I migrated all my project to Visual Studio 2010 Express. Unfortunatelly, the Subversion Plugin is not available for the express editions,… but… here there are some instructions on how to integrate the TortoiseSVN into the VS Express. I will try it out…

led

Oct 23
2009

update – version 0.53,

http://www.latexeditor.org

delphi code example

Oct 23
2009

Stolen, http://govnokod.ru/2020


function IsTrue(Value: boolean): boolean;
begin
 if Value <> true then result := false
 else if Value <> false then result := true
 else // attention!
   result := (not true) and (not false);
end;


							
							

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.

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 »

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);
};

Actual CV

Sep 15
2009

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

xlw for Visual Studo 2005 Express

Sep 11
2009

If somebody needs, here is a pre-built version of XLW for Visual Studio 2005 Express edition.

Pages List

General info about this blog...