# Jesse Corson
# Start
# Mac
Press F4 > type Terminal > press return
# Install Homebrew and cowsay
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" && brew install cowsay
cowsay "Jesse Corson"
_____________
< Jesse Corson >
-------------
\ ^__^
\ (oo)\_______
(__)\ )\/\
||----w |
|| ||
^^~~~~^^^^^^~~^^^^^^^^^^^^^^^^^^^~~^^^^^^~~~~~
open https://www.linkedin.com/in/jessecorson
# GitHub
#!/usr/bin/env python3
import webbrowser
webbrowser.open_new("https://github.com/jessecorson")
# Here
package main
import (
"fmt"
"log"
"os/exec"
"runtime"
)
func open(url string) {
var err error
switch runtime.GOOS {
case "linux":
err = exec.Command("xdg-open", url).Start()
case "windows":
err = exec.Command("rundll32", "url.dll,FileProtocolHandler", url).Start()
case "darwin":
err = exec.Command("open", url).Start()
default:
err = fmt.Errorf("unsupported platform")
}
if err != nil {
log.Fatal(err)
}
}
func main() {
// You'd just be bringing yourself back here
open("http://www.jessecorson.com")
}