加载中
termux for music play

mount Android‘s Music folder as local storage in termux termux-setup-storage Install mpd and pulseaudio pkg install mpd pkg install pulseaudio Setup mpd (vi ../usr/etc/mpd.con...

2018/08/15 21:59
724
System Monitoring Metrics

a framework of thinking system monitoring

2017/08/05 09:15
123
Safe Social Login

1. Facebook(?): prompt=login/force 2. Twitter: use_authorize=true 3. Google: approval_prompt=force 4. Azure: prompt=login...

2017/06/06 07:21
44
Apache nifi on Docker

docker pull sunileman/nifi1.1.0 docker run -it --rm -p 8080-8081:8080-8081 sunileman/nifi1.1.0 NiFi UI should be available here (http://localhost:8080/nifi/) docker push docker ...

2017/04/20 20:26
1K
Some tips of sed

sed 'y/string/STRING/g' # Replace s -> S, t -> T, r -> R ‥‥ sed 's/string/STRING/g' # Replace "string" -> "STRING". sed 's/string/STRING/' # Only replace the first "string" t...

2016/12/05 09:38
24
Run terraform with Docker CLI

bash-3.2$ docker run -i -t --rm hashicorp/terraform:latest Usage: terraform [--version] [--help] <command> [args] The available commands for execution are listed below. The mo...

2016/10/17 10:41
329
Calculate by using AWK

1. cat test.log 0 11 1 2 1 2 7 1 9 10 2. Max cat test.log | awk '{if(m<$1) m=$1} END{print m}' 3. Min cat test.log | awk 'BEGIN{m=100000}{if(m>$1) m=$1} END{print m}' 4. Sum cat...

2016/10/14 15:42
32
How can check the status of job by using Jenkins

lastBuild > lastCompletedBuild = is Building lastBuild = lastCompletedBuild = Building was done....

2016/05/27 17:54
37
wispr iphone

wispr iphone

2016/03/17 13:37
339

没有更多内容

加载失败,请刷新页面

返回顶部
顶部