Latest News
Read all latest blog posts

Learn AWS EKS Kubernetes cluster and devops in AWS (Part 1)
Learn AWS EKS Kubernetes cluster and devops in AWS (Part 1) Starting AWS EKS cluster manually in AWS web console
Read More
Kubernetes Ingress
Services in Kubernetes ClusterIP (points to a pod via labels selectors) NodePort (in addition a port is exported at each node) Loadbalancer (in addition creates LB at cloud provider) Deploy Nginx ingress controller # Install NGINX Ingress kubectl apply -f https://raw.
Read More
How to count numbers from pdf
user@machine tax2021 % for i in $(ls *.pdf); do \ pdftotext $i - | grep -E '^\+.
Read More

My tmux conf
# ---- # Our .tmux.conf file # Setting the prefix from C-b to C-a # set -g default-terminal "xterm-256color" set -g default-terminal "screen-256color" set -g default-command /bin/zsh set -g prefix C-a set -g history-limit 50000 # Free the original Ctrl-b prefix keybinding unbind C-b #setting the delay between prefix and command set -sg escape-time 1 # Ensure that we can send Ctrl-A to other apps bind C-a send-prefix # Set the base index for windows to 1 instead of 0 set -g base-index 1 # Set the base index for panes to 1 instead of 0 setw -g pane-base-index 1 # Reload the file with Prefix r bind r source-file ~/.
Read More
My NVIM init file
" plugins" curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vimcall plug#begin("~/.config/nvim/plugged")" Plugin SenohlsearchctionPlug 'ryanoasis/vim-devicons'Plug 'morhetz/gruvbox'Plug 'neoclide/coc.
Read More