Skip to content

Instantly share code, notes, and snippets.

View khotyn's full-sized avatar
😌
Focusing

Khotyn Huang khotyn

😌
Focusing
View GitHub Profile
@khotyn
khotyn / 台湾环岛骑行准备.md
Created October 21, 2013 13:20
台湾环岛骑行准备

台湾环岛骑行准备

@khotyn
khotyn / DefaultTest.java
Last active January 3, 2016 18:29
Java 8 中的接口的 default 关键字测试
package com.khotyn.java8;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
/**
* 测试 Java 8 中的接口的 default 功能
*
@khotyn
khotyn / 0_reuse_code.js
Created June 15, 2014 15:37
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
@khotyn
khotyn / test.sh
Last active August 29, 2015 14:09
Bash wired bug
#/bin/bash
function f() {
local v=()
echo ${#v[@]}
}
f