Skip to content

Instantly share code, notes, and snippets.

View garsue's full-sized avatar

garsue garsue

View GitHub Profile
@garsue
garsue / README.md
Last active November 10, 2016 02:47 — forked from shunirr/README.md
Jenkins をOS X のログインユーザー権限のデーモンで自動起動しておく設定

Jenkins をOS X のログインユーザー権限のデーモンで自動起動しておく設定

必要なもの

うっかり jenkins.pkg を入れてしまった人はアンインストールする

@garsue
garsue / logrecv.go
Last active October 12, 2016 08:30 — forked from paulsmith/echo.go
A simple echo server testing a few interesting Go language features, goroutines and channels.
package main
import (
"bufio"
"fmt"
"net"
"strconv"
)
const port = 3540