shlogg · Early preview
Siddhesh Khandagale @siddhesh1102

Backend Developer specialized in Web Apps, CLI tools, and AI integration with Golang.

Shamirs Secret Sharing In Go: Secure Data Splitting And Reconstructing

Shamir's Secret Sharing splits a secret into shares, requiring a threshold to reconstruct. Implemented in Go using github.com/hashicorp/vault/shamir. Securely store private keys, distribute credentials, and enable decentralized access control.

Sorting And Filtering In APIs: Enhancing User Experience

In this tutorial, we extend our API with sorting & filtering features, allowing users to control data order & refine search results, making it more user-friendly & powerful.

What Is Pagination In Software Engineering?

Pagination solves API slowdowns by splitting data into smaller pages, making APIs faster & applications smoother. It's like dividing a bookshelf into sections instead of searching through the entire shelf.

Golang Libraries For Backend Development Essentials

Golang essentials: 5 must-know libraries for backend devs - Gin (HTTP framework), GORM (database ORM), Logrus (structured logging), Cobra (CLI tool builder) & Viper (config management). Boost productivity & code quality with these powerful tools!

Creating CLI Apps With Go And Cobra: A Step-by-Step Guide

Create a CLI app with Go & Cobra in 6 steps: set up project, define Cobra cmd, add flags & subcmds, implement Quiz game, read CSV data, test app. A comprehensive guide for beginners.