Skip to content

Instantly share code, notes, and snippets.

View jeasonstudio's full-sized avatar
:octocat:
Focusing

Jeason jeasonstudio

:octocat:
Focusing
View GitHub Profile
@jeasonstudio
jeasonstudio / iterm2.md
Created February 11, 2017 06:16
iterm2 cheatsheet

Tabs and Windows

Function Shortcut
Previous Tab + Left Arrow
Next Tab + Right Arrow
Go to Tab + Number
Go to Window + Option + Number
Go to Split Pane by Direction + Option + Arrow
Go to Split Pane by Order of Use + ] , + [
@jeasonstudio
jeasonstudio / captcha.go
Created February 11, 2017 03:23
Judge USTB Library System Captcha and Print out
package main
import (
"fmt"
"image"
"image/color"
"image/gif"
"image/png"
"math"
"os"
@jeasonstudio
jeasonstudio / colorFormat.go
Created February 10, 2017 07:48
ColorFormat RGBA to Hexadecimal
package main
import (
"fmt"
"image"
"image/color"
)
func ColorFormat(color color.Color) string {
thisR, thisG, thisB, _ := color.RGBA()