Skip to content

Instantly share code, notes, and snippets.

View Sunzxyong's full-sized avatar

zhengxiaoyong Sunzxyong

View GitHub Profile
@Sunzxyong
Sunzxyong / RecursiveFileObserver
Created March 20, 2018 03:07
recursive file observer.
import android.os.FileObserver;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import java.util.Stack;
/**
* Created by zhengxiaoyong on 2018/3/20.
*/
@Sunzxyong
Sunzxyong / gitconfig_colorful
Created December 2, 2015 09:58 — forked from 1901/gitconfig_colorful
使Git命令输出变成彩色的方法
# 参数可选(auto, ture, false)
$ git config --global color.status auto
$ git config --global color.diff auto
$ git config --global color.branch auto
$ git config --global color.interactive auto
$ git config --global color.ui auto