[vc_row full_width=”” parallax=”” parallax_image=””][vc_column width=”2/3″]
RECENTLY ADDED
git cheat sheet
Set git user information$ git config --global user.name "myusername"$ git config --global user.email "admin@unixutils.com"
View git user configuration.$ git...
FREQUENTLY VIEWED
psst! check these out!
PYTHON
python: decorators
Decorator is a type of function that accepts another function as an argument. By doing so it enables...
Daemonize a process with python
Python library to deamonize...
python: constructors
Lets assume that a class is a template which has data members without values assigned to it. When an object is created...
Python: SSL Certificates with OpenSSL
OpenSSL python library extends all the functions of OpenSSL into python, such as creation and verification of CSR/Certificates. In this post, we...
Python: Building a REST Client with HTTP Requests
REST is an API that allows developers to perform a set of functions based on exchange of HTTP Requests. For example, Twitter...