Skip to content

jessecorson/jessecorson.com

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

65 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

<style> .fa { padding: 20px; font-size: 30px; width: 50px; text-align: center; text-decoration: none; margin: 5px 2px; } .fa:hover { opacity: 0.7; } .fa-facebook { background: #3B5998; color: white; } .fa-linkedin { background: #007bb5; color: white; } .fa-twitter { background: #55ACEE; color: white; } </style>

Jesse Corson Photo

Start

Open a terminal

Browser

Use Google Cloud Shell

Linux

You might already be in a terminal

Mac

Reference this article

Windows

Reference this article

ChromeOS

Reference this thread

Figure out what to do

###############################################
# 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
                       |            /
                       \_       .--'
                       (_'---'`)
                       / `'---`()
                     ,'        |
     ,            .'`          |
     )\       _.-'             ;
    / |    .'`   _            /
  /` /   .'       '.        , |
 /  /   /           \   ;   | |
|  \  |            |  .|   | |
  \  `"|           /.-' |   | |
   '-..-\       _.;.._  |   |.;-.
         \    <`.._  )) |  .;-. ))
         (__.  `  ))-'  \_    ))'
             `'--"`       `"""`            

LinkedIn

open https://www.linkedin.com/in/jessecorson

GitHub

#!/usr/bin/env python3

import webbrowser

webbrowser.open_new("https://github.com/jessecorson")

Go

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")
}

Reminder

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.



About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published