// archives

Archive for July, 2006

Simple but yet powerful Memory Leakage Detection System GALD

I have just released a simple tool, called GALD, which will make our life as developers easier since it allows you to detect the line where the memory problem is. The good thing is you don’t need to replace the standard malloc(), calloc(), realloc() or free() functions since a macro subsystem will address link these [...]

The Ten Coding Commandements

1. Thou shalt not trust user inputs. 2. Thou shalt not trust other applications usage of your APIs. 3. Thou shalt not trust any files, network incoming data yourapp may process. 4. Thou shalt not overstimate the size of the destinations buffers. 5. Thou shalt close all the strings (with the NULL character). 6. Thou [...]

BioPhysics of Biological Circuits

This September I will attend to a interesting summer school organized by the Nicolas Cabrera Institute (Universidad Autonoma de Madrid). I know I will enjoy it for sure since I love this field but I think it is not going to be easy, a lot of advanced mathematics are going to be used to explain [...]