Skip to content

Instantly share code, notes, and snippets.

View vaishakhvm's full-sized avatar

Yshakh vaishakhvm

  • KrypC Technologies
  • Banglore
View GitHub Profile
@vaishakhvm
vaishakhvm / smtp-gmail-send.go
Created March 15, 2019 11:55 — forked from jpillora/smtp-gmail-send.go
Send email using Go (Golang) via GMail with net/smtp
package main
import (
"log"
"net/smtp"
)
func main() {
send("hello there")
}
@vaishakhvm
vaishakhvm / myip.go
Created February 18, 2019 10:08 — forked from jniltinho/myip.go
Get My IP Golang
package main
/*
URL: https://github.com/mccoyst/myip/blob/master/myip.go
URL: http://changsijay.com/2013/07/28/golang-get-ip-address/
*/
import (
"net"
"os"