Skip to content

Instantly share code, notes, and snippets.

View shamrockspb's full-sized avatar
🏠
Working from home

Aleksandr Ivanov shamrockspb

🏠
Working from home
View GitHub Profile
@nidhi-canopas
nidhi-canopas / utility_functions.go
Last active November 11, 2022 02:27
A bunch of commonly used function with slice, string and time using Golang
package main
import (
"fmt"
"math/rand"
"regexp"
"strconv"
"strings"
"time"
)