Skip to content

Instantly share code, notes, and snippets.

@mlafeldt
mlafeldt / tapVerboseOutput.vim
Created April 20, 2011 20:16
Vim syntax file for TAP output
" Vim syntax file
" Language: Verbose TAP Output
" Maintainer: Rufus Cable <[email protected]>
" Remark: Simple syntax highlighting for TAP output
" License:
" Copyright (c) 2008 Rufus Cable
if exists("b:current_syntax")
finish
endif
@masutaka
masutaka / migemo.rb
Last active September 27, 2015 13:07
Formula of migemo
require 'formula'
class Migemo < Formula
url 'http://0xcc.net/migemo/migemo-0.40.tar.gz'
homepage 'http://0xcc.net/migemo/'
md5 '7021c45096b6816fccf16f8389324a91'
depends_on 'emacs'
depends_on 'ruby-bsearch'
depends_on 'ruby-romkan'
@xyzzy-17-638
xyzzy-17-638 / gist:1992293
Created March 7, 2012 09:51
Gitチートシート

Gitチートシート

msysGitをインストール後、 「スタート」>「Git」>「Git Bash」を実行して Git Bash を立ち上げ、 以下のコマンドを実行することで、さまざまな作業を行えます

簡単な用語集

@Gab-km
Gab-km / github-flow.ja.md
Last active October 29, 2024 10:17 — forked from juno/github-flow.ja.md
GitHub Flow (Japanese translation)
@teppeis
teppeis / tenkaichi-git.md
Last active April 29, 2023 14:58
天下一gitconfig大会

天下一gitconfig大会(サイボウズ社内git勉強会@2012/11/20)の@teppeisの資料です。

ぎっとぎとにしてやんよ

DojoCat

  • gistでmarkdown書いたらbookmarkletでプレゼンになるよ。
@sturadnidge
sturadnidge / tmux-1.8-on-CentOS-6.x.txt
Last active May 10, 2021 18:31
Install tmux 1.8 on CentOS 6.x minimal (64bit)
# download latest libevent2 and tmux sources, and extract them somewhere
# (thx bluejedi for tip on latest tmux URL)
#
# at the time of writing:
# https://github.com/downloads/libevent/libevent/libevent-2.0.21-stable.tar.gz
# http://sourceforge.net/projects/tmux/files/latest/download?source=files
#
# install deps
yum install gcc kernel-devel make ncurses-devel
@mochiz
mochiz / gist:4736183
Last active April 16, 2023 03:56
rbenvとruby-buildでRuby環境を最新に保つ

rbenvとruby-buildでRuby環境を最新に保つ

更新日:2014/11/19

rbenv, ruby-buildを更新

$ cd ~/.rbenv
$ git pull origin master
$ cd ~/.rbenv/plugins/ruby-build
$ git pull origin master
@Nyoho
Nyoho / gist:5018563
Created February 23, 2013 05:12
rbenv で新しいバージョンをインストールしてついでに gem もごっそり移行する。zsh の補完も効くようにしてみた。.zshrc の compinit に後に。
## completion for gem transition of rbenv
function gem-transition {
local tmpfile=/tmp/current_gem_list
if [ $# -ne 2 ]; then
echo "usage: command version1 version2"
return
fi
rbenv install $2
rbenv global $1
rbenv rehash
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Ansi 0 Color</key>
<dict>
<key>Blue Component</key>
<real>0.20179691910743713</real>
<key>Green Component</key>
<real>0.1818026602268219</real>
@jbenet
jbenet / simple-git-branching-model.md
Last active November 9, 2024 04:55
a simple git branching model

a simple git branching model (written in 2013)

This is a very simple git workflow. It (and variants) is in use by many people. I settled on it after using it very effectively at Athena. GitHub does something similar; Zach Holman mentioned it in this talk.

Update: Woah, thanks for all the attention. Didn't expect this simple rant to get popular.