Serving AWS S3 private content with Golang and AWS SDK for Go v2February 5, 2024 go aws s3Have you ever wanted to serve private files from your AWS S3 storage to your users, but making the bucket public is not a safe option?Read More →
Golang Create Combinations From N ArraysSeptember 24, 2022 go combinationThis snippet is useful when you need create combinations from n arrays with picking one element from each array.Read More →
Advanced Go Custom Error ImplementJanuary 8, 2022 goIn the previous post, we have implemented our custom error:Read More →
Go Custom Error ImplementJanuary 1, 2022 goHave you ever checked the error definition to see what it is?Read More →
Gmob - Go Mongodb Driver document builderOctober 3, 2020 go mongodb driverWhen I worked with Mongo Go Driver, it was complicate to make a search, or update query document(s) with dynamic conditions.Read More →
Debugging Go http server with VS CodeJune 28, 2020 debug go vscodeLike the title said, in this article we will do debugging go application with VS Code and Go extension.Read More →
Building a simple microservices using Go Micro and Echo frameworksJune 10, 2020 go microservices go-micro echo frameworkIntroduction In this article, we will learn how to build a simple microservices using Go Micro and Echo frameworks.Read More →
Writing Simple Go Echo Websocket Test RecipeMay 5, 2020 go echo test websocketIntroduction Today, I’ll show you how I set up a simple test for WebSocket using gorilla/websocket in Echo framework and how it makes me more confident with my code 😄Read More →