sh vs Golang vs Ruby
sh vs Golang vs Ruby Ruby is the language that I started with. Even a 10 year old can pick it up. It’s expressive, powerful(DSLs) and sharp(cough cough metaprogramming). So many great tools like -...
sh vs Golang vs Ruby Ruby is the language that I started with. Even a 10 year old can pick it up. It’s expressive, powerful(DSLs) and sharp(cough cough metaprogramming). So many great tools like -...
Prometheus is an open-source tool designed to export and serve metrics. These metrics can come from a variety of sources — such as servers, applications, or really anything a user wants to track. I...
I built and deployed my portfolio site after reading Logan Marchione’s post about DevOps projects for beginners. The project covers infrastructure provisioning, server configuration, web server se...
Here’s my entire continuous deployment pipeline for the blog that you are reading: #!/bin/bash while true do git pull jekyll build sudo rsync -r _site/* /var/www/html echo sleeping... s...