3 followers
Cloud and Backend Developer at Aftershoot C4GT'24, DIGIT, eGov Mobile Dev and Open Source
How to use isolates in Flutter to run computationally intensive tasks in the background. · What are Isolates? In Flutter Isolates are a way to run...
CrashDragon Introduction In the summer of 2024, I was accepted into the Google Summer of Code 2024 program by the VideoLAN organization. The...
How to use Unix Sockets in Go to communicate between processes on the same machine. · What are Unix Sockets? A UNIX socket, AKA Unix Domain Socket, is...
Channels In the Go language, a channel is a medium through which a goroutine communicates with another goroutine and this communication is lock-free....
Concurrency is one of the strongest tools in Go but how to use them? Well just put the keyword go before a function. It can't be that easy, does it?...
Why There might be a situation where you want to deploy your backend on an ubuntu server but you don't have/want to deploy your backend as a docker...