You might already be in a terminal
Reference this article
Reference this article
Reference this thread
###############################################
# You don't have to do this but it might be fun
###############################################
#
# Install dogsay
gem install dogsay
# Speak
dogsay "Let's go"
_ +-------------------+
,:'/ _..._ | Let's go |
// ( `""-.._.' +-------------------+
\| / 6\___ /
| 6 4
| /
\_ .--'
(_'---'`)
/ `'---`()
,' |
, .'` |
)\ _.-' ;
/ | .'` _ /
/` / .' '. , |
/ / / \ ; | |
| \ | | .| | |
\ `"| /.-' | | |
'-..-\ _.;.._ | |.;-.
\ <`.._ )) | .;-. ))
(__. ` ))-' \_ ))'
`'--"` `"""`
open https://www.linkedin.com/in/jessecorson
#!/usr/bin/env python3
import webbrowser
webbrowser.open_new("https://github.com/jessecorson")
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")
}
Due to world events during the past months, the tension and worry of many is rising.
If you need help and do not already have resources, please reference the information below.
Taking care of yourself does not mean you are weak. We are all human.
For help finding mental health resources, call the NAMI Helpline at 800-950-NAMI or in a crisis, text "NAMI" to 741741. If you're in crisis, call the National Suicide Prevention Lifeline at 1-800-273-TALK(8255) or contact the Crisis Text Line by texting TALK to 741741.