GO
How to do https request with bad certificate? [SOLVED]
We can use InsecureSkipVerify to do HTTPS request with bad certificate.
What is & and * in Golang? [Solved]
In this tutorial we will explore what is & and * icon or operator in golang and what is it used for?
How to check if struct is empty in GO? [SOLVED]
This article describes a few methods for determining whether a struct in Go is empty. It includes structs having fields that are comparable and
How to convert float64 to int Golang? [SOLVED]
In this tutorial, we will walk through some ways to convert a float64 to int in Golang. As introduced before, we can convert float64 to a string using the
How to Compare Struct, Slice or Map in GO? [SOLVED]
In Golang, the DeepEqual function is used to compare struct, slice, and map equality. It is used to determine whether or not two items are "deeply equal".
