Beaucoup de personne sont persuadée que le fait d’avoir un prototype qui commence à donner des résultats équivaut à avoir
Continue readingImalogic - Geek Inside Blog
GLSL – Variable Qualifiers
Variable Qualifiers Qualifiers give a special meaning to the variable. The following qualifiers are available: const – The declaration is
Continue reading
C++ Multi-threading support
One major new feature in the C++0x standard is multi-threading support. Prior to C++0x, any multi-threading support in your C++
Continue reading
Changes in C++11
Let’s look at some of the prominent C++11 core-language features. Lambda Expressions A lambda expression lets you define functions locally, at the
Continue reading
C++14: What’s Important
Return type deduction The capabilities auto are expanded in this release. C++ itself continues to be typesafe, but the mechanics of type
Continue reading
Do design patterns increase or decrease the complexity of an Application?
Introduction Design patterns are well-known in software development. They offer ready-made solutions to common problems and give developers a shared
Continue reading
First 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 reading
The “4” Pillars of Object Oriented Programming
I have read an article about the “4 Pillars” Of Object Oriented Programming but let’s be honest here, I tend to forget
Continue reading
Distance Squared optimization using SSE instruction set
K-MEANS / Distance Squared optimisation using SSE instruction A long time ago, a friend ask me to try some KMEANS
Continue reading
Use Case Points
“You can not plan if you can not measure AND IF YOU FAIL TO PLAN YOU HAVE PLANNED TO FAIL.”
Continue reading
Labeling in CLP(FD) with evolutionary programming
Introduction Les problèmes d’optimisation combinatoire sur des nombres entiers sont définis comme suit : un groupe de variable. un groupe
Continue reading
What is DemoScene ?
What is Demoscene ? The demoscene is a world-wide collective of young artists and programmers who produce non-interactive audiovisual materials
Continue reading
First step to Mark Down
Mark Down ! Markdown is a way to style text on the web. You control the display of the document;
Continue reading
Le Petit Guide Du Git
Github Configuration Identity Name $ git config –global user.name “unix” Identity Email $ git config –global user.email “unix@imalogic.com” Editor Tool
Continue reading
Benchmarking C#/.Net Direct3D 11 APIs vs native C++
This is a resume from a old post found on internet about benchmarking Direct3D 11. If you are working with a
Continue reading
Mise en place d’un plan de test
Introduction Il m’a souvent été demandé de “tester” un application ou un projet durant mes missions de consultance. J’ai rarement
Continue reading
Writing “C” Code for Android
The Android SDK The Android SDK is strictly for Java Programmers — however, the Native Development Kit cracks the door
Continue reading
Fractal Music Video
Fractal Music Video Done in a few hours using some modified shaders done in GLSL. Music are composed by me.
Continue reading
C++ Functor
A functor is pretty much just a class which defines the operator(). That lets you create objects which “look
Continue reading
Alcatel – ADSL – Souvenirs
Souvenir, souvenir… c’était en 2001 😉
Continue reading
C++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 reading
Several 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 reading
How 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 reading
Terraforming
My demo presented @ Revision 2017. A quick release of this demo using my new 3d engine featuring : deffered
Continue reading
Ice & Fire
My “first 4k”/ 4 Kbytes intro / 4096 bytes Released at revision 2017, ranking #7 – Hard competition this year
Continue reading
Active Directory Overview
Introduction Keeping track of everything on your network is a time-consuming task. Even on small networks, users tend to have
Continue reading
Computer vintage – C64 & Amiga
About twenty years ago, I spent a lot of time developing on small computers such as the Commodore Amiga
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
Hourglass pattern
WRAPPER C/C++ DEVELOPING A C WRAPPER API FOR OO C++ CODE, Develop a set of C APIs that will wrap
Continue reading
Reconnaissance vocale : Série de Fourier, FFT
1. Représentation de la décomposition en série de Fourier La transformée de Fourier est basée sur la découverte que toute
Continue reading
You must be logged in to post a comment.