0%

本来以为这工具已经停止开发了,今天整理书签时去看了看,没想到它前几天竟然又开始更新了.
看来定时整理书签还是有好处的哈哈哈既然这样就推荐给大家使用吧.

简介

Clover 是一个 Windows Explorer 插件,它能让你的文件管理器拥有跟浏览器相似的体验.

Clover

功能

阅读全文 »

自用的 Android 开发工具,在此分享给大家.

Genymotion - 虚拟机调试

如图所示,它的确很快

虽说 Google 虐我千百遍, 我待 Google 如初恋 ,但是 Android 官方的模拟器性能真的是不忍直视,即使是 Android Studio 2.1 + Intel HAXM 还是能感觉到明显的卡顿,直到我发现了它:

Genymotion

好了,以后再也不用点完手机再看屏幕了,YEEEEEEEEEEEEEEEEE!

阅读全文 »

介绍

limitPNG 是一个使用 Electron 构建的 Png 有损/无损压缩软件.
对于不熟悉终端命令和配置 pngout pngwolf , pngquantPng 压缩工具的苦手(我,测试配置真痛苦)来说,这是一个很不错的工具.

软件界面

针对有损和无损压缩, limitPNG 提供了丰富的压缩选项让我们选择.

阅读全文 »

编译

准备工作

为了能同时支持 HTTP/2Spdy ,所以我使用了 Nginx 1.9.7 + Cloudflare 的补丁.
我使用的系统是 Debian 8.0,请根据自己的系统调整相应的包管理器命令.

首先安装编译要用到的依赖库和工具.

1
sudo apt-get install build-essential libpcre3 libpcre3-dev zlib1g-dev unzip git

然后获取 OpenSSL , Cloudflare 的补丁和 Certificate Transparency 补丁.

1
2
3
4
5
6
7
8
9
wget -O openssl.zip -c https://github.com/openssl/openssl/archive/OpenSSL_1_0_2h.zip
unzip openssl.zip && mv openssl-OpenSSL_1_0_2h/ openssl
wget -O nginx-ct.zip -c https://github.com/grahamedgecombe/nginx-ct/archive/v1.2.0.zip
unzip nginx-ct.zip

git clone https://github.com/cloudflare/sslconfig
cd openssl
patch -p1 < ../sslconfig/patches/openssl__chacha20_poly1305_draft_and_rfc_ossl102g.patch
cd ../

开始编译

默认安装到 /usr/local/nginx ,如果想更改路径可以在编译时指定 --prefix 参数.

1
2
3
4
5
6
7
8
9
10
wget -c http://nginx.org/download/nginx-1.9.7.tar.gz
tar zxf nginx-1.9.7.tar.gz

cd nginx-1.9.7
patch -1 < ../sslconfig/patches/nginx__http2_spdy.patch

./configure --add-module=../nginx-ct-1.2.0 --with-openssl=../openssl --with-http_v2_module --with-http_spdy_module --with-http_ssl_module --with-ipv6 --with-http_gzip_static_module

make
sudo make install

配置

创建管理脚本

为了方便管理 Nginx ,我使用脚本来对 Nginx 进行操作.

阅读全文 »