Skip to content

Instantly share code, notes, and snippets.

View junegunn's full-sized avatar
🐷
Please be kind to animals

Junegunn Choi junegunn

🐷
Please be kind to animals
View GitHub Profile
@junegunn
junegunn / gist:10996023
Created April 17, 2014 16:27
Ruby serialization
require 'msgpack'
require 'benchmark'
require 'stringio'
require 'json'
hash = (1..100000).reduce({}) { |hsh, e|
hsh[e] = ['-' * 50, '-' * 50]
hsh
}
#!/bin/bash
# Generated by vim-plug
# Fri Dec 5 16:35:40 2014
vim +PlugUpdate +qa
PLUG_HOME=~/.vim/plugged
cd $PLUG_HOME/Vim-Jinja2-Syntax/ && git reset --hard 4eb6761
cd $PLUG_HOME/ack.vim/ && git reset --hard 303bcef
#!/usr/bin/env bash
output=$(fzf --print-query --multi)
mapfile -t lines <<< "$output"
query="${lines[0]}"
matches=(${lines[@]:1})
echo "Query: $query"
if [ ${#matches[@]} -eq 0 ]; then
echo "- No result"
@junegunn
junegunn / align.rb
Last active August 29, 2015 14:13
Ruby filter for aligning tab-separated input
#!/usr/bin/env ruby
lines = []
maxes = []
while raw = gets
lines << line = raw.chomp.split(/\t+/)
line.each_with_index do |token, idx|
maxes[idx] = [maxes.fetch(idx, 0), token.length].max
end
end
@junegunn
junegunn / .vimrc
Last active August 29, 2015 14:15 — forked from anonymous/.vimrc
call plug#begin('~/.vim/bundle')
Plug 'bling/vim-airline'
Plug 'tpope/vim-fugitive'
Plug 'valloric/YouCompleteMe'
Plug 'SirVer/ultisnips'
Plug 'scrooloose/nerdtree'
Plug 'scrooloose/nerdcommenter'
Plug 'airblade/vim-gitgutter'
Plug 'kien/ctrlp.vim'
@junegunn
junegunn / gist:863dcbd78eadece788cd
Created March 7, 2015 16:56
vagrantfile for testing vim-plug with python 2.6 compatibility
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "lucid"
config.vm.box_url = "https://dl.dropbox.com/u/14741389/vagrantboxes/lucid64-lamp.box"
config.vm.provision "shell", inline: <<-SHELL
sudo apt-get update
sudo apt-get install -y git-core vim
@junegunn
junegunn / gist:d779dff10a3d0a708cb7
Last active August 29, 2015 14:19
Managing notes with fzf
#!/usr/bin/env bash
#
# Managing notes with fzf (https://github.com/junegunn/fzf)
# - CTRL-L: List txt files in descending order by their modified time
# - CTRL-F: Search file contents
NOTE_DIR="${NOTE_DIR:-$(dirname "${BASH_SOURCE[0]}")}"
TRASH_DIR="$NOTE_DIR/trash"
cd "$NOTE_DIR"
plug.txt plug Last change: May 20 2015
PLUG - TABLE OF CONTENTS *plug* *plug-toc*
==============================================================================
vim-plug
Pros.
Usage
Commands
Plug options
Global options
@junegunn
junegunn / tmux-24.diff
Last active August 29, 2015 14:26
tmux-24.diff
diff --git a/colour.c b/colour.c
index b5efd6f..8098f83 100644
--- a/colour.c
+++ b/colour.c
@@ -29,12 +29,6 @@
* of the 256 colour palette.
*/
-/* An RGB colour. */
-struct colour_rgb {
@junegunn
junegunn / jruby-daemon.sh
Created September 2, 2011 08:42
init.d-style jruby daemon
#!/bin/bash
# Junegunn Choi (junegunn.c@gmail.com)
# 2011/09/02-
# init.d-style daemon script for JRuby with spoon gem.
APP_NAME=sleeper
APP_PATH=/Users/jg/github/jruby-daemon/sleeper.rb
JRUBY=/Users/jg/.rvm/rubies/jruby-1.6.4/bin/ruby