The Blog
Exposing localhost server to the internet in one minute
Sometimes, we found a situation due to multiple reasons, where we need to expose our local server to internet, maybe we need to show our website to a client and doesn’t have ...
Coding Best Practices, Chapter One: Functions
My purpose IS NOT to say what is the best way to write code, some programmers have their ways and they are just fine. I just want to share with others what I consider code be...
How to use SSH properly and what is SSH Agent Forwarding
The SSH (Secure Shell) is widely used to provide secure access to remote systems, we have few ways to do it. Basically, everybody who uses it knows about the routine password...
Crear un API REST con Django Rest Framework - Parte I
DRF es una librería que nos permite construir un API REST sobre Django de forma sencilla. Ofreciendo una alta gama de métodos y funciones para el manejo, definición y control...
Virtualenv and Virtualenvwrapper tutorial
Virtualenv is a helpful tool to create isolated Python environments. So, inside those environments you can create your own projects and install it’s python packages and depen...
Introducción al diseño de una API REST
Primero, debemos saber el significado de API, por sus siglas en inglés Application Programming Interface. Básicamente, representan una colección de métodos y funcion...
Removing git branches at once
Sometimes, we realized that we have many branches that we don’t need anymore. It can be a tedious task delete them one by one.