[806] Results
Golang : zlib compress file example
golang zlibThis tutorial will show you how to read an uncompress file content into a buffer, use zlib on the buffer….... read more
Golang : Clearing slice
golang sliceSlice is something that I use frequently in Go and I always prefer slice to array at anytime. If you….... read more
Golang : Get file permission
golang permissionsGet a file permission in Go is easy. In this tutorial, we will see how to read a file permission….... read more
Golang : Encrypt and decrypt data with x509 crypto
golang x509This is a simple tutorial demonstrating how to encrypt and decrypt string data with Golang's crypto/x509
package. We will use….... read more
Golang : Example for ECDSA(Elliptic Curve Digital Signature Algorithm) package functions
golang ecdsaIn cryptography, the Elliptic Curve Digital Signature Algorithm (ECDSA) is a variant of the Digital Signature Algorithm (DSA) which uses….... read more
Golang : Iterating Elements Over A List
golang listIn this short tutorial, we will learn how to iterate the elements over a list. The code below will populate….... read more
Golang : Convert file content to Hex
golang hexSomehow for the last couple of days I keep on thinking about my childhood days of hacking DOS games with….... read more
Golang : Find files by extension
golang extensionThis is a filepath.Ext()
function example and it will only display files with .png
extension in the current directory. You….... read more