The use of OpenMP can be very useful for optimizing your code’s performance. OpenMP is a parallel programming API that
Continue readingTag: c++
Intrinsic functions, SSE, AVX…
Normally, “intrinsics” refers to functions that are built-in — i.e. most standard library functions that the compiler can/will generate inline
Continue readingFortify Static Code Analyzer
HP Fortify Static Code Analyzer (SCA) is a set of software security analyzers that search for violations of security-specific coding
Continue readingRetrieve the “ErrorLevel” for windows application
Testing ErrorLevel works for console applications, but this won’t work if you’re trying to run a windowed application (e.g. Win32-based)
Continue readingDo design patterns increase or decrease the complexity of an Application?
Complexity or not complexity ? If the person reading the code is aware of design patterns and their concept and
Continue readingFirst steps in Qt
Qt is used mainly for developing application software with graphical user interfaces (GUIs); however, programs without a GUI can be developed, such as command-line tools and
Continue readingFractal Music Video
Fractal Music Video Done in a few hours using some modified shaders done in GLSL. Music are composed by me.
Continue readingC++ Functor
A functor is pretty much just a class which defines the operator(). That lets you create objects which “look
Continue readingC++11 – Why Lambdas Rock
The problem C++ includes useful generic functions like std::for_each and std::transform, which can be very handy. Unfortunately they can also
Continue readingSeveral issues of porting C++ code to the 64-bit platform
Introduction x86-64 is a bit of a special case – for many architectures (eg. SPARC), compiling an application for
Continue readingHow to hunt memory leaks using Visual Studio
Make sure you compile debug version of your project. Press F5 (Start Debugging) Do whatever you suspect to leak memory,
Continue readingActive Directory Overview
Introduction Keeping track of everything on your network is a time-consuming task. Even on small networks, users tend to have
Continue readingIoT – First impression of Atmel Environment
I have started to adapt and debug a firmware for an IoT project a few month ago… This hardware is
Continue reading
You must be logged in to post a comment.