How to Create a SOCKS5 Proxy with VPN Tunneling Using DockerThis guide shows you how to set up a SOCKS5 proxy that routes all traffic through a VPN connection using Docker Compose. This setup provides an extra layer of privacy for your internet traffic. Prerequisites Docker and Docker Compose installed A VP...May 10, 2025
Tutorial: Defining the Domain entitiesThis blog is the part of the series Building a Web App with Golang. In today's article we are going to define the basic entities and the operations on them for our web application. In the first part we defined the scope of the application. We are goi...Jun 17, 2024
Tutorial: Deployment of Golang web app using SystemdToday, I am going to show you a simple way of deploying a Golang web application. We are going to use Systemd and a Makefile to deploy the code when we merge to main branch. In a future blog post we will revisit and show you how you can deploywhen yo...Jun 16, 2024
Building a Robust Web Server in Go: A Step-by-Step GuideWe continue our journey implementing a real world web application in Golang in this blog post. In the previous post we setup our docker development environment that just prints hello world. In this post we are going to setup a real webserver that it'...Jun 15, 2024
Setting up a Docker development enviroment for GoCrafting a real Web Application with GolangJun 14, 2024
Use context in your HTTP handlersLet's consider a simple webserver that runs a task. The task can be anything like a time consuming computation, a database query. You need to be able to do two things: when the client drops the connection while the task is running terminate the task...Jun 12, 2024