Skip to content

Instantly share code, notes, and snippets.

@cynipe
cynipe / install_tmux.sh
Last active July 12, 2018 03:13 — forked from lowply/install_tmux.sh
A shell script to install tmux-2.5 and its dependencies from tarball (Only for CentOS, Ubuntu and Amazon Linux)
#!/bin/bash
# Install tmux from source
# Jul 12th, 2016 / lowply@gmail.com
# Sep 29th, 2016 / cynipe : Added Amazon Linux support and some fixes
set -ex
[ -f /etc/os-release ] && . /etc/os-release || { echo "Could not find /etc/os-release"; exit 1; }
@cynipe
cynipe / github-flow.ja.md
Last active February 26, 2016 01:35 — forked from Gab-km/github-flow.ja.md
GitHub Flow (Japanese translation)

GitHub Flow

31 Aug 2011

git-flowの問題点 (Issues with git-flow)

私は人々にGitを教えるためにあちこちを飛び回っているが、最近のほぼすべてのクラスやワークショップで git-flow についてどう思うかを尋ねられた。私はいつも、git-flowは素晴らしいと思うと答えている。何百万ものワークフローを持ったシステム(Git)を提供し、ドキュメントもあるし、よくテストされている。フレキシブルなワークフローは、実に容易なやり方で多くの開発者の役に立つ。標準的なものになりつつあり、開発者はプロジェクトや企業の間を移動しつつこの標準的なワークフローに馴染むことができる。

@cynipe
cynipe / 0_reuse_code.js
Last active August 29, 2015 14:21
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console