Latest Articles
10+ tcpdump command examples in Linux [Cheat Sheet]
Capture TCP or UDP packets using tcpdump command in Linux. Capture packet for specific interface, specify source and destination.
Golang generate random boolean [Simple Examples]
Use rand.Intn() function to generate random boolean in golang
PROPERLY delete an element from map in GO [SOLVED]
We can delete elements from map using 2 different methods. Check if the key exists and delete or delete the key without checking.
PROPERLY delete an element from Slice in GO [SOLVED]
2 different methods to remove elements from slice in golang. We can either maintain the order or remove elements without maintaining the order
How to parse multiple inputs from user in Golang
The following are functions used to read or parse users' inputs in Golang:- fmt.Scanln(), fmt.Scanf(), bufio.NewReader(). These functions can parse single or …
