Learning Go: Day 5 - A Simple Go Quiz Game
Built a simple command-line quiz game in Go that tests your knowledge of countries based on facts. What is Guess the Country? A Go program that presents you with facts about a random country and ...
Built a simple command-line quiz game in Go that tests your knowledge of countries based on facts. What is Guess the Country? A Go program that presents you with facts about a random country and ...
Continuing the 30-day journey. Days 2-4 focused on building an uptime tracker for websites. What is Uptime Tracker? A Go application that monitors website availability. It periodically checks if ...
Starting a 30-day journey to build multiple programs in Go. This is Day 1. What is Table? A simple Go program that generates multiplication tables. Given a number, it outputs the multiplication t...
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...