Ansible. My own orchestra!

⚠️ Please note: The information in this legacy post may no longer be relevant.

So, what’s Ansible all about? GitHub describes it as a radically simple IT automation platform that makes your applications and systems easier to deploy. Sounds great, right? But that’s just the surface. Let’s dig in and see what Ansible really does.

Read full post >

Code check and html-report with cppcheck.

⚠️ Please note: The information in this legacy post may no longer be relevant.

Cppcheck is a static analysis tool for C/C++ code. Project’s home on sourceforge: http://cppcheck.sourceforge.net/. Small description from the site:

Unlike C/C++ compilers and many other analysis tools it does not detect syntax errors in the code. Cppcheck primarily detects the types of bugs that the compilers normally do not detect. The goal is to detect only real errors in the code (i.e. have zero false positives).

Read full post >

Environment in 2 minutes with Vagrant.

⚠️ Please note: The information in this legacy post may no longer be relevant.

Today I want to share with you an awesome thing - Vagrnat! What is Vagrant? Following the Wikipedia:

Vagrant is an open-source software product for building and maintaining portable virtual
software development environments, e.g. for VirtualBox, Hyper-V, Docker, VMware, and AWS. 

In other words, Vagrant allows you to create a virtual machine(s) (VMs), install os and pre-configure it with only one command!

Read full post >

Python3, ssh and redirect stdout?

⚠️ Please note: The information in this legacy post may no longer be relevant.

Once ago I got a task. It was pretty easy, as I see now. But then I didn’t know about such great thing as Ansible. So I decided to make it with python3. This post is an example of a very easy python3 program, which recursively runs a given command on hosts from a list.

Read full post >