Mobile app မှာ login ဝင်ထားတဲ့ အကောင့်ကို web or desktop app တွေမှာ login ဝင်တဲ့ အခါ password ရိုက်ဝင်တာမျိုး မဟုတ်ပဲ web or desktop app က QR code ကို mobile app ကနေ scan ဖတ်ပီး ဘာ email password မှ ရိုက်စရာ မလိုပဲ login ဝင်ဖူးကြမှာပါ WhatsApp တို့ Binance တို့လိုမျိုးတွေ ဝင်ဖူးကြမှာပါ။
Tag Archives: backend
Concurrency vs Sequential Execution in Go
When working with tasks that take time, using concurrency can help speed up your program. Go has a great way to run things at the same time using goroutines and channels. Here’s a simple example that compares how long a program takes to run with and without concurrency.
Golang API with gorilla mux and gorm
I recently self-learned and created a Golang API project structure, inspired by what I used to do with .NET projects. Before this, I also experimented with project structures in Node.js and MongoDB.
Diving into nodejs api and mongodb
As a senior backend developer specializing in .NET, diving into the world of Node.js has been both exciting and challenging. I created a sample Node.js API using MongoDB, which is running on Docker. This project allowed me to explore Node.js and MongoDB, a NoSQL database type.