Debugging C with Clang compiler and LLDB

Just an easy and quick tutorial about how to debug C code using clang. I am using Mac OS X 10.11.1 “El Capitan” and Clang compiler is already installed. If you have OS X and Clang is not installed, you can get it using homebrew: Create C file First we will create a small C program called test01.c: Compiling the …

Deploying Python projects with Docker

Using Docker we can deploy a Python project along with all his dependencies in completely isolated containers, exposing only the strictly necessary ports for running our apps. The only packages we need to install in the server are Docker and SSH, this way we will keep our production server in mint conditions. Here you will learn how to deploy your …