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
Migrate LUNs/Disks with Filesystems (LVM) from one server to another in Linux
DISK or LUN migration to new server with LVM/File systems without loosing the File system...
Python basics: File and Directory operations, import OS module
This is a quick reference sheet for working with files and directories using Python. Also,...
Fast tracking Docker: Creating an image with Dockerfile
Dockerfile is used to build your own Docker images. A docker file can contain a...
Ansible: Inventory, running remote Ad-Hoc commands
Ansible is an orchestration tool with endless automation possibilities, that has transformed and...
Orchestrating tasks with Ansible Playbook
In the previous post, we looked at running Ad-Hoc commands on remote systems....
Linux LVM Cheat Sheet / Quick Reference
This will serve you as a quick reference to LVM commands. This is mostly what...
Logging in python: part 2: Stack trace & Handlers
Stack traces are a record of errors and exceptions caused by a program....
Extending space on Existing LUN/DISK to extend volumes and File systems in Linux
In most cases, fully resizing an online LUN/DISK involves two things: resizing the LUN/DISK itself...
Script to fetch stats such as CPU, Memory, Disk reports etc. from multiple remote hosts
A handy script to which you can pass a single or multiple hostnames and in...
Setup and manage nodes on docker swarm
Docker swarm is a mode in which you can run containers as clusters...
Docker Compose: Build and Manage multiple containers
docker-compose is used build to a project that involves building and running multiple...
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...