Go 28 Jan 202513 Building OAuth 2.0 Authentication Middleware with `httprouter` in GoIn modern programming, application security is a top priority, especially when dealing with user … 4 mntRead
Go 25 Jan 202512 Creating Static File HandlerIn web applications, serving static files such as images, CSS files, or JavaScript from a public directory is … 3 mntRead
Go 23 Jan 202511 Membuat Middleware Basic Authentication HTTP Router pada GolangBasic Authentication is a simple authentication method where the client sends credentials (username and … 4 mntRead
Go 21 Jan 202510 Creating Authentication Middleware Using JWT with Httprouter in GolangIn modern application development, authentication is one of the most crucial components. JSON Web Tokens (JWT) … 4 mntRead
Go 19 Jan 202509 How to Set Headers on Requests and Responses Using Httprouter in GolangIn web development, managing HTTP request and response headers is crucial for handling data, security, and … 5 mntRead
02 Oct 2024How to Change Your Full Name and Username on a MacBook Pro: A Complete GuideIf you’ve just bought a new MacBook Pro or want to update your full name and username in the terminal to match … 4 mntRead
Go 01 May 202405 Implementing a Singleton Logrus Logger in GolangThis time we will try to implement the Singleton Design Pattern. What is a Singleton? You can first read the … 6 mntRead
Go 30 Apr 202404 Learning Logrus Field, Entry, and Hook in GolangThis time we will explore Logrus more deeply, specifically its Field, Entry, and Hook features. The features … 4 mntRead
Go 29 Apr 202403 Logrus Formatter and Output in GolangThis time we will learn about and discuss how a Logger has a format and an output. By default, a Logger always … 5 mntRead
Go 21 Apr 202402 Logger and Leveling with Logrus in GolangIn the previous article we created a new project to dive deeper into Golang Logging, so now we will try to see … 4 mntRead
Go 20 Apr 202401 Introduction to Logging in GolangIntroduction to LoggingLogging, which contains information about a system, can deliver clear messages about … 3 mntRead
Go 02 Apr 202412 Creating Dependecy Injection Library Google WireThis time we will try to make Dependency Injection using the Wire Library from github.com/google/wire. The … 8 mntRead