View MapBuilder.java
package jp.s5r; | |
import java.util.HashMap; | |
import java.util.Map; | |
public class MapBuilder<K, V> { | |
private Object[] objects; | |
public MapBuilder(Object[] args) { | |
if (args.length % 2 != 0) { |
View hack.sh
#!/usr/bin/env sh | |
## | |
# This is script with usefull tips taken from: | |
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
# | |
# install it: | |
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh | |
# |