Posts Tagged ‘Resource’
Bash-Linux Counting lines of files in subdirectories
Because it took me 5 minutes to make the right command (do we use a pipe or not, do we put \ at the end or not, etc….), I write it here (for me like a post-it):
find . -type f -exec wc -l {} +
So this command will take every files in all directories (current and sub dir) and count the lines.
[Openmp][MPI] Profiling hybrid openmp-mpi application with eztrace and vite
In this post I present quickly an example to profile openmp (or pthread) and mpi application.
[Openmp] for schedule static or dynamic
Of course there is a difference between static and dynamic scheduling (every one know that) but if you want to see how it can make a difference look at the example above.
C++ – Help Reader – Read on a computer more easily
In this post I present a software to concentrate when you are reading PDF, web pages or anything else very easily.
C++ – Unit test – easy, one file, basic, simple
I few weeks ago I wanted to use unit test. But when I was searching for a framework easy to use, fast, that do not need to be installed 10 libs to make it working etc… Well I did not find anything that satisfy me.
So I make my own lib.
[C/C++] OpenMP vs PThread – openmp or posix thread ?
A popular question. Which one to use, which one is faster. Well, I do not really know but this post may help you to make your choice.
C++ – Qt – SingleApplication – Single App Instance
How to create an application that allows only one instance at a time. Here is my solution inspired from : http://www.qtcentre.org/wiki/index.php?title=SingleApplication
EviMoX – Script to control your mouse and your keyboard on Windows
Many years ago, I developed a software to control/simulate the mouse/keyboard by creating some macro. This software was called Evimox (the first).
Today, I develop something more useful and easy to use: EviMoX. It is a freeware (donationware) to run scripts and control your computer very easily.
It can also be a fun way to use programming if you are new to this.
