
Flutter Isolates 101
How to use isolates in Flutter to run computationally intensive tasks in the background.
Search for a command to run...

How to use isolates in Flutter to run computationally intensive tasks in the background.

CrashDragon Introduction In the summer of 2024, I was accepted into the Google Summer of Code 2024 program by the VideoLAN organization. The organization is known for developing the popular VLC media player. I was thrilled to be accepted into the pro...

How to use Unix Sockets in Go to communicate between processes on the same machine.

Channels In the Go language, a channel is a medium through which a goroutine communicates with another goroutine and this communication is lock-free. Or in other words, a channel is a technique that allows one goroutine to send data to another. Let’s...

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? Well, not really. Let's see some concurrency patterns in Go. Introduction Let's write a simple code p...

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 container. Pre Requisites Basic Linux Golang (any backend-specific language like nodejs or python) I...

Integrating Google Maps SDK into our Flutter App to get locations with autocomplete and displaying a route between the 2 locations.

Distributed operating system for cloud-native application management, using Kubernetes.

A simple guide on how to install and use portainer