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
#!/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"
#!/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
@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
}
#!/usr/bin/env ruby
require 'curses'
Curses.init_screen
Curses.start_color
Curses.use_default_colors if Curses.respond_to? :use_default_colors
Curses.raw
Curses.noecho
Curses.addstr 'Hello world'
Curses.refresh
Latency Comparison Numbers
--------------------------
L1 cache reference 0.5 ns
Branch mispredict 5 ns
L2 cache reference 7 ns 14x L1 cache
Mutex lock/unlock 25 ns
Main memory reference 100 ns 20x L2 cache, 200x L1 cache
Compress 1K bytes with Zippy 3,000 ns
Send 1K bytes over 1 Gbps network 10,000 ns 0.01 ms
Read 4K randomly from SSD* 150,000 ns 0.15 ms
@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