Go

Basic Web Scraper using Go

package main import ( “fmt” “log” “net/http” “os” “github.com/PuerkitoBio/goquery” ) func main() { // URL of the website to scrape

Read More
Programming

Go script: Password Generator

package main import ( “fmt” “math/rand” “time” ) const ( upperChars = “ABCDEFGHIJKLMNOPQRSTUVWXYZ” lowerChars = “abcdefghijklmnopqrstuvwxyz” digitChars = “0123456789” specialChars

Read More