Writing on tech, coding, and some how to articles.

All of my long-form thoughts on programming, and how to guides.

Step-by-Step Guide: Nginx Ingress Setup on AKS

Recently I was tasked with setting up kubernetes cluster with an Nginx Ingress. As a newcomer to Kubernetes, I tackled this setup and learned a thing or two along the way. Let me walk you through my experience and share some helpful tips. The Goal: S...

Configure qBittorrent on Dokku and Mount SMB NAS for Download Storage

Ready to set up qBittorrent on Dokku? Follow these steps, and you'll be up and running in no time! (This article assumes you have dokku and a nas server already up and running.) Step 1: Create a New App First, create your new app in Dokku with the fo...

Bring your app online using SSH with a custom domain for free

If you're a developer you must've encountered a situation where localhost just wouldn't work for you, maybe you wanted to show off your project to someone else or needed to set up a public URL for a webhook. There are countless situations where you w...

Publishing Flutter apps to Play Store using Github Actions and Fastlane

Recently I was trying to figure out how I can publish flutter apps to the Play Store using Github Actions and publish them I did. I started reading some documentation available at flutter's official site and followed the instructions to set up Fastla...

Array & Slice in GoLang

Let's say we are working on a go app and we have to store the data of 2 users, so far we know about variables and how they can be used for data, let's say we create two variables and store the name of our 2 users. But then we receive a request to add...