Skip to content

Instantly share code, notes, and snippets.

View otiai10's full-sized avatar
👋

Hiromu OCHIAI otiai10

👋
View GitHub Profile
http://r.gnavi.co.jp/sp/g-mag/entry/013042
@matishsiao
matishsiao / pipe.go
Last active November 3, 2024 05:35
named pipe sample code
package main
import (
"bufio"
"fmt"
"log"
"os"
"syscall"
"time"
)
@BretFisher
BretFisher / .travis.yml
Created February 15, 2016 21:26
Travis-CI Docker Image Build and Push to AWS ECR
sudo: required #is required to use docker service in travis
language: php #can be any language, just php for example
services:
- docker # required, but travis uses older version of docker :(
install:
- echo "install nothing!" # put your normal pre-testing installs here
@hdemon
hdemon / 脱消耗.md
Last active May 21, 2020 14:41
福岡Iターン勢として、東京からの移住を検討する皆様の質問にお答えします

oops

@zchee
zchee / cgo.md
Last active March 28, 2025 07:02
cgo convert list

See also, http://libraryofalexandria.io/cgo/

Using Go cgo

cgo has a lot of trap.
but Not "C" pkg also directory in $GOROOT/src. IDE's(vim) Goto command not works.

So, Here collect materials.

@voluntas
voluntas / webrtc.rst
Last active March 28, 2025 06:01
WebRTC コトハジメ
@voluntas
voluntas / webrtc.rst
Last active January 13, 2025 22:40
WebRTC の未来
@watilde
watilde / uni.md
Last active August 29, 2015 14:24

前回:うに小屋

|店|駅|メモ| |---|---|---|---|---| |しゃくしゃく|東銀座|地酒22種類 + 雲丹ご飯付きコースで5000円| |ウニと海老の専門店 大人和食TOKYO|渋谷|コース安定してそう、丸ごとウニやばそう| |茶良ら 〜SALALA〜|銀座一丁目|コースで雲丹ご飯あり。ワインも豊富そう| |リストランテ デラ コリーナ|恵比寿|うにパスタだけ頼んでワインとか| |うにくら|水道橋|木箱うにやばい| |鰓呼吸|中目黒|こぼれ系寿司|

@ake-persson
ake-persson / gist:ca29cca70f0b458aee4d
Last active January 28, 2022 17:43
Homebrew Formula for a Go app

Homebrew Formula for a Go app

These are quick notes from making my own Formula and Tap.

Add go build script to your Git repo

gobuild.sh

#!/bin/bash
server {
listen 80;
server_name *.example.com>;
if ($host ~* "^([^.]+(\.[^.]+)*)\..example.com$"){
set $subd $1;
}
....
}